/* ==========================================================
   Kashmir Couture — Inspired by kashmirbox.com aesthetic
   Playfair Display + Montserrat, warm gold on white,
   square corners, generous whitespace, minimal shadows
   ========================================================== */

/* --- Variables --- */
:root {
    --gold: #b8860b;
    --gold-hover: #966d08;
    --gold-light: #d4a54a;
    --gold-pale: #f5ebe0;
    --gold-rich: #a0750a;
    --burgundy: #5c1a2a;
    --burgundy-light: #7a2e3f;
    --charcoal: #1a1a1e;
    --text: #1c1c1f;
    --text-light: #5a5a5f;
    --text-muted: #8a8a8f;
    --bg: #ffffff;
    --bg-warm: #f9f6f1;
    --bg-cream: #f3ede5;
    --bg-deep: #f0ebe3;
    --border: #e2d9cb;
    --border-light: #ece6dc;
    --white: #ffffff;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Typography --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3.5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header.center {
    text-align: center;
}

/* --- Buttons (square, bordered, kashmirbox-style) --- */
.btn {
    display: inline-block;
    padding: 1rem 2.75rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    border: 1.5px solid transparent;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    position: relative;
}

.btn-primary {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}
.btn-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}
.btn-ghost:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
}

.btn-block { width: 100%; }

/* ==========================================================
   ANNOUNCEMENT BAR
   ========================================================== */
.announcement-bar {
    background: var(--charcoal);
    color: rgba(255,255,255,0.85);
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.1em;
}

/* ==========================================================
   NAVIGATION — clean, minimal, kashmirbox-style
   ========================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.4s var(--ease), border-color 0.4s;
}
.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    border-color: transparent;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}
.logo em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 2.25rem;
}
.nav-link {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.nav-icon {
    color: var(--text);
    transition: color 0.25s;
}
.nav-icon:hover { color: var(--gold); }

.cart-btn { position: relative; }
.cart-count {
    position: absolute;
    top: -5px; right: -8px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.55rem;
    font-weight: 700;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 20px;
    justify-content: center;
    position: relative;
    z-index: 1001;
}
.hamburger span {
    width: 22px; height: 1.5px;
    background: var(--text);
    transition: all 0.4s var(--ease-out-expo);
    transform-origin: center;
    display: block;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--white);
    z-index: 999;
    padding: 120px 2.5rem 2.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo), visibility 0.5s;
}
.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mobile-menu-inner a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--text);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.5s var(--ease-out-expo), opacity 0.5s var(--ease-out-expo), color 0.3s;
}
.mobile-menu.open .mobile-menu-inner a {
    transform: translateX(0);
    opacity: 1;
}
.mobile-menu.open .mobile-menu-inner a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu-inner a:hover {
    color: var(--gold);
}

/* ==========================================================
   HERO — warm, clean, side-by-side layout
   ========================================================== */
.hero {
    background: var(--bg-warm);
    overflow: hidden;
    position: relative;
}
.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    min-height: 85dvh;
}

.hero-media {
    position: relative;
    overflow: hidden;
}
.hero-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: var(--bg-cream);
    position: relative;
    will-change: transform;
    transition: transform 0.1s linear;
    overflow: hidden;
}
.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 5rem;
}
.hero-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.75rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s var(--ease-out-expo) 0.2s forwards;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 500;
    line-height: 1.08;
    color: var(--charcoal);
    margin-bottom: 1.75rem;
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeUp 0.9s var(--ease-out-expo) 0.35s forwards;
}
@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}
.hero-desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.9;
    max-width: 460px;
    margin-bottom: 2.25rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s var(--ease-out-expo) 0.5s forwards;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s var(--ease-out-expo) 0.65s forwards;
}
.hero-trust {
    display: flex;
    gap: 1.75rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(15px);
    animation: heroFadeUp 0.7s var(--ease-out-expo) 0.8s forwards;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-light);
}
.trust-icon {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.8rem;
}

/* ==========================================================
   CATEGORIES — 3 column image cards
   ========================================================== */
.categories {
    padding: 4.5rem 0;
    background: var(--white);
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.category-card {
    position: relative;
    overflow: hidden;
    display: block;
}
.category-img {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--bg-cream);
}
.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}
.category-card:hover .category-img img {
    transform: scale(1.06);
}
.category-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: var(--white);
    transition: padding-bottom 0.4s var(--ease-out-expo);
}
.category-card:hover .category-label {
    padding-bottom: 2.5rem;
}
.category-label h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}
.category-cta {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.category-card:hover .category-cta { opacity: 1; transform: translateY(0); }

/* ==========================================================
   PRODUCT GRID
   ========================================================== */
.collection {
    padding: 5rem 0;
    background: var(--bg-warm);
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid transparent;
    background: transparent;
    transition: all 0.3s var(--ease);
}
.filter-btn:hover {
    color: var(--charcoal);
}
.filter-btn.active {
    color: var(--charcoal);
    font-weight: 600;
    border-bottom: 2px solid var(--gold);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--white);
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}
.product-card.hide {
    display: none;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-cream);
}
.product-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease-out-expo);
}
.product-img-hover {
    opacity: 0;
}
.product-card:hover .product-img:not(.product-img-hover) {
    opacity: 0;
    transform: scale(1.03);
}
.product-card:hover .product-img-hover {
    opacity: 1;
    transform: scale(1.03);
}

.product-badge {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    padding: 0.3rem 0.8rem;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--white);
    color: var(--text);
    z-index: 2;
}
.badge-new { background: var(--gold); color: var(--white); }
.badge-limited { background: var(--burgundy); color: var(--white); }

.wishlist-btn {
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    width: 36px; height: 36px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), color 0.3s;
    color: var(--text);
    border-radius: 50%;
}
.product-card:hover .wishlist-btn { opacity: 1; transform: translateY(0); }
.wishlist-btn:hover { color: var(--gold); transform: scale(1.1); }
.wishlist-btn.active {
    opacity: 1;
    color: #c0392b;
}
.wishlist-btn.active svg { fill: #c0392b; }

.product-info {
    padding: 1.1rem 0.25rem;
    transition: transform 0.4s var(--ease-out-expo);
}
.product-card:hover .product-info {
    transform: translateY(-2px);
}
.product-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    line-height: 1.3;
    transition: color 0.3s;
    color: var(--charcoal);
}
.product-card:hover .product-name {
    color: var(--gold-hover);
}
.product-type {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 0.65rem;
    letter-spacing: 0.02em;
}
.product-price-row {
    margin-bottom: 0.8rem;
}
.product-price {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.01em;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.8rem 0;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--charcoal);
    border: 1.5px solid var(--charcoal);
    background: transparent;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}
.add-to-cart-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--charcoal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
    z-index: -1;
}
.add-to-cart-btn:hover {
    color: var(--white);
}
.add-to-cart-btn:hover::before {
    transform: scaleX(1);
}
.add-to-cart-btn.added {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}
.add-to-cart-btn.added::before {
    transform: scaleX(0);
}

.collection-footer {
    text-align: center;
    margin-top: 3rem;
}

/* ==========================================================
   VALUE PROPS
   ========================================================== */
.value-props {
    padding: 4.5rem 0;
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    text-align: center;
}
.prop-icon {
    color: var(--gold);
    margin-bottom: 1.1rem;
    transition: transform 0.4s var(--ease-out-expo);
}
.prop:hover .prop-icon {
    transform: translateY(-3px);
}
.prop h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: var(--charcoal);
}
.prop p {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.7;
    max-width: 240px;
    margin: 0 auto;
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about {
    padding: 6rem 0;
    background: var(--bg-warm);
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-images {
    position: relative;
    height: 520px;
}
.about-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 75%; height: 85%;
    overflow: hidden;
    background: var(--bg-cream);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%; height: 50%;
    border: 6px solid var(--bg-warm);
    overflow: hidden;
    background: var(--bg-cream);
}
.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-text {
    font-size: 0.93rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.95;
    margin-bottom: 1.35rem;
}
.about-numbers {
    display: flex;
    gap: 3rem;
    margin: 2.25rem 0 2.75rem;
    padding-top: 2.25rem;
    border-top: 1px solid var(--border);
}
.about-num strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.about-num span {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ==========================================================
   PROCESS
   ========================================================== */
.process {
    padding: 5rem 0;
    background: var(--white);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.process-step {
    padding: 2.25rem 1.75rem;
    border: 1px solid var(--border-light);
    transition: border-color 0.4s, transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}
.process-step:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(197,142,38,0.08);
}
.step-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1.1rem;
    line-height: 1;
    opacity: 0.7;
}
.process-step h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--charcoal);
}
.process-step p {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.75;
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials {
    padding: 5rem 0;
    background: var(--bg-warm);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}
.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
}
.testimonial-card p {
    font-size: 0.95rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 1.75rem;
    font-family: var(--font-heading);
}
.testimonial-author strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.03em;
}
.testimonial-author span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ==========================================================
   NEWSLETTER
   ========================================================== */
.newsletter {
    padding: 5.5rem 0;
    background: var(--charcoal);
}
.newsletter-box {
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
}
.newsletter-box .section-tag {
    color: var(--gold-light);
}
.newsletter-box .section-title {
    color: var(--white);
}
.newsletter-box .section-title::after {
    background: var(--gold);
}
.newsletter-box p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    margin-bottom: 2.25rem;
    line-height: 1.8;
}
.newsletter-form {
    display: flex;
    gap: 0;
}
.newsletter-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-right: none;
    background: rgba(255,255,255,0.06);
    color: var(--white);
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}
.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.35);
}
.newsletter-form input:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.1);
}
.newsletter-form .btn {
    border-left: none;
    white-space: nowrap;
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}
.newsletter-form .btn:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
    background: #141417;
    color: var(--white);
    padding: 4.5rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo {
    color: var(--white);
    margin-bottom: 0;
}
.footer-brand .logo em {
    color: var(--gold);
}
.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    margin-top: 1rem;
    line-height: 1.7;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.social-links a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s;
}
.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
    color: var(--white);
}
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    transition: color 0.25s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 0;
}
.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}
.footer-legal {
    display: flex;
    gap: 2rem;
}
.footer-legal a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    transition: color 0.25s;
}
.footer-legal a:hover { color: var(--gold); }

/* ==========================================================
   CART DRAWER
   ========================================================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s;
}
.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}
.cart-drawer {
    position: fixed;
    top: 0; right: 0;
    width: 400px; height: 100vh;
    background: var(--white);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
}
.cart-drawer.open {
    transform: translateX(0);
}
.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-light);
}
.cart-drawer-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
}
.cart-drawer-close {
    font-size: 1.5rem;
    color: var(--text-light);
    line-height: 1;
    transition: color 0.2s;
}
.cart-drawer-close:hover { color: var(--text); }

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2rem;
}
.cart-empty-state {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-muted);
}
.cart-empty-state p {
    margin: 1rem 0 1.5rem;
    font-size: 0.9rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-light);
}
.cart-item-swatch {
    width: 64px; height: 80px;
    flex-shrink: 0;
    object-fit: cover;
    background: var(--bg-cream);
}
.cart-item-details { flex: 1; }
.cart-item-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}
.cart-item-price {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.cart-item-remove {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--text-muted);
    transition: color 0.2s;
    padding: 0;
}
.cart-item-remove:hover { color: #c0392b; border-color: #c0392b; }

.cart-drawer-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
}
.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.cart-shipping-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

/* ==========================================================
   SCROLL REVEAL
   ========================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Staggered children in grids */
.reveal-stagger .reveal {
    transition-delay: calc(var(--reveal-i, 0) * 0.08s);
}
/* Slide from left variant */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
/* Slide from right variant */
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
/* Scale-up variant */
.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Section divider line */
.section-header .section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin-top: 1rem;
}
.section-header.center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-inner { grid-template-columns: 1fr; min-height: auto; }
    .hero-media { max-height: 400px; }
    .hero-content { padding: 3rem 2rem; }
    .about-layout { gap: 3rem; }
    .props-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero-inner { grid-template-columns: 1fr; min-height: auto; }
    .hero-image-placeholder { min-height: 300px; }
    .hero-content { padding: 2.5rem 1.5rem; }
    .hero-title { font-size: 2.15rem; }

    .category-grid { grid-template-columns: 1fr; gap: 1rem; }
    .category-img { aspect-ratio: 16/9; }

    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .product-info { padding: 0.8rem 0.15rem; }
    .product-name { font-size: 0.92rem; }
    .add-to-cart-btn { padding: 0.65rem 0; font-size: 0.6rem; }

    .about-layout { grid-template-columns: 1fr; }
    .about-images { height: 320px; }
    .about { padding: 4rem 0; }

    .testimonial-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }

    .newsletter-form { flex-direction: column; }
    .newsletter-form input { border-right: 1.5px solid rgba(255,255,255,0.15); }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    .cart-drawer { width: 100%; }

    .section-title { margin-bottom: 1rem; }
    .collection { padding: 3.5rem 0; }
    .process { padding: 3.5rem 0; }
    .testimonials { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .about-numbers { flex-direction: column; gap: 1.25rem; }
    .props-grid { grid-template-columns: 1fr; }
    .announcement-bar { font-size: 0.62rem; padding: 0.5rem 0.75rem; }
    .nav-container { height: 60px; padding: 0 1.25rem; }
    .mobile-menu { padding-top: 100px; }
}

/* Smooth scrollbar for modern browsers */
@supports (scrollbar-width: thin) {
    html { scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1;
        transform: none;
    }
    .hero-tag, .hero-title, .hero-desc, .hero-actions, .hero-trust {
        opacity: 1;
        transform: none;
        animation: none;
    }
}
