html {
    scroll-behavior: smooth;
}

:root {
    --cream: #f8f1e8;
    --soft-cream: #fffaf4;
    --sand: #d8b889;
    --gold: #b89052;
    --brown: #4b3628;
    --dark: #18120d;
    --muted: #7d6b5e;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(75, 54, 40, 0.16);
    --radius: 28px;
}

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

body {
    font-family: "Inter", sans-serif;
    background: var(--soft-cream);
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

.announcement {
    background: var(--dark);
    color: var(--cream);
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background: rgba(255, 250, 244, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(184, 144, 82, 0.18);
    transition: 0.3s ease;
}

.nav-inner {
    max-width: 1240px;
    margin: auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
    transition: 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn,
.menu-btn {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    border: 1px solid rgba(184, 144, 82, 0.28);

    background: rgba(255,255,255,0.72);

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    cursor: pointer;

    color: var(--brown);

    font-size: 20px;

    transition: 0.35s ease;

    backdrop-filter: blur(10px);
}

.hero {
    position: relative;
    max-width: none;
    min-height: 100vh;
    padding: 120px 24px 0;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            rgba(18, 14, 10, 0.40),
            rgba(18, 14, 10, 0.45)
        ),
        url("images/hero.JPG");

    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;

    background: linear-gradient(
        to bottom,
        transparent,
        var(--soft-cream)
    );
}

.hero-content {
    max-width: 620px;
    margin-left: 6%;
    background: transparent;
    box-shadow: none;
    border: none;
    color: white;
}

.hero p {
    max-width: 520px;
    color: #f6eade;
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.eyebrow {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(58px, 8vw, 108px);
    letter-spacing: -2px;
    max-width: 760px;
    line-height: 0.94;
    color: white;
    margin-bottom: 22px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn-primary {
    background: white;
    color: var(--dark);
    border: none;
    padding: 15px 28px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #f3ede6;
    box-shadow: 0 18px 34px rgba(0,0,0,0.18);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.35);
    color: white;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.section {
    max-width: 1240px;
    margin: auto;
    padding: 110px 24px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 32px;
}

.section-title {
    max-width: 620px;
}

.section-title h2 {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: -1px;
    font-size: clamp(36px, 5vw, 56px);
    color: var(--brown);
}

.section-title p {
    color: var(--muted);
    margin-top: 8px;
    line-height: 1.7;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.category-card {
    min-height: 420px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    background: #ead7bf;
    cursor: pointer;
}

.category-card img {
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(24, 18, 13, 0.55), transparent 62%);
}

.category-card h3 {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
    color: var(--white);
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -1px;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.12);
    z-index: 1;
    transition: 0.4s ease;
}

.category-card:hover::before {
    background: rgba(0,0,0,0.22);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px;
}

.product-card {
    background: var(--white);
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(184, 144, 82, 0.16);
    box-shadow: 0 14px 40px rgba(75, 54, 40, 0.08);
    transition: 0.25s ease;
}

.product-card:hover {
    transform: translateY(-12px);
}

.product-image {
    height: 460px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.product-image img {
    height: 100%;
    object-fit: cover;
}

.product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.08),
            transparent
        );

    opacity: 0;
    transition: 0.4s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--dark);
    color: var(--cream);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 11px;
    font-weight: 700;
}

.campaign-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    max-width: 1240px;
    margin: auto;
    padding: 90px 24px;
    align-items: center;
}

.campaign-image {
    overflow: hidden;
    border-radius: 34px;
}

.campaign-image img {
    height: 620px;
    object-fit: cover;
    transition: 0.5s ease;
}

.campaign-image:hover img {
    transform: scale(1.04);
}

.campaign-content {
    padding: 20px;
}

.campaign-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    color: var(--brown);
    margin-bottom: 24px;
}

.campaign-content p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 28px;
    max-width: 500px;
}

.product-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--brown);
}

.price {
    font-size: 16px;
    letter-spacing: 0.5px;
    color: var(--brown);
    font-weight: 800;
}


.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 14px;
}

.story {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: center;
    background: var(--dark);
    color: var(--cream);
    border-radius: 34px;
    padding: 34px;
    overflow: hidden;
}

.story img {
    border-radius: 28px;
    height: 520px;
    object-fit: cover;
}

.story h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    margin-bottom: 20px;
}

.story p {
    color: #d9c8b4;
    line-height: 1.9;
    margin-bottom: 24px;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border: 1px solid rgba(184, 144, 82, 0.16);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(75, 54, 40, 0.08);
}

.feature-card .icon {
    font-size: 30px;
    margin-bottom: 16px;
}

.feature-card h3 {
    color: var(--brown);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--muted);
    line-height: 1.7;
}

.newsletter {
    text-align: center;
    background: linear-gradient(135deg, var(--cream), #ecd5b9);
    border-radius: 34px;
    padding: 58px 24px;
    border: 1px solid rgba(184, 144, 82, 0.22);
}

.newsletter h2 {
    font-family: "Cormorant Garamond", serif;
    color: var(--brown);
    font-size: clamp(38px, 5vw, 60px);
    margin-bottom: 12px;
}

.newsletter p {
    color: var(--muted);
    margin-bottom: 26px;
}

.newsletter-form {
    max-width: 520px;
    margin: auto;
    display: flex;
    background: var(--white);
    border-radius: 999px;
    padding: 8px;
    box-shadow: 0 18px 44px rgba(75, 54, 40, 0.12);
}

.newsletter-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 18px;
    font-size: 14px;
    background: transparent;
}

footer {
    background: #0f0c09;
    color: var(--cream);
    padding: 52px 24px 24px;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1240px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 32px;
    padding-bottom: 40px;
}

.footer-logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.footer-col a:hover {
    color: white;
    transform: translateX(3px);
}

footer p,
footer a {
    color: #cdbda9;
    font-size: 14px;
    line-height: 1.8;
}

footer h4 {
    margin-bottom: 14px;
    color: var(--white);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.copyright {
    max-width: 1240px;
    margin: 36px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #b9aa99;
    font-size: 13px;
    text-align: center;
}

@media (max-width: 1050px) {

    .hero,
    .story {
        grid-template-columns: 1fr;
    }

    .category-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features,
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .nav-links {
        position: fixed;
        top: 103px;
        left: 16px;
        right: 16px;
        background: var(--white);
        border-radius: 22px;
        box-shadow: var(--shadow);
        padding: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        padding-top: 30px;
    }

    .hero-content {
        padding: 0;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .category-grid,
    .products-grid,
    .features,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        border-radius: 24px;
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-form input {
        min-height: 46px;
    }
}

.navbar.scrolled {
    background: rgba(255, 250, 244, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 30px rgba(75, 54, 40, 0.08);
}

.product-image img {
    transition: 0.45s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 22px 4px 18px;
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 120px 24px 60px;
        align-items: flex-end;
    }

    .hero-content {
        margin-left: 0;
        padding: 0;
    }

    .campaign-section {
        grid-template-columns: 1fr;
        padding: 60px 24px;
    }

    .campaign-image img {
        height: 420px;
    }

    .campaign-content h2 {
        font-size: 42px;
    }
}

.nav-links a:hover {
    color: white;
}

.navbar.scrolled .logo {
    color: var(--brown);
}

.navbar.scrolled .nav-links {
    color: var(--muted);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--brown);
}

.navbar.scrolled .icon-btn,
.navbar.scrolled .menu-btn {
    background: white;
    color: var(--brown);
    border: 1px solid rgba(184, 144, 82, 0.28);
}

.scroll-indicator {
    margin-top: 80px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.campaign-image img {
    animation: floatImage 7s ease-in-out infinite;
}

* {
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

button,
a,
.category-card,
.product-card {
    cursor: pointer;
}

.category-card,
.product-card,
.btn,
.icon-btn {
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        opacity 0.4s ease;
}

.icon-btn:hover,
.menu-btn:hover {
    background: var(--brown);
    color: white;
}

.hero-subtitle {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.products-page {
    max-width: 1240px;
    margin: auto;
    padding: 150px 24px 90px;
}

.products-page-header {
    max-width: 620px;
    margin-bottom: 36px;
}

.products-page-header h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 7vw, 86px);
    color: var(--brown);
    line-height: 1;
    margin-bottom: 12px;
}

.products-page-header p {
    color: var(--muted);
    line-height: 1.8;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 46px;
}

.filter-btn {
    border: 1px solid rgba(75, 54, 40, 0.18);
    background: transparent;
    color: var(--brown);
    padding: 12px 18px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--brown);
    color: var(--cream);
}

.product-detail-page {
    max-width: 1240px;
    margin: auto;
    padding: 150px 24px 90px;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 56px;
    align-items: start;
}

.detail-image {
    background: var(--cream);
    border-radius: 34px;
    overflow: hidden;
}

.detail-image img {
    height: 720px;
    object-fit: cover;
}

.detail-info {
    position: sticky;
    top: 120px;
}

.detail-info h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1;
    color: var(--brown);
    margin-bottom: 18px;
}

.detail-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 22px;
}

.detail-desc {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 34px;
}

.detail-option {
    margin-bottom: 26px;
}

.detail-option h4 {
    color: var(--brown);
    margin-bottom: 12px;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-btn {
    border: 1px solid rgba(75, 54, 40, 0.2);
    background: transparent;
    color: var(--brown);
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
}

.option-btn.active {
    background: var(--brown);
    color: var(--cream);
}

#quantity {
    width: 100px;
    padding: 12px;
    border-radius: 999px;
    border: 1px solid rgba(75, 54, 40, 0.2);
    text-align: center;
}

.detail-btn {
    width: 100%;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .product-detail-page {
        grid-template-columns: 1fr;
        padding: 120px 24px 70px;
    }

    .detail-image img {
        height: 480px;
    }

    .detail-info {
        position: static;
    }
}

.cart-page {
    max-width: 1240px;
    margin: auto;
    padding: 150px 24px 100px;
}

.cart-header {
    margin-bottom: 50px;
}

.cart-header h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 7vw, 88px);
    color: var(--brown);
}

.cart-item {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 28px;
    align-items: center;

    padding: 24px 0;
    border-bottom: 1px solid rgba(75,54,40,0.1);
}

.cart-item-image img {
    height: 220px;
    object-fit: cover;
    border-radius: 24px;
}

.cart-item-info h3 {
    font-size: 28px;
    color: var(--brown);
    margin-bottom: 12px;
}

.cart-item-info p {
    color: var(--muted);
    margin-bottom: 8px;
}

.cart-price {
    font-weight: 700;
    color: var(--brown);
}

.remove-btn {
    border: none;
    background: transparent;
    color: #9a6d57;
    cursor: pointer;
    font-weight: 600;
}

.cart-summary {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 32px;
    border-top: 1px solid rgba(75,54,40,0.12);
}

.cart-summary h3 {
    font-size: 32px;
    color: var(--brown);
}

.cart-summary p {
    font-size: 28px;
    font-weight: 700;
    color: var(--brown);
}

@media (max-width: 768px) {

    .cart-item {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

.checkout-page {
    max-width: 1240px;
    margin: auto;
    padding: 150px 24px 100px;
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 56px;
}

.checkout-form,
.checkout-summary {
    background: white;
    border-radius: 32px;
    padding: 38px;
    box-shadow: 0 18px 50px rgba(75, 54, 40, 0.08);
}

.checkout-form h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    color: var(--brown);
    margin-bottom: 28px;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
    width: 100%;
    padding: 15px 18px;
    margin-bottom: 14px;
    border: 1px solid rgba(75, 54, 40, 0.18);
    border-radius: 18px;
    outline: none;
    font-family: inherit;
}

.checkout-form textarea {
    min-height: 120px;
    resize: vertical;
}

.checkout-summary h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    color: var(--brown);
    margin-bottom: 24px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(75, 54, 40, 0.1);
}

.checkout-item p {
    color: var(--muted);
    font-size: 14px;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
    font-size: 22px;
    color: var(--brown);
}

@media (max-width: 768px) {
    .checkout-page {
        grid-template-columns: 1fr;
        padding: 120px 24px 70px;
    }
}

.cart-icon {
    position: relative;
}

.login-page {
    min-height: 100vh;
    padding: 140px 24px 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--soft-cream);
}

.login-box {
    width: 100%;
    max-width: 460px;
    background: white;
    padding: 44px;
    border-radius: 32px;
    box-shadow: 0 18px 50px rgba(75, 54, 40, 0.1);
}

.login-box h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    color: var(--brown);
    margin-bottom: 12px;
}

.login-box p {
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.login-box input {
    width: 100%;
    padding: 15px 18px;
    margin-bottom: 14px;
    border: 1px solid rgba(75, 54, 40, 0.18);
    border-radius: 999px;
    outline: none;
    font-family: inherit;
}

.login-box button {
    width: 100%;
    margin-top: 10px;
}

.login-note {
    display: block;
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.checkout-user-box {
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 18px;
    background: var(--cream);
    color: var(--brown);
    line-height: 1.6;
}

.checkout-user-box a {
    font-weight: 700;
    text-decoration: underline;
}

/* =========================
   CART DRAWER
========================= */

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);

    opacity: 0;
    visibility: hidden;

    transition: 0.4s ease;

    z-index: 998;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -480px;

    width: 460px;
    max-width: 100%;

    height: 100vh;

    background: white;

    display: flex;
    flex-direction: column;

    transition: 0.45s ease;

    z-index: 999;
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 1px solid rgba(75,54,40,0.08);
}

.cart-drawer-header h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    color: var(--brown);
}

.cart-drawer-header button {
    border: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    color: var(--brown);
}

.drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.drawer-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;

    margin-bottom: 24px;
}

.drawer-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 20px;
}

.drawer-item h4 {
    color: var(--brown);
    margin-bottom: 8px;
}

.drawer-item p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 6px;
}

.drawer-item-price {
    font-weight: 700;
    color: var(--brown);
}

.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid rgba(75,54,40,0.08);

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.drawer-total {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 12px;

    color: var(--brown);
}

.drawer-total strong {
    font-size: 22px;
}

@media (max-width: 768px) {

    .cart-drawer {
        width: 100%;
    }

}

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 12, 9, 0.72);
    backdrop-filter: blur(10px);
    z-index: 1200;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-box-popup {
    width: min(720px, 92%);
    background: var(--soft-cream);
    border-radius: 34px;
    padding: 42px;
    position: relative;
}

.search-box-popup h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 6vw, 68px);
    color: var(--brown);
    margin-bottom: 24px;
}

#searchInput {
    width: 100%;
    padding: 16px 20px;
    border-radius: 999px;
    border: 1px solid rgba(75, 54, 40, 0.2);
    outline: none;
    margin-bottom: 28px;
}

.search-result-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(75, 54, 40, 0.1);
}

.search-result-item img {
    height: 88px;
    object-fit: cover;
    border-radius: 16px;
}

.search-result-item h4 {
    color: var(--brown);
    margin-bottom: 6px;
}

.search-result-item p {
    color: var(--muted);
    font-size: 14px;
}

.detail-gallery {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.thumbnail-gallery img {
    height: 140px;
    object-fit: cover;
    border-radius: 18px;
    cursor: pointer;
    opacity: 0.65;
    border: 2px solid transparent;
}

.thumbnail-gallery img.active,
.thumbnail-gallery img:hover {
    opacity: 1;
    border-color: var(--brown);
}

.quick-view-btn {
    position: absolute;
    left: 50%;
    bottom: 110px;
    transform: translateX(-50%) translateY(12px);

    opacity: 0;
    visibility: hidden;

    border: none;
    border-radius: 999px;
    padding: 12px 20px;

    background: white;
    color: var(--brown);

    font-weight: 700;
    cursor: pointer;

    transition: 0.35s ease;
    z-index: 5;
}

.product-card {
    position: relative;
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.quick-view-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 12, 9, 0.55);
    backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;

    transition: 0.35s ease;
    z-index: 1300;
}

.quick-view-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quick-view-modal {
    position: fixed;
    top: 50%;
    left: 50%;

    width: min(920px, 92%);
    background: var(--soft-cream);

    border-radius: 34px;
    overflow: hidden;

    display: grid;
    grid-template-columns: 1fr 1fr;

    transform: translate(-50%, -45%) scale(0.96);
    opacity: 0;
    visibility: hidden;

    transition: 0.35s ease;
    z-index: 1301;
}

.quick-view-modal.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.quick-view-close {
    position: absolute;
    top: 20px;
    right: 20px;

    border: none;
    background: white;

    width: 38px;
    height: 38px;
    border-radius: 50%;

    cursor: pointer;
    z-index: 5;
}

.quick-view-image img {
    height: 560px;
    object-fit: cover;
}

.quick-view-info {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quick-view-info h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    color: var(--brown);
    margin-bottom: 18px;
}

.quick-view-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 20px;
}

.quick-view-desc {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    .quick-view-modal {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }

    .quick-view-image img {
        height: 360px;
    }

    .quick-view-info {
        padding: 32px;
    }

    .quick-view-btn {
        opacity: 1;
        visibility: visible;
        bottom: 95px;
    }
}

.wishlist-icon {
    position: relative;
}

.cart-count,
.wishlist-count {
    position: absolute;
    top: -7px;
    right: -7px;

    width: 20px;
    height: 20px;

    border-radius: 50%;
    background: var(--gold);
    color: white;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    pointer-events: none;
}

.wishlist-btn {
    position: absolute;
    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    border-radius: 50%;
    border: none;

    background: rgba(255,255,255,0.9);
    color: var(--brown);

    font-size: 22px;
    cursor: pointer;
    z-index: 6;

    transition: 0.3s ease;
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background: var(--brown);
    color: white;
}

.wishlist-page {
    max-width: 1240px;
    margin: auto;
    padding: 150px 24px 100px;
}

.wishlist-header {
    margin-bottom: 50px;
}

.wishlist-header h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 7vw, 88px);
    color: var(--brown);
}

.empty-wishlist {
    color: var(--muted);
    font-size: 18px;
}

.search-box-popup {
    position: relative;
}

.search-close {
    position: absolute;
    top: 22px;
    right: 22px;

    width: 42px;
    height: 42px;

    border-radius: 50%;
    border: none;

    background: var(--brown);
    color: white;

    font-size: 20px;
    cursor: pointer;

    z-index: 2000;

    display: flex;
    align-items: center;
    justify-content: center;
}

.account-page {
    min-height: 100vh;
    padding: 150px 24px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.account-box {
    width: 100%;
    max-width: 520px;
    background: white;
    border-radius: 34px;
    padding: 40px;
    box-shadow: 0 18px 50px rgba(75, 54, 40, 0.1);
}

.account-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--cream);
    border-radius: 999px;
    padding: 6px;
    margin-bottom: 34px;
}

.account-tab {
    border: none;
    background: transparent;
    border-radius: 999px;
    padding: 13px;
    cursor: pointer;
    font-weight: 700;
    color: var(--brown);
}

.account-tab.active {
    background: var(--brown);
    color: white;
}

.account-form {
    display: none;
}

.account-form.active {
    display: block;
}

.account-form h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    color: var(--brown);
    margin-bottom: 24px;
}

.account-form input {
    width: 100%;
    padding: 15px 18px;
    margin-bottom: 14px;
    border: 1px solid rgba(75,54,40,0.18);
    border-radius: 999px;
    outline: none;
}

.account-form button {
    width: 100%;
    margin-top: 10px;
}

.account-status {
    margin-top: 18px;
    color: var(--brown);
    text-align: center;
    font-weight: 600;
}

.user-menu {
    color: var(--brown);
    font-size: 14px;
    font-weight: 700;
}

.user-menu button {
    border: none;
    background: transparent;
    color: var(--brown);
    cursor: pointer;
    font-weight: 700;
    margin-left: 8px;
}

.google-login-box {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-divider {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 14px;
}

/* =========================
   MOBILE NAVIGATION
========================= */

.menu-btn {
    display: none;
}

@media (max-width: 900px) {

    .menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 92px;
        left: 50%;
        transform: translateX(-50%) translateY(-20px);

        width: min(92%, 420px);

        background: rgba(255,255,255,0.96);
        backdrop-filter: blur(18px);

        border-radius: 30px;
        padding: 24px;

        flex-direction: column;
        gap: 18px;

        box-shadow:
            0 24px 60px rgba(75,54,40,0.12);

        opacity: 0;
        visibility: hidden;

        transition: 0.35s ease;

        z-index: 1200;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .nav-links a {
        color: var(--brown);
        font-size: 15px;
        font-weight: 700;
    }
}

@media (min-width: 901px) {
    .menu-btn {
        display: none;
    }
}

.account-dropdown-wrapper {
    position: relative;
}

.account-dropdown {
    position: absolute;
    top: 70px;
    right: 0;

    width: 220px;

    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(18px);

    border-radius: 24px;

    padding: 18px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    box-shadow:
        0 24px 60px rgba(75,54,40,0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: 0.3s ease;

    z-index: 1400;
}

.account-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-dropdown-user {
    font-weight: 700;
    color: var(--brown);

    padding-bottom: 12px;
    border-bottom: 1px solid rgba(75,54,40,0.08);

    margin-bottom: 6px;
}

.account-dropdown a,
.account-dropdown button {
    border: none;
    background: transparent;

    text-align: left;

    color: var(--brown);
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    padding: 10px 6px;
    border-radius: 12px;

    transition: 0.25s ease;
}

.account-dropdown a:hover,
.account-dropdown button:hover {
    background: rgba(75,54,40,0.06);
}

.orders-page {
    max-width: 1240px;
    margin: auto;
    padding: 150px 24px 100px;
}

.orders-header {
    margin-bottom: 48px;
}

.orders-header h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 7vw, 88px);
    color: var(--brown);
}

.order-card {
    background: white;
    border-radius: 28px;
    padding: 28px;
    margin-bottom: 22px;
    box-shadow: 0 18px 50px rgba(75, 54, 40, 0.08);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.order-card h3 {
    color: var(--brown);
    margin-bottom: 8px;
}

.order-card p {
    color: var(--muted);
    line-height: 1.7;
}

.order-status {
    background: var(--cream);
    color: var(--brown);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
}

.empty-orders {
    color: var(--muted);
    font-size: 18px;
}

.admin-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px 1fr;
    background: var(--soft-cream);
}

.admin-sidebar {
    background: #0f0c09;
    color: white;
    padding: 34px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.admin-sidebar h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    margin-bottom: 30px;
}

.admin-sidebar a,
.admin-sidebar button {
    color: #d8c9b8;
    background: transparent;
    border: none;
    text-align: left;
    padding: 12px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
}

.admin-sidebar a:hover,
.admin-sidebar button:hover {
    background: rgba(255,255,255,0.08);
    color: white;
}

.admin-main {
    padding: 48px;
}

.admin-header h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 72px;
    color: var(--brown);
}

.admin-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 34px 0;
}

.admin-card {
    background: white;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 18px 50px rgba(75,54,40,0.08);
}

.admin-card span {
    color: var(--muted);
    font-size: 14px;
}

.admin-card strong {
    display: block;
    margin-top: 10px;
    font-size: 32px;
    color: var(--brown);
}

.admin-table-box {
    background: white;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 18px 50px rgba(75,54,40,0.08);
    overflow-x: auto;

    margin-bottom: 28px;
}

.admin-table-box h2 {
    color: var(--brown);
    margin-bottom: 20px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(75,54,40,0.08);
    text-align: left;
    font-size: 14px;
}

.admin-table th {
    color: var(--brown);
}

.admin-table td {
    color: var(--muted);
}

@media (max-width: 900px) {
    .admin-page {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
    }

    .admin-cards {
        grid-template-columns: 1fr;
    }

    .admin-main {
        padding: 28px;
    }
}

.admin-status-select {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(75,54,40,0.18);
    background: var(--cream);
    color: var(--brown);
    font-weight: 700;
    outline: none;
}

.product-management-box {
    margin-top: 34px;
}

.admin-product-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.admin-product-form input,
.admin-product-form select,
.admin-product-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(75,54,40,0.18);
    border-radius: 16px;
    outline: none;
    font-family: inherit;
}

.admin-product-form textarea {
    grid-column: span 2;
    min-height: 120px;
    resize: vertical;
}

.admin-product-form button {
    width: fit-content;
}

@media (max-width: 768px) {
    .admin-product-form {
        grid-template-columns: 1fr;
    }

    .admin-product-form textarea {
        grid-column: span 1;
    }
}

.admin-modal-overlay {
    position: fixed;
    inset: 0;

    background: rgba(15, 12, 9, 0.65);
    backdrop-filter: blur(10px);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: 0.3s ease;

    z-index: 5000;
}

.admin-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.admin-modal {
    width: min(92%, 760px);
    background: white;
    border-radius: 34px;
    padding: 34px;
    max-height: 92vh;
    overflow-y: auto;
}

.admin-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.admin-modal-header h2 {
    color: var(--brown);
}

.admin-modal-close {
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}

.detail-stock {
    color: var(--brown);
    font-weight: 700;
    margin-bottom: 24px;
}

.status-pending {
    color: #b7791f;
    font-weight: 700;
}

.status-paid {
    color: #2f855a;
    font-weight: 700;
}

.status-shipped {
    color: #2b6cb0;
    font-weight: 700;
}

.status-completed {
    color: #276749;
    font-weight: 700;
}

.status-cancelled {
    color: #c53030;
    font-weight: 700;
}

.order-item-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(75,54,40,0.1);
}

.order-item-row img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 18px;
}

.order-item-row h4 {
    color: var(--brown);
    margin-bottom: 8px;
}

.order-item-row p {
    color: var(--muted);
    margin-bottom: 6px;
}

.admin-table a {
    color: var(--brown);
    font-weight: 700;
    text-decoration: underline;
}

.packing-slip {
    background: white;
    max-width: 820px;
    padding: 42px;
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(75,54,40,0.08);
}

.packing-brand {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid rgba(75,54,40,0.15);
    padding-bottom: 22px;
    margin-bottom: 26px;
}

.packing-brand h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 46px;
    color: var(--brown);
}

.packing-order-code {
    font-weight: 800;
    color: var(--brown);
}

.packing-section {
    margin-bottom: 24px;
}

.packing-section h3 {
    color: var(--brown);
    margin-bottom: 10px;
}

.packing-section p {
    color: var(--muted);
    margin-bottom: 6px;
}

.packing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
}

.packing-table th,
.packing-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(75,54,40,0.12);
    text-align: left;
}

.packing-total {
    margin-top: 26px;
    text-align: right;
}

.packing-total p {
    margin-bottom: 6px;
    color: var(--muted);
}

.packing-footer {
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px dashed rgba(75,54,40,0.35);
    text-align: center;
}

@media print {
    .admin-sidebar,
    .admin-header button {
        display: none !important;
    }

    .admin-page {
        display: block;
    }

    .admin-main {
        padding: 0;
    }

    .packing-slip {
        max-width: none;
        box-shadow: none;
        border-radius: 0;
    }
}

.order-actions {
    margin-top: 24px;
}

.destination-results {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.destination-result-item {
    border: 1px solid rgba(75,54,40,0.14);
    background: white;
    color: var(--brown);
    padding: 12px 16px;
    border-radius: 14px;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
}

.destination-result-item:hover {
    background: var(--cream);
}

.cart-qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cart-qty-control button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(75,54,40,0.2);
    background: white;
    color: var(--brown);
    cursor: pointer;
    font-weight: 800;
}

.cart-qty-control span {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
}

.shipping-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,12,9,0.55);
    backdrop-filter: blur(8px);
    z-index: 3000;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.shipping-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.shipping-popup {
    width: min(92%, 620px);
    background: var(--soft-cream);
    border-radius: 30px;
    padding: 28px;
}

.shipping-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.shipping-popup-header h3 {
    color: var(--brown);
    font-size: 24px;
}

.shipping-popup-header button {
    border: none;
    background: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
}

.shipping-rate-results {
    display: grid;
    gap: 12px;
}

.shipping-rate-item {
    border: 1px solid rgba(75,54,40,0.14);
    background: white;
    color: var(--brown);

    padding: 16px 18px;
    border-radius: 18px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;

    cursor: pointer;
    text-align: left;
}

.shipping-rate-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(75,54,40,0.08);
}

.shipping-rate-item strong {
    font-size: 15px;
}

.shipping-rate-item span {
    font-weight: 800;
}

.shipping-rate-item small {
    color: var(--muted);
}

.order-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin: 24px 0;
}

.timeline-step {
    position: relative;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(75,54,40,0.18);
    margin: 0 auto 8px;
}

.timeline-step.active {
    color: var(--brown);
}

.timeline-step.active .timeline-dot {
    background: var(--brown);
}

.timeline-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(75,54,40,0.14);
    z-index: -1;
}

.timeline-step.active:not(:last-child)::after {
    background: var(--brown);
}

.analytics-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(75,54,40,0.1);
    color: var(--brown);
}

.analytics-row.warning strong {
    color: #c53030;
}

.policy-page {
    padding: 120px 8%;
    min-height: 100vh;
}

.policy-container {
    max-width: 800px;
    margin: auto;
}

.policy-card {
    background: #fff;
    padding: 28px;
    border-radius: 24px;
    margin-top: 24px;
    border: 1px solid rgba(75,54,40,0.08);
}

.policy-card h3 {
    margin-bottom: 12px;
    color: var(--brown);
}

/* =========================
   ABOUT PAGE — LUXURY STORY
========================= */

.about-luxury-hero {
    position: relative;
    min-height: 92vh;
    padding: 170px 8% 120px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            rgba(16, 11, 8, 0.40),
            rgba(16, 11, 8, 0.48)
        ),
        url("images/about-heritage.JPG") center/cover no-repeat;
    overflow: hidden;
}

.about-luxury-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--soft-cream)
    );
}

.about-luxury-content {
    position: relative;
    max-width: 620px;
    color: white;
    z-index: 2;
}

.about-luxury-content h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(56px, 8vw, 106px);
    line-height: 0.95;
    letter-spacing: -2px;
    color: white;
    margin: 18px 0 24px;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.about-luxury-content p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.9;
}

.about-editorial,
.about-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    padding: 120px 8%;
}

.about-editorial-text h2,
.about-vision-content h2,
.about-achievements h2,
.about-closing h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1;
    color: var(--brown);
    margin-bottom: 24px;
}

.about-editorial-text p,
.about-vision-content p,
.about-closing p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-editorial-image img,
.about-vision-image img,
.about-gallery img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 34px;
}

.about-signature {
    padding: 40px 8% 120px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.signature-card {
    background: white;
    border-radius: 32px;
    padding: 36px;
    border: 1px solid rgba(75,54,40,0.08);
    box-shadow: 0 18px 45px rgba(75,54,40,0.06);
}

.signature-card span {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0.18em;
    font-size: 12px;
}

.signature-card h3 {
    margin: 18px 0 12px;
    color: var(--brown);
    font-size: 24px;
}

.signature-card p {
    color: var(--muted);
    line-height: 1.8;
}

.vision-list {
    display: grid;
    gap: 24px;
    margin-top: 32px;
}

.vision-list div {
    padding: 26px;
    background: white;
    border-radius: 26px;
    border: 1px solid rgba(75,54,40,0.08);
}

.vision-list h3 {
    color: var(--brown);
    margin-bottom: 10px;
}

.about-achievements {
    padding: 120px 8%;
    background: linear-gradient(180deg, rgba(255,248,239,0.8), rgba(255,255,255,0));
}

.timeline {
    margin-top: 56px;
    display: grid;
    gap: 24px;
    position: relative;
}

.timeline-item {
    background: white;
    border-radius: 30px;
    padding: 34px;
    border: 1px solid rgba(75,54,40,0.08);
    box-shadow: 0 16px 40px rgba(75,54,40,0.05);
}

.timeline-item span {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0.18em;
    font-size: 12px;
}

.timeline-item h3 {
    margin: 14px 0 10px;
    color: var(--brown);
    font-size: 24px;
}

.timeline-item p {
    color: var(--muted);
    line-height: 1.8;
}

.about-gallery {
    padding: 80px 8%;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 24px;
}

.about-gallery div:nth-child(2) img {
    height: 760px;
}

.about-closing {
    text-align: center;
    padding: 120px 8% 150px;
    max-width: 900px;
    margin: auto;
}

.about-closing p {
    margin: 0 auto 32px;
    max-width: 680px;
}

@media (max-width: 900px) {
    .about-editorial,
    .about-vision,
    .about-signature,
    .about-gallery {
        grid-template-columns: 1fr;
    }

    .about-editorial-image img,
    .about-vision-image img,
    .about-gallery img,
    .about-gallery div:nth-child(2) img {
        height: 420px;
    }

    .about-luxury-hero {
        min-height: 78vh;
        padding-top: 140px;
    }
}

.admin-product-form > .btn.btn-primary {
    margin-top: 24px;
    align-self: flex-start;
}

.admin-modal {
    width: 94%;
    max-width: 1150px;
}

/* FIX VARIANT EDITOR LAYOUT */
.admin-product-form .variant-editor {
    grid-column: 1 / -1;
    width: 100%;
}

.admin-product-form > input[type="hidden"] {
    display: none;
}

.admin-product-form > button[type="submit"] {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 18px;
}

.variant-editor-header,
.variant-row {
    display: grid;
    grid-template-columns: 220px 120px 1fr 46px;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.variant-row textarea {
    min-height: 76px;
}

.variant-remove-btn {
    justify-self: center;
    align-self: center;
}

.variant-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

.variant-actions .btn {
    background: var(--brown);
    color: white;
    border: none;
}

.sold-out {
    opacity: 0.45;
    cursor: not-allowed;
}

/* =========================
   INVENTORY ALERT WIDGET
========================= */

.warning-card {
    border-left: 4px solid #d89b3d;
}

.inventory-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 18px 0;
}

.inventory-stat {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    border: 1px solid rgba(75,54,40,0.08);
}

.inventory-stat span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 8px;
}

.inventory-stat strong {
    display: block;
    font-size: 34px;
    line-height: 1;
}

.inventory-stat.critical strong {
    color: #d63b52;
}

.inventory-stat.warning strong {
    color: #c58b22;
}

.inventory-toggle-btn {
    width: 100%;
    padding: 12px 18px;
    border-radius: 999px;
    border: none;
    background: var(--brown);
    color: white;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 16px;
}

.inventory-details {
    max-height: 360px;
    overflow-y: auto;
    padding-right: 8px;
}

.inventory-product-group {
    background: rgba(255,255,255,0.65);
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 14px;
    border: 1px solid rgba(75,54,40,0.08);
}

.inventory-product-group h4 {
    color: var(--brown);
    margin-bottom: 12px;
    font-size: 15px;
}

.inventory-variant-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 9px 0;
    border-top: 1px solid rgba(75,54,40,0.08);
}

.inventory-variant-row span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
}

.inventory-variant-row strong {
    white-space: nowrap;
    font-size: 15px;
    color: #c53030;
}

/* =========================
   PARTNERSHIP PAGE — LUXURY OVERRIDE
========================= */

.partner-hero-luxury {
    min-height: 92vh;
    padding: 170px 8% 120px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            rgba(16, 11, 8, 0.48),
            rgba(16, 11, 8, 0.58)
        ),
        url("images/Scarfola Collaboration.jpg") center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.partner-hero-luxury::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--soft-cream)
    );
}

.partner-hero-content {
    max-width: 780px;
    position: relative;
    z-index: 2;
    color: white;
}

.partner-hero-content h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(56px, 8vw, 106px);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.partner-hero-content p {
    max-width: 620px;
    color: #f1e4d3;
    font-size: 18px;
    line-height: 1.9;
}

.partner-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.partner-options-luxury {
    max-width: 1240px;
    margin: -70px auto 0;
    padding: 0 24px 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
    z-index: 5;
}

.partner-card {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(184, 144, 82, 0.22);
    border-radius: 30px;
    padding: 32px;
    min-height: 270px;
    box-shadow: 0 24px 70px rgba(75, 54, 40, 0.12);
    transition: 0.35s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 34px 90px rgba(75, 54, 40, 0.18);
}

.partner-card span {
    display: inline-flex;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0.18em;
    font-size: 12px;
    margin-bottom: 34px;
}

.partner-card h3 {
    font-family: "Cormorant Garamond", serif;
    color: var(--brown);
    font-size: 36px;
    margin-bottom: 14px;
}

.partner-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
}

.partner-intro-luxury {
    max-width: 1240px;
    margin: auto;
    padding: 30px 24px 100px;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 70px;
    align-items: start;
}

.partner-intro-luxury h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1;
    color: var(--brown);
}

.partner-intro-text p {
    color: var(--muted);
    line-height: 1.9;
    font-size: 17px;
}

.partner-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.partner-values span {
    background: white;
    border: 1px solid rgba(184, 144, 82, 0.18);
    border-radius: 999px;
    padding: 14px 18px;
    color: var(--brown);
    font-weight: 700;
    text-align: center;
}

.partner-editorial {
    max-width: 1240px;
    margin: auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 56px;
    align-items: center;
}

.partner-editorial.reverse {
    grid-template-columns: 1fr 0.85fr;
}

.partner-copy {
    background: white;
    border: 1px solid rgba(184, 144, 82, 0.16);
    border-radius: 34px;
    padding: 46px;
    box-shadow: 0 22px 60px rgba(75, 54, 40, 0.08);
}

.partner-copy h2 {
    font-family: "Cormorant Garamond", serif;
    color: var(--brown);
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1;
    margin-bottom: 22px;
}

.partner-copy p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 24px;
}

.partner-copy ul {
    display: grid;
    gap: 12px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.partner-copy li {
    color: var(--brown);
    padding-left: 24px;
    position: relative;
    line-height: 1.7;
}

.partner-copy li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 22px;
    line-height: 1;
}

.partner-image {
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 26px 80px rgba(75, 54, 40, 0.16);
}

.partner-image img {
    height: 640px;
    object-fit: cover;
    transition: 0.55s ease;
}

.partner-image:hover img {
    transform: scale(1.04);
}

.partner-process-luxury {
    max-width: 1240px;
    margin: 70px auto;
    padding: 90px 24px;
    text-align: center;
}

.partner-process-luxury h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 6vw, 76px);
    color: var(--brown);
    line-height: 1;
    margin-bottom: 50px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-grid div {
    background: white;
    border-radius: 30px;
    padding: 34px;
    border: 1px solid rgba(184, 144, 82, 0.16);
    box-shadow: 0 18px 50px rgba(75, 54, 40, 0.08);
    text-align: left;
}

.process-grid span {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0.18em;
    font-size: 12px;
}

.process-grid h3 {
    color: var(--brown);
    margin: 22px 0 12px;
    font-size: 22px;
}

.process-grid p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 14px;
}

.partner-closing-luxury {
    max-width: 1120px;
    margin: 80px auto 120px;
    padding: 80px 38px;
    text-align: center;
    border-radius: 40px;
    background:
        linear-gradient(
            135deg,
            rgba(75, 54, 40, 0.92),
            rgba(24, 18, 13, 0.96)
        );
    color: white;
    box-shadow: 0 30px 90px rgba(75, 54, 40, 0.22);
}

.partner-closing-luxury h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1;
    margin-bottom: 20px;
}

.partner-closing-luxury p {
    max-width: 640px;
    margin: 0 auto 32px;
    color: #e8d8c5;
    line-height: 1.9;
}

.partner-closing-luxury .btn-primary {
    background: white;
    color: var(--brown);
}

@media (max-width: 1050px) {
    .partner-options-luxury,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-intro-luxury,
    .partner-editorial,
    .partner-editorial.reverse {
        grid-template-columns: 1fr;
    }

    .partner-editorial.reverse .partner-image {
        order: 2;
    }

    .partner-editorial.reverse .partner-copy {
        order: 1;
    }
}

@media (max-width: 720px) {
    .partner-hero-luxury {
        padding: 140px 24px 90px;
        min-height: 86vh;
    }

    .partner-options-luxury,
    .process-grid,
    .partner-values {
        grid-template-columns: 1fr;
    }

    .partner-options-luxury {
        margin-top: -40px;
        padding-bottom: 60px;
    }

    .partner-copy {
        padding: 30px;
    }

    .partner-image img {
        height: 420px;
    }

    .partner-closing-luxury {
        margin: 50px 24px 90px;
        padding: 56px 26px;
    }
}

/* =========================
   SHIPPING INFORMATION PAGE
========================= */

.shipping-info-page {
    max-width: 1240px;
    margin: auto;
    padding: 150px 24px 100px;
}

.shipping-info-header {
    max-width: 760px;
    margin-bottom: 54px;
}

.shipping-info-header h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 7vw, 86px);
    line-height: 1;
    color: var(--brown);
    margin-bottom: 18px;
}

.shipping-info-header p {
    color: var(--muted);
    line-height: 1.9;
    font-size: 17px;
}

.shipping-info-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 70px;
}

.shipping-info-card {
    background: white;
    border: 1px solid rgba(184, 144, 82, 0.16);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 18px 50px rgba(75, 54, 40, 0.08);
}

.shipping-info-card span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.shipping-info-card h3 {
    color: var(--brown);
    font-size: 24px;
    margin: 26px 0 12px;
}

.shipping-info-card p {
    color: var(--muted);
    line-height: 1.8;
}

.shipping-info-detail {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 80px;
}

.shipping-info-copy,
.shipping-info-panel {
    background: white;
    border: 1px solid rgba(184, 144, 82, 0.16);
    border-radius: 34px;
    padding: 42px;
    box-shadow: 0 18px 50px rgba(75, 54, 40, 0.08);
}

.shipping-info-copy h2,
.shipping-info-faq h2 {
    font-family: "Cormorant Garamond", serif;
    color: var(--brown);
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;
    margin-bottom: 18px;
}

.shipping-info-copy p,
.shipping-info-panel p,
.shipping-note-grid p {
    color: var(--muted);
    line-height: 1.85;
}

.shipping-note-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.shipping-note-list div {
    padding: 20px;
    border-radius: 22px;
    background: var(--soft-cream);
    border: 1px solid rgba(184, 144, 82, 0.12);
}

.shipping-note-list strong {
    display: block;
    color: var(--brown);
    margin-bottom: 6px;
}

.shipping-info-panel {
    background:
        linear-gradient(
            135deg,
            rgba(75, 54, 40, 0.94),
            rgba(24, 18, 13, 0.96)
        );
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shipping-info-panel h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 18px;
}

.shipping-info-panel p {
    color: #e8d8c5;
    margin-bottom: 28px;
}

.shipping-info-panel .btn-primary {
    width: fit-content;
    background: white;
    color: var(--brown);
}

.shipping-info-faq {
    margin-bottom: 60px;
}

.shipping-note-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.shipping-note-grid div {
    background: white;
    border: 1px solid rgba(184, 144, 82, 0.16);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 18px 50px rgba(75, 54, 40, 0.08);
}

.shipping-note-grid h3 {
    color: var(--brown);
    margin-bottom: 12px;
}

@media (max-width: 960px) {
    .shipping-info-summary,
    .shipping-info-detail,
    .shipping-note-grid {
        grid-template-columns: 1fr;
    }

    .shipping-info-page {
        padding: 130px 24px 80px;
    }
}

/* =========================
   RETURNS INFORMATION PAGE
========================= */

.returns-info-page {
    max-width: 1240px;
    margin: auto;
    padding: 150px 24px 100px;
}

.returns-info-header {
    max-width: 760px;
    margin-bottom: 54px;
}

.returns-info-header h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 7vw, 86px);
    line-height: 1;
    color: var(--brown);
    margin-bottom: 18px;
}

.returns-info-header p {
    color: var(--muted);
    line-height: 1.9;
    font-size: 17px;
}

.returns-info-summary,
.returns-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 70px;
}

.returns-info-card,
.returns-process-grid div {
    background: white;
    border: 1px solid rgba(184, 144, 82, 0.16);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 18px 50px rgba(75, 54, 40, 0.08);
}

.returns-info-card span,
.returns-process-grid span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.returns-info-card h3,
.returns-process-grid h3 {
    color: var(--brown);
    font-size: 24px;
    margin: 26px 0 12px;
}

.returns-info-card p,
.returns-process-grid p {
    color: var(--muted);
    line-height: 1.8;
}

.returns-info-detail {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 80px;
}

.returns-info-copy,
.returns-info-panel {
    background: white;
    border: 1px solid rgba(184, 144, 82, 0.16);
    border-radius: 34px;
    padding: 42px;
    box-shadow: 0 18px 50px rgba(75, 54, 40, 0.08);
}

.returns-info-copy h2,
.returns-process h2 {
    font-family: "Cormorant Garamond", serif;
    color: var(--brown);
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;
    margin-bottom: 18px;
}

.returns-info-copy p,
.returns-info-panel p {
    color: var(--muted);
    line-height: 1.85;
}

.returns-note-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.returns-note-list div {
    padding: 20px;
    border-radius: 22px;
    background: var(--soft-cream);
    border: 1px solid rgba(184, 144, 82, 0.12);
}

.returns-note-list strong {
    display: block;
    color: var(--brown);
    margin-bottom: 6px;
}

.returns-info-panel {
    background:
        linear-gradient(
            135deg,
            rgba(75, 54, 40, 0.94),
            rgba(24, 18, 13, 0.96)
        );
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.returns-info-panel h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 18px;
}

.returns-info-panel p {
    color: #e8d8c5;
    margin-bottom: 28px;
}

.returns-info-panel .btn-primary {
    width: fit-content;
    background: white;
    color: var(--brown);
}

.returns-process {
    margin-bottom: 60px;
}

.returns-process-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
}

@media (max-width: 960px) {
    .returns-info-summary,
    .returns-info-detail,
    .returns-process-grid {
        grid-template-columns: 1fr;
    }

    .returns-info-page {
        padding: 130px 24px 80px;
    }
}

/* =========================
   ABOUT PAGE — LUXURY TIMELINE UPGRADE
========================= */

.about-principles,
.about-timeline-section,
.about-gallery-slider,
.about-video,
.about-global {
    max-width: 1240px;
    margin: auto;
    padding: 110px 24px;
}

.about-principles h2,
.about-timeline-section h2,
.about-gallery-slider h2,
.about-global h2,
.about-video-text h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1;
    color: var(--brown);
    margin-bottom: 42px;
}

.principles-grid,
.global-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.principle-card,
.global-card {
    background: white;
    border: 1px solid rgba(184, 144, 82, 0.16);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 18px 50px rgba(75, 54, 40, 0.08);
}

.principle-card span {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0.18em;
    font-size: 12px;
}

.principle-card h3,
.global-card h3 {
    color: var(--brown);
    font-size: 24px;
    margin: 24px 0 12px;
}

.principle-card p,
.global-card p {
    color: var(--muted);
    line-height: 1.8;
}

/* Artistic Timeline */

.timeline-luxury {
    position: relative;
    margin-top: 70px;
}

.timeline-luxury::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(184, 144, 82, 0.6),
        transparent
    );
}

.timeline-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 90px;
}

.timeline-row::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 10px rgba(184, 144, 82, 0.14);
}

.timeline-image {
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 26px 80px rgba(75, 54, 40, 0.14);
}

.timeline-image img {
    height: 460px;
    object-fit: cover;
    transition: 0.5s ease;
}

.timeline-image:hover img {
    transform: scale(1.04);
}

.timeline-content {
    background: white;
    border-radius: 34px;
    padding: 42px;
    border: 1px solid rgba(184, 144, 82, 0.16);
    box-shadow: 0 18px 50px rgba(75, 54, 40, 0.08);
}

.timeline-year {
    display: inline-flex;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 22px;
}

.timeline-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 4vw, 54px);
    color: var(--brown);
    line-height: 1;
    margin-bottom: 16px;
}

.timeline-content p {
    color: var(--muted);
    line-height: 1.9;
}

/* Gallery Slider */

.gallery-scroll {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 18px;
}

.gallery-scroll img {
    min-width: 360px;
    height: 520px;
    object-fit: cover;
    border-radius: 32px;
    scroll-snap-align: start;
    box-shadow: 0 20px 60px rgba(75, 54, 40, 0.12);
}

/* YouTube */

.about-video {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 46px;
    align-items: center;
}

.about-video-text p {
    color: var(--muted);
    line-height: 1.9;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 26px 80px rgba(75, 54, 40, 0.16);
    background: #111;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */

@media (max-width: 1050px) {
    .principles-grid,
    .global-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-video {
        grid-template-columns: 1fr;
    }

    .timeline-luxury::before {
        left: 18px;
    }

    .timeline-row,
    .timeline-row.left,
    .timeline-row.right {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-left: 44px;
    }

    .timeline-row::after {
        left: 18px;
        top: 28px;
    }

    .timeline-row.right .timeline-content {
        order: 2;
    }

    .timeline-row.right .timeline-image {
        order: 1;
    }
}

@media (max-width: 720px) {
    .about-principles,
    .about-timeline-section,
    .about-gallery-slider,
    .about-video,
    .about-global {
        padding: 80px 24px;
    }

    .principles-grid,
    .global-grid {
        grid-template-columns: 1fr;
    }

    .timeline-image img {
        height: 340px;
    }

    .timeline-content {
        padding: 30px;
    }

    .gallery-scroll img {
        min-width: 280px;
        height: 420px;
    }
}

/* =========================
   ABOUT CLOSING FIX
========================= */

.about-closing {
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

.about-closing h2 {
    display: block;
    width: 100%;
    max-width: 920px;
    margin: 0 auto 24px;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    line-height: 1.05;
}

.about-closing p {
    max-width: 680px;
    margin: 0 auto 32px;
}

/* =========================
   MOBILE NAV FIX
========================= */

@media (max-width: 900px) {
    .nav-inner {
        padding: 14px 16px;
        gap: 10px;
    }

    .logo {
        font-size: 28px;
        color: var(--brown) !important;
    }

    .nav-actions {
        gap: 8px;
    }

    .icon-btn,
    .menu-btn {
        width: 46px;
        height: 46px;
        font-size: 18px;
        flex-shrink: 0;
    }

    .menu-btn {
        display: flex !important;
    }

    .nav-links {
        position: fixed;
        top: 92px;
        left: 16px;
        right: 16px;
        width: auto;
        background: rgba(255, 250, 244, 0.98);
        border: 1px solid rgba(184, 144, 82, 0.18);
        border-radius: 24px;
        padding: 22px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-14px);
        box-shadow: 0 24px 60px rgba(75, 54, 40, 0.16);
        z-index: 2000;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        color: var(--brown) !important;
        font-size: 16px;
        font-weight: 700;
    }
}

/* =========================
   PROFILE PAGE
========================= */

.profile-page {
    max-width: 900px;
    margin: auto;
    padding: 150px 24px 100px;
}

.profile-header {
    margin-bottom: 36px;
}

.profile-header h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 7vw, 86px);
    color: var(--brown);
    line-height: 1;
    margin-bottom: 12px;
}

.profile-header p {
    color: var(--muted);
    line-height: 1.8;
}

.profile-card {
    background: white;
    border-radius: 34px;
    padding: 42px;
    box-shadow: 0 18px 50px rgba(75, 54, 40, 0.08);
    border: 1px solid rgba(184, 144, 82, 0.16);
    display: grid;
    gap: 12px;
}

.profile-card label {
    color: var(--brown);
    font-weight: 700;
    font-size: 14px;
}

.profile-card input,
.profile-card textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid rgba(75, 54, 40, 0.18);
    border-radius: 18px;
    outline: none;
    font-family: inherit;
    margin-bottom: 10px;
}

.profile-card textarea {
    min-height: 120px;
    resize: vertical;
}

.profile-card input[readonly] {
    background: var(--cream);
    color: var(--muted);
}

.profile-card button {
    width: fit-content;
    margin-top: 14px;
}

.profile-status {
    color: var(--brown);
    font-weight: 700;
}

.product-image {
    position: relative;
}

.product-stock-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;

    padding: 8px 12px;
    border-radius: 999px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.available-badge {
    background: rgba(59, 130, 84, .95);
    color: white;
}

.sold-out-badge {
    background: rgba(120, 120, 120, .95);
    color: white;
}

/* =========================
   PREMIUM PRODUCT CARD
========================= */

.premium-product-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(184, 144, 82, 0.14);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(75, 54, 40, 0.07);
    transition: transform .45s ease, box-shadow .45s ease;
}

.premium-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 80px rgba(75, 54, 40, 0.14);
}

.premium-product-image {
    position: relative;
    background: #f7efe6;
    overflow: hidden;
}

.premium-product-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform .75s ease;
}

.premium-product-card:hover .premium-product-image img {
    transform: scale(1.045);
}

.premium-product-info {
    padding: 26px 26px 30px;
    min-height: 160px;
}

.product-category-label {
    display: block;
    margin-bottom: 12px;
    color: #b89052;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.premium-product-info h3 {
    font-family: "Cormorant Garamond", serif;
    color: var(--brown);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 18px;
}

.premium-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    color: var(--brown);
    font-size: 22px;
    font-weight: 700;
}

.product-stock-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.available-badge {
    background: rgba(75, 54, 40, .82);
    color: white;
}

.sold-out-badge {
    background: rgba(120, 108, 96, .84);
    color: white;
}

.product-sold-out {
    opacity: .72;
}

.product-sold-out img {
    filter: grayscale(18%);
}

.premium-quick-view {
    position: absolute;
    left: 50%;
    bottom: 24px;

    transform: translateX(-50%);
    z-index: 10;

    opacity: 0;
    visibility: hidden;

    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);

    color: var(--brown);
    font-weight: 700;

    border-radius: 999px;
    padding: 12px 22px;

    transition: all .3s ease;
}

.premium-product-image {
    position: relative;
}

.premium-product-card:hover .premium-quick-view {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 720px) {
    .premium-product-image img {
        height: 390px;
    }

    .premium-product-info h3 {
        font-size: 26px;
    }

    .premium-product-info {
        padding: 22px;
    }
}

.logo-image {
    display: flex;
    align-items: center;
    width: auto;
    max-width: 180px;
    overflow: hidden;
}

.logo-image img {
    height: 46px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

@media (max-width: 720px) {
    .logo-image {
        max-width: 135px;
    }

    .logo-image img {
        height: 38px;
        max-width: 135px;
    }
}