@import"https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap";:root{--gold: #c9a84c;--gold-light: #e8d5a3;--gold-dark: #a07c30;--gold-glow: rgba(201, 168, 76, .25);--black: #080808;--black-rich: #0d0d0d;--black-soft: #141414;--black-card: #1a1a1a;--white: #ffffff;--off-white: #f5f2ed;--text-muted: #888888;--border: rgba(201, 168, 76, .2);--border-hover: rgba(201, 168, 76, .6);--font-heading: "Cormorant Garamond", Georgia, serif;--font-body: "Montserrat", sans-serif;--radius: 2px;--transition: .3s ease;--max-width: 1280px;--header-h: 80px}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth;font-size:16px}body{background:var(--black);color:var(--white);font-family:var(--font-body);font-weight:300;line-height:1.7;-webkit-font-smoothing:antialiased;overflow-x:hidden}img{max-width:100%;height:auto;display:block}a{color:inherit;text-decoration:none;transition:color var(--transition)}ul{list-style:none}button{cursor:pointer;border:none;background:none;font-family:var(--font-body)}input,textarea,select{font-family:var(--font-body)}::-webkit-scrollbar{width:6px}::-webkit-scrollbar-track{background:var(--black)}::-webkit-scrollbar-thumb{background:var(--gold-dark);border-radius:3px}::selection{background:var(--gold);color:var(--black)}h1,h2,h3,h4,h5,h6{font-family:var(--font-heading);font-weight:400;line-height:1.15;letter-spacing:.02em}h1{font-size:clamp(2.5rem,5vw,4.5rem)}h2{font-size:clamp(2rem,3.5vw,3.2rem)}h3{font-size:clamp(1.4rem,2vw,2rem)}h4{font-size:1.25rem}p{font-size:.9rem;letter-spacing:.04em;color:#ffffffbf}.text-gold{color:var(--gold)}.text-center{text-align:center}.text-upper{text-transform:uppercase;letter-spacing:.15em;font-size:.72rem}.container{max-width:var(--max-width);margin:0 auto;padding:0 2rem}.section-pad{padding:7rem 0}.section-pad-sm{padding:4rem 0}.gold-line{display:block;width:60px;height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent);margin:1.5rem auto}.gold-line--left{margin-left:0}.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:1rem 2.5rem;font-family:var(--font-body);font-size:.72rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;transition:all var(--transition);cursor:pointer;position:relative;overflow:hidden}.btn:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background:#ffffff0f;transform:translate(-100%);transition:transform .4s ease}.btn:hover:before{transform:translate(0)}.btn-gold{background:linear-gradient(135deg,var(--gold-dark),var(--gold),var(--gold-light),var(--gold));background-size:200% 200%;background-position:0% 50%;color:var(--black);font-weight:700}.btn-gold:hover{background-position:100% 50%;box-shadow:0 0 30px var(--gold-glow),0 4px 20px #0006;transform:translateY(-1px)}.btn-outline{background:transparent;color:var(--gold);border:1px solid var(--gold)}.btn-outline:hover{background:var(--gold);color:var(--black);box-shadow:0 0 20px var(--gold-glow)}.btn-white{background:var(--white);color:var(--black)}.btn-white:hover{background:var(--off-white);box-shadow:0 4px 20px #ffffff26}.btn-full{width:100%}#header{position:sticky;top:0;left:0;right:0;z-index:1000;height:var(--header-h);display:flex;align-items:center;background:#080808eb;-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);border-bottom:1px solid var(--border);transition:all .4s ease}#header.scrolled{background:#080808fa;-webkit-backdrop-filter:blur(24px);backdrop-filter:blur(24px);border-bottom:1px solid rgba(201,168,76,.35);box-shadow:0 4px 40px #0009}.header-inner{display:flex;align-items:center;justify-content:space-between;width:100%}.header-logo img{height:64px;width:auto;filter:brightness(1);transition:filter var(--transition);display:block}.header-logo:hover img{filter:brightness(1.15)}.header-logo-text{font-family:var(--font-heading);font-size:1.6rem;font-weight:600;letter-spacing:.08em;color:var(--gold);text-transform:uppercase}.header-nav{display:flex;align-items:center;gap:2.5rem}.header-nav a{font-size:.7rem;font-weight:500;letter-spacing:.18em;text-transform:uppercase;color:#fffc;position:relative;padding:.25rem 0}.header-nav a:after{content:"";position:absolute;bottom:0;left:0;width:0;height:1px;background:var(--gold);transition:width var(--transition)}.header-nav a:hover{color:var(--gold)}.header-nav a:hover:after{width:100%}.header-actions{display:flex;align-items:center;gap:1.2rem}.header-icon{width:36px;height:36px;display:flex;align-items:center;justify-content:center;color:#fffc;border-radius:50%;transition:all var(--transition);position:relative}.header-icon:hover{color:var(--gold)}.header-icon svg{width:20px;height:20px}.cart-count{position:absolute;top:-4px;right:-4px;width:16px;height:16px;background:var(--gold);color:var(--black);font-size:.6rem;font-weight:700;border-radius:50%;display:flex;align-items:center;justify-content:center;opacity:0;transform:scale(0);transition:all var(--transition)}.cart-count.has-items{opacity:1;transform:scale(1)}.hamburger{display:none;flex-direction:column;gap:5px;padding:4px}.hamburger span{display:block;width:22px;height:1.5px;background:var(--white);transition:all var(--transition)}.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(4.5px,4.5px)}.hamburger.active span:nth-child(2){opacity:0}.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(4.5px,-4.5px)}.mobile-nav{position:fixed;top:0;left:0;right:0;bottom:0;background:#080808fc;-webkit-backdrop-filter:blur(24px);backdrop-filter:blur(24px);z-index:999;padding-top:var(--header-h);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2.5rem;transform:translate(100%);transition:transform .4s cubic-bezier(.4,0,.2,1)}.mobile-nav.open{transform:translate(0)}.mobile-nav a{font-family:var(--font-heading);font-size:2rem;color:var(--white);letter-spacing:.08em;transition:color var(--transition)}.mobile-nav a:hover{color:var(--gold)}.announcement-bar{background:linear-gradient(90deg,var(--black-rich),#1a1300,var(--black-rich));border-bottom:1px solid var(--border);text-align:center;padding:.6rem;font-size:.65rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold-light)}.announcement-bar a{color:var(--gold);border-bottom:1px solid var(--gold)}.hero{position:relative;min-height:100vh;display:flex;align-items:center;justify-content:center;overflow:hidden;background:var(--black)}.hero-bg{position:absolute;top:0;right:0;bottom:0;left:0;background-image:var(--hero-bg-image, none);background-size:cover;background-position:center;transform:scale(1.05);transition:transform 8s ease}.hero-bg:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background:linear-gradient(135deg,#080808d9,#0808088c,#080808cc)}.hero.loaded .hero-bg{transform:scale(1)}.hero-particles{position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;overflow:hidden}.particle{position:absolute;width:3px;height:3px;background:var(--gold);border-radius:50%;animation:float-particle linear infinite;opacity:0}@keyframes float-particle{0%{transform:translateY(100vh) rotate(0);opacity:0}10%{opacity:1}90%{opacity:.6}to{transform:translateY(-10vh) rotate(720deg);opacity:0}}.hero-content{position:relative;z-index:2;text-align:center;max-width:780px;padding:2rem;animation:hero-fade-in 1.2s ease forwards}@keyframes hero-fade-in{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}.hero-eyebrow{display:inline-block;font-size:.65rem;font-weight:600;letter-spacing:.35em;text-transform:uppercase;color:var(--gold);margin-bottom:1.5rem;padding:.5rem 1.5rem;border:1px solid var(--border);background:#c9a84c0f}.hero h1{color:var(--white);margin-bottom:1.2rem;font-style:italic;text-shadow:0 2px 40px rgba(0,0,0,.8)}.hero h1 span{color:var(--gold);font-style:normal}.hero p{font-size:.95rem;color:#ffffffb3;max-width:500px;margin:0 auto 2.5rem;letter-spacing:.06em}.hero-ctas{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}.hero-scroll{position:absolute;bottom:2.5rem;left:50%;transform:translate(-50%);display:flex;flex-direction:column;align-items:center;gap:.5rem;z-index:2;animation:bounce 2s ease infinite}.hero-scroll span{font-size:.6rem;letter-spacing:.25em;text-transform:uppercase;color:var(--gold)}.hero-scroll svg{width:16px;color:var(--gold)}@keyframes bounce{0%,to{transform:translate(-50%) translateY(0)}50%{transform:translate(-50%) translateY(6px)}}.features-bar{background:var(--black-soft);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:2rem 0}.features-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0}.feature-item{display:flex;align-items:center;gap:1rem;padding:0 2rem;position:relative}.feature-item+.feature-item:before{content:"";position:absolute;left:0;top:10%;bottom:10%;width:1px;background:var(--border)}.feature-icon{color:var(--gold);flex-shrink:0}.feature-icon svg{width:28px;height:28px}.feature-text h4{font-family:var(--font-body);font-size:.72rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--white);margin-bottom:.15rem}.feature-text p{font-size:.7rem;color:var(--text-muted);letter-spacing:.05em}.section-header{margin-bottom:4rem}.section-header.center{text-align:center}.section-label{display:block;font-size:.65rem;font-weight:600;letter-spacing:.3em;text-transform:uppercase;color:var(--gold);margin-bottom:1rem}.section-header h2{color:var(--white)}.section-header p{max-width:480px;margin-top:1rem}.section-header.center p{margin-left:auto;margin-right:auto}.products-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5px}.product-card{position:relative;background:var(--black-card);overflow:hidden;cursor:pointer;group:true}.product-card-image{position:relative;aspect-ratio:3/4;overflow:hidden;background:var(--black-soft)}.product-card-image img{width:100%;height:100%;object-fit:cover;transition:transform .7s cubic-bezier(.4,0,.2,1)}.product-card:hover .product-card-image img{transform:scale(1.08)}.product-card-overlay{position:absolute;top:0;right:0;bottom:0;left:0;background:linear-gradient(to top,rgba(8,8,8,.85) 0%,transparent 50%);display:flex;align-items:flex-end;padding:1.5rem;opacity:0;transition:opacity .4s ease}.product-card:hover .product-card-overlay{opacity:1}.product-card-actions{display:flex;gap:.5rem;width:100%;transform:translateY(10px);transition:transform .4s ease}.product-card:hover .product-card-actions{transform:translateY(0)}.product-card-body{padding:1.2rem 1.2rem 1.5rem;border-top:1px solid var(--border)}.product-card-tag{font-size:.6rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.4rem}.product-card-title{font-family:var(--font-heading);font-size:1.15rem;font-weight:500;color:var(--white);margin-bottom:.5rem;line-height:1.3}.product-card-price{display:flex;align-items:center;gap:.7rem}.price-current{font-size:.95rem;font-weight:600;color:var(--gold);letter-spacing:.05em}.price-compare{font-size:.8rem;color:var(--text-muted);text-decoration:line-through}.badge-sale{display:inline-block;padding:.15rem .5rem;background:var(--gold);color:var(--black);font-size:.6rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase}.badge-new{position:absolute;top:1rem;left:1rem;padding:.25rem .7rem;background:var(--black);border:1px solid var(--gold);color:var(--gold);font-size:.58rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;z-index:2}.split-section{display:grid;grid-template-columns:1fr 1fr;min-height:600px}.split-image{position:relative;overflow:hidden;background:var(--black-soft)}.split-image img{width:100%;height:100%;object-fit:cover;transition:transform .8s ease}.split-section:hover .split-image img{transform:scale(1.04)}.split-image:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border:1px solid var(--border);pointer-events:none}.split-content{background:var(--black-soft);display:flex;align-items:center;padding:5rem 4rem;border:1px solid var(--border);border-left:none}.split-content-inner{max-width:480px}.split-content h2{margin-bottom:1.5rem}.split-content p{margin-bottom:1.5rem;font-size:.88rem;line-height:1.9}.split-stats{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin:2.5rem 0;padding:2rem 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}.stat-item h3{font-size:2.2rem;font-weight:300;color:var(--gold);line-height:1;margin-bottom:.3rem}.stat-item p{font-size:.7rem;letter-spacing:.12em;text-transform:uppercase;color:var(--text-muted)}.testimonials-section{background:var(--black-soft)}.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5px}.testimonial-card{background:var(--black-card);padding:2.5rem;border:1px solid var(--border);transition:border-color var(--transition),box-shadow var(--transition)}.testimonial-card:hover{border-color:var(--border-hover);box-shadow:0 0 30px #c9a84c14}.stars{display:flex;gap:3px;margin-bottom:1.2rem}.stars svg{width:14px;height:14px;fill:var(--gold);color:var(--gold)}.testimonial-text{font-family:var(--font-heading);font-size:1.1rem;font-style:italic;color:#ffffffe6;line-height:1.7;margin-bottom:1.5rem}.testimonial-author{display:flex;align-items:center;gap:.8rem;padding-top:1.2rem;border-top:1px solid var(--border)}.author-avatar{width:38px;height:38px;border-radius:50%;background:var(--gold-dark);display:flex;align-items:center;justify-content:center;font-family:var(--font-heading);font-size:1rem;color:var(--black);font-weight:600;flex-shrink:0;overflow:hidden}.author-avatar img{width:100%;height:100%;object-fit:cover}.author-name{font-size:.78rem;font-weight:600;color:var(--white);margin-bottom:.1rem}.author-location{font-size:.65rem;color:var(--text-muted);letter-spacing:.08em}.categories-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5px}.category-card{position:relative;overflow:hidden;aspect-ratio:4/5;background:var(--black-soft)}.category-card img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease;filter:brightness(.7)}.category-card:hover img{transform:scale(1.06);filter:brightness(.85)}.category-card-content{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;flex-direction:column;align-items:center;justify-content:flex-end;padding:2.5rem;background:linear-gradient(to top,rgba(8,8,8,.9) 0%,transparent 60%);text-align:center}.category-card-content h3{font-size:1.8rem;font-style:italic;color:var(--white);margin-bottom:.8rem}.category-link{display:inline-flex;align-items:center;gap:.4rem;font-size:.65rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);font-weight:600;border-bottom:1px solid rgba(201,168,76,.4);padding-bottom:2px;transition:gap var(--transition),border-color var(--transition)}.category-link:hover{gap:.7rem;border-color:var(--gold)}.category-link svg{width:12px;height:12px}.newsletter-section{background:linear-gradient(135deg,var(--black-soft) 0%,#0f0c00 50%,var(--black-soft) 100%);border-top:1px solid var(--border);border-bottom:1px solid var(--border);text-align:center}.newsletter-inner{max-width:560px;margin:0 auto}.newsletter-inner h2{margin-bottom:.8rem}.newsletter-inner p{margin-bottom:2.5rem}.newsletter-form{display:flex;gap:0;border:1px solid var(--border);transition:border-color var(--transition),box-shadow var(--transition)}.newsletter-form:focus-within{border-color:var(--gold);box-shadow:0 0 20px var(--gold-glow)}.newsletter-form input{flex:1;background:#ffffff0a;border:none;padding:1rem 1.5rem;color:var(--white);font-size:.82rem;letter-spacing:.06em;outline:none}.newsletter-form input::placeholder{color:var(--text-muted)}.newsletter-form button{background:var(--gold);color:var(--black);padding:1rem 1.8rem;font-size:.65rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;transition:background var(--transition);white-space:nowrap}.newsletter-form button:hover{background:var(--gold-light)}.newsletter-disclaimer{margin-top:1rem;font-size:.65rem;color:var(--text-muted);letter-spacing:.06em}#footer{background:var(--black-rich);border-top:1px solid var(--border);padding:5rem 0 2rem}.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:4rem;margin-bottom:4rem}.footer-brand img{height:52px;margin-bottom:1.5rem}.footer-brand-name{font-family:var(--font-heading);font-size:1.5rem;color:var(--gold);letter-spacing:.08em;margin-bottom:1rem}.footer-brand p{font-size:.8rem;line-height:1.8;max-width:280px}.footer-socials{display:flex;gap:.8rem;margin-top:1.5rem}.footer-social{width:36px;height:36px;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--text-muted);transition:all var(--transition)}.footer-social:hover{border-color:var(--gold);color:var(--gold);background:#c9a84c0f}.footer-social svg{width:16px;height:16px}.footer-col h5{font-family:var(--font-body);font-size:.65rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);margin-bottom:1.5rem}.footer-col ul{display:flex;flex-direction:column;gap:.75rem}.footer-col ul li a{font-size:.8rem;color:var(--text-muted);transition:color var(--transition);letter-spacing:.04em}.footer-col ul li a:hover{color:var(--gold-light)}.footer-bottom{padding-top:2rem;border-top:1px solid var(--border);display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}.footer-bottom p{font-size:.7rem;color:var(--text-muted);letter-spacing:.06em}.footer-payment{display:flex;gap:.5rem;align-items:center}.payment-icon{background:var(--black-card);border:1px solid var(--border);border-radius:3px;padding:.25rem .5rem;font-size:.6rem;color:var(--text-muted);letter-spacing:.05em}.cart-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000b3;z-index:1998;opacity:0;pointer-events:none;transition:opacity .4s ease}.cart-overlay.open{opacity:1;pointer-events:all}.cart-drawer{position:fixed;top:0;right:0;bottom:0;width:min(420px,95vw);background:var(--black-soft);border-left:1px solid var(--border);z-index:1999;display:flex;flex-direction:column;transform:translate(100%);transition:transform .4s cubic-bezier(.4,0,.2,1)}.cart-drawer.open{transform:translate(0)}.cart-header{display:flex;align-items:center;justify-content:space-between;padding:1.5rem 2rem;border-bottom:1px solid var(--border)}.cart-header h3{font-size:.7rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold)}.cart-close{width:30px;height:30px;display:flex;align-items:center;justify-content:center;color:var(--text-muted);transition:color var(--transition)}.cart-close:hover{color:var(--white)}.cart-close svg{width:18px;height:18px}.cart-items{flex:1;overflow-y:auto;padding:1.5rem 2rem}.cart-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;gap:1rem;color:var(--text-muted)}.cart-empty svg{width:48px;height:48px;opacity:.3}.cart-empty p{font-size:.8rem;letter-spacing:.08em}.cart-item{display:flex;gap:1rem;padding:1.2rem 0;border-bottom:1px solid var(--border)}.cart-item-image{width:72px;height:90px;object-fit:cover;background:var(--black-card);flex-shrink:0}.cart-item-details{flex:1}.cart-item-title{font-size:.82rem;color:var(--white);margin-bottom:.3rem;line-height:1.4}.cart-item-variant{font-size:.68rem;color:var(--text-muted);margin-bottom:.5rem;letter-spacing:.06em}.cart-item-price{font-size:.88rem;font-weight:600;color:var(--gold)}.cart-item-qty{display:flex;align-items:center;gap:.5rem;margin-top:.5rem}.qty-btn{width:24px;height:24px;border:1px solid var(--border);color:var(--white);font-size:.9rem;display:flex;align-items:center;justify-content:center;transition:all var(--transition)}.qty-btn:hover{border-color:var(--gold);color:var(--gold)}.qty-value{font-size:.8rem;min-width:20px;text-align:center}.cart-footer{padding:1.5rem 2rem 2rem;border-top:1px solid var(--border)}.cart-subtotal{display:flex;justify-content:space-between;margin-bottom:1.2rem;padding-bottom:1.2rem;border-bottom:1px solid var(--border)}.cart-subtotal span:first-child{font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;color:var(--text-muted)}.cart-subtotal span:last-child{font-size:1rem;font-weight:600;color:var(--white)}.cart-shipping-note{font-size:.68rem;text-align:center;color:var(--gold);margin-bottom:1rem;letter-spacing:.08em}.product-page{padding-top:4rem;padding-bottom:6rem}.product-layout{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}.product-main-image{aspect-ratio:3/4;overflow:hidden;background:var(--black-card);margin-bottom:1.5px;cursor:zoom-in}.product-main-image img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}.product-main-image:hover img{transform:scale(1.05)}.product-thumbnails{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5px}.product-thumb{aspect-ratio:1;overflow:hidden;background:var(--black-card);cursor:pointer;border:1.5px solid transparent;transition:border-color var(--transition)}.product-thumb.active{border-color:var(--gold)}.product-thumb img{width:100%;height:100%;object-fit:cover}.product-info{position:sticky;top:calc(var(--header-h) + 1rem)}.product-breadcrumb{display:flex;gap:.4rem;align-items:center;font-size:.65rem;color:var(--text-muted);letter-spacing:.1em;text-transform:uppercase;margin-bottom:1.5rem}.product-breadcrumb a:hover{color:var(--gold)}.product-breadcrumb span{color:var(--border)}.product-category{font-size:.62rem;letter-spacing:.25em;text-transform:uppercase;color:var(--gold);margin-bottom:.8rem}.product-title{font-family:var(--font-heading);font-size:clamp(2rem,3vw,2.8rem);font-weight:400;color:var(--white);line-height:1.2;margin-bottom:1rem}.product-price-row{display:flex;align-items:center;gap:1rem;margin-bottom:1.2rem}.product-price-current{font-size:1.6rem;font-weight:300;color:var(--gold);letter-spacing:.05em}.product-price-compare{font-size:1rem;color:var(--text-muted);text-decoration:line-through}.product-reviews{display:flex;align-items:center;gap:.6rem;margin-bottom:1.5rem;padding-bottom:1.5rem;border-bottom:1px solid var(--border)}.product-reviews .stars svg{width:12px;height:12px}.review-count{font-size:.7rem;color:var(--text-muted);letter-spacing:.06em}.product-description{font-size:.85rem;line-height:1.9;margin-bottom:2rem}.variant-label{font-size:.65rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase;color:var(--white);margin-bottom:.8rem}.variant-buttons{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:2rem}.variant-btn{padding:.5rem 1.2rem;border:1px solid var(--border);color:var(--text-muted);font-size:.72rem;letter-spacing:.08em;transition:all var(--transition);background:transparent}.variant-btn:hover,.variant-btn.active{border-color:var(--gold);color:var(--gold);background:#c9a84c0f}.variant-btn.unavailable{opacity:.35;cursor:not-allowed;text-decoration:line-through}.product-quantity{display:flex;align-items:center;gap:0;border:1px solid var(--border);width:fit-content;margin-bottom:1.5rem}.product-quantity .qty-btn{width:44px;height:44px;font-size:1.1rem;border:none;border-right:1px solid var(--border);border-radius:0}.product-quantity .qty-btn:last-child{border-right:none;border-left:1px solid var(--border)}.product-quantity input{width:60px;height:44px;text-align:center;background:transparent;border:none;color:var(--white);font-size:.9rem;outline:none;-moz-appearance:textfield}.product-quantity input::-webkit-outer-spin-button,.product-quantity input::-webkit-inner-spin-button{-webkit-appearance:none}.product-ctas{display:flex;flex-direction:column;gap:.75rem;margin-bottom:2rem}.product-guarantees{display:flex;flex-direction:column;gap:.75rem;padding-top:1.5rem;border-top:1px solid var(--border)}.guarantee-item{display:flex;align-items:center;gap:.8rem;font-size:.72rem;color:var(--text-muted);letter-spacing:.04em}.guarantee-item svg{width:16px;height:16px;color:var(--gold);flex-shrink:0}.collection-hero{padding:5rem 0 4rem;text-align:center;background:var(--black-soft);border-bottom:1px solid var(--border)}.collection-filters{display:flex;align-items:center;gap:1rem;padding:1.5rem 0;border-bottom:1px solid var(--border);overflow-x:auto;-webkit-overflow-scrolling:touch}.filter-btn{flex-shrink:0;padding:.5rem 1.2rem;border:1px solid var(--border);color:var(--text-muted);font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;transition:all var(--transition);white-space:nowrap}.filter-btn.active,.filter-btn:hover{border-color:var(--gold);color:var(--gold);background:#c9a84c0d}.page-content{padding-top:5rem;padding-bottom:6rem;max-width:760px;margin:0 auto}.page-content h1{margin-bottom:2rem}.page-content h2{margin:2.5rem 0 1rem;font-size:1.5rem}.page-content p{margin-bottom:1.2rem;font-size:.88rem;line-height:1.9}.page-content a{color:var(--gold);border-bottom:1px solid rgba(201,168,76,.3)}.fade-up{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease}.fade-up.visible{opacity:1;transform:translateY(0)}.fade-up-delay-1{transition-delay:.1s}.fade-up-delay-2{transition-delay:.2s}.fade-up-delay-3{transition-delay:.3s}.fade-up-delay-4{transition-delay:.4s}.toast{position:fixed;bottom:2rem;left:50%;transform:translate(-50%) translateY(100px);background:var(--black-card);border:1px solid var(--gold);color:var(--white);padding:.9rem 1.8rem;font-size:.78rem;letter-spacing:.08em;z-index:3000;transition:transform .4s cubic-bezier(.4,0,.2,1);white-space:nowrap;box-shadow:0 0 30px var(--gold-glow)}.toast.show{transform:translate(-50%) translateY(0)}@media(max-width:1100px){.products-grid{grid-template-columns:repeat(3,1fr)}.footer-grid{grid-template-columns:1fr 1fr;gap:3rem}}@media(max-width:900px){.header-nav{display:none}.hamburger{display:flex}.features-grid{grid-template-columns:1fr 1fr}.feature-item+.feature-item:before{display:none}.split-section{grid-template-columns:1fr}.split-image{aspect-ratio:16/9;min-height:280px}.split-content{padding:3rem 2rem;border-left:1px solid var(--border);border-top:none}.testimonials-grid{grid-template-columns:1fr}.categories-grid{grid-template-columns:1fr 1fr}.product-layout{grid-template-columns:1fr}.product-info{position:static}.product-thumbnails{grid-template-columns:repeat(5,1fr)}.cart-page-layout{grid-template-columns:1fr!important}}@media(max-width:640px){:root{--header-h: 60px}.section-pad{padding:4rem 0}.section-pad-sm{padding:2.5rem 0}.container{padding:0 1.2rem}h1{font-size:clamp(2rem,8vw,3rem)}h2{font-size:clamp(1.7rem,6vw,2.5rem)}h3{font-size:clamp(1.2rem,4vw,1.6rem)}.announcement-bar{font-size:.58rem;letter-spacing:.1em;padding:.5rem 1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.header-logo img{height:48px}.header-logo-text{font-size:1.2rem}.header-icon{width:32px;height:32px}.header-icon svg{width:18px;height:18px}.header-actions{gap:.6rem}.hero{min-height:95svh}.hero-content{padding:1.5rem 1rem}.hero-eyebrow{font-size:.58rem;letter-spacing:.2em;padding:.4rem 1rem;margin-bottom:1rem}.hero h1{margin-bottom:1rem;line-height:1.1}.hero p{font-size:.85rem;margin-bottom:2rem}.hero-ctas{flex-direction:column;align-items:stretch;width:100%;max-width:300px;margin:0 auto;gap:.8rem}.hero-ctas .btn{width:100%;justify-content:center}.btn{padding:.9rem 1.8rem;font-size:.68rem}.features-grid{grid-template-columns:1fr 1fr;gap:0}.feature-item{padding:1rem;flex-direction:column;text-align:center;gap:.6rem}.feature-item+.feature-item:before{display:none}.feature-icon svg{width:24px;height:24px}.feature-text h4{font-size:.65rem}.feature-text p{font-size:.62rem}.section-header{margin-bottom:2.5rem}.section-header p{font-size:.82rem}.products-grid{grid-template-columns:repeat(2,1fr);gap:1px}.product-card-body{padding:.9rem .9rem 1.1rem}.product-card-title{font-size:.95rem}.price-current{font-size:.85rem}.price-compare{font-size:.72rem}.product-card-overlay{opacity:1;background:none;padding:.8rem;align-items:flex-end}.product-card-actions{transform:none!important}.product-card-actions .btn-outline{display:none}.product-card-actions .btn-gold{font-size:.58rem;padding:.55rem .5rem;letter-spacing:.1em}.categories-grid{grid-template-columns:1fr;gap:1px}.category-card{aspect-ratio:3/2}.category-card-content h3{font-size:1.5rem}.split-section{grid-template-columns:1fr}.split-image{aspect-ratio:4/3;min-height:auto}.split-content{padding:2.5rem 1.5rem}.split-content h2{font-size:1.8rem}.split-content p{font-size:.82rem}.split-stats{gap:1rem;padding:1.5rem 0}.stat-item h3{font-size:1.8rem}.testimonials-grid{grid-template-columns:1fr;gap:1px}.testimonial-card{padding:1.8rem 1.5rem}.testimonial-text{font-size:1rem}.newsletter-inner{padding:0 .5rem}.newsletter-form{flex-direction:column;border:none;gap:0}.newsletter-form input{background:#ffffff0d;border:1px solid var(--border);padding:.9rem 1.2rem;font-size:.8rem}.newsletter-form:focus-within{box-shadow:none}.newsletter-form input:focus{border-color:var(--gold);outline:none}.newsletter-form button{padding:.9rem;font-size:.68rem;border:1px solid var(--gold);border-top:none;letter-spacing:.15em}.footer-grid{grid-template-columns:1fr;gap:2rem}.footer-brand p{font-size:.78rem;max-width:100%}.footer-col ul{gap:.6rem}.footer-col ul li a{font-size:.78rem}.footer-bottom{flex-direction:column;text-align:center;gap:1rem}.footer-payment{justify-content:center;flex-wrap:wrap}.product-page{padding-top:2rem;padding-bottom:4rem}.product-title{font-size:clamp(1.6rem,6vw,2.2rem)}.product-price-current{font-size:1.3rem}.product-thumbnails{grid-template-columns:repeat(4,1fr)}.product-ctas{gap:.6rem}.product-ctas .btn{padding:1rem;font-size:.7rem}.product-guarantees{gap:.6rem}.variant-buttons{gap:.4rem}.variant-btn{padding:.45rem 1rem;font-size:.68rem}.cart-drawer{width:100vw}.page-content{padding-top:3rem;padding-bottom:4rem}.page-content[style*="max-width:900px"]{padding:2rem 0 4rem}.collection-hero{padding:3rem 0 2.5rem}.collection-filters{padding:1rem 0;gap:.6rem}.filter-btn{padding:.4rem .9rem;font-size:.62rem}.toast{width:calc(100% - 2rem);white-space:normal;text-align:center;font-size:.75rem}.hero-scroll{bottom:1.5rem}.gold-line{margin:1rem auto}}@media(max-width:390px){.products-grid{grid-template-columns:repeat(2,1fr)}.hero-eyebrow{display:none}.features-grid{grid-template-columns:1fr 1fr}.header-logo-text{font-size:1rem;letter-spacing:.04em}}@media(hover:none){.product-card-overlay{opacity:1}.product-card:hover .product-card-image img,.split-section:hover .split-image img{transform:none}.btn:hover:before{display:none}.category-card:hover img{transform:none;filter:brightness(.7)}}
/*# sourceMappingURL=/cdn/shop/t/20/assets/theme.css.map */
