/* ============================================================
   RUG CRAFT — PREMIUM BEIGE/BROWN PALETTE
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }

:root {
    --bg:      #f5f0e8;
    --bg2:     #ede7d9;
    --bg3:     #e4dccb;
    --bg-dark: #2a2018;
    --bg-dark2:#221a12;
    --bg-dark3:#1a140d;
    --border:       rgba(90,70,45,.12);
    --border-hover: rgba(90,70,45,.28);
    --border-light: rgba(255,255,255,.12);
    --tx:  #2a2018;
    --tx2: #7a6a55;
    --tx3: #b0a090;
    --ac:  #8b6914;
    --ac2: #a07d1a;
    --ac3: #c9a84c;
    --wh: #fdf9f3;
    --r: 2px;
    --r-card: 3px;
}

body { font-family: 'Manrope', sans-serif; background: var(--bg); color: var(--tx); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.05; color: var(--tx); }
h1 { font-size: clamp(3.5rem, 7vw, 7rem); letter-spacing: -1px; }
h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.5px; }
em { font-style: italic; color: var(--ac); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; -webkit-tap-highlight-color: transparent; }

/* ============================================================ BUTTONS */
.btn-primary {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--bg-dark); color: var(--wh);
    padding: .9rem 2.2rem;
    font-family: 'Manrope', sans-serif; font-size: .78rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    border: none; cursor: pointer;
    transition: background .3s, transform .2s;
    -webkit-tap-highlight-color: transparent;
    position: relative; will-change: transform;
}
.btn-primary:hover { background: var(--ac); transform: translateY(-1px); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: .4rem;
    color: rgba(42,32,24,.55);
    padding: .9rem 1.6rem;
    font-size: .78rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
    border: 1px solid rgba(42,32,24,.2);
    transition: all .3s; cursor: pointer; background: transparent;
    position: relative; will-change: transform;
}
.btn-ghost:hover { color: var(--tx); border-color: rgba(42,32,24,.45); background: rgba(42,32,24,.04); }

.hero .btn-ghost { color: rgba(253,249,243,.6); border-color: rgba(253,249,243,.2); }
.hero .btn-ghost:hover { color: var(--wh); border-color: rgba(253,249,243,.5); background: rgba(253,249,243,.08); }
.btn-full { width: 100%; justify-content: center; }

.btn-checkout-wa { width: 100%; padding: .9rem; display: flex; align-items: center; justify-content: center; gap: .5rem; background: #25D366; color: #fff; font-family: 'Manrope', sans-serif; font-size: .78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: background .2s; border: none; cursor: pointer; }
.btn-checkout-wa:hover { background: #1fb855; }
.btn-checkout-ig { width: 100%; padding: .9rem; display: flex; align-items: center; justify-content: center; gap: .5rem; background: linear-gradient(135deg, #833AB4, #E1306C, #F77737); color: #fff; font-family: 'Manrope', sans-serif; font-size: .78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 1px; transition: opacity .2s; border: none; cursor: pointer; }
.btn-checkout-ig:hover { opacity: .88; }
.btn-wa { padding: .9rem 1.4rem; background: #25D366; color: #fff; display: flex; align-items: center; gap: .4rem; font-family: 'Manrope', sans-serif; font-size: .78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: background .2s; flex-shrink: 0; border: none; cursor: pointer; }
.btn-wa:hover { background: #1fb855; }

/* ============================================================ SECTION COMMON */
.section-label { font-family: 'Manrope', sans-serif; font-size: .65rem; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--ac); margin-bottom: .8rem; display: block; }
.section-header { max-width: 1400px; margin: 0 auto; padding: 0 5%; margin-bottom: 3rem; }

/* ============================================================ NAV */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.4rem 5%; transition: all .4s; }
#header.scrolled { background: rgba(245,240,232,.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 1rem 5%; border-bottom: 1px solid var(--border); box-shadow: 0 1px 24px rgba(42,32,24,.06); }
.nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; letter-spacing: 7px; text-transform: uppercase; color: var(--tx); }
.nav-logo span { color: var(--ac); }
.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a { font-size: .72rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--tx2); transition: color .3s; }
.nav-links a:hover { color: var(--tx); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.cart-btn { position: relative; padding: .4rem; color: var(--tx2); transition: color .3s; display: flex; align-items: center; background: none; border: none; cursor: pointer; }
.cart-btn:hover { color: var(--tx); }
.cart-badge { position: absolute; top: -2px; right: -4px; background: var(--ac); color: #fff; font-size: .58rem; font-weight: 700; width: 16px; height: 16px; border-radius: 50%; display: none; align-items: center; justify-content: center; }
.hamburger { display: none; flex-direction: column; gap: 6px; padding: .4rem; width: 40px; height: 40px; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--tx2); transition: all .3s; transform-origin: center; }
.hamburger.open span:first-child { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:last-child { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-overlay { position: fixed; inset: 0; background: rgba(42,32,24,.5); z-index: 199; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-nav { position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--bg2); z-index: 200; transform: translateX(100%); transition: transform .35s cubic-bezier(.25,.8,.25,1); padding: 5rem 2.5rem 2.5rem; display: flex; flex-direction: column; gap: 2rem; border-left: 1px solid var(--border); }
.mobile-nav.open { transform: translateX(0); }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; color: var(--tx2); font-size: 1.1rem; padding: .5rem; transition: color .2s; background: none; border: none; cursor: pointer; }
.mobile-close:hover { color: var(--tx); }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: .3rem; }
.mobile-nav a { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--tx2); padding: .5rem 0; transition: color .2s; border-bottom: 1px solid var(--border); }
.mobile-nav a:hover { color: var(--tx); }
.mobile-cta { margin-top: auto; }

/* ============================================================ HERO */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; overflow: hidden; background: #f2ece0; padding-top: 80px; }
.hero-bg-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(ellipse 90% 80% at -10% 50%, rgba(210,195,170,.5) 0%, transparent 55%), radial-gradient(ellipse 70% 70% at 110% 20%, rgba(220,210,192,.4) 0%, transparent 60%), radial-gradient(ellipse 100% 50% at 50% 110%, rgba(190,178,155,.35) 0%, transparent 50%); }
.hero::after { content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"); background-size: 180px 180px; opacity: .018; mix-blend-mode: multiply; }
.hero::before { content: ''; position: absolute; z-index: 2; top: 0; left: 50%; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent 0%, rgba(42,32,18,.08) 30%, rgba(42,32,18,.06) 70%, transparent 100%); pointer-events: none; }

.hero-left { position: relative; z-index: 3; padding: 4rem 5% 4rem 8%; display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow { font-size: .58rem; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: rgba(90,80,65,.45); margin-bottom: 1.8rem; display: flex; align-items: center; gap: 1rem; opacity: 0; animation: fadeInUp .7s .1s ease forwards; }
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: linear-gradient(to right, transparent, rgba(90,80,65,.35)); }
.hero h1 { color: #1e1710; font-size: clamp(3.2rem, 5.5vw, 6rem); font-weight: 300; letter-spacing: -1.5px; line-height: 1.0; margin-bottom: 0; opacity: 0; animation: fadeInUp .8s .28s ease forwards; }
.hero h1 em { display: block; font-size: .9em; letter-spacing: -1px; line-height: 1.05; margin-top: .08em; color: #6b5a3e; -webkit-text-fill-color: #6b5a3e; background: none; }
.hero-sub { font-size: .82rem; color: rgba(42,32,18,.45); line-height: 1.9; margin: 1.8rem 0 2.2rem; font-weight: 300; max-width: 340px; opacity: 0; animation: fadeInUp .8s .45s ease forwards; }
.hero-actions { display: flex; gap: .7rem; flex-wrap: wrap; opacity: 0; animation: fadeInUp .8s .6s ease forwards; }
.hero .btn-primary { background: #1e1710; color: #f2ece0; letter-spacing: 2px; padding: .95rem 2.2rem; font-size: .75rem; }
.hero .btn-primary:hover { background: #3a2e20; }
.hero .btn-ghost { letter-spacing: 1.5px; padding: .95rem 1.8rem; font-size: .75rem; color: rgba(30,23,16,.45); border-color: rgba(30,23,16,.18); background: transparent; }
.hero .btn-ghost:hover { color: #1e1710; border-color: rgba(30,23,16,.45); background: rgba(30,23,16,.04); }
.hero-trust { display: flex; flex-direction: column; gap: .4rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(42,32,18,.1); opacity: 0; animation: fadeInUp .8s .75s ease forwards; }
.hero-trust-item { font-size: .65rem; letter-spacing: 1.5px; color: rgba(42,32,18,.35); display: flex; align-items: center; gap: .5rem; text-transform: uppercase; }
.htick { color: rgba(90,80,65,.5); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.hero-right { position: relative; z-index: 3; padding: 4rem 8% 4rem 5%; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; animation: fadeInRight 1s .2s ease forwards; }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(36px); } to { opacity: 1; transform: translateX(0); } }

.hero-showcase { position: relative; width: 100%; max-width: 340px; height: 480px; animation: float 7s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.showcase-card { position: absolute; inset: 0; display: flex; flex-direction: column; opacity: 0; transform: translateY(24px) scale(.97); transition: opacity .6s ease, transform .6s cubic-bezier(.25,.8,.25,1); pointer-events: none; }
.showcase-card.active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.showcase-card.exiting { opacity: 0; transform: translateY(-16px) scale(.98); }
.sc-img-wrap { flex: 1; overflow: hidden; border: 1px solid rgba(42,32,18,.12); position: relative; }
.sc-img-wrap::before { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, transparent 60%, rgba(30,23,16,.35) 100%); }
.sc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; transform: scale(1.04); }
.showcase-card.active .sc-img-wrap img { transform: scale(1.0); }
.sc-info { display: flex; align-items: center; gap: .8rem; padding: .9rem 1rem; background: rgba(242,236,224,.96); border: 1px solid rgba(42,32,18,.1); border-top: none; }
.sc-tag { font-size: .55rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(90,80,65,.6); padding: .25rem .6rem; border: 1px solid rgba(90,80,65,.2); flex-shrink: 0; }
.sc-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 400; color: #1e1710; flex: 1; }
.sc-price { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 300; color: #6b5a3e; flex-shrink: 0; }
.hero-showcase::before { content: ''; position: absolute; top: 20px; left: -14px; right: 14px; bottom: -20px; border: 1px solid rgba(42,32,18,.08); z-index: -1; }
.hero-showcase::after { content: ''; position: absolute; top: 40px; left: -28px; right: 28px; bottom: -40px; border: 1px solid rgba(42,32,18,.04); z-index: -2; }

.showcase-dots { display: flex; gap: .9rem; justify-content: center; margin-top: 1.8rem; }
.sc-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: rgba(42,32,18,.18); border: none; cursor: pointer; padding: 0; transition: background .3s, transform .25s; flex-shrink: 0; }
.sc-dot:hover { background: rgba(42,32,18,.45); transform: scale(1.25); }
.sc-dot.active { background: #2a2018; transform: scale(1.2); }
.sc-dot.active::after { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 1.5px solid rgba(42,32,18,.35); animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%, 100% { transform: scale(1); opacity: .7; } 50% { transform: scale(1.5); opacity: 0; } }

/* ============================================================ DIVIDER */
.ticker { display: none; }
.hero-divider { background: #1e1710; border-top: 1px solid rgba(42,32,18,.4); border-bottom: 1px solid rgba(255,255,255,.04); padding: 1.2rem 5%; }
.hero-divider-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.hero-divider-item { display: flex; align-items: center; gap: .7rem; font-size: .6rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(200,196,188,.3); font-weight: 600; flex: 1; justify-content: center; white-space: nowrap; }
.hero-divider-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(200,196,188,.15); flex-shrink: 0; margin-left: .7rem; }
.hero-divider-item:last-child .hero-divider-dot { display: none; }

#header:not(.scrolled) .nav-logo { color: #1e1710; }
#header:not(.scrolled) .nav-logo span { color: #888; }
#header:not(.scrolled) .nav-links a { color: rgba(30,23,16,.5); }
#header:not(.scrolled) .nav-links a:hover { color: #1e1710; }
#header:not(.scrolled) .cart-btn { color: rgba(30,23,16,.5); }
#header:not(.scrolled) .cart-btn:hover { color: #1e1710; }
#header:not(.scrolled) .hamburger span { background: rgba(30,23,16,.5); }

@media(max-width:900px) {
    .hero { grid-template-columns: 1fr; grid-template-rows: auto auto; padding-top: 70px; }
    .hero::before { display: none; }
    .hero-left { padding: 2.5rem 6% 1.5rem; text-align: center; align-items: center; order: 1; }
    .hero-eyebrow { justify-content: center; }
    .hero h1 { font-size: clamp(2.8rem, 8vw, 4rem); }
    .hero-sub { text-align: center; max-width: 100%; }
    .hero-trust { align-items: center; }
    .hero-right { padding: 0 6% 3rem; order: 2; }
    .hero-showcase { max-width: 280px; height: 380px; }
    .hero-divider-item:nth-child(n+4) { display: none; }
}

/* ============================================================ SHOP */
.shop-section { padding: 6rem 5%; max-width: 1600px; margin: 0 auto; }
.filter-bar { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.filter-btn { font-family: 'Manrope', sans-serif; font-size: .68rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: .5rem 1.4rem; color: var(--tx3); border: 1px solid var(--border); transition: all .25s; cursor: pointer; background: transparent; }
.filter-btn:hover { color: var(--tx); border-color: var(--border-hover); background: rgba(42,32,24,.04); }
.filter-btn.active { background: var(--bg-dark); color: var(--wh); border-color: var(--bg-dark); }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.product-card { background: var(--bg); cursor: pointer; position: relative; overflow: hidden; transition: background .3s; display: flex; flex-direction: column; animation: cardFadeIn .5s ease backwards; }
.product-card:hover { background: var(--bg2); }
.product-card:nth-child(1) { animation-delay: .0s; }
.product-card:nth-child(2) { animation-delay: .07s; }
.product-card:nth-child(3) { animation-delay: .14s; }
.product-card:nth-child(4) { animation-delay: .21s; }
.product-card:nth-child(5) { animation-delay: .28s; }
.product-card:nth-child(6) { animation-delay: .35s; }
.product-card:nth-child(7) { animation-delay: .42s; }
.product-card:nth-child(8) { animation-delay: .49s; }
@keyframes cardFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--bg3); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.25,.8,.25,1), opacity .3s; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-img-wrap::after { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent); transform: skewX(-20deg); transition: left 0s; pointer-events: none; z-index: 1; }
.product-card:hover .product-img-wrap::after { left: 150%; transition: left .6s ease; }
.product-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--tx3); opacity: .2; }
.product-category-tag { position: absolute; top: 1rem; left: 1rem; font-size: .58rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: rgba(245,240,232,.88); color: var(--tx2); padding: .3rem .8rem; backdrop-filter: blur(6px); }
.product-info { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--tx); margin-bottom: .3rem; line-height: 1.2; }
.product-desc { font-size: .75rem; color: var(--tx2); line-height: 1.5; flex: 1; margin-bottom: .8rem; }
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--tx); }
.product-add-btn { width: 34px; height: 34px; background: transparent; color: var(--tx2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: all .2s; cursor: pointer; }
.product-add-btn:hover { background: var(--bg-dark); color: var(--wh); border-color: var(--bg-dark); }

.product-card--custom { background: var(--bg-dark); }
.product-card--custom:hover { background: var(--bg-dark2); }
.custom-card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; justify-content: flex-end; aspect-ratio: 3/4; }
.custom-card-icon { font-size: 2.5rem; color: var(--ac3); opacity: .4; margin-bottom: 1.5rem; line-height: 1; }
.custom-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--wh); margin-bottom: .5rem; }
.custom-card-sub { font-size: .75rem; color: rgba(253,249,243,.45); margin-bottom: 1.5rem; line-height: 1.5; }

/* ============================================================ INSTAGRAM CTA (geen grid) */
.instagram-section { padding: 6rem 5%; max-width: 1600px; margin: 0 auto; }

.ig-cta-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 4rem;
    background: var(--bg2);
    border: 1px solid var(--border);
    margin-bottom: 1px;
}

.ig-cta-left h2 { margin-top: .3rem; margin-bottom: .6rem; }
.ig-sub { font-size: .82rem; color: var(--tx2); max-width: 400px; line-height: 1.7; }

.ig-follow-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .75rem 1.6rem;
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    color: #fff; font-family: 'Manrope', sans-serif; font-size: .72rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
    transition: opacity .2s, transform .2s; flex-shrink: 0;
}
.ig-follow-btn:hover { opacity: .88; transform: translateY(-2px); }
.ig-follow-btn--large { padding: 1rem 2.2rem; font-size: .78rem; }

.ig-proof-bar {
    display: flex; align-items: center; justify-content: space-around;
    padding: 2rem; background: var(--bg2); border: 1px solid var(--border);
    flex-wrap: wrap; gap: 1rem;
}
.ig-proof-item { display: flex; flex-direction: column; align-items: center; gap: .3rem; flex: 1; min-width: 100px; }
.ig-proof-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--tx); line-height: 1; }
.ig-proof-label { font-size: .62rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--tx3); text-align: center; }
.ig-proof-div { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ============================================================ MAKING / VIDEO */
.making-section { padding: 8rem 5%; background: var(--bg-dark); overflow: hidden; }
.making-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.making-visual { position: relative; }
.making-video-wrap { position: relative; aspect-ratio: 9/10; overflow: hidden; background: var(--bg-dark2); }
.making-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.making-badge { position: absolute; background: rgba(42,32,18,.85); color: rgba(253,249,243,.7); font-family: 'Manrope', sans-serif; font-size: .6rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: .4rem .9rem; display: flex; align-items: center; gap: .4rem; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.08); z-index: 2; }
.making-badge--tl { top: 1.2rem; left: 1.2rem; }
.making-badge--br { bottom: 1.2rem; right: 1.2rem; }
.making-video-wrap::before { content: ''; position: absolute; top: 16px; left: -16px; right: 16px; bottom: -16px; border: 1px solid rgba(255,255,255,.06); z-index: -1; }
.making-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 72px; height: 72px; background: rgba(253,249,243,.12); border: 1px solid rgba(253,249,243,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .3s; color: rgba(253,249,243,.9); backdrop-filter: blur(8px); z-index: 3; }
.making-play-btn:hover { background: rgba(139,105,20,.8); border-color: var(--ac3); transform: translate(-50%, -50%) scale(1.08); }
.making-play-btn.playing { opacity: 0; pointer-events: none; }
.making-play-icon { transition: transform .2s; margin-left: 3px; }
.making-content .section-label { color: var(--ac3); }
.making-content h2 { color: var(--wh); margin-top: .3rem; margin-bottom: 1rem; }
.making-content h2 em { color: var(--ac3); -webkit-text-fill-color: var(--ac3); background: none; }
.making-intro { font-size: .86rem; color: rgba(253,249,243,.45); line-height: 1.8; margin-bottom: 2.5rem; }
.making-timeline { display: flex; flex-direction: column; gap: 0; margin-bottom: 2.5rem; position: relative; }
.making-timeline::before { content: ''; position: absolute; left: 9px; top: 14px; bottom: 14px; width: 1px; background: rgba(255,255,255,.08); }
.making-step { display: flex; gap: 1.2rem; padding: .9rem 0; align-items: flex-start; transition: all .3s; }
.making-step-dot { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.2); background: var(--bg-dark); flex-shrink: 0; margin-top: 2px; position: relative; z-index: 1; transition: all .3s; }
.making-step:hover .making-step-dot { background: var(--ac); border-color: var(--ac3); }
.making-step-content h4 { font-family: 'Manrope', sans-serif; font-size: .8rem; font-weight: 600; letter-spacing: .5px; color: rgba(253,249,243,.7); margin-bottom: .2rem; }
.making-step-content p { font-size: .77rem; color: rgba(253,249,243,.35); line-height: 1.7; }
.making-step:hover .making-step-content h4 { color: rgba(253,249,243,.95); }
.making-step:hover .making-step-content p { color: rgba(253,249,243,.55); }
.making-cta { background: var(--ac); display: inline-flex; }
.making-cta:hover { background: var(--ac2); }

/* ============================================================ STATS */
.stats-section { padding: 4rem 5%; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: center; max-width: 1400px; margin: 0 auto; background: var(--bg2); }
.stat { flex: 1; text-align: center; padding: 2rem; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 300; color: var(--tx); line-height: 1; }
.stat-num span { font-size: .6em; color: var(--ac); }
.stat-label { font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tx3); margin-top: .5rem; }
.stat-div { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* ============================================================ FAQ */
.faq-section { padding: 8rem 5%; max-width: 1400px; margin: 0 auto; background: var(--bg); }
.faq-section .section-header { margin-bottom: 4rem; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.6rem 0; text-align: left; gap: 1rem; font-family: 'Manrope', sans-serif; font-size: .88rem; font-weight: 500; color: var(--tx2); transition: color .2s; cursor: pointer; background: none; border: none; }
.faq-q:hover { color: var(--tx); }
.faq-icon { width: 24px; height: 24px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; color: var(--tx3); transition: all .3s; }
.faq-item.open .faq-q { color: var(--tx); }
.faq-item.open .faq-icon { border-color: var(--ac); color: var(--ac); transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .35s ease, padding .35s; font-size: .84rem; color: var(--tx2); line-height: 1.8; padding: 0; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1.5rem; }

/* ============================================================ CONTACT */
.contact-section { padding: 8rem 5%; background: var(--bg-dark); border-top: 1px solid rgba(42,32,24,.5); }
.contact-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.contact-left .section-label { color: var(--ac3); }
.contact-left h2 { color: var(--wh); margin-top: .3rem; margin-bottom: 1rem; }
.contact-left h2 em { color: var(--ac3); }
.contact-left p { font-size: .86rem; color: rgba(253,249,243,.45); line-height: 1.7; margin-bottom: 2rem; }
.contact-channels { display: flex; flex-direction: column; gap: .8rem; }
.channel-btn { display: flex; align-items: center; gap: 1rem; padding: .9rem 1.1rem; border: 1px solid rgba(253,249,243,.08); color: rgba(253,249,243,.55); transition: all .3s; text-decoration: none; }
.channel-btn:hover { border-color: rgba(253,249,243,.2); color: var(--wh); }
.channel-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-icon { background: #25D366; color: #fff; }
.ig-icon { background: linear-gradient(135deg,#833AB4,#E1306C,#F77737); color: #fff; }
.channel-btn div:last-child { display: flex; flex-direction: column; gap: .1rem; }
.channel-btn strong { font-size: .82rem; font-weight: 600; color: rgba(253,249,243,.85); }
.channel-btn span { font-size: .72rem; color: rgba(253,249,243,.35); }

.contact-form-wrap { background: var(--bg); padding: 0; border: 1px solid var(--border); }
.contact-form { display: flex; flex-direction: column; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--border); margin-bottom: 0; }
.form-field { display: flex; flex-direction: column; }
.form-field label { font-size: .6rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--tx3); padding: .8rem 1.2rem .2rem; background: var(--bg); }
.form-field input, .form-field select, .form-field textarea { background: var(--bg); border: none; border-bottom: 1px solid var(--border); padding: .6rem 1.2rem 1rem; font-family: 'Manrope', sans-serif; font-size: .88rem; color: var(--tx); outline: none; transition: border-color .3s; resize: none; -webkit-appearance: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--ac); background: var(--bg2); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--tx3); }
.form-field select { cursor: pointer; }
.form-field select option { background: var(--bg2); color: var(--tx); }
.form-field textarea { min-height: 120px; }
.form-btns { display: flex; gap: 0; background: var(--border); border-top: 1px solid var(--border); }
.form-btns .btn-primary { flex: 1; background: var(--bg-dark); }
.form-btns .btn-primary:hover { background: var(--ac); }
.form-btns .btn-wa { flex-shrink: 0; }

/* ============================================================ FOOTER */
footer { background: var(--bg-dark3); }
.footer-cta { padding: 6rem 5%; max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(253,249,243,.06); gap: 2rem; flex-wrap: wrap; }
.footer-cta h2 { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--wh); line-height: 1.1; }
.footer-cta h2 em { color: var(--ac3); }
.footer-cta .btn-primary { background: var(--ac); }
.footer-cta .btn-primary:hover { background: var(--ac2); }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding: 2rem 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; letter-spacing: 7px; font-weight: 300; color: rgba(253,249,243,.2); }
.footer-nav { display: flex; gap: 2rem; }
.footer-nav a { font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(253,249,243,.25); transition: color .2s; }
.footer-nav a:hover { color: rgba(253,249,243,.7); }
.footer-legal { font-size: .65rem; letter-spacing: .5px; color: rgba(253,249,243,.2); }

/* ============================================================ FLOATING WA */
.floating-wa { position: fixed; bottom: 2rem; right: 2rem; z-index: 400; width: 52px; height: 52px; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.25); opacity: 0; transform: translateY(10px); pointer-events: none; transition: all .3s; }
.floating-wa.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-wa:hover { background: #1fb855; transform: translateY(-2px); }

/* ============================================================ CART SIDEBAR */
.sidebar-overlay { position: fixed; inset: 0; background: rgba(42,32,24,.4); z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s; }
.sidebar-overlay.open { opacity: 1; pointer-events: auto; }
.cart-sidebar { position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 100vw; background: var(--bg); z-index: 201; border-left: 1px solid var(--border); transform: translateX(110%); transition: transform .35s cubic-bezier(.25,.8,.25,1); display: flex; flex-direction: column; visibility: hidden; pointer-events: none; }
.cart-sidebar.open { transform: translateX(0); visibility: visible; pointer-events: auto; }
.sidebar-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; border-bottom: 1px solid var(--border); flex-shrink: 0; background: var(--bg2); }
.sidebar-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--tx); }
.close-btn { color: var(--tx2); font-size: 1rem; padding: .3rem; transition: color .2s; background: none; border: none; cursor: pointer; }
.close-btn:hover { color: var(--tx); }
.cart-body { flex: 1; overflow-y: auto; padding: 1.2rem 1.5rem; background: var(--bg); }
.cart-empty { text-align: center; padding: 4rem 0; }
.empty-icon { font-size: 2.5rem; opacity: .1; margin-bottom: 1rem; color: var(--tx); }
.cart-empty p { font-size: .72rem; color: var(--tx3); letter-spacing: 1.5px; text-transform: uppercase; }
.cart-item-row { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); align-items: center; }
.cart-item-img { width: 60px; height: 60px; flex-shrink: 0; overflow: hidden; background: var(--bg3); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: .82rem; font-weight: 500; color: var(--tx); margin-bottom: .2rem; }
.cart-item-price { font-size: .75rem; color: var(--ac); }
.cart-item-actions { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.qty-btn { width: 26px; height: 26px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--tx2); transition: all .2s; cursor: pointer; background: none; }
.qty-btn:hover { border-color: var(--border-hover); color: var(--tx); background: var(--bg2); }
.qty-val { font-size: .82rem; font-weight: 600; min-width: 20px; text-align: center; color: var(--tx); }
.remove-item-btn { color: var(--tx3); font-size: .8rem; padding: .3rem; cursor: pointer; transition: color .2s; background: none; border: none; margin-left: .5rem; }
.remove-item-btn:hover { color: #c0392b; }
.cart-footer { padding: 1.2rem 1.5rem; border-top: 1px solid var(--border); flex-shrink: 0; background: var(--bg2); }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: .5rem; align-items: baseline; }
.cart-total-row span { font-size: .72rem; color: var(--tx2); text-transform: uppercase; letter-spacing: 1.5px; }
.total-amount { font-family: 'Cormorant Garamond', serif; font-size: 2rem !important; color: var(--tx) !important; }
.shipping-note { font-size: .7rem; color: var(--tx3); margin-bottom: 1.2rem; }
.checkout-actions { display: flex; flex-direction: column; gap: 0; background: var(--border); }
.discount-row { padding: .8rem 1.2rem; border-bottom: 1px solid var(--border); }
.discount-input-wrap { display: flex; gap: 0; }

/* ============================================================ PRODUCT MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(42,32,24,.5); z-index: 300; opacity: 0; pointer-events: none; transition: opacity .3s; }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.product-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-48%) scale(.97); width: min(1040px, 96vw); max-height: 92vh; display: flex; flex-direction: column; background: var(--bg); z-index: 300; opacity: 0; pointer-events: none; transition: all .35s cubic-bezier(.25,.8,.25,1); overflow: hidden; }
.product-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%,-50%) scale(1); }
.product-modal-topbar { flex-shrink: 0; display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.4rem; background: #1e1710; min-height: 58px; }
.product-modal-topbar-label { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 300; color: rgba(253,249,243,.5); letter-spacing: 4px; text-transform: uppercase; }
.modal-close { width: 40px; height: 40px; background: #ffffff; border: none; color: #1e1710; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; font-weight: 700; border-radius: 50%; flex-shrink: 0; transition: background .15s; }
.modal-close:hover { background: #ede7d9; }
.product-modal-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; flex: 1; min-height: 0; overflow-y: auto; }
.modal-gallery { position: sticky; top: 0; display: flex; flex-direction: column; background: var(--bg3); max-height: 92vh; }
.modal-zoom-wrap { position: relative; flex: 1; overflow: hidden; cursor: crosshair; background: var(--bg3); aspect-ratio: 1; }
.modal-zoom-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; pointer-events: none; user-select: none; }
.zoom-lens { position: absolute; width: 80px; height: 80px; border: 1px solid rgba(139,105,20,.4); background: rgba(201,168,76,.08); pointer-events: none; display: none; border-radius: 50%; transform: translate(-50%,-50%); }
.zoom-hint { position: absolute; bottom: .8rem; right: .8rem; font-size: .62rem; color: rgba(42,32,18,.5); letter-spacing: .5px; display: flex; align-items: center; gap: .3rem; background: rgba(253,249,243,.85); padding: .3rem .6rem; transition: opacity .3s; pointer-events: none; }
.zoom-result { position: absolute; top: 0; left: 100%; width: 100%; height: 100%; overflow: hidden; border-left: 1px solid var(--border); pointer-events: none; z-index: 10; background: var(--bg3); }
.modal-thumbs { display: flex; gap: 1px; background: var(--border); overflow-x: auto; scrollbar-width: none; flex-shrink: 0; }
.modal-thumbs::-webkit-scrollbar { display: none; }
.modal-thumb { width: 72px; height: 72px; flex-shrink: 0; cursor: pointer; opacity: .55; transition: opacity .2s; overflow: hidden; }
.modal-thumb.active { opacity: 1; outline: 2px solid var(--ac); outline-offset: -2px; }
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-details { display: flex; flex-direction: column; padding: 2rem; overflow-y: auto; border-left: 1px solid var(--border); }
.modal-cat { font-size: .58rem; letter-spacing: 3px; text-transform: uppercase; color: var(--ac); margin-bottom: .5rem; }
.modal-name { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 400; color: var(--tx); margin-bottom: .5rem; line-height: 1.1; }
.modal-rating { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; cursor: pointer; }
.modal-stars { display: flex; gap: 1px; }
.modal-review-count { font-size: .7rem; color: var(--tx3); text-decoration: underline; }
.modal-price-row { display: flex; align-items: baseline; gap: .8rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.modal-price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--tx); }
.modal-price-note { font-size: .67rem; color: var(--tx3); line-height: 1.4; }
.modal-desc { font-size: .82rem; color: var(--tx2); line-height: 1.8; margin-bottom: 1.2rem; }
.modal-size-section { margin-bottom: 1.4rem; }
.modal-size-label { font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: #7a6a55; font-weight: 700; margin-bottom: .8rem; }
.modal-sizes { display: flex; flex-wrap: wrap; gap: .5rem; }
.size-btn { padding: .7rem 1.3rem; font-size: .82rem; font-weight: 600; border: 2px solid #7a6a55; background: #ffffff; color: #2a2018; cursor: pointer; transition: all .15s; font-family: 'Manrope', sans-serif; }
.size-btn:hover { border-color: #2a2018; background: #f5f0e8; }
.size-btn.active { border-color: #2a2018; background: #2a2018; color: #ffffff; }
.modal-usps { display: flex; flex-direction: column; gap: .3rem; margin-bottom: 1.4rem; padding: .9rem 1rem; background: var(--bg2); }
.modal-usp { font-size: .73rem; color: var(--tx2); display: flex; gap: .5rem; }
.modal-usp span { color: var(--tx); }
.modal-actions { display: flex; gap: .5rem; margin-bottom: .7rem; }
.modal-add-btn { flex: 1; padding: .95rem; font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; background: var(--dark); color: var(--wh); border: none; cursor: pointer; font-family: 'Manrope', sans-serif; transition: background .2s; }
.modal-add-btn:hover { background: var(--ac); }
.modal-fav-btn { width: 46px; flex-shrink: 0; border: 1px solid var(--border); background: transparent; font-size: 1.2rem; color: var(--tx3); cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; }
.modal-fav-btn:hover { border-color: #dc2626; color: #dc2626; }
.modal-custom-btn { font-size: .72rem; color: var(--tx3); padding: 0; margin-bottom: 1.5rem; border: none; background: none; text-align: left; cursor: pointer; text-decoration: underline; font-family: 'Manrope', sans-serif; }
.modal-reviews-section { border-top: 1px solid var(--border); padding-top: 1.2rem; margin-top: .5rem; }
.modal-reviews-title { font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tx3); font-weight: 600; margin-bottom: 1rem; }
.review-item { padding: .8rem 0; border-bottom: 1px solid var(--border); }
.review-item:last-child { border-bottom: none; }
.review-header { display: flex; align-items: center; gap: .6rem; margin-bottom: .3rem; flex-wrap: wrap; }
.review-name { font-size: .8rem; font-weight: 600; color: var(--tx); }
.review-stars { display: flex; }
.review-date { font-size: .68rem; color: var(--tx3); margin-left: auto; }
.review-comment { font-size: .8rem; color: var(--tx2); line-height: 1.6; }
.modal-review-form { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.review-form-title { font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tx3); font-weight: 600; margin-bottom: .6rem; }
.review-stars-input { display: flex; gap: .3rem; font-size: 1.5rem; cursor: pointer; margin-bottom: .3rem; }
.star-input { color: var(--border-hover); transition: color .1s; }

/* ============================================================ CUSTOM MODAL */
.custom-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-48%) scale(.96); width: min(540px, 94vw); max-height: 90vh; overflow-y: auto; background: var(--bg); border: 1px solid var(--border); z-index: 301; opacity: 0; pointer-events: none; transition: all .35s ease; }
.custom-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%,-50%) scale(1); }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: var(--bg2); z-index: 1; }
.modal-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--tx); }
.modal-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0; background: var(--bg); }
.modal-body .form-field { background: var(--bg); }
.modal-body .form-field input, .modal-body .form-field select, .modal-body .form-field textarea { background: var(--bg); border-bottom: 1px solid var(--border); }
.modal-actions { display: flex; flex-direction: column; gap: 0; margin-top: 1rem; background: var(--border); }
.upload-zone { margin: .5rem 0; padding: 1.8rem; border: 1px dashed var(--border); background: var(--bg2); cursor: pointer; text-align: center; transition: border-color .2s; display: flex; align-items: center; justify-content: center; }
.upload-zone:hover { border-color: var(--border-hover); }
#upload-idle { display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.upload-icon { font-size: 1.5rem; opacity: .3; }
#upload-idle span { font-size: .82rem; color: var(--tx2); }
#upload-idle small { font-size: .7rem; color: var(--tx3); }
#upload-preview { position: relative; }
#upload-preview img { max-height: 120px; object-fit: contain; }
.remove-file { position: absolute; top: -8px; right: -8px; background: var(--bg-dark); color: var(--wh); width: 22px; height: 22px; border-radius: 50%; font-size: .7rem; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; }

/* ============================================================ MULTI-STEP CHECKOUT */
.order-modal-new { max-width: 560px; }
.checkout-progress { display: flex; align-items: center; gap: 0; flex: 1; padding-right: 1rem; }
.cp-step { display: flex; flex-direction: column; align-items: center; gap: .3rem; flex: 1; opacity: .35; transition: opacity .3s; }
.cp-step.active { opacity: 1; }
.cp-step.done { opacity: .6; }
.cp-dot { width: 24px; height: 24px; border-radius: 50%; background: var(--bg2); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; color: var(--tx3); transition: all .3s; }
.cp-step.active .cp-dot { background: var(--bg-dark); border-color: var(--bg-dark); color: #fff; }
.cp-step.done .cp-dot { background: var(--green,#059669); border-color: var(--green,#059669); color: #fff; }
.cp-step span { font-size: .55rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--tx3); white-space: nowrap; }
.cp-step.active span { color: var(--tx); }
.cp-line { flex: 1; height: 1px; background: var(--border); margin-bottom: 1.2rem; transition: background .3s; }
.cp-line.done { background: var(--green,#059669); }
.checkout-step-pane { display: none; flex-direction: column; min-height: 340px; animation: stepSlideIn .3s ease; }
.checkout-step-pane.active { display: flex; }
@keyframes stepSlideIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }
.checkout-pane-inner { flex: 1; padding: 1.4rem 1.5rem; overflow-y: auto; max-height: 55vh; }
.checkout-pane-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--tx); margin-bottom: 1.2rem; }
.checkout-pane-footer { flex-shrink: 0; padding: 1rem 1.5rem; border-top: 1px solid var(--border); background: var(--bg2); }
.saved-addr-label { font-size: .6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tx3); margin-top: 1rem; margin-bottom: .5rem; }
.saved-addr-list { display: flex; flex-direction: column; gap: 2px; }
.saved-addr-item { padding: .7rem 1rem; background: var(--bg2); border: 1px solid var(--border); font-size: .8rem; color: var(--tx2); cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.saved-addr-item:hover { background: var(--bg3); color: var(--tx); border-color: var(--border-hover); }
.saved-addr-item .addr-use { font-size: .6rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ac); flex-shrink: 0; }
#order-summary-v2 { margin-bottom: 1.2rem; }
.summary-item { display: flex; align-items: center; gap: .8rem; padding: .7rem 0; border-bottom: 1px solid var(--border); }
.summary-item-img { width: 48px; height: 48px; object-fit: cover; background: var(--bg3); flex-shrink: 0; }
.summary-item-info { flex: 1; min-width: 0; }
.summary-item-name { font-size: .82rem; font-weight: 600; color: var(--tx); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.summary-item-qty { font-size: .72rem; color: var(--tx3); margin-top: .1rem; }
.summary-item-price { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--tx); flex-shrink: 0; }
.summary-totals { margin-top: .8rem; padding-top: .8rem; }
.summary-total-row { display: flex; justify-content: space-between; align-items: baseline; padding: .25rem 0; font-size: .8rem; color: var(--tx2); }
.summary-total-row.final { font-weight: 700; font-size: .88rem; color: var(--tx); border-top: 1px solid var(--border); margin-top: .4rem; padding-top: .8rem; }
.summary-total-row.discount { color: #059669; }
.summary-free-shipping { font-size: .7rem; color: #059669; margin-top: .4rem; }
.checkout-upsell { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.upsell-title { font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tx3); font-weight: 600; margin-bottom: .8rem; }
.upsell-products { display: flex; flex-direction: column; gap: 2px; }
.upsell-item { display: flex; align-items: center; gap: .8rem; padding: .7rem; background: var(--bg2); border: 1px solid var(--border); cursor: pointer; transition: all .2s; }
.upsell-item:hover { background: var(--bg3); border-color: var(--border-hover); }
.upsell-item img { width: 44px; height: 44px; object-fit: cover; background: var(--bg3); flex-shrink: 0; }
.upsell-item-info { flex: 1; min-width: 0; }
.upsell-item-name { font-size: .8rem; font-weight: 600; color: var(--tx); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.upsell-item-price { font-size: .72rem; color: var(--tx3); margin-top: .1rem; }
.upsell-add-btn { width: 28px; height: 28px; border: 1px solid var(--border); background: transparent; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--tx2); cursor: pointer; flex-shrink: 0; transition: all .2s; }
.upsell-add-btn:hover { background: var(--bg-dark); color: #fff; border-color: var(--bg-dark); }
.checkout-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 3rem 2rem !important; }
.success-animation { margin-bottom: 1.5rem; }
.success-circle { width: 72px; height: 72px; border-radius: 50%; background: #059669; display: flex; align-items: center; justify-content: center; animation: successPop .5s cubic-bezier(.25,.8,.25,1) forwards; opacity: 0; }
@keyframes successPop { 0% { opacity: 0; transform: scale(.5); } 70% { transform: scale(1.1); } 100% { opacity: 1; transform: scale(1); } }
.success-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; color: var(--tx); margin-bottom: .8rem; }
.success-sub { font-size: .82rem; color: var(--tx2); line-height: 1.7; max-width: 340px; margin-bottom: 1rem; }
.success-order-id { font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tx3); padding: .5rem 1rem; border: 1px solid var(--border); background: var(--bg2); }

/* ============================================================ ADD TO CART ANIMATION */
.cart-fly-item { position: fixed; width: 40px; height: 40px; border-radius: 50%; background: var(--ac); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; pointer-events: none; z-index: 9999; }

/* ============================================================ TOAST */
.toast { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(10px); background: var(--bg-dark); color: var(--wh); border: 1px solid rgba(201,168,76,.2); padding: .7rem 1.6rem; font-size: .75rem; letter-spacing: .5px; z-index: 600; opacity: 0; transition: all .3s; pointer-events: none; white-space: nowrap; box-shadow: 0 8px 32px rgba(42,32,24,.3); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================ FAV HEART */
.fav-heart-btn { position: absolute; top: .6rem; right: .6rem; width: 30px; height: 30px; border-radius: 50%; background: rgba(253,249,243,.85); border: none; cursor: pointer; font-size: .95rem; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s, transform .2s; color: var(--tx2); backdrop-filter: blur(4px); z-index: 2; }
.product-card:hover .fav-heart-btn { opacity: 1; }
.fav-heart-btn:hover { transform: scale(1.15); color: #dc2626; }

/* ============================================================ ACCOUNT */
.account-btn { position: relative; padding: .4rem .6rem; color: var(--tx2); transition: color .3s; display: flex; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; min-width: 32px; min-height: 32px; }
.account-btn:hover { color: var(--tx); }
.account-btn.logged-in { color: var(--ac); }
#account-initials { width: 28px; height: 28px; background: var(--bg-dark); color: var(--wh); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-family: 'Cormorant Garamond', serif; font-weight: 500; }
.order-item { padding: .9rem 0; border-bottom: 1px solid var(--border); display: flex; gap: .8rem; align-items: center; }
.order-item-img { width: 48px; height: 48px; flex-shrink: 0; overflow: hidden; background: var(--bg3); }
.order-item-img img { width: 100%; height: 100%; object-fit: cover; }
.order-item-info { flex: 1; min-width: 0; }
.order-item-name { font-size: .82rem; font-weight: 500; color: var(--tx); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.order-item-date { font-size: .7rem; color: var(--tx3); margin-top: .1rem; }
.order-item-status { font-size: .58rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: .2rem .6rem; flex-shrink: 0; }
.status-pending { background: #fef9ec; color: #92700a; border: 1px solid #f0d878; }
.status-production { background: #eef4ff; color: #2d5db5; border: 1px solid #b8cff5; }
.status-shipped { background: #f0faf3; color: #1e7a40; border: 1px solid #a3d9b5; }
.status-delivered { background: #f0faf3; color: #1e7a40; border: 1px solid #a3d9b5; }
.status-completed { background: #f5f0e8; color: #6b5a3e; border: 1px solid var(--border); }

/* ============================================================ REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ============================================================ RESPONSIVE */
@media(max-width:1100px) {
    .products-grid { grid-template-columns: repeat(3,1fr); }
    .contact-inner { gap: 3rem; }
    .making-inner { grid-template-columns: 1fr; gap: 0; }
    .making-visual { order: 1; }
    .making-content { order: 2; padding: 3rem 5%; }
    .making-video-wrap { aspect-ratio: 9/16; max-height: 85svh; }
    .making-video-wrap::before { display: none; }
}

@media(max-width:800px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .products-grid { grid-template-columns: repeat(2,1fr); }
    .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-cta { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .footer-cta .btn-primary { width: 100%; text-align: center; justify-content: center; }
    .product-modal { top: 0; left: 0; right: 0; bottom: 0; transform: none; width: 100%; max-height: 100dvh; border-radius: 0; }
    .product-modal.open { transform: none; opacity: 1; }
    .product-modal-inner { grid-template-columns: 1fr; }
    .modal-gallery { position: relative; max-height: none; }
    .modal-zoom-wrap { aspect-ratio: 1; cursor: default; }
    .zoom-hint { display: none; }
    .zoom-result { display: none !important; }
    .modal-details { border-left: none; border-top: 1px solid var(--border); padding: 1.4rem; }
    .product-modal-topbar { padding: .7rem 1rem; min-height: 52px; }
    .cat-bento { grid-template-columns: 1fr 1fr; }
    .cat-tile--custom-cta { grid-column: auto; }
    .cat-tile { aspect-ratio: 3/2; }
    .cat-tile--large { aspect-ratio: 3/2; }
}

@media(max-width:600px) {
    h2 { font-size: clamp(1.9rem, 7vw, 2.4rem); }
    .section-header { margin-bottom: 1.8rem; }
    #header { padding: .8rem 4%; }
    .nav-logo { font-size: 1rem; letter-spacing: 4px; }
    #admin-dashboard-btn { font-size: .55rem; letter-spacing: 1px; padding: .35rem .6rem; }
    .hero { grid-template-columns: 1fr; grid-template-rows: auto auto; padding-top: 64px; min-height: 100svh; }
    .hero::before { display: none; }
    .hero-showcase { animation: none; }
    .hero-eyebrow, .hero h1, .hero-sub, .hero-actions, .hero-trust, .hero-right { animation: none; opacity: 1; transform: none; }
    .hero-left { order: 1; padding: 2.5rem 6% 1.2rem; text-align: center; align-items: center; }
    .hero-eyebrow { justify-content: center; font-size: .55rem; }
    .hero h1 { font-size: clamp(2.6rem, 10vw, 3.5rem); letter-spacing: -1px; }
    .hero-sub { font-size: .8rem; max-width: 90%; text-align: center; margin: 1.2rem 0 1.6rem; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: .6rem; width: 100%; }
    .hero .btn-primary, .hero .btn-ghost { text-align: center; justify-content: center; padding: .9rem 1.5rem; }
    .hero-trust { align-items: center; margin-top: 1.4rem; padding-top: 1.4rem; }
    .hero-right { order: 2; padding: .5rem 6% 2.5rem; }
    .hero-showcase { max-width: 260px; height: 340px; }
    .showcase-dots { margin-top: 1.2rem; }
    .hero-divider { padding: 1rem 5%; }
    .hero-divider-item:nth-child(n+4) { display: none; }
    .hero-divider-item { font-size: .55rem; letter-spacing: 1.5px; }
    .shop-section { padding: 3rem 4% 2rem; }
    .filter-bar { gap: .3rem; margin-bottom: 2rem; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .filter-bar::-webkit-scrollbar { display: none; }
    .filter-btn { font-size: .6rem; padding: .45rem 1rem; white-space: nowrap; flex-shrink: 0; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
    .product-img-wrap { aspect-ratio: 1/1; background: #e8e2d8; }
    .product-img-wrap img { object-fit: contain !important; padding: .4rem; }
    .product-card:hover .product-img-wrap img { transform: none; }
    .product-info { padding: .8rem; }
    .product-name { font-size: .85rem; }
    .product-desc { display: none; }
    .product-price { font-size: 1rem; }
    .product-add-btn { width: 30px; height: 30px; font-size: 1rem; }
    .custom-card-body { padding: 1.2rem; aspect-ratio: 1/1; }
    .fav-heart-btn { opacity: 1; }
    .instagram-section { padding: 3rem 4%; }
    .ig-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
    .ig-post--large { grid-row: unset; grid-column: span 2; }
    .ig-proof-bar { display: grid; grid-template-columns: 1fr 1fr; padding: 1.2rem; }
    .ig-proof-div { display: none; }
    .ig-proof-item { align-items: flex-start; padding: .8rem; }
    .ig-proof-num { font-size: 1.6rem; }
    .categories-section { padding: 3rem 4%; }
    .cat-bento { grid-template-columns: 1fr 1fr; gap: 1px; }
    .cat-tile { aspect-ratio: 1/1; }
    .cat-tile--large { grid-row: unset; aspect-ratio: 1/1; }
    .cat-tile-label { font-size: 1.1rem; }
    .cat-tile--custom-cta { aspect-ratio: 1/1; }
    .process-section { padding: 3.5rem 4%; }
    .process-steps { grid-template-columns: 1fr; gap: 1px; }
    .process-step { padding: 1.2rem 1rem; }
    .making-section { padding: 2.5rem 0 3rem; }
    .making-inner { grid-template-columns: 1fr; gap: 0; }
    .making-visual { order: 1; }
    .making-video-wrap {
        aspect-ratio: 9/16;
        width: 100%;
        max-height: 80svh;
    }
    .making-video { object-fit: cover; width: 100%; height: 100%; }
    .making-video-wrap::before { display: none; }
    .making-content { order: 2; padding: 2rem 6%; }
    .making-content h2 { font-size: clamp(2rem, 8vw, 2.8rem); }
    .making-timeline::before { display: none; }
    .making-badge { font-size: .55rem; padding: .3rem .7rem; }
    .making-play-btn { width: 64px; height: 64px; }
    .stats-section { display: grid; grid-template-columns: 1fr 1fr; padding: 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .stat { padding: 1.5rem 1rem; border-bottom: 1px solid var(--border); }
    .stat:nth-child(odd) { border-right: 1px solid var(--border); }
    .stat-num { font-size: 2.2rem; }
    .stat-div { display: none; }
    .faq-section { padding: 3.5rem 4%; }
    .faq-q { font-size: .82rem; padding: 1.2rem 0; }
    .contact-section { padding: 3.5rem 5%; }
    .form-row { grid-template-columns: 1fr; }
    .form-btns { flex-direction: column; }
    .form-btns .btn-wa { width: 100%; justify-content: center; }
    .cart-sidebar { width: 100%; border-left: none; }
    .discount-input-wrap input { font-size: 16px; }
    .product-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; transform: none !important; width: 100%; max-height: 100dvh; border-radius: 0; display: flex; flex-direction: column; overflow: hidden; }
    .product-modal.open { transform: none !important; opacity: 1; }
    .product-modal-topbar { padding: .7rem 1rem; min-height: 48px; flex-shrink: 0; }
    .modal-close { width: 34px; height: 34px; font-size: .95rem; }
    .product-modal-inner { grid-template-columns: 1fr !important; flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; display: block; }
    .modal-gallery { position: relative !important; width: 100%; max-height: none !important; flex-shrink: 0; background: #e8e2d8; }
    .modal-zoom-wrap { position: relative; width: 100%; aspect-ratio: 1/1 !important; max-height: 100vw; overflow: hidden; cursor: default; background: #e8e2d8; display: flex; align-items: center; justify-content: center; }
    .modal-zoom-wrap img { width: 100%; height: 100%; object-fit: contain !important; display: block; transform: none !important; padding: .5rem; }
    .zoom-hint { display: none !important; }
    .zoom-lens { display: none !important; }
    .modal-thumbs { display: none; }
    .modal-details { display: flex; flex-direction: column; border-left: none !important; border-top: 1px solid var(--border); padding: 1.4rem 1.2rem 3rem; overflow-y: visible !important; }
    .modal-name { font-size: 1.5rem; }
    .modal-price { font-size: 1.5rem; }
    .size-btn { padding: .8rem 1.1rem; min-height: 44px; }
    .modal-add-btn { padding: .9rem; }
    .modal-fav-btn { width: 44px; }
    .custom-modal { position: fixed; top: auto; bottom: 0; left: 0; right: 0; transform: translateY(100%); width: 100%; max-width: 100%; max-height: 92dvh; border-radius: 20px 20px 0 0; transition: transform .35s cubic-bezier(.25,.8,.25,1), opacity .35s; }
    .custom-modal.open { transform: translateY(0); opacity: 1; }
    .modal-header { position: relative; padding-top: 1.8rem; }
    .modal-header::before { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 32px; height: 3px; background: var(--border-hover); border-radius: 2px; }
    #account-sidebar { width: 100%; }
    .checkout-pane-inner { max-height: 60vh; }
    .cp-step span { display: none; }
    .cp-dot { width: 28px; height: 28px; font-size: .7rem; }
    .footer-cta { padding: 3rem 5%; }
    .footer-cta h2 { font-size: 1.8rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: .8rem; padding: 1.5rem 5%; }
    .footer-nav { gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
    .floating-wa { bottom: 1.2rem; right: 1.2rem; width: 50px; height: 50px; border-radius: 50%; }
    .toast { font-size: .7rem; padding: .6rem 1.2rem; max-width: 88vw; text-align: center; white-space: normal; }
    @supports(padding-bottom: env(safe-area-inset-bottom)) {
        .cart-footer { padding-bottom: calc(1.2rem + env(safe-area-inset-bottom)); }
        .floating-wa { bottom: calc(1.2rem + env(safe-area-inset-bottom)); }
        .custom-modal, .product-modal { padding-bottom: env(safe-area-inset-bottom); }
        .toast { bottom: calc(1.5rem + env(safe-area-inset-bottom)); }
    }
}

@media(max-width:400px) {
    .hero h1 { font-size: 2.3rem; }
    .hero-showcase { max-width: 220px; height: 280px; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .product-name { font-size: .8rem; }
    .cat-tile-label { font-size: .95rem; }
    .filter-btn { font-size: .58rem; padding: .4rem .9rem; }
    .modal-name { font-size: 1.4rem; }
    #admin-dashboard-btn { display: none; }
}