* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #2a0838;
    color: #fff7f3;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ================= HEADER ================= */

.header {
    min-height: 100vh;
    background:
        linear-gradient(rgba(42, 8, 56, 0.88), rgba(42, 8, 56, 0.9)),
        url("https://images.unsplash.com/photo-1600612253971-422e7f7faeb6?auto=format&fit=crop&w=1400&q=80");
    background-size: cover;
    background-position: center;
}

.navbar {
    width: 100%;
    padding: 24px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(42, 8, 56, 0.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(230, 179, 148, 0.25);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 700;
    color: #e6b394;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: #fff7f3;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e6b394;
}

.nav-btn {
    padding: 10px 20px;
    border-radius: 30px;
    background: #e6b394;
    color: #2a0838;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-btn:hover {
    background: #bb6b97;
    color: #fff;
}

/* ================= HERO ================= */

.hero {
    min-height: calc(100vh - 90px);
    padding: 70px 8%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
}

.eyebrow,
.section-label {
    color: #e6b394;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 14px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 78px;
    line-height: 0.95;
    color: #fff7f3;
    margin-bottom: 24px;
}

.hero-desc {
    max-width: 580px;
    color: #ead7d6;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 13px 26px;
    border-radius: 35px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn {
    background: #e6b394;
    color: #2a0838;
}

.primary-btn:hover {
    background: #bb6b97;
    color: #fff;
}

.secondary-btn {
    border: 1px solid #e6b394;
    color: #e6b394;
}

.secondary-btn:hover {
    background: #e6b394;
    color: #2a0838;
}

.hero-image {
    position: relative;
}

.hero-image img {
    height: 520px;
    object-fit: cover;
    border-radius: 220px 220px 30px 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(230, 179, 148, 0.4);
}

/* ================= GENERAL SECTION ================= */

.section {
    padding: 90px 8%;
}

.section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    color: #fff7f3;
    margin-bottom: 16px;
}

.section-desc {
    max-width: 680px;
    color: #ead7d6;
    line-height: 1.8;
    margin-bottom: 45px;
}

/* ================= FEATURED ================= */

.featured {
    background: #3b104b;
    text-align: center;
}

.featured .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(230, 179, 148, 0.25);
    border-radius: 28px;
    overflow: hidden;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.product-card img {
    height: 330px;
    object-fit: cover;
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    color: #e6b394;
    margin-bottom: 8px;
}

.product-info p {
    color: #ead7d6;
    margin-bottom: 12px;
}

.product-info span {
    font-weight: 600;
    color: #fff;
}

/* ================= SHOP ================= */

.shop {
    background: #2a0838;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.shop-card {
    background: #fff7f3;
    color: #2a0838;
    border-radius: 24px;
    overflow: hidden;
    padding-bottom: 20px;
    transition: 0.3s;
}

.shop-card:hover {
    transform: translateY(-8px);
}

.shop-card img {
    height: 260px;
    object-fit: cover;
}

.shop-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin: 20px 20px 8px;
    color: #642d73;
}

.shop-card p {
    margin: 0 20px 18px;
    color: #6a4b5f;
    font-size: 14px;
}

.price-row {
    margin: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row span {
    font-weight: 700;
    color: #bb6b97;
}

.price-row button {
    border: none;
    padding: 9px 15px;
    border-radius: 20px;
    background: #642d73;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.price-row button:hover {
    background: #bb6b97;
}

/* ================= WHY US ================= */

.why-us {
    background: #642d73;
    text-align: center;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 40px;
}

.benefit-card {
    padding: 36px 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(230, 179, 148, 0.25);
}

.benefit-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    color: #e6b394;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #ead7d6;
    line-height: 1.7;
}

/* ================= ARTICLE ================= */

.article {
    background: #3b104b;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-card {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(230, 179, 148, 0.25);
}

.article-card img {
    height: 250px;
    object-fit: cover;
}

.article-card div {
    padding: 24px;
}

.article-card span {
    color: #e6b394;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.article-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 29px;
    margin: 12px 0;
}

.article-card p {
    color: #ead7d6;
    line-height: 1.7;
}

/* ================= ABOUT ================= */

.about {
    background: #2a0838;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: center;
}

.about-image img {
    height: 560px;
    object-fit: cover;
    border-radius: 30px 180px 30px 180px;
    border: 1px solid rgba(230, 179, 148, 0.4);
}

.about-text p {
    color: #ead7d6;
    line-height: 1.8;
}

.mission-box {
    margin-top: 24px;
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.07);
    border-left: 4px solid #e6b394;
}

.mission-box h3 {
    color: #e6b394;
    margin-bottom: 8px;
}

/* ================= PORTFOLIO ================= */

.portfolio {
    background: #3b104b;
    text-align: center;
}

.portfolio .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: repeat(2, 260px);
    gap: 24px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.portfolio-item.large {
    grid-row: span 2;
}

.portfolio-item img {
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    background: linear-gradient(transparent, rgba(42, 8, 56, 0.88));
}

.portfolio-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #e6b394;
}

.portfolio-overlay p {
    color: #fff7f3;
}

/* ================= TESTIMONIAL ================= */

.testimonial {
    background: #642d73;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 40px;
}

.testimonial-card {
    padding: 32px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(230, 179, 148, 0.25);
}

.testimonial-card p {
    color: #fff7f3;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: #e6b394;
}

/* ================= FOOTER ================= */

.footer {
    background: #1d0528;
    padding: 60px 8% 24px;
    color: #fff7f3;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #e6b394;
    margin-bottom: 12px;
}

.footer h3 {
    color: #e6b394;
    margin-bottom: 16px;
}

.footer a,
.footer p {
    display: block;
    color: #ead7d6;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer a:hover {
    color: #e6b394;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(230, 179, 148, 0.2);
    color: #c9b8b8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .navbar {
        flex-wrap: wrap;
        gap: 18px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
    }

    .hero,
    .about {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-image img,
    .about-image img {
        height: 430px;
    }

    .product-grid,
    .article-grid,
    .benefit-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .portfolio-item,
    .portfolio-item.large {
        height: 320px;
        grid-row: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 70px 6%;
    }

    .navbar {
        padding: 20px 6%;
    }

    .logo {
        font-size: 30px;
    }

    .nav-btn {
        display: none;
    }

    .hero {
        padding: 60px 6%;
    }

    .hero h1 {
        font-size: 46px;
    }

    .section h2 {
        font-size: 40px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }

    .hero-image img,
    .about-image img {
        height: 360px;
    }
}

/* ================= JS SUPPORT STYLE ================= */

.nav-links a.active {
    color: #e6b394;
}

.toast {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9999;
    padding: 14px 22px;
    border-radius: 30px;
    background: #e6b394;
    color: #2a0838;
    font-weight: 600;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: 0.7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 90px;
    z-index: 9999;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #642d73;
    color: #fff7f3;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(25px);
    pointer-events: none;
    transition: 0.35s ease;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: #bb6b97;
}

.page-section {
    min-height: 80vh;
    padding-top: 120px;
}

/* ================= PRODUCT DETAIL ================= */

.product-detail {
    background: #2a0838;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-detail-image img {
    height: 650px;
    object-fit: cover;
    border-radius: 30px;
    border: 1px solid rgba(230, 179, 148, 0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.product-detail-info h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 68px;
    margin-bottom: 18px;
    color: #fff7f3;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: #e6b394;
    margin-bottom: 24px;
}

.product-description {
    color: #ead7d6;
    line-height: 1.9;
    margin-bottom: 30px;
}

.fragrance-notes h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    margin-bottom: 20px;
    color: #e6b394;
}

.note-box {
    background: rgba(255,255,255,0.08);
    padding: 18px;
    border-radius: 18px;
    margin-bottom: 15px;
    border-left: 4px solid #e6b394;
}

.note-box strong {
    display: block;
    margin-bottom: 8px;
    color: #fff7f3;
}

.note-box p {
    color: #ead7d6;
}

.product-actions {
    display: flex;
    gap: 18px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.buy-btn {
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    background: #e6b394;
    color: #2a0838;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.buy-btn:hover {
    background: #bb6b97;
    color: white;
}

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-image img {
        height: 450px;
    }

    .product-detail-info h1 {
        font-size: 52px;
    }
}

/* ================= ARTICLE DETAIL ================= */

.article-detail {
    background: #2a0838;
}

.article-detail-header {
    max-width: 900px;
    margin: 0 auto 45px;
    text-align: center;
}

.article-detail-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    color: #fff7f3;
    margin-bottom: 20px;
}

.article-detail-header p {
    color: #ead7d6;
    line-height: 1.8;
}

.article-detail-image {
    max-width: 1000px;
    margin: 0 auto 50px;
}

.article-detail-image img {
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
    border: 1px solid rgba(230, 179, 148, 0.3);
}

.article-content {
    max-width: 850px;
    margin: 0 auto;
    color: #ead7d6;
}

.article-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: #e6b394;
    margin: 34px 0 12px;
}

.article-content p {
    line-height: 1.9;
    margin-bottom: 20px;
}

.article-content blockquote {
    margin: 38px 0;
    padding: 28px;
    border-left: 5px solid #e6b394;
    background: rgba(255,255,255,0.08);
    border-radius: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    color: #fff7f3;
}

@media (max-width: 768px) {
    .article-detail-header h1 {
        font-size: 44px;
    }

    .article-detail-image img {
        height: 320px;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-icon {
    position: relative;
    font-size: 22px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(230,179,148,0.35);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.cart-icon span {
    position: absolute;
    top: -7px;
    right: -7px;
    background: #e6b394;
    color: #2a0838;
    font-size: 12px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.cart-list {
    display: grid;
    gap: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: auto 110px 1fr auto;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(230,179,148,0.25);
    border-radius: 22px;
    padding: 18px;
}

.cart-item img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 18px;
}

.cart-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    color: #e6b394;
}

.cart-item p {
    color: #ead7d6;
}

.remove-btn {
    border: none;
    background: #bb6b97;
    color: white;
    padding: 10px 16px;
    border-radius: 18px;
    cursor: pointer;
}

.cart-summary {
    margin-top: 35px;
    padding: 28px;
    border-radius: 24px;
    background: #fff7f3;
    color: #2a0838;
    max-width: 420px;
    margin-left: auto;
}

.cart-summary h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
}

.cart-summary p {
    font-size: 26px;
    font-weight: 700;
    color: #642d73;
    margin: 12px 0 20px;
}

.cart-summary button,
.checkout-form button {
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 28px;
    background: #642d73;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 36px;
}

.checkout-form,
.order-summary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(230,179,148,0.25);
    border-radius: 26px;
    padding: 30px;
}

.checkout-form h3,
.order-summary h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #e6b394;
    font-size: 34px;
    margin-bottom: 18px;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    margin-bottom: 16px;
    padding: 14px 16px;
    border: none;
    border-radius: 16px;
    outline: none;
    font-family: inherit;
}

.checkout-form textarea {
    min-height: 120px;
    resize: vertical;
}

.checkout-form label {
    display: block;
    margin-bottom: 14px;
    color: #ead7d6;
}

.checkout-summary-item {
    padding: 14px 0;
    border-bottom: 1px solid rgba(230,179,148,0.25);
}

.checkout-total {
    margin-top: 22px;
    font-size: 24px;
    font-weight: 700;
    color: #e6b394;
}

.empty-cart {
    padding: 30px;
    border-radius: 22px;
    background: rgba(255,255,255,0.08);
    color: #ead7d6;
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 1fr;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

.payment-options {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.payment-card {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(230,179,148,0.25);
    color: #fff7f3;
    cursor: pointer;
}

.payment-card input {
    width: auto !important;
    margin: 0 !important;
}

.payment-card span {
    font-weight: 500;
}

.payment-detail {
    display: none;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    border-left: 4px solid #e6b394;
}

.payment-detail.show {
    display: block;
}

.payment-detail select,
.payment-detail input {
    width: 100%;
    padding: 13px 15px;
    margin-bottom: 12px;
    border: none;
    border-radius: 14px;
    font-family: inherit;
    outline: none;
}

.orders-list {
    display: grid;
    gap: 22px;
}

.order-card {
    padding: 26px;
    border-radius: 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(230,179,148,0.25);
}

.order-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.order-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #e6b394;
}

.order-header p,
.order-item {
    color: #ead7d6;
}

.order-header span {
    background: #e6b394;
    color: #2a0838;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 700;
    height: fit-content;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(230,179,148,0.18);
}

.order-total {
    margin-top: 18px;
    text-align: right;
    font-size: 22px;
    font-weight: 700;
    color: #e6b394;
}

/* ================= FEATURED BRANDS ================= */

.featured-brands {
    background: #2a0838;
    text-align: center;
}

.featured-brands .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.brand-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(230,179,148,0.25);
    border-radius: 28px;
    padding: 28px 22px;
    transition: 0.3s;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.brand-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin: 0 auto 20px;
    background: white;
    padding: 14px;
    border-radius: 20px;
}

.brand-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #e6b394;
    margin-bottom: 12px;
}

.brand-card p {
    color: #ead7d6;
    line-height: 1.7;
    font-size: 14px;
}

@media (max-width: 992px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= CUSTOM SCROLLBAR ================= */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1d0528;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #e6b394, #bb6b97);
    border-radius: 20px;
    border: 3px solid #1d0528;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f0c8ad, #c979a4);
}

html {
    scrollbar-color: #e6b394 #1d0528;
    scrollbar-width: thin;
}