@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&family=DM+Mono:wght@300;400;500&display=swap');

:root {
  --bg-dark: #0A0A0A;
  --bg-cream: #F5F0EB;
  --accent-gold: #C8A97E;
  --accent-teal: #4ECDC4;
  --text-white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-muted: #8A8A8A;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.08);
  --serif: 'Syne', sans-serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --mono: 'DM Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* LOADER */
.loader {
  position: fixed; inset:0; z-index:9999;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  transition: opacity .8s, visibility .8s;
}
.loader.hidden { opacity:0; visibility:hidden; pointer-events:none; }
.loader-counter {
  font-family: var(--mono); font-size: clamp(4rem,10vw,8rem);
  color: var(--accent-gold); font-weight:700;
}
.loader-text {
  font-family: var(--mono); font-size:.85rem;
  color: var(--text-muted); letter-spacing:.3em; text-transform:uppercase;
}
.loader-bar {
  width: 200px; height:2px; background: rgba(255,255,255,.1);
  border-radius:2px; overflow:hidden; margin-top:.5rem;
}
.loader-bar-fill {
  height:100%; width:0; background: var(--accent-gold);
  transition: width .05s linear;
}

/* NAV */
.nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  padding: 1.2rem 3rem;
  display: flex; align-items:center; justify-content:space-between;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: transparent;
  transition: background .4s, box-shadow .4s;
}
.nav.scrolled {
  background: rgba(10,10,10,.85);
  box-shadow: 0 1px 0 var(--glass-border);
}
.nav-logo {
  font-family: var(--serif); font-size:1.4rem; font-weight:900;
  color: var(--text-white); text-decoration:none; letter-spacing:.02em;
}
.nav-logo span { color: var(--accent-gold); }
.nav-links { display:flex; gap:2.5rem; list-style:none; }
.nav-links a {
  color: var(--text-muted); text-decoration:none; font-size:.8rem;
  font-weight:500; letter-spacing:.15em; text-transform:uppercase;
  transition: color .3s; position:relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:1px; background: var(--accent-gold);
  transition: width .3s;
}
.nav-links a:hover { color: var(--text-white); }
.nav-links a:hover::after { width:100%; }

.hamburger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:4px;
}
.hamburger span {
  width:24px; height:1.5px; background: var(--text-white);
  transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,4px); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-4px); }

.mobile-menu {
  position:fixed; inset:0; z-index:99;
  background: var(--bg-dark);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:2rem;
  opacity:0; visibility:hidden; transition: opacity .4s, visibility .4s;
}
.mobile-menu.open { opacity:1; visibility:visible; }
.mobile-menu a {
  font-family: var(--serif); font-size:2rem; color: var(--text-white);
  text-decoration:none; transition: color .3s;
}
.mobile-menu a:hover { color: var(--accent-gold); }

/* HERO */
.hero {
  min-height:100vh; position:relative;
  display:flex; flex-direction:column;
  justify-content:center; align-items:center;
  padding: 6rem 2rem 4rem;
  overflow:hidden; text-align:center;
}
.hero-bg {
  position:absolute; inset:0; z-index:0;
  background: url('assets/hero-bg.png') center/cover no-repeat;
  opacity:.35;
}
.hero-bg::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(10,10,10,.4), var(--bg-dark));
}
.hero-grid {
  position:absolute; inset:0; z-index:1;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position:relative; z-index:2; max-width:1100px; }
.hero-label {
  font-family: var(--mono); font-size:.75rem; letter-spacing:.4em;
  color: var(--accent-gold); text-transform:uppercase; margin-bottom:2rem;
}
.hero-title {
  font-family: var(--serif); font-weight:900;
  font-size: clamp(3rem,8vw,7rem); line-height:.95;
  margin-bottom:1.5rem;
}
.hero-title .line { display:block; overflow:hidden; }
.hero-title .line span {
  display:inline-block;
  transform: translateY(110%); opacity:0;
  animation: slideUp .9s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-title .line:nth-child(2) span { animation-delay:.15s; }
.hero-title .line:nth-child(3) span { animation-delay:.3s; }
.hero-title em {
  font-style:italic; color: var(--accent-gold);
}
.hero-sub {
  font-size:1.05rem; color: var(--text-muted);
  max-width:500px; margin:0 auto 2.5rem; line-height:1.7;
}
.hero-cta {
  display:inline-flex; align-items:center; gap:.7rem;
  padding: .9rem 2.2rem; border:1px solid var(--accent-gold);
  color: var(--accent-gold); text-decoration:none;
  font-size:.8rem; font-weight:600; letter-spacing:.15em;
  text-transform:uppercase; transition: all .4s; border-radius:0;
  background: transparent;
}
.hero-cta:hover {
  background: var(--accent-gold); color: var(--bg-dark);
}
.hero-cta svg { width:16px; height:16px; transition: transform .3s; }
.hero-cta:hover svg { transform: translateX(4px); }
.hero-scroll {
  position:absolute; bottom:2rem; left:50%; transform:translateX(-50%);
  z-index:2; display:flex; flex-direction:column; align-items:center; gap:.5rem;
}
.hero-scroll span {
  font-family: var(--mono); font-size:.65rem; letter-spacing:.2em;
  color: var(--text-muted); text-transform:uppercase;
}
.hero-scroll .scroll-line {
  width:1px; height:40px; background: var(--glass-border);
  position:relative; overflow:hidden;
}
.hero-scroll .scroll-line::after {
  content:''; position:absolute; top:-100%; left:0;
  width:100%; height:100%; background: var(--accent-gold);
  animation: scrollDown 2s infinite;
}

@keyframes slideUp {
  to { transform:translateY(0); opacity:1; }
}
@keyframes scrollDown {
  0% { top:-100%; }
  100% { top:100%; }
}

/* MARQUEE */
.marquee {
  padding: 1.8rem 0; border-top:1px solid var(--glass-border);
  border-bottom:1px solid var(--glass-border); overflow:hidden;
}
.marquee-track {
  display:flex; gap:3rem; animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--serif); font-size:1.1rem; font-weight:700;
  color: var(--text-muted); white-space:nowrap; text-transform:uppercase;
  letter-spacing:.1em;
}
.marquee-track .dot {
  color: var(--accent-gold); font-size:1.4rem;
}
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

/* PRODUCTS */
.products {
  padding: 7rem 3rem; max-width:1400px; margin:0 auto;
}
.section-header {
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:4rem; flex-wrap:wrap; gap:1rem;
}
.section-label {
  font-family: var(--mono); font-size:.7rem; letter-spacing:.35em;
  color: var(--accent-gold); text-transform:uppercase; margin-bottom:.8rem;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2rem,4vw,3.2rem);
  font-weight:700; line-height:1.1;
}
.section-link {
  font-size:.8rem; color: var(--text-muted); text-decoration:none;
  letter-spacing:.1em; text-transform:uppercase; font-weight:500;
  border-bottom:1px solid var(--glass-border); padding-bottom:.3rem;
  transition: color .3s, border-color .3s;
}
.section-link:hover { color: var(--accent-gold); border-color: var(--accent-gold); }

.product-grid {
  display:grid; grid-template-columns: repeat(3,1fr);
  gap:2rem;
}
.product-card {
  position:relative; overflow:hidden; border-radius:8px;
  background: var(--glass); border:1px solid var(--glass-border);
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s;
  cursor:pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.product-img {
  width:100%; aspect-ratio:1/1; object-fit:contain;
  background: #111;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.product-card:hover .product-img { transform: scale(1.06); }
.product-info {
  padding:1.5rem; display:flex; flex-direction:column; gap:.5rem;
}
.product-cat {
  font-family: var(--mono); font-size:.65rem; color: var(--accent-gold);
  letter-spacing:.2em; text-transform:uppercase;
}
.product-name {
  font-family: var(--serif); font-size:1.2rem; font-weight:700;
}
.product-bottom {
  display:flex; justify-content:space-between; align-items:center;
  margin-top:.5rem;
}
.product-price { font-weight:600; font-size:1rem; }
.product-price .old {
  color: var(--text-muted); text-decoration:line-through;
  font-size:.85rem; margin-right:.4rem; font-weight:400;
}
.add-cart-btn {
  width:36px; height:36px; border-radius:50%;
  border:1px solid var(--glass-border); background:transparent;
  color: var(--text-white); cursor:pointer; display:grid; place-items:center;
  transition: background .3s, border-color .3s;
}
.add-cart-btn:hover {
  background: var(--accent-gold); border-color: var(--accent-gold);
  color: var(--bg-dark);
}

/* Product Tabs */
.product-tabs {
  display:flex; gap:.5rem; margin-bottom:3rem; flex-wrap:wrap;
}
.product-tab {
  padding: .6rem 1.5rem; border:1px solid var(--glass-border);
  background:transparent; color: var(--text-muted);
  font-family: var(--mono); font-size:.75rem; letter-spacing:.1em;
  text-transform:uppercase; cursor:pointer;
  transition: all .3s; border-radius:0;
}
.product-tab:hover { border-color: var(--text-white); color: var(--text-white); }
.product-tab.active {
  background: var(--accent-gold); border-color: var(--accent-gold);
  color: var(--bg-dark);
}

/* Product Badge */
.product-badge {
  position:absolute; top:1rem; right:1rem; z-index:2;
  padding:.3rem .8rem; background: var(--accent-gold);
  color: var(--bg-dark); font-family: var(--mono);
  font-size:.65rem; font-weight:500; letter-spacing:.1em;
  text-transform:uppercase;
}

/* Product Card as Link */
.product-card { text-decoration:none; color: var(--text-white); display:block; }

/* View Button */
.view-btn {
  font-family: var(--mono); font-size:.7rem; color: var(--accent-gold);
  letter-spacing:.1em; text-transform:uppercase;
  transition: color .3s;
}
.product-card:hover .view-btn { color: var(--text-white); }

/* STATS */
.stats {
  padding: 6rem 3rem; text-align:center;
  border-top:1px solid var(--glass-border);
  border-bottom:1px solid var(--glass-border);
}
.stats-statement {
  font-family: var(--serif); font-size: clamp(1.6rem,3.5vw,2.8rem);
  font-weight:400; line-height:1.4; max-width:800px;
  margin:0 auto 4rem; font-style:italic; color: var(--text-muted);
}
.stats-statement strong { color: var(--text-white); font-weight:700; font-style:normal; }
.stats-grid {
  display:flex; justify-content:center; gap:5rem; flex-wrap:wrap;
}
.stat { text-align:center; }
.stat-num {
  font-family: var(--mono); font-size: clamp(2.5rem,5vw,4rem);
  font-weight:700; color: var(--accent-gold);
}
.stat-label {
  font-size:.75rem; color: var(--text-muted);
  letter-spacing:.2em; text-transform:uppercase; margin-top:.5rem;
}

/* ABOUT */
.about {
  background: var(--bg-cream); color: var(--text-dark);
  padding: 8rem 3rem; position:relative;
}
.about-inner {
  max-width:1300px; margin:0 auto;
}
.about-header { margin-bottom:5rem; }
.about .section-label { color: #9A7D5A; }
.about .section-title { color: var(--text-dark); }
.about-grid {
  display:grid; grid-template-columns: 1fr 1fr;
  gap:4rem; align-items:start;
}
.about-text { display:flex; flex-direction:column; gap:1.8rem; }
.about-text p {
  font-size:1.05rem; line-height:1.85; color: #4A4A4A;
}
.about-text p:first-of-type::first-letter {
  font-family: var(--serif); font-size:3.5rem;
  float:left; line-height:1; margin-right:.6rem;
  color: var(--text-dark); font-weight:700;
}
.about-quote {
  font-family: var(--serif); font-size:1.5rem;
  font-style:italic; line-height:1.5; color: var(--text-dark);
  border-left:3px solid var(--accent-gold);
  padding-left:1.5rem; margin:1rem 0;
}
.about-img-wrap {
  position:relative; border-radius:12px; overflow:hidden;
}
.about-img-wrap img {
  width:100%; height:100%; object-fit:cover; min-height:500px;
  border-radius:12px;
}
.about-img-badge {
  position:absolute; bottom:2rem; left:2rem;
  background: rgba(10,10,10,.85); backdrop-filter: blur(10px);
  padding:1.2rem 1.8rem; border-radius:8px;
  color: var(--text-white);
}
.about-img-badge .badge-num {
  font-family: var(--mono); font-size:2rem; font-weight:700;
  color: var(--accent-gold);
}
.about-img-badge .badge-text {
  font-size:.7rem; letter-spacing:.15em; text-transform:uppercase;
  color: var(--text-muted);
}

.about-values {
  display:grid; grid-template-columns: repeat(4,1fr);
  gap:2rem; margin-top:5rem;
  padding-top:4rem; border-top:1px solid rgba(0,0,0,.1);
}
.value-card { text-align:center; }
.value-icon {
  width:48px; height:48px; margin:0 auto 1rem;
  border-radius:50%; background: rgba(200,169,126,.15);
  display:grid; place-items:center; font-size:1.3rem;
}
.value-title {
  font-family: var(--serif); font-weight:700;
  font-size:1.05rem; margin-bottom:.5rem;
}
.value-desc { font-size:.85rem; color: #6A6A6A; line-height:1.6; }

/* SERVICES */
.services {
  padding: 7rem 3rem; max-width:1300px; margin:0 auto;
}
.services-grid {
  display:grid; grid-template-columns: repeat(2,1fr); gap:1.5rem;
}
.service-card {
  padding:2.5rem; background: var(--glass);
  border:1px solid var(--glass-border); border-radius:8px;
  transition: border-color .4s, background .4s;
  cursor:pointer; position:relative; overflow:hidden;
}
.service-card::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(200,169,126,.08), transparent);
  opacity:0; transition: opacity .4s;
}
.service-card:hover { border-color: var(--accent-gold); }
.service-card:hover::before { opacity:1; }
.service-num {
  font-family: var(--mono); font-size:.7rem; color: var(--accent-gold);
  letter-spacing:.2em; margin-bottom:1rem; position:relative;
}
.service-title {
  font-family: var(--serif); font-size:1.4rem; font-weight:700;
  margin-bottom:.8rem; position:relative;
}
.service-desc {
  font-size:.9rem; color: var(--text-muted); line-height:1.7;
  position:relative;
}

/* TESTIMONIALS */
.testimonials {
  padding: 7rem 3rem; border-top:1px solid var(--glass-border);
}
.testimonials-inner { max-width:1300px; margin:0 auto; }
.testimonial-carousel { position:relative; overflow:hidden; }
.testimonial-track {
  display:flex; transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.testimonial-slide {
  min-width:100%; padding:0 2rem;
  display:flex; flex-direction:column; align-items:center; text-align:center;
}
.testimonial-text {
  font-family: var(--serif); font-size: clamp(1.2rem,2.5vw,1.8rem);
  font-style:italic; line-height:1.6; max-width:750px;
  margin-bottom:2rem; color: var(--text-muted);
}
.testimonial-author { font-weight:600; font-size:.9rem; }
.testimonial-role {
  font-size:.75rem; color: var(--text-muted); margin-top:.3rem;
  font-family: var(--mono); letter-spacing:.15em; text-transform:uppercase;
}
.testimonial-dots {
  display:flex; justify-content:center; gap:.6rem; margin-top:2.5rem;
}
.testimonial-dots button {
  width:8px; height:8px; border-radius:50%;
  border:1px solid var(--text-muted); background:transparent;
  cursor:pointer; transition: all .3s; padding:0;
}
.testimonial-dots button.active {
  background: var(--accent-gold); border-color: var(--accent-gold);
  transform: scale(1.3);
}

/* CTA */
.cta-section {
  padding: 8rem 3rem; text-align:center;
  position:relative; overflow:hidden;
}
.cta-section::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at center, rgba(200,169,126,.08) 0%, transparent 70%);
}
.cta-title {
  font-family: var(--serif); font-size: clamp(2.2rem,5vw,4rem);
  font-weight:700; margin-bottom:1.5rem; position:relative;
}
.cta-sub {
  color: var(--text-muted); max-width:500px; margin:0 auto 2.5rem;
  line-height:1.7; position:relative;
}
.cta-actions {
  display:flex; gap:1rem; justify-content:center; position:relative;
  flex-wrap:wrap;
}
.btn-primary {
  padding: 1rem 2.5rem; background: var(--accent-gold);
  color: var(--bg-dark); border:none; font-weight:600;
  font-size:.85rem; letter-spacing:.1em; text-transform:uppercase;
  cursor:pointer; transition: all .3s; text-decoration:none;
}
.btn-primary:hover { background: #d4b88e; transform: translateY(-2px); }
.btn-secondary {
  padding: 1rem 2.5rem; background:transparent;
  border:1px solid var(--glass-border); color: var(--text-white);
  font-weight:500; font-size:.85rem; letter-spacing:.1em;
  text-transform:uppercase; cursor:pointer; transition: all .3s;
  text-decoration:none;
}
.btn-secondary:hover { border-color: var(--text-white); }

/* FOOTER */
.footer {
  padding: 4rem 3rem 2rem; border-top:1px solid var(--glass-border);
}
.footer-inner {
  max-width:1300px; margin:0 auto;
  display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap:3rem; margin-bottom:3rem;
}
.footer-brand-name {
  font-family: var(--serif); font-size:1.3rem; font-weight:700;
  margin-bottom:.8rem;
}
.footer-brand-name span { color: var(--accent-gold); }
.footer-brand p {
  font-size:.85rem; color: var(--text-muted); line-height:1.7;
  max-width:280px;
}
.footer-col h4 {
  font-size:.75rem; letter-spacing:.2em; text-transform:uppercase;
  color: var(--text-muted); margin-bottom:1.2rem; font-weight:600;
}
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:.7rem; }
.footer-col a {
  color: var(--text-muted); text-decoration:none; font-size:.85rem;
  transition: color .3s;
}
.footer-col a:hover { color: var(--accent-gold); }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:2rem; border-top:1px solid var(--glass-border);
  font-size:.75rem; color: var(--text-muted); flex-wrap:wrap; gap:1rem;
}

/* ANIMATIONS */
.reveal { opacity:0; transform:translateY(40px); transition: all .8s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-40px); transition: all .8s cubic-bezier(.16,1,.3,1); }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(40px); transition: all .8s cubic-bezier(.16,1,.3,1); }
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* RESPONSIVE */
@media(max-width:1024px) {
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns:1fr; }
  .about-values { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:768px) {
  .nav { padding:1rem 1.5rem; }
  .nav-links { display:none; }
  .nav-actions { display:none; }
  .hamburger { display:flex; }
  .hero { padding:5rem 1.5rem 3rem; }
  .products, .services, .testimonials, .cta-section { padding:4rem 1.5rem; }
  .about { padding:5rem 1.5rem; }
  .stats-grid { gap:2.5rem; }
  .product-grid { grid-template-columns:1fr; }
  .about-values { grid-template-columns:1fr 1fr; }
  .footer-inner { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
}

/* CART DRAWER */
.nav-actions {
  display: flex; align-items: center; gap: 1rem;
}
.cart-toggle {
  background: none; border: none; color: var(--text-white); cursor: pointer;
  position: relative; padding: 4px; display: flex; align-items: center;
  transition: color 0.3s;
}
.cart-toggle:hover { color: var(--accent-gold); }
.cart-badge {
  position: absolute; top: -5px; right: -8px;
  background: var(--accent-gold); color: var(--bg-dark);
  font-size: 0.65rem; font-family: var(--mono); font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.cart-drawer {
  position: fixed; top: 0; right: -400px; bottom: 0; width: 100%; max-width: 400px;
  background: #111; z-index: 1000;
  display: flex; flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  border-left: 1px solid var(--glass-border);
}
.cart-drawer.open { right: 0; }
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 999;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
  backdrop-filter: blur(5px);
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-header {
  padding: 1.5rem; border-bottom: 1px solid var(--glass-border);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-title {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
}
.cart-close {
  background: none; border: none; color: var(--text-muted);
  font-size: 1.5rem; cursor: pointer; transition: color 0.3s;
}
.cart-close:hover { color: var(--accent-gold); }

.cart-body {
  flex: 1; overflow-y: auto; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.cart-empty {
  text-align: center; color: var(--text-muted); margin-top: 3rem;
  font-family: var(--mono); font-size: 0.85rem; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cart-item {
  display: flex; gap: 1rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}
.cart-item-img {
  width: 70px; height: 70px; object-fit: cover; border-radius: 4px;
}
.cart-item-info { flex: 1; }
.cart-item-title {
  font-family: var(--serif); font-size: 1rem; font-weight: 600; margin-bottom: 0.2rem;
}
.cart-item-meta {
  font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.5rem;
}
.cart-item-price {
  font-weight: 600; color: var(--accent-gold); font-size: 0.9rem;
}
.cart-item-qty {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem;
}
.cart-qty-btn {
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--text-white); width: 24px; height: 24px;
  display: grid; place-items: center; cursor: pointer; border-radius: 4px;
}
.cart-qty-val { font-size: 0.85rem; width: 20px; text-align: center; }
.cart-item-remove {
  background: none; border: none; color: #ff4d4d; font-size: 0.75rem;
  cursor: pointer; text-decoration: underline; margin-top: 0.5rem; display: inline-block;
}

.cart-footer {
  padding: 1.5rem; border-top: 1px solid var(--glass-border); background: #0a0a0a;
}
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem; font-size: 1.1rem; font-weight: 600;
}
.cart-checkout-btn {
  display: block; width: 100%; text-align: center;
  padding: 1rem; background: var(--accent-gold); color: var(--bg-dark);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  text-decoration: none; border-radius: 4px; transition: background 0.3s;
}
.cart-checkout-btn:hover { background: #d4b88e; }

/* CHECKOUT PAGE */
.checkout-page { padding: 8rem 3rem 4rem; max-width: 1200px; margin: 0 auto; }
.checkout-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start;
}
.checkout-form-section {
  background: var(--glass); padding: 2.5rem; border-radius: 8px;
  border: 1px solid var(--glass-border);
}
.checkout-title {
  font-family: var(--serif); font-size: 2rem; margin-bottom: 2rem;
}
.checkout-summary {
  background: rgba(0,0,0,0.3); padding: 2.5rem; border-radius: 8px;
  border: 1px solid var(--glass-border); position: sticky; top: 100px;
}
@media(max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
}

/* ── NAV WHATSAPP BUTTON ── */
.nav-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  background: var(--accent-gold);
  color: var(--bg-dark);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s;
  white-space: nowrap;
}
.nav-wa-btn:hover {
  background: #d4b88e;
  transform: translateY(-1px);
}
.nav-wa-btn svg { width: 14px; height: 14px; }

/* ── HERO STATS ── */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 0;
  position: relative;
  z-index: 2;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-family: var(--mono);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--accent-gold);
}
.hero-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ── SERVICE WHATSAPP LINK ── */
.service-wa-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  position: relative;
}
.service-wa-link:hover {
  color: #d4b88e;
}

/* ── TESTIMONIAL STARS ── */
.testimonial-stars {
  color: var(--accent-gold);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

/* ── STICKY WHATSAPP BUTTON ── */
.sticky-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waFloat 3s ease-in-out infinite;
}
.sticky-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.sticky-wa:hover {
  animation: none;
  transform: scale(1.1);
}

/* ── MOBILE ADJUSTMENTS ── */
@media (max-width: 768px) {
  .nav-wa-btn { display: none; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .sticky-wa { bottom: 1rem; right: 1rem; width: 50px; height: 50px; }
  .sticky-wa svg { width: 24px; height: 24px; }
}

/* ── SEARCH ── */
.search-toggle { background:none; border:none; color:var(--text-white); cursor:pointer; padding:4px; display:flex; align-items:center; }
.search-toggle:hover { color:var(--accent-gold); }

.search-overlay {
  position:fixed; top:0; left:0; right:0; bottom:0;
  background:rgba(0,0,0,.85); backdrop-filter:blur(10px);
  z-index:10000; display:none; justify-content:center; align-items:flex-start; padding-top:15vh;
}
.search-overlay.open { display:flex; }
.search-container { width:90%; max-width:600px; }
.search-input-wrap {
  display:flex; align-items:center; background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15); border-radius:12px; padding:0 1.2rem;
  transition:border-color .3s;
}
.search-input-wrap:focus-within { border-color:var(--accent-gold); }
.search-input-wrap svg { color:#888; flex-shrink:0; }
.search-input {
  background:none; border:none; color:#fff; font-size:1.1rem; padding:1rem .8rem;
  width:100%; outline:none; font-family:var(--sans);
}
.search-input::placeholder { color:#666; }
.search-close {
  background:none; border:none; color:#888; cursor:pointer; padding:8px;
  position:absolute; top:2rem; right:2rem; font-size:1.5rem;
}
.search-close:hover { color:#fff; }
.search-results {
  margin-top:1rem; max-height:50vh; overflow-y:auto;
}
.search-result-item {
  display:flex; align-items:center; gap:1rem; padding:.8rem 1rem;
  background:rgba(255,255,255,.05); border-radius:10px; margin-bottom:.5rem;
  text-decoration:none; color:#fff; transition:background .2s;
}
.search-result-item:hover { background:rgba(200,169,126,.15); }
.search-result-img { width:50px; height:50px; object-fit:cover; border-radius:8px; }
.search-result-name { font-weight:600; font-size:.9rem; }
.search-result-cat { font-size:.75rem; color:#888; }
.search-result-price { margin-left:auto; color:var(--accent-gold); font-weight:600; font-size:.9rem; }
.search-no-results { text-align:center; color:#666; padding:2rem; font-size:.9rem; }
