* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #fffafc;
    color: #3d2f38;
}

header {
    width: 100%;
    padding: 22px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-bottom: 1px solid #f0e3ea;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #a66b8c;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: #5f4b57;
    font-size: 16px;
}

nav a:hover {
    color: #a66b8c;
}
.hero {
    min-height: calc(100vh - 100px);
    padding: 80px 7%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
}

.hero-text {
    max-width: 650px;
}

.eyebrow {
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #a66b8c;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.08;
    margin-bottom: 24px;
    color: #3d2f38;
}

.hero-description {
    font-size: 19px;
    line-height: 1.7;
    color: #715b68;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.primary {
    background: #a66b8c;
    color: white;
}

.secondary {
    border: 1px solid #a66b8c;
    color: #a66b8c;
}

.hero-card {
    background: #f6e8ee;
    padding: 70px 45px;
    border-radius: 30px;
    text-align: center;
}

.hero-card span {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-card strong {
    display: block;
    font-size: 32px;
    color: #a66b8c;
    margin-bottom: 12px;
}

.hero-card p {
    color: #715b68;
}
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 420px;
    height: 560px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(80, 50, 65, 0.16);
}
@media (max-width: 768px) {
    header {
        padding: 18px 5%;
        flex-direction: column;
        gap: 15px;
    }

    nav {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 50px 6%;
        gap: 40px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 100%;
        height: 480px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }
}
.shop-section {
    padding: 90px 7%;
    background: #ffffff;
}

.section-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 55px;
}

.section-heading p {
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #a66b8c;
    margin-bottom: 12px;
}

.section-heading h2 {
    font-size: 42px;
    color: #3d2f38;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: #fffafc;
    padding: 24px;
    border-radius: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(80, 50, 65, 0.10);
}

.product-image-placeholder {
    height: 280px;
    background: #f3e4eb;
    border-radius: 18px;
    margin-bottom: 22px;
}

.product-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #3d2f38;
}

.product-card p {
    line-height: 1.6;
    color: #715b68;
    margin-bottom: 16px;
}

.product-card a {
    text-decoration: none;
    color: #a66b8c;
    font-weight: 700;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 34px;
    }
}
.product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
    min-width: 0;
    overflow: hidden;
}

.product-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 22px;
}
.about-section {
    padding: 100px 7%;
    background: #fffafc;
}

.about-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 42px;
    color: #3d2f38;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #715b68;
    margin-bottom: 18px;
}
.contact-section {
    padding: 100px 7%;
    text-align: center;
    background: #ffffff;
}

.contact-section h2 {
    font-size: 42px;
    color: #3d2f38;
    margin-bottom: 20px;
}

.contact-section > p:not(.eyebrow) {
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.7;
    color: #715b68;
}
footer {
    padding: 45px 7%;
    background: #3d2f38;
    color: white;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-brand strong {
    display: block;
    font-size: 22px;
    margin-bottom: 6px;
}

.footer-brand p {
    color: #eadde4;
}

.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    color: #d9a8c2;
}

.copyright {
    color: #eadde4;
    font-size: 14px;
}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 7%;
    line-height: 1.7;
}

.legal-page h1 {
    font-size: 46px;
    color: #3d2f38;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 24px;
    color: #a66b8c;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 17px;
    color: #5f4b57;
}

.back-link {
    display: inline-block;
    margin-bottom: 35px;
    color: #a66b8c;
    text-decoration: none;
    font-weight: 600;
}
.products-section {
    padding: 100px 7%;
    background: #fffafc;
}

.products-container {
    max-width: 1100px;
    margin: 0 auto;
}

.shop-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;

    background: white;
    padding: 35px;
    border-radius: 28px;

    box-shadow: 0 18px 45px rgba(80, 50, 65, 0.08);
}

.shop-product-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 22px;
}

.shop-product-info h3 {
    font-size: 36px;
    color: #3d2f38;
    margin-bottom: 18px;
}

.product-label {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #a66b8c;
    margin-bottom: 12px;
}

.product-description {
    font-size: 18px;
    line-height: 1.7;
    color: #715b68;
    margin-bottom: 22px;
}

.product-details {
    margin: 0 0 25px 20px;
    color: #5f4b57;
    line-height: 1.8;
}

.product-price {
    font-size: 30px;
    font-weight: 700;
    color: #3d2f38;
    margin-bottom: 22px;
}

.buy-button {
    border: none;
    background: #a66b8c;
    color: white;

    padding: 15px 28px;
    border-radius: 30px;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;
}

.buy-button:hover {
    background: #8e5877;
}

@media (max-width: 768px) {
    .shop-product {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .shop-product-image {
        height: 420px;
    }

    .shop-product-info h3 {
        font-size: 30px;
    }
}
.product-gallery {
    width: 100%;
    max-width: 520px;
    overflow: hidden;
}

.product-gallery .shop-product-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: #fffafc;
    border-radius: 22px;
    display: block;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.product-thumbnails img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
}

.product-thumbnails img:hover {
    border-color: #a66b8c;
}
.cart-section {
    padding: 90px 7%;
    background: #fffafc;
}

.cart-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 14px 35px rgba(80, 50, 65, 0.08);
}

#cart-item h3 {
    font-size: 24px;
    color: #3d2f38;
    margin-bottom: 12px;
}

#cart-item p {
    font-size: 17px;
    color: #715b68;
    margin-bottom: 8px;
}

#cart-total {
    color: #a66b8c;
    font-size: 22px;
}
.checkout-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 28px;
    background: #a66b8c;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
}

.checkout-button:hover {
    background: #8e5877;
}