* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.hero-section {
    position: relative;
    width: 100%;
}

.logo {
    color: #3D4245;
    display: flex;
    align-items: center;
    padding-left: 50px;
    font-family: "aileron", sans-serif;
    font-weight: 100;
    font-style: normal;
    letter-spacing: 5px;
    font-size: 55px;
    width: 20%;
}

.logo a {
    text-decoration: none;
    color: #3D4245;
}

.back-arrow a {
    text-decoration: none;
    color: #3D4245;
}

.pills a {
    text-decoration: none;
    color: #3D4245;
}

.navbar {
    background-color: #F5F5F5;
    position: fixed;
    top: 0;
    height: 95px;
    width: 100%;
    display: flex;
    margin-bottom: 20px;
    z-index: 99;
}

.navbar-pills-1 {
    width: 60%;
}

.navbar-pills-2 {
    width: 20%;
}

.pills {
    color: #3D4245;
    position: absolute;
    font-family: "aileron", sans-serif;
    font-weight: 300;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 1px;
    height: 100px;
}

li {
    list-style: none;
    padding-left: 30px;
    padding-right: 30px;
}

.background-container {
    display: flex;
    width: 100%;
    height: 900px;
}


.left-bg,
.right-bg {
    flex: 1;
    margin-top: -20px;
    width: 100%;
    height: 1000px;
}

.left-bg img,
.right-bg img {
    width: 100%;
    height: 1000px;
    object-fit: cover;
}


.overlay-content {
    position: absolute;
    top: 550px;
    left: 2%;
    color: #F5F5F5;
    text-align: left;
    border-radius: 12px;
    max-width: 700px;
    z-index: 2;
}

.overlay-content h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-family: "aileron", sans-serif;
    font-weight: 100;
}

.overlay-content p {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: "aileron", sans-serif;
    font-weight: 100;
}

.btn {
    background-color: #A87A59;
    color: #F5F5F5;
    border: none;
    font-family: "aileron", sans-serif;
    font-weight: 300;
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #3D4245;
}


.best-sellers {
    background-color: #f8f6f3;
    height: 700px;
    text-align: center;
    position: relative;
    justify-content: space-between;/ align-items: center;
    padding: 50px;
    /* margin-top: 400px; */
}

.section-title {
    font-family: "Aileron", sans-serif;
    font-weight: 100;
    font-size: 45px;
    color: #3D4245;
    margin-bottom: 50px;
    letter-spacing: 3px;
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    justify-items: center;
}


.product-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
    max-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-family: "Aileron", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #3D4245;
    margin-bottom: 8px;
}

.product-card p {
    font-family: "Aileron", sans-serif;
    font-weight: 200;
    font-size: 12px;
    color: #6e6e6e;
    margin-bottom: 12px;
}

.price {
    display: block;
    font-family: "Aileron", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #3D4245;
    margin-bottom: 15px;
}


.btn {
    background-color: #A87A59;
    color: #F5F5F5;
    border: none;
    font-family: "Aileron", sans-serif;
    font-weight: 300;
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #3D4245;
}

.about-us {
    width: 100%;
    background-color: #f8f6f3;
    overflow: hidden;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 600px;
}

.about-left {
    flex: 1;
    min-width: 300px;
    background-color: #dbcfc1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.about-text {
    max-width: 600px;
}

.about-text h2 {
    font-family: "Aileron", sans-serif;
    font-weight: 200;
    font-size: 45px;
    color: #3D4245;
    margin-bottom: 20px;
}

.about-text p {
    font-family: "Aileron", sans-serif;
    font-weight: 200;
    font-size: 16px;
    line-height: 1.6;
    color: #3D4245;
    margin-bottom: 20px;
}

.about-img {
    flex: 1;
    height: 300px;
}


.footer {
    background-color: #F5F5F5;
    color: #3D4245;
    padding: 60px;
    font-family: "Aileron", sans-serif;

}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-weight: 300;
    font-size: 1.8em;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-brand p {
    font-weight: 200;
    font-size: 0.95em;
    line-height: 1.6;
    color: #3D4245;
    max-width: 300px;
}

.footer-newsletter h3,
.footer-links h3 {
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-newsletter p {
    font-weight: 200;
    color: #3D4245;
    font-size: 0.95em;
    margin-bottom: 15px;
    max-width: 300px;
}

.newsletter-form {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background-color: #3D4245;
    padding: 10px 15px;
    color: #F5F5F5;
    border: none;
    border-radius: 6px;
    font-family: "Aileron", sans-serif;
    font-size: 0.95em;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #999;
}


.footer .btn {
    background-color: #A87A59;
    color: #f8f6f3;
    font-weight: 400;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.footer .btn:hover {
    background-color: #3D4245;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #3D4245;
    font-weight: 200;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3D4245;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding-top: 20px;
    font-size: 0.9em;
    color: #3D4245;
}

social-icons {
    display: flex;
    gap: 40px;
}

.social-icons h3 {
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.social-icons a {
    color: #3D4245;
    font-size: 1.3em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #dbcfc1;
    transform: scale(1.1);
}

.shop-all-section {
    background-color: #f8f6f3;
    text-align: center;
    color: #f8f6f3;
    font-family: "Aileron", sans-serif;
    margin-top: 90px;
}

.shop-all-header {
    position: relative;
    height: 400px;
}

.image-container {
    width: 100%;
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    padding-bottom: 20px;
}

.shop-all-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shop-all-header h2 {
    font-size: 44px;
    padding-top: 50px;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: "Aileron", sans-serif;
    margin-bottom: 10px;
}

.shop-all-header p {
    font-size: 18px;
    color: #f8f6f3;
    max-width: 600px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
    font-weight: 100;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    justify-items: center;
}

.product-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
    max-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.product-card p {
    color: #666;
    font-weight: 300;
    margin-bottom: 15px;
}

.btn {
    background-color: #A87A59;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-family: "Aileron", sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #3D4245;
}

.show-more-container {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    /* margin: 0 auto; */
}

.show-more-btn {
    background-color: #f0e7dd;
    color: #3D4245;
    padding: 12px 36px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background-color: #dbcfc1;
    color: #3D4245;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}


.product-detail {
    padding-left: 40px;
    padding-top: 150px;
    background-color: #fdfdfb;
    height: 700px;
    color: #3D4245;
    font-family: "Aileron", sans-serif;
}

.product-detail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.product-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.product-info h1 {
    font-family: "Aileron", sans-serif;
    font-size: 45px;
    font-weight: 100;
    margin-bottom: 15px;
}

.product-header h3 {
    font-size: 18px;
    color: #3D4245;
    font-family: "Aileron", sans-serif;
    font-weight: 100;
    padding-bottom: 10px;
}

.product-price {
    font-size: 18px;
    color: #3D4245;
    font-family: "Aileron", sans-serif;
    margin-bottom: 20px;
    font-weight: 400;
}


.product-description p {
    font-size: 18px;
    color: #3D4245;
    font-family: "Aileron", sans-serif;
    margin-bottom: 20px;
    padding-right: 100px;
    font-weight: 300;
    line-height: 2;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-top: 30px;
}

.product-actions input {
    width: 60px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-align: center;
}

.add-to-cart {
    background-color: #A87A59;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    border: none;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background-color: #3D4245;
}

.product-extra p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 8px;

}

.related-products {
    padding: 80px 10%;
    background-color: #dbcfc1;
    text-align: center;
}

.related-products h2 {
    font-family: "Aileron", sans-serif;
    font-size: 1.8rem;
    font-weight: 100;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.related-grid .product-card {
    background-color: #fdfdfb;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}


.related-grid .product-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.related-grid .btn {
    background-color: #A87A59;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.related-grid .btn:hover {
    background-color: #3D4245;
}

@media only screen and (max-width: 600px) {
    .right-bg {
        display: none;
    }

    .best-sellers {
        height: 1600px;
    }

    .navbar {
        flex-direction: row;
        height: 75px;
    }

    .logo {
        font-size: 35px;
        padding-left: 5px;
    }

    .pills li {
        font-size: 12px;
        padding: 10px;
    }
}