:root{
  --background: 36 33% 97%;
  --foreground: 20 14% 12%;
  --card: 0 0% 100%;
  --muted: 35 25% 94%;
  --muted-foreground: 20 8% 42%;
  --primary: 350 65% 32%;
  --primary-foreground: 36 33% 97%;
  --primary-glow: 350 70% 45%;
  --secondary: 35 30% 92%;
  --accent: 36 45% 70%;
  --border: 35 20% 88%;
  --radius: 1rem;
  --gradient-luxe: linear-gradient(135deg, hsl(36 33% 97%) 0%, hsl(35 30% 92%) 100%);
  --gradient-primary: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-glow)) 100%);
  --gradient-overlay: linear-gradient(180deg, hsl(20 14% 8% / 0) 0%, hsl(20 14% 8% / 0.7) 100%);
  --shadow-soft: 0 4px 20px -8px hsl(20 14% 12% / 0.12);
  --shadow-elegant: 0 20px 50px -20px hsl(350 65% 32% / 0.25);
  --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:hsl(var(--background));
  color:hsl(var(--foreground));
  font-family:'Manrope',sans-serif;
  -webkit-font-smoothing:antialiased;
  font-feature-settings:"ss01","cv11";
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:none;background:none;color:inherit}
input,select,textarea{font:inherit;color:inherit}

h1,h2,h3,h4,h5,h6,.font-serif{font-family:'Inter',sans-serif;letter-spacing:0;margin:0}
p{margin:0}
ul{margin:0;padding:0;list-style:none}

.container-luxe{max-width:80rem;margin:0 auto;width:100%;padding:0 1rem}
@media(min-width:640px){.container-luxe{padding:0 1.5rem}}
@media(min-width:1024px){.container-luxe{padding:0 2rem}}

.glass{backdrop-filter:blur(24px);background:hsl(var(--background)/0.6);border:1px solid hsl(var(--border)/0.6)}
.text-balance{text-wrap:balance}
.text-primary{color:hsl(var(--primary))}
.text-muted{color:hsl(var(--muted-foreground))}
.bg-card{background:hsl(var(--card))}
.bg-secondary{background:hsl(var(--secondary))}
.bg-foreground{background:hsl(var(--foreground));color:hsl(var(--background))}
.bg-gradient-primary{background:var(--gradient-primary);color:hsl(var(--primary-foreground))}
.bg-gradient-luxe{background:var(--gradient-luxe)}
.shadow-soft{box-shadow:var(--shadow-soft)}
.shadow-elegant{box-shadow:var(--shadow-elegant)}

/* Header */
.site-header{position:fixed;top:0;left:0;right:0;z-index:50;padding:1.25rem 0;transition:padding .5s var(--transition-smooth)}
.site-header.scrolled{padding:.75rem 0}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:.75rem 1.25rem;border-radius:9999px;
  backdrop-filter:blur(24px);background:hsl(var(--background)/0.6);border:1px solid hsl(var(--border)/0.6);
  transition:box-shadow .5s var(--transition-smooth);
}
.site-header.scrolled .header-inner{box-shadow:var(--shadow-soft)}
@media(min-width:640px){.header-inner{padding:.75rem 1.75rem}}
.brand{display:flex;align-items:center;gap:.5rem;min-width:0}
.brand-logo-frame{display:inline-flex;align-items:center;flex-shrink:0}
.brand-logo{display:block;height:2.7rem;width:auto;object-fit:contain}
.footer-brand{display:inline-flex}
.footer-brand-frame{display:inline-flex}
.footer-brand-logo{height:4.2rem}
.brand-mark{width:2.25rem;height:2.25rem;border-radius:9999px;background:var(--gradient-primary);color:hsl(var(--primary-foreground));display:grid;place-items:center;font-family:'Inter',sans-serif;font-weight:700;font-size:1.125rem}
.brand-name{font-family:'Inter',sans-serif;font-weight:600;font-size:1.125rem;line-height:1.1}
.brand-tag{font-size:10px;letter-spacing:.25em;color:hsl(var(--muted-foreground));margin-top:-2px}
.nav-desktop{display:none;align-items:center;gap:.25rem}
@media(min-width:768px){.nav-desktop{display:flex}}
.nav-desktop{margin-left:auto}
.header-actions{display:flex;align-items:center;gap:.45rem;flex-shrink:0}
.header-cta{display:none;align-items:center;justify-content:center;padding:.72rem 1.2rem;border-radius:9999px;background:hsl(var(--primary));color:hsl(var(--primary-foreground));font-size:.84rem;font-weight:600;line-height:1;letter-spacing:.01em;box-shadow:var(--shadow-soft);transition:background .2s,transform .2s}
.header-cta:hover{background:hsl(var(--foreground));transform:translateY(-1px)}
@media(min-width:1024px){.header-cta{display:inline-flex}}
.nav-item{position:relative}
.nav-link{padding:.5rem 1rem;border-radius:9999px;font-size:.875rem;font-weight:500;color:hsl(var(--foreground)/0.7);transition:.2s}
.nav-link:hover{color:hsl(var(--foreground));background:hsl(var(--foreground)/0.05)}
.nav-link.active{background:hsl(var(--primary)/0.1);color:hsl(var(--primary))}
.nav-caret{display:inline-grid;place-items:center;margin-left:.25rem;transition:transform .25s var(--transition-smooth)}
.nav-caret svg{width:12px;height:12px}
.has-submenu:hover .nav-caret,.has-submenu:focus-within .nav-caret{transform:rotate(90deg)}
.nav-submenu{
    position:absolute;top:calc(100% + 1.25rem);left:50%;width:min(34rem,calc(100vw - 2rem));
    transform:translate(-50%,10px) scale(.98);transform-origin:top center;
    opacity:0;visibility:hidden;pointer-events:none;z-index:60;
    padding:.75rem;border-radius:1.25rem;background:hsl(var(--background)/.92);
    border:1px solid hsl(var(--border)/.85);box-shadow:var(--shadow-elegant);backdrop-filter:blur(24px);
    transition:opacity .2s var(--transition-smooth),transform .25s var(--transition-smooth),visibility .2s;
  }
.nav-submenu::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:100%;
  height:1.55rem;
}
.has-submenu:hover .nav-submenu,.has-submenu:focus-within .nav-submenu{opacity:1;visibility:visible;pointer-events:auto;transform:translate(-50%,0) scale(1)}
.submenu-all{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem;border-radius:1rem;background:var(--gradient-luxe);border:1px solid hsl(var(--border));margin-bottom:.75rem}
.submenu-all span{font-size:1.1rem}
.submenu-all small{font-size:.75rem;color:hsl(var(--muted-foreground));text-align:right}
.submenu-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.5rem}
.submenu-link{display:grid;grid-template-columns:3rem minmax(0,1fr);align-items:center;gap:.75rem;padding:.55rem;border-radius:.9rem;transition:background .2s,transform .2s}
.submenu-link:hover,.submenu-link:focus{background:hsl(var(--primary)/.08);transform:translateY(-1px);outline:none}
.submenu-link img{width:3rem;height:3rem;border-radius:.75rem;object-fit:cover;background:hsl(var(--secondary));box-shadow:var(--shadow-soft)}
.submenu-link strong{display:block;font-size:.875rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.submenu-link small{display:block;font-size:.72rem;color:hsl(var(--muted-foreground));margin-top:.1rem}
.icon-btn{width:2.5rem;height:2.5rem;border-radius:9999px;display:grid;place-items:center;transition:.2s;position:relative}
.icon-btn:hover{background:hsl(var(--foreground)/0.05)}
.cart-badge{position:absolute;top:-4px;right:-4px;min-width:18px;height:18px;padding:0 4px;border-radius:9999px;background:hsl(var(--primary));color:hsl(var(--primary-foreground));font-size:10px;font-weight:600;display:none;place-items:center}
.cart-badge.show{display:grid}
.cart-badge.pop{animation:badge-pop .4s ease-out}
.menu-btn{display:grid}
@media(min-width:768px){.menu-btn{display:none}}
.search-btn{display:grid}
.nav-mobile{display:none;margin-top:.5rem;padding:.5rem;border-radius:1.5rem;backdrop-filter:blur(24px);background:hsl(var(--background)/0.6);border:1px solid hsl(var(--border)/0.6)}
.nav-mobile.open{display:block;animation:fade-up .5s var(--transition-smooth) both}
.nav-mobile a{display:block;padding:.75rem 1rem;border-radius:1rem;font-size:.875rem;font-weight:500;color:hsl(var(--foreground)/0.8)}
.nav-mobile a.active{background:hsl(var(--primary)/0.1);color:hsl(var(--primary))}
.nav-mobile-cta{display:flex !important;align-items:center;justify-content:center;margin:.5rem;padding:.9rem 1rem;border-radius:1rem;background:hsl(var(--primary));color:hsl(var(--primary-foreground)) !important;font-size:.875rem;font-weight:600;box-shadow:var(--shadow-soft)}
.nav-mobile-cta:hover{background:hsl(var(--foreground))}
.mobile-category-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.35rem;padding:.25rem .5rem .75rem}
.nav-mobile .mobile-cat-link{padding:.55rem .75rem;background:hsl(var(--foreground)/.04);font-size:.8rem;color:hsl(var(--muted-foreground))}
.nav-mobile .mobile-cat-link:hover{background:hsl(var(--primary)/.08);color:hsl(var(--primary))}
@media(max-width:480px){
  .site-header{padding:.95rem 0}
  .site-header.scrolled{padding:.6rem 0}
  .header-inner{padding:.55rem .85rem;gap:.55rem}
  .header-actions{gap:.35rem}
  .icon-btn{width:2.15rem;height:2.15rem}
  .brand-logo{height:2.05rem}
  .footer-brand-logo{height:3.6rem}
}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.875rem 1.75rem;border-radius:9999px;font-weight:500;line-height:1.25;text-align:center;transition:.2s}
.btn-primary{background:hsl(var(--foreground));color:hsl(var(--background))}
.btn-primary:hover{background:hsl(var(--primary))}
.btn-ghost{border:1px solid hsl(var(--foreground)/0.2);backdrop-filter:blur(8px)}
.btn-ghost:hover{border-color:hsl(var(--foreground)/0.6)}
.btn-solid-primary{background:hsl(var(--primary));color:hsl(var(--primary-foreground));box-shadow:var(--shadow-elegant)}
.btn-solid-primary:hover{background:hsl(var(--foreground))}
.chip{display:inline-flex;align-items:center;gap:.5rem;padding:.375rem 1rem;border-radius:9999px;font-size:.75rem;letter-spacing:.2em;text-transform:uppercase;backdrop-filter:blur(24px);background:hsl(var(--background)/0.6);border:1px solid hsl(var(--border)/0.6)}

/* Hero */
.hero{position:relative;padding:8rem 0 5rem;overflow:hidden}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 10% 16%, hsl(var(--primary)/.08) 0%, transparent 28%),
    radial-gradient(circle at 88% 18%, hsl(var(--accent)/.14) 0%, transparent 24%),
    linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--background)) 58%, hsl(var(--secondary)/.26) 100%);
  pointer-events:none;
}
@media(min-width:1024px){.hero{padding:9.25rem 0 4.75rem}}
.hero-grid{position:relative;z-index:1;display:grid;gap:3rem;align-items:center}
@media(min-width:1024px){
  .hero-grid{grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);gap:2.5rem 3rem}
  .hero-media{grid-column:1}
  .hero-copy{grid-column:2}
  .hero-stats{grid-column:1 / -1;margin-top:.25rem}
}
.hero-media{order:1}
.hero-copy{max-width:40rem}
.hero-copy{order:2}
.hero-chip{flex-wrap:nowrap;white-space:nowrap;width:max-content;max-width:100%;gap:.32rem;font-size:clamp(.72rem,1.2vw,.92rem);letter-spacing:.01em;line-height:1.1;text-transform:none;padding:.34rem .72rem}
.hero-chip .text-primary{display:inline-grid;place-items:center;line-height:0}
.hero-chip .text-primary svg{width:.78rem;height:.78rem}
.hero-stats{order:3}
.hero h1{font-size:clamp(2.5rem,5vw,4.5rem);line-height:1.03;letter-spacing:-.025em;margin-top:1.5rem}
.hero p.lead{margin-top:1.5rem;font-size:1.125rem;color:hsl(var(--muted-foreground));max-width:36rem;line-height:1.6}
.hero-cta{margin-top:2rem;display:flex;flex-wrap:wrap;gap:.75rem}
.hero-btn{min-height:3.4rem;padding:.88rem 1.45rem;font-size:1rem;font-weight:600;letter-spacing:-.01em}
.hero-btn-primary{background:hsl(var(--foreground));box-shadow:0 18px 34px -26px hsl(var(--foreground)/.45)}
.hero-btn-primary:hover{background:hsl(var(--primary));transform:translateY(-1px)}
.hero-btn-primary svg{width:15px;height:15px}
.hero-btn-orbit{position:relative;overflow:hidden;border:2px solid hsl(var(--primary));background:hsl(var(--primary));color:hsl(var(--primary-foreground));box-shadow:none;transition:transform .3s cubic-bezier(.23,1,.32,1),color .3s cubic-bezier(.23,1,.32,1),border-color .3s cubic-bezier(.23,1,.32,1),background-color .3s cubic-bezier(.23,1,.32,1)}
.hero-btn-orbit::before{content:"";position:absolute;inset:0;margin:auto;width:3.2rem;height:3.2rem;border-radius:inherit;transform:scale(0);background:hsl(var(--foreground));transition:transform .65s cubic-bezier(.23,1,.32,1);z-index:0}
.hero-btn-orbit > *{position:relative;z-index:1}
.hero-btn-orbit .hero-btn-orbit__label{display:inline-block}
.hero-btn-orbit:hover,.hero-btn-orbit:focus-visible{color:hsl(var(--primary-foreground));border-color:hsl(var(--foreground));background:hsl(var(--primary));box-shadow:none;transform:translateY(-1px) scale(1.04)}
.hero-btn-orbit:hover::before,.hero-btn-orbit:focus-visible::before{transform:scale(5.4)}
.hero-btn-orbit:active{transform:scale(1)}
.hero-btn-orbit:focus-visible{outline:none}
.hero-btn-orbit:hover svg,.hero-btn-orbit:focus-visible svg{color:hsl(var(--primary-foreground))}
.hero-btn-secondary{
  border:1px solid hsl(var(--foreground));
  background:transparent;
  box-shadow:none;
  color:hsl(var(--foreground));
  transition:transform .2s,background-color .2s,color .2s,box-shadow .2s,border-color .2s;
}
.hero-btn-secondary:hover{
  background:hsl(var(--background));
  color:hsl(var(--foreground));
  border-color:hsl(var(--foreground));
  transform:translate(-0.25rem,-0.25rem);
  box-shadow:0.25rem 0.25rem 5px hsl(var(--foreground)/.3);
}
.hero-btn-secondary:active{
  transform:translate(0);
  box-shadow:none;
}
.stats{margin-top:2.5rem;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}
@media(min-width:900px){.stats{grid-template-columns:repeat(4,minmax(0,1fr));gap:1.1rem}}
.stat-card{
  position:relative;
  min-height:14.2rem;
  padding:1.45rem 1.35rem 1.2rem;
  border-radius:1.4rem;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  background:linear-gradient(180deg,hsl(var(--background)/.98) 0%, hsl(var(--secondary)/.38) 100%);
  border:1px solid hsl(var(--border)/.82);
  backdrop-filter:blur(16px);
  box-shadow:0 18px 48px -34px hsl(var(--foreground)/.16), inset 0 1px 0 hsl(var(--background)/.82);
  transition:transform .24s var(--transition-smooth),border-color .24s var(--transition-smooth),box-shadow .24s var(--transition-smooth);
}
.stat-card::before{
  content:"";
  position:absolute;
  top:-1.55rem;
  right:-1.55rem;
  width:7rem;
  height:7rem;
  border-radius:9999px;
  background:radial-gradient(circle at center, hsl(var(--primary)/.15) 0 2px, transparent 2.5px 100%);
  background-size:11px 11px;
  opacity:.2;
  transform:rotate(18deg);
  pointer-events:none;
}
.stat-card:hover{
  transform:translateY(-2px);
  border-color:hsl(var(--primary)/.18);
  box-shadow:0 22px 50px -30px hsl(var(--primary)/.16), inset 0 1px 0 hsl(var(--background)/.84);
}
.stat-icon-wrap{
  width:3.65rem;
  height:3.65rem;
  border-radius:9999px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,hsl(var(--primary)/.1),hsl(var(--primary)/.04));
  border:1px solid hsl(var(--primary)/.08);
  color:hsl(var(--primary));
  box-shadow:inset 0 1px 0 hsl(var(--background)/.9);
}
.stat-icon{
  width:1.25rem;
  height:1.25rem;
  display:grid;
  place-items:center;
}
.stat-icon svg{
  width:100%;
  height:100%;
  stroke-width:1.6;
}
.stat-num{
  font-family:'Inter',sans-serif;
  margin-top:1.15rem;
  font-size:clamp(2.35rem,3.1vw,3.2rem);
  line-height:.9;
  color:hsl(var(--primary));
  letter-spacing:-.05em;
  font-weight:500;
}
.stat-label{
  margin-top:.85rem;
  font-size:.92rem;
  line-height:1.4;
  font-weight:500;
  color:hsl(var(--muted-foreground));
  max-width:14ch;
}
.stat-line{
  width:2.65rem;
  height:3px;
  margin-top:.82rem;
  border-radius:9999px;
  background:linear-gradient(90deg,hsl(var(--primary)/.92) 0%, hsl(var(--primary)/.38) 100%);
  transform-origin:left center;
  transition:transform .24s var(--transition-smooth);
}
.stat-card:hover .stat-line{
  transform:scaleX(1.18);
}
.hero-image-wrap{position:relative}
.hero-image-wrap::before{content:"";position:absolute;inset:-1.5rem;background:var(--gradient-primary);opacity:.2;filter:blur(48px);border-radius:9999px}
.hero-image{position:relative;border-radius:2rem;overflow:hidden;box-shadow:var(--shadow-elegant);aspect-ratio:5/6}
.hero-image img{width:100%;height:100%;object-fit:cover}
.hero-image .overlay{position:absolute;inset:0;background:var(--gradient-overlay)}
.hero-image .featured{position:absolute;left:1.5rem;right:1.5rem;bottom:1.5rem;padding:1rem;border-radius:1rem;backdrop-filter:blur(24px);background:hsl(var(--background)/0.6);border:1px solid hsl(var(--border)/0.6)}
.product-detail-shell{padding:8rem 0 3rem}
@media(max-width:640px){
  .hero{padding:5.65rem 0 1.6rem}
  .hero::before{
    background:
      radial-gradient(circle at 14% 10%, hsl(var(--primary)/.1) 0%, transparent 34%),
      linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--background)) 66%, hsl(var(--secondary)/.24) 100%);
  }
  .hero-grid{gap:1rem}
  .hero-copy{max-width:100%}
  .chip{padding:.34rem .85rem;font-size:.68rem;letter-spacing:.17em}
  .hero-chip{font-size:.785rem;letter-spacing:0;gap:.2rem;padding:.28rem .48rem}
  .hero-chip .text-primary svg{width:.58rem;height:.58rem}
  .hero h1{font-size:clamp(2rem,11.2vw,3rem);line-height:1.01;margin-top:.95rem;max-width:11ch}
  .hero p.lead{margin-top:.95rem;font-size:1rem;line-height:1.56;max-width:31rem}
  .hero-cta{margin-top:1.05rem;gap:.55rem;display:grid;grid-template-columns:1fr}
  .hero-cta .btn{width:100%}
  .hero-btn{min-height:3.15rem;padding:.8rem 1.1rem;font-size:.98rem}
  .btn{padding:.82rem 1.15rem}
  .hero-media{display:block}
  .hero-image-wrap::before{inset:-.6rem;opacity:.16;filter:blur(24px)}
  .hero-image{aspect-ratio:4/3;border-radius:1.35rem}
  .hero-image .featured{left:1rem;right:1rem;bottom:1rem;padding:.85rem;border-radius:.9rem}
  .stats{margin-top:.4rem;gap:.7rem}
  .stat-card{min-height:11.4rem;padding:1.05rem .95rem .95rem;border-radius:1.05rem}
  .stat-card::before{top:-1rem;right:-1rem;width:5.4rem;height:5.4rem;background-size:9px 9px;opacity:.18}
  .stat-icon-wrap{width:3rem;height:3rem}
  .stat-icon{width:1.02rem;height:1.02rem}
  .stat-num{margin-top:.95rem;font-size:2rem}
  .stat-label{font-size:.82rem;margin-top:.65rem;max-width:none}
  .stat-line{width:2.1rem;height:2px;margin-top:.68rem}
  .product-detail-shell{padding:6.6rem 0 2.25rem}
}

/* Sections */
.section{padding:4.5rem 0}
.section{content-visibility:auto;contain-intrinsic-size:1px 720px}
.section-tight{padding:3.5rem 0}
.section-dark{background:hsl(var(--foreground));color:hsl(var(--background))}
.section-eyebrow{font-size:.75rem;letter-spacing:.2em;text-transform:uppercase;color:hsl(var(--primary))}
.section-title{font-family:'Inter',sans-serif;font-size:clamp(2rem,4vw,3rem);line-height:1.12;margin-top:.5rem}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;flex-wrap:wrap;gap:1rem;margin-bottom:2.5rem}
.text-link{display:inline-flex;align-items:center;gap:.4rem;font-size:.875rem;font-weight:600;color:hsl(var(--primary))}
.text-link svg{width:14px;height:14px}
.split-head{display:grid;gap:1.5rem;align-items:end;margin-bottom:2.25rem}
.split-head>p{max-width:34rem;line-height:1.7}
@media(min-width:900px){.split-head{grid-template-columns:1.2fr .8fr}}

/* Trust and service sections */
.trust-strip{position:relative;z-index:2;margin-top:-2.5rem;padding:0 0 2rem}
.trust-grid{display:grid;gap:.75rem;grid-template-columns:1fr}
@media(min-width:640px){.trust-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.trust-grid{grid-template-columns:repeat(4,1fr)}}
.trust-item{display:flex;align-items:center;gap:.85rem;padding:1rem;border-radius:1rem;background:hsl(var(--card));border:1px solid hsl(var(--border));box-shadow:var(--shadow-soft)}
.trust-item>span{width:2.75rem;height:2.75rem;border-radius:.9rem;background:hsl(var(--primary)/.09);color:hsl(var(--primary));display:grid;place-items:center;flex-shrink:0}
.trust-item strong{display:block;font-size:.9rem}
.trust-item small{display:block;color:hsl(var(--muted-foreground));font-size:.78rem;margin-top:.15rem}
.service-grid{display:grid;gap:1rem;grid-template-columns:1fr}
@media(min-width:768px){.service-grid{grid-template-columns:repeat(3,1fr)}}
.service-card{padding:1.5rem;border-radius:1.25rem;background:hsl(var(--card));border:1px solid hsl(var(--border));box-shadow:var(--shadow-soft);transition:.25s}
.service-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-elegant)}
.service-icon{width:3rem;height:3rem;border-radius:1rem;background:hsl(var(--primary)/.1);color:hsl(var(--primary));display:grid;place-items:center;margin-bottom:1rem}
.service-card h3{font-size:1.25rem}
.service-card p{font-size:.9rem;color:hsl(var(--muted-foreground));line-height:1.65;margin-top:.5rem}
.process-grid{display:grid;gap:1rem;grid-template-columns:1fr}
@media(min-width:768px){.process-grid{grid-template-columns:repeat(4,1fr)}}
.process-item{padding:1.5rem;border-radius:1.25rem;border:1px solid hsl(var(--background)/.12);background:hsl(var(--background)/.04)}
.process-step{font-family:'Inter',sans-serif;font-size:2rem;color:hsl(var(--primary-glow));margin-bottom:1rem}
.process-item h3{font-size:1.2rem}
.process-item p{font-size:.875rem;opacity:.72;line-height:1.65;margin-top:.55rem}
.proof-layout{display:grid;gap:2.5rem;align-items:start}
@media(min-width:900px){.proof-layout{grid-template-columns:1fr 1fr}}
.testimonial-list,.faq-list{display:grid;gap:.9rem;margin-top:1.75rem}
.testimonial-card{margin:0;padding:1.25rem;border-radius:1.25rem;background:hsl(var(--card));border:1px solid hsl(var(--border));box-shadow:var(--shadow-soft)}
.testimonial-card blockquote{margin:0;color:hsl(var(--muted-foreground));line-height:1.65}
.testimonial-card figcaption{display:flex;justify-content:space-between;align-items:flex-start;gap:1rem;margin-top:1rem;font-size:.875rem}
.testimonial-card figcaption span{color:hsl(var(--muted-foreground))}
.faq-item{border-radius:1rem;background:hsl(var(--card));border:1px solid hsl(var(--border));padding:1rem 1.15rem;box-shadow:var(--shadow-soft)}
.faq-item summary{cursor:pointer;font-weight:700;list-style:none}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";float:right;color:hsl(var(--primary));font-weight:700}
.faq-item[open] summary::after{content:"-"}
.faq-item p{color:hsl(var(--muted-foreground));line-height:1.6;margin-top:.75rem;font-size:.9rem}

/* Categories */
.cat-grid{display:grid;gap:1rem;grid-template-columns:repeat(2,minmax(0,1fr))}
@media(min-width:640px){.cat-grid{gap:1.5rem}}
@media(min-width:768px){.cat-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(min-width:1024px){.cat-grid{grid-template-columns:repeat(4,minmax(0,1fr))}}
.cat-card{position:relative;aspect-ratio:1/1;border-radius:1.5rem;overflow:hidden;box-shadow:var(--shadow-soft);transition:.3s;cursor:pointer}
.cat-card:hover{box-shadow:var(--shadow-elegant)}
.cat-card img{width:100%;height:100%;object-fit:cover;transition:transform .7s}
.cat-card:hover img{transform:scale(1.1)}
.cat-card .overlay{position:absolute;inset:0;background:linear-gradient(to top,hsl(var(--foreground)/.8),hsl(var(--foreground)/.1) 50%,transparent)}
.cat-card .label{position:absolute;left:1rem;right:1rem;bottom:1rem;font-family:'Inter',sans-serif;font-size:1.125rem;color:hsl(var(--background))}
.cat-card .more{font-size:.75rem;color:hsl(var(--background)/.7);margin-top:.25rem;opacity:0;transition:opacity .2s}
.cat-card:hover .more{opacity:1}
.cat-all{border-radius:1.5rem;border:1px dashed hsl(var(--foreground)/0.2);display:grid;place-items:center;text-align:center;padding:1.5rem;transition:.2s;cursor:pointer}
.cat-all:hover{border-color:hsl(var(--primary));background:hsl(var(--card))}

/* Products grid */
.product-grid{display:grid;gap:1.5rem;grid-template-columns:1fr}
@media(min-width:640px){.product-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.product-grid{grid-template-columns:repeat(4,1fr)}}
.product-grid.cols-3{grid-template-columns:1fr}
@media(min-width:640px){.product-grid.cols-3{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.product-grid.cols-3{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1280px){.product-grid.cols-3{grid-template-columns:repeat(4,1fr)}}

.product-card{position:relative;display:flex;flex-direction:column;height:100%;border-radius:1.5rem;overflow:hidden;background:hsl(var(--card));box-shadow:var(--shadow-soft);transition:.5s;color:inherit}
.product-card:hover{box-shadow:var(--shadow-elegant)}
.product-image{position:relative;aspect-ratio:4/5;overflow:hidden;background:hsl(var(--secondary))}
.product-image img{width:100%;height:100%;object-fit:cover;transition:transform .7s}
.product-card:hover .product-image img{transform:scale(1.05)}
.product-image .pcat{position:absolute;top:.75rem;left:.75rem;font-size:10px;letter-spacing:.2em;text-transform:uppercase;padding:.25rem .75rem;border-radius:9999px;backdrop-filter:blur(24px);background:hsl(var(--background)/0.6);border:1px solid hsl(var(--border)/0.6)}
.product-image .add{position:absolute;bottom:.75rem;right:.75rem;width:2.75rem;height:2.75rem;border-radius:9999px;background:hsl(var(--primary));color:hsl(var(--primary-foreground));display:grid;place-items:center;box-shadow:var(--shadow-elegant);transition:transform .2s;overflow:visible}
.product-image .add:hover{transform:scale(1.1)}
.product-image .add .float{position:absolute;inset:0;display:grid;place-items:center;color:hsl(var(--primary-foreground));pointer-events:none;animation:float-in .9s ease-out forwards}
.product-body{padding:1.25rem;display:flex;flex-direction:column;flex:1}
.product-name{font-family:'Inter',sans-serif;font-size:1.125rem;line-height:1.3;display:-webkit-box;line-clamp:2;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;min-height:2.9rem;max-height:2.9rem}
.product-desc{font-size:.875rem;color:hsl(var(--muted-foreground));margin-top:.25rem;display:-webkit-box;line-clamp:2;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;min-height:2.85rem;max-height:2.85rem}
.product-row{margin-top:auto;padding-top:.75rem;display:flex;align-items:center;justify-content:space-between}
.product-price{font-family:'Inter',sans-serif;font-size:1.25rem}
.product-price.price-note{font-size:1rem;line-height:1.35;color:hsl(var(--primary))}
.product-view{display:inline-flex;align-items:center;gap:.3rem;font-size:.75rem;line-height:1;color:hsl(var(--primary));font-weight:500;white-space:nowrap;transition:transform .2s}
.product-view svg{width:14px;height:14px;display:block;flex-shrink:0}
.product-card:hover .product-view{transform:translateX(4px)}

/* Features dark */
.feat-grid{display:grid;gap:1rem;grid-template-columns:1fr}
@media(min-width:640px){.feat-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.feat-grid{grid-template-columns:repeat(4,1fr)}}
.feat-card{border-radius:1.5rem;border:1px solid hsl(var(--background)/0.1);padding:1.5rem;transition:.2s}
.feat-card:hover{background:hsl(var(--background)/0.05)}
.feat-icon{width:3rem;height:3rem;border-radius:1rem;background:hsl(var(--primary)/0.2);display:grid;place-items:center;color:hsl(var(--primary-glow));margin-bottom:1rem}

/* CTA */
.cta-card{position:relative;border-radius:2.5rem;overflow:hidden;background:var(--gradient-primary);color:hsl(var(--primary-foreground));padding:2.5rem}
@media(min-width:640px){.cta-card{padding:4rem}}
.cta-card::before{content:"";position:absolute;inset:0;opacity:.2;background:radial-gradient(circle at 30% 20%,white 0,transparent 40%)}
.cta-card>*{position:relative}
.cta-btn{margin-top:1.5rem;display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.875rem 1.75rem;border-radius:9999px;background:hsl(var(--background));color:hsl(var(--foreground));font-weight:500;line-height:1.25;text-align:center}

/* Footer */
.site-footer{margin-top:6rem;background:hsl(var(--foreground));color:hsl(var(--background))}
.footer-grid{display:grid;gap:2rem;padding:3rem 0}
@media(min-width:768px){.footer-grid{grid-template-columns:repeat(4,1fr)}}
.footer-grid>div{min-width:0;display:flex;flex-direction:column;gap:1rem}
.footer h4{font-family:'Inter',sans-serif;margin:0;font-size:1.5rem;line-height:1.1}
.footer p{margin:0}
.footer-links,.footer-contact{list-style:none;margin:0;padding:0}
.footer-links{display:grid;gap:.55rem}
.footer-links li{margin:0;font-size:.875rem;opacity:.8;line-height:1.45}
.footer-links a:hover{opacity:1}
.footer-meta{font-size:.875rem;opacity:.7;line-height:1.6;max-width:24rem}
.footer-contact{display:grid;gap:.8rem}
.footer-contact li{display:grid;grid-template-columns:1rem minmax(0,1fr);align-items:start;gap:.75rem;font-size:.875rem;opacity:.8;margin:0;line-height:1.45}
.footer-contact .ico{width:1rem;height:1rem;color:hsl(var(--primary-glow));margin-top:2px;flex-shrink:0}
.footer-contact .ico svg{display:block}
.footer-bottom{border-top:1px solid hsl(var(--background)/0.1);padding:1.25rem 0;font-size:.95rem;display:flex;justify-content:center;text-align:center}
.footer-bottom p{margin:0;color:hsl(var(--background)/0.68);line-height:1.7;font-family:'Manrope',sans-serif}
.footer-highlight{color:hsl(var(--background));font-weight:700}
.footer-credit-link{color:hsl(var(--background));font-weight:700;text-decoration:none;transition:opacity .2s ease}
.footer-credit-link:hover{opacity:.78}
.social-row{display:flex;align-items:center;gap:.65rem;margin-top:.6rem}
.social-row a{
  width:2.55rem;height:2.55rem;border-radius:9999px;
  border:1px solid hsl(var(--background)/0.18);
  display:grid;place-items:center;
  color:hsl(var(--background)/0.92);
  background:linear-gradient(180deg,hsl(var(--background)/0.05) 0%, hsl(var(--background)/0.02) 100%);
  box-shadow:inset 0 1px 0 hsl(var(--background)/0.08);
  transition:transform .2s ease,background .2s ease,border-color .2s ease,color .2s ease,box-shadow .2s ease
}
.social-row a svg{width:16px;height:16px;display:block}
.social-row a[aria-label="WhatsApp"] svg{width:18px;height:18px}
.social-row a:hover{
  background:linear-gradient(180deg,hsl(var(--background)/0.12) 0%, hsl(var(--background)/0.06) 100%);
  border-color:hsl(var(--background)/0.28);
  color:hsl(var(--background));
  box-shadow:inset 0 1px 0 hsl(var(--background)/0.12),0 10px 18px -14px hsl(var(--background)/0.22);
  transform:translateY(-1px);
}
@media(max-width:640px){
  .site-footer{margin-top:4rem}
  .footer-grid{gap:1.5rem;padding:2.25rem 0}
  .footer-grid>div{gap:.85rem}
  .footer h4{font-size:1.35rem}
  .site-footer .container-luxe{padding-left:1.25rem;padding-right:1.25rem}
  .footer-bottom{padding:1rem 0}
}

/* Products page filters */
.search-bar{margin-top:2.5rem;padding:.5rem;border-radius:9999px;display:flex;align-items:center;gap:.5rem;max-width:42rem;backdrop-filter:blur(24px);background:hsl(var(--background)/0.6);border:1px solid hsl(var(--border)/0.6)}
.search-bar input{flex:1;background:transparent;border:none;outline:none;padding:.5rem;font-size:.875rem}
.search-bar input::placeholder{color:hsl(var(--muted-foreground))}
.chip-row{display:flex;gap:.5rem;overflow-x:auto;padding:.45rem 0 .5rem;scrollbar-width:none;-webkit-overflow-scrolling:touch;scroll-snap-type:x proximity}
.chip-row::-webkit-scrollbar{display:none}
.filter-chip{flex-shrink:0;scroll-snap-align:start;padding:.625rem 1.25rem;border-radius:9999px;font-size:.875rem;font-weight:500;border:1px solid transparent;backdrop-filter:blur(24px);background:hsl(var(--background)/0.6)}
.filter-chip:hover{background:hsl(var(--foreground)/0.05)}
.filter-chip.active{background:hsl(var(--foreground));color:hsl(var(--background));border-color:hsl(var(--foreground))}
.pagination{display:flex;align-items:center;justify-content:center;gap:.85rem;flex-wrap:wrap;margin-top:2rem}
.page-list{display:flex;align-items:center;justify-content:center;gap:.55rem;flex-wrap:wrap}
.page-btn{min-width:2.5rem;height:2.5rem;padding:0 .9rem;border-radius:9999px;border:1px solid hsl(var(--border));background:hsl(var(--card));font-size:.875rem;font-weight:600;transition:background .2s,border-color .2s,color .2s,transform .2s}
.page-btn:hover{background:hsl(var(--secondary));border-color:hsl(var(--foreground)/0.12);transform:translateY(-1px)}
.page-btn.active{background:hsl(var(--foreground));color:hsl(var(--background));border-color:hsl(var(--foreground))}
.page-btn:disabled{opacity:.4;cursor:not-allowed;transform:none}
.page-btn:disabled:hover{background:hsl(var(--card));border-color:hsl(var(--border))}
.page-nav{padding:0 1rem}
.page-ellipsis{padding:0 .15rem;color:hsl(var(--muted-foreground));font-size:1rem}
@media(max-width:640px){
  .chip-row{gap:.65rem;padding:.45rem .1rem .75rem}
  .filter-chip{padding:.72rem 1rem;border-color:hsl(var(--border));background:hsl(var(--card));box-shadow:var(--shadow-soft)}
  .filter-chip:hover{background:hsl(var(--secondary))}
  .filter-chip.active{box-shadow:var(--shadow-elegant)}
  .pagination{gap:.65rem}
  .page-list{gap:.45rem}
  .page-btn{min-width:2.3rem;height:2.3rem;padding:0 .75rem;font-size:.82rem}
  .page-nav{padding:0 .85rem}
}
.cat-visual-grid{display:grid;gap:1rem;grid-template-columns:repeat(2,1fr)}
@media(min-width:640px){.cat-visual-grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1024px){.cat-visual-grid{grid-template-columns:repeat(6,1fr)}}
.cat-visual{position:relative;aspect-ratio:1/1;border-radius:1.5rem;overflow:hidden;box-shadow:var(--shadow-soft)}
.cat-visual.active{box-shadow:0 0 0 3px hsl(var(--primary)), var(--shadow-elegant)}
.cat-visual img{width:100%;height:100%;object-fit:cover;transition:transform .7s}
.cat-visual:hover img{transform:scale(1.1)}
.cat-visual .overlay{position:absolute;inset:0;background:var(--gradient-overlay)}
.cat-visual .label{position:absolute;left:.75rem;right:.75rem;bottom:.75rem;color:hsl(var(--background));font-family:'Inter',sans-serif;font-size:.875rem}
@media(min-width:640px){.cat-visual .label{font-size:1rem}}

/* Product detail */
.catalogue-link-fx{--catalogue-base:hsl(var(--muted-foreground));--catalogue-hover:hsl(var(--primary));position:relative;display:inline-flex;align-items:center;gap:.55rem;margin-bottom:2rem;color:var(--catalogue-base);font-size:.95rem;font-weight:600;line-height:1;text-decoration:none;transition:color .2s ease}
.catalogue-link-fx::after{position:absolute;content:"";width:0;left:0;bottom:-.4rem;background:var(--catalogue-hover);height:2px;transition:width .3s ease}
.catalogue-link-fx__label{position:relative;display:inline-block}
.catalogue-link-fx__label::before{position:absolute;content:attr(data-text);width:0;inset:0;color:var(--catalogue-hover);overflow:hidden;white-space:nowrap;transition:width .3s ease}
.catalogue-link-fx__icon{display:inline-flex;align-items:center;justify-content:center;color:var(--catalogue-base);transition:transform .2s ease,color .2s ease .15s}
.catalogue-link-fx__icon svg{width:1rem;height:1rem;display:block;stroke-width:2.4}
.catalogue-link-fx:hover::after,.catalogue-link-fx:focus-visible::after{width:100%}
.catalogue-link-fx:hover .catalogue-link-fx__label::before,.catalogue-link-fx:focus-visible .catalogue-link-fx__label::before{width:100%}
.catalogue-link-fx:hover .catalogue-link-fx__icon,.catalogue-link-fx:focus-visible .catalogue-link-fx__icon{transform:translateX(-4px);color:var(--catalogue-hover)}
.catalogue-link-fx:focus-visible{outline:none}
.pd-grid{display:grid;gap:2.5rem}
@media(min-width:1024px){.pd-grid{grid-template-columns:1fr 1fr;gap:4rem}}
.pd-gallery{display:grid;gap:.9rem}
.pd-image{position:relative;border-radius:2rem;overflow:hidden;background:hsl(var(--secondary));aspect-ratio:1/1;box-shadow:var(--shadow-elegant)}
.pd-image img{width:100%;height:100%;object-fit:cover}
.pd-track{display:flex;height:100%;transition:transform .55s var(--transition-smooth);will-change:transform}
.pd-slide{min-width:100%;height:100%}
.pd-image.dragging{cursor:grabbing}
.pd-thumbs{display:flex;gap:.7rem;overflow-x:auto;padding:.1rem 0 .2rem;scrollbar-width:none;-webkit-overflow-scrolling:touch}
.pd-thumbs::-webkit-scrollbar{display:none}
.pd-thumb{flex:0 0 4.75rem;width:4.75rem;aspect-ratio:1/1;border-radius:1rem;overflow:hidden;border:1px solid hsl(var(--border));background:hsl(var(--card));box-shadow:var(--shadow-soft);transition:border-color .2s,transform .2s,box-shadow .2s;padding:0}
.pd-thumb:hover{transform:translateY(-1px);border-color:hsl(var(--foreground)/0.22)}
.pd-thumb.active{border-color:hsl(var(--primary));box-shadow:0 0 0 2px hsl(var(--primary)/0.18), var(--shadow-soft)}
.pd-thumb img{width:100%;height:100%;object-fit:cover}
.pd-image .pcat{position:absolute;top:1.25rem;left:1.25rem;font-size:.75rem;letter-spacing:.2em;text-transform:uppercase;padding:.375rem .75rem;border-radius:9999px;backdrop-filter:blur(24px);background:hsl(var(--background)/0.6);border:1px solid hsl(var(--border)/0.6)}
.pd-rating{margin-top:1rem;display:flex;align-items:center;gap:.75rem}
.pd-stars{color:hsl(var(--accent));display:flex;gap:2px}
.pd-price-row{margin-top:1.5rem;display:flex;align-items:baseline;gap:.75rem;flex-wrap:wrap}
.pd-price{font-family:'Inter',sans-serif;font-size:2.25rem}
.pd-price.price-note{font-size:1.5rem;line-height:1.25}
.pd-old{color:hsl(var(--muted-foreground));text-decoration:line-through;font-size:.875rem}
.pd-save{font-size:.75rem;padding:.125rem .5rem;border-radius:9999px;background:hsl(var(--primary)/0.1);color:hsl(var(--primary));font-weight:500}
.size-row{display:flex;flex-wrap:wrap;gap:.5rem}
.size-btn{padding:.625rem 1rem;border-radius:9999px;font-size:.875rem;font-weight:500;border:1px solid hsl(var(--border));backdrop-filter:blur(8px);transition:.2s}
.size-btn:hover{border-color:hsl(var(--foreground)/0.5)}
.size-btn.active{background:hsl(var(--foreground));color:hsl(var(--background));border-color:hsl(var(--foreground))}
.qty-box{display:inline-flex;align-items:center;border:1px solid hsl(var(--border));border-radius:9999px}
.qty-box button{width:2.5rem;height:2.5rem;display:grid;place-items:center}
.qty-box button:hover{background:hsl(var(--muted))}
.qty-box button:disabled{opacity:.35;cursor:not-allowed}
.qty-box button:disabled:hover{background:transparent}
.qty-box button:first-child{border-radius:9999px 0 0 9999px}
.qty-box button:last-child{border-radius:0 9999px 9999px 0}
.qty-box span{width:2.5rem;text-align:center;font-weight:500}
.cta-row{margin-top:2rem;display:grid;gap:.75rem}
@media(min-width:640px){.cta-row{grid-template-columns:1fr 1fr}}
.btn-block{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:1rem 1.5rem;border-radius:9999px;font-weight:500;line-height:1.25;text-align:center;transition:.2s}
.btn-add{margin-top:.75rem;width:100%;display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.75rem 1.5rem;border-radius:9999px;background:hsl(var(--secondary));font-size:.875rem;font-weight:500;line-height:1.25;text-align:center}
.btn-add:hover{background:hsl(var(--muted))}
.support-highlights-section{padding:0 0 1rem}
.support-highlights{display:grid;gap:0;border-radius:1.5rem;background:hsl(var(--card));border:1px solid hsl(var(--border));box-shadow:var(--shadow-soft);overflow:hidden}
@media(min-width:720px){.support-highlights{grid-template-columns:repeat(2,minmax(0,1fr))}}
.support-highlights-inline{margin-top:2rem}
.support-highlight{display:flex;align-items:flex-start;gap:1rem;padding:1.15rem 1.35rem;background:linear-gradient(180deg,hsl(var(--background)),hsl(var(--secondary)/.28))}
@media(min-width:720px){.support-highlight + .support-highlight{border-left:1px solid hsl(var(--border))}}
@media(max-width:719px){.support-highlight + .support-highlight{border-top:1px solid hsl(var(--border))}}
.support-highlight-icon{width:2.8rem;height:2.8rem;border-radius:9999px;display:grid;place-items:center;flex-shrink:0;background:hsl(var(--primary)/.08);color:hsl(var(--primary))}
.support-highlight-copy strong{display:block;font-size:.95rem;line-height:1.25}
.support-highlight-copy small{display:block;margin-top:.2rem;font-size:.82rem;line-height:1.5;color:hsl(var(--muted-foreground))}
.about-grid{margin-top:5rem;display:grid;gap:2rem}
@media(min-width:1024px){.about-grid{grid-template-columns:2fr 1fr}}
.about-card{border-radius:1.5rem;background:hsl(var(--card));padding:2rem;box-shadow:var(--shadow-soft)}
.about-side{border-radius:1.5rem;background:var(--gradient-luxe);padding:2rem}
.team-panel{padding:2rem;border-radius:2rem;border:1px solid hsl(var(--border)/.72);background:hsl(var(--background)/.48);backdrop-filter:blur(20px);box-shadow:0 18px 48px -42px hsl(var(--foreground)/.18)}
.team-panel-layout{display:grid;gap:2rem;align-items:center}
.team-panel-copy .section-eyebrow{color:hsl(var(--primary))}
.team-panel-copy h2{font-size:clamp(2rem,3.2vw,3.2rem);line-height:1.08;margin-top:.9rem;max-width:14ch}
.team-panel-copy p{margin-top:1.2rem;max-width:30rem;line-height:1.8}
.team-panel-media{display:grid;gap:1.4rem}
.team-panel-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));border-bottom:1px solid hsl(var(--border)/.55)}
.team-panel-stat{text-align:center;padding:.4rem 1rem 1.25rem}
.team-panel-stat + .team-panel-stat{border-left:1px solid hsl(var(--border)/.55)}
.team-panel-stat-value{font-family:"Manrope",sans-serif;font-size:clamp(2rem,3vw,3rem);font-weight:800;line-height:1;color:hsl(var(--primary-deep))}
.team-panel-stat-label{margin-top:.55rem;font-size:.78rem;letter-spacing:.22em;text-transform:uppercase;color:hsl(var(--muted-foreground))}
.team-panel-image{overflow:hidden;border-radius:1.8rem;border:1px solid hsl(var(--border)/.62);background:hsl(var(--background)/.7);min-height:15.5rem;aspect-ratio:2.45/1}
.team-panel-image img{width:100%;height:100%;display:block;object-fit:cover}
@media(min-width:1024px){.team-panel{padding:2.35rem 2.45rem}.team-panel-layout{grid-template-columns:minmax(0,.88fr) minmax(0,1.42fr);gap:2.5rem}}
.feature-li{display:flex;align-items:flex-start;gap:.75rem;font-size:.875rem;margin:.75rem 0}
.feature-li .check{width:1.25rem;height:1.25rem;margin-top:2px;border-radius:9999px;background:hsl(var(--primary));color:hsl(var(--primary-foreground));display:grid;place-items:center;flex-shrink:0}

/* About page */
.values-grid{margin-top:3rem;display:grid;gap:1.25rem;grid-template-columns:1fr}
@media(min-width:640px){.values-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.values-grid{grid-template-columns:repeat(4,1fr)}}
.value-card{padding:1.5rem;border-radius:1.5rem;backdrop-filter:blur(24px);background:hsl(var(--background)/0.6);border:1px solid hsl(var(--border)/0.6);transition:.2s}
.value-card:hover{box-shadow:var(--shadow-soft)}
.value-icon{width:3rem;height:3rem;border-radius:1rem;background:hsl(var(--primary)/0.1);color:hsl(var(--primary));display:grid;place-items:center}
.timeline-grid{display:grid;gap:3rem}
@media(min-width:1024px){.timeline-grid{grid-template-columns:1fr 2fr}}
.tl-item{padding:1.5rem;border-radius:1.5rem;display:flex;gap:1.5rem;align-items:flex-start;backdrop-filter:blur(24px);background:hsl(var(--background)/0.6);border:1px solid hsl(var(--border)/0.6);margin-bottom:1rem}
.tl-year{font-family:'Inter',sans-serif;font-size:1.875rem;color:hsl(var(--primary));width:5rem;flex-shrink:0}

/* Contact */
.channels{display:grid;gap:1rem;grid-template-columns:1fr}
@media(min-width:640px){.channels{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.channels{grid-template-columns:repeat(4,1fr)}}
.channel{padding:1.5rem;border-radius:1.5rem;backdrop-filter:blur(24px);background:hsl(var(--background)/0.6);border:1px solid hsl(var(--border)/0.6);transition:.2s;display:block}
.channel:hover{box-shadow:var(--shadow-soft);transform:translateY(-2px)}
.channel-ico{width:2.75rem;height:2.75rem;border-radius:1rem;background:hsl(var(--primary)/0.1);color:hsl(var(--primary));display:grid;place-items:center}
.channel-ico svg{width:1.35rem;height:1.35rem;display:block}
.contact-grid{display:grid;gap:1.5rem}
@media(min-width:1024px){.contact-grid{grid-template-columns:3fr 2fr}}
.form-card{padding:2rem;border-radius:2rem;backdrop-filter:blur(24px);background:hsl(var(--background)/0.6);border:1px solid hsl(var(--border)/0.6);display:flex;flex-direction:column;gap:1.25rem}
@media(min-width:1024px){.form-card{padding:2.5rem}}
.field label{font-size:.75rem;letter-spacing:.2em;text-transform:uppercase;color:hsl(var(--muted-foreground))}
.field input,.field select,.field textarea{width:100%;background:transparent;outline:none;padding:.75rem 1rem;border-radius:1rem;border:1px solid hsl(var(--border));margin-top:.5rem;transition:border-color .2s}
.field input:focus,.field select:focus,.field textarea:focus{border-color:hsl(var(--primary))}
.fields-2{display:grid;gap:1rem}
@media(min-width:640px){.fields-2{grid-template-columns:1fr 1fr}}
.aside-card{padding:2rem;border-radius:2rem;backdrop-filter:blur(24px);background:hsl(var(--background)/0.6);border:1px solid hsl(var(--border)/0.6)}

/* Toast */
.toast-host{position:fixed;bottom:1rem;right:1rem;z-index:200;display:flex;flex-direction:column;gap:.5rem;pointer-events:none}
.toast{pointer-events:auto;min-width:260px;max-width:360px;padding:1rem 1.25rem;border-radius:1rem;background:hsl(var(--card));box-shadow:var(--shadow-elegant);border:1px solid hsl(var(--border));animation:fade-up .4s var(--transition-smooth)}
.toast .t{font-weight:600;font-size:.875rem}
.toast .d{font-size:.8rem;color:hsl(var(--muted-foreground));margin-top:.25rem}
@media(max-width:640px){
  .toast-host{left:1rem;right:1rem;bottom:1rem}
  .toast{width:100%;max-width:none;min-width:0}
}

/* Popup */
.popup-root{position:fixed;inset:0;z-index:100;display:none;place-items:center;padding:1rem}
.popup-root.open{display:grid;animation:fade-up .5s var(--transition-smooth)}
.popup-back{position:absolute;inset:0;background:hsl(var(--foreground)/.6);backdrop-filter:blur(4px)}
.popup-card{position:relative;width:100%;max-width:56rem;border-radius:2rem;overflow:hidden;background:hsl(var(--card));box-shadow:var(--shadow-elegant);display:grid;grid-template-columns:1fr}
@media(min-width:768px){.popup-card{grid-template-columns:1fr 1fr}}
.popup-close{position:absolute;top:1rem;right:1rem;z-index:10;width:2.5rem;height:2.5rem;border-radius:9999px;display:grid;place-items:center;backdrop-filter:blur(24px);background:hsl(var(--background)/0.6);border:1px solid hsl(var(--border)/0.6)}
.popup-img{aspect-ratio:1/1}
@media(min-width:768px){.popup-img{aspect-ratio:auto;min-height:480px}}
.popup-img img{width:100%;height:100%;object-fit:cover}
.popup-body{padding:2rem;display:flex;flex-direction:column;justify-content:center}
@media(min-width:640px){.popup-body{padding:2.5rem}}
@media(max-width:640px){
  .popup-root{padding:.75rem}
  .popup-card{max-height:calc(100vh - 1.5rem);border-radius:1.5rem;overflow:auto}
  .popup-img{aspect-ratio:16/9;min-height:0}
  .popup-body{padding:1.25rem 1.25rem 1.5rem}
  .popup-close{top:.75rem;right:.75rem;width:2.25rem;height:2.25rem}
}

/* Search popover */
.search-popover-root{position:fixed;top:5.5rem;left:50%;transform:translateX(-50%);z-index:70;width:min(36rem,calc(100vw - 2rem));display:none}
.search-popover-root.open{display:block;animation:search-popover-enter .25s var(--transition-smooth) both}
.search-popover-card{border-radius:1.35rem;background:hsl(var(--card));border:1px solid hsl(var(--border));box-shadow:var(--shadow-elegant);padding:.8rem;display:flex;flex-direction:column;gap:.75rem}
.search-popover-form{margin:0}
.search-popover-input-wrap{display:flex;align-items:center;gap:.75rem;border:1px solid hsl(var(--border));border-radius:9999px;padding:.85rem 1rem;background:hsl(var(--background))}
.search-popover-icon{display:grid;place-items:center;color:hsl(var(--muted-foreground));flex-shrink:0}
.search-popover-input-wrap input{flex:1;border:none;outline:none;background:transparent;padding:0;min-width:0;font-size:16px}
.search-popover-close{width:2rem;height:2rem;border-radius:9999px;display:grid;place-items:center;color:hsl(var(--muted-foreground));flex-shrink:0}
.search-popover-meta{font-size:.8rem;color:hsl(var(--muted-foreground));padding:0 .35rem}
.search-popover-list{display:grid;gap:.35rem;max-height:min(26rem,calc(100vh - 10rem));overflow:auto;padding:.15rem}
.search-suggestion{display:grid;grid-template-columns:3rem minmax(0,1fr);align-items:center;gap:.75rem;padding:.55rem;border-radius:1rem;transition:background .2s}
.search-suggestion:hover{background:hsl(var(--secondary))}
.search-suggestion img{width:3rem;height:3rem;border-radius:.8rem;object-fit:cover;background:hsl(var(--secondary))}
.search-suggestion strong{display:block;font-size:.92rem;line-height:1.3}
.search-suggestion small{display:block;font-size:.76rem;color:hsl(var(--muted-foreground));margin-top:.15rem}
.search-empty{padding:.9rem 1rem;font-size:.9rem;color:hsl(var(--muted-foreground))}
@media(max-width:640px){
  .search-popover-root{top:4.9rem;width:calc(100vw - 1rem)}
  .search-popover-card{padding:.7rem;border-radius:1.15rem}
  .search-popover-input-wrap{padding:.8rem .9rem}
}

/* Cart drawer */
.cart-root{position:fixed;inset:0;z-index:90;display:none}
.cart-root.open{display:block}
.cart-back{position:absolute;inset:0;background:hsl(var(--foreground)/.5);backdrop-filter:blur(4px)}
.cart-panel{position:absolute;top:0;right:0;bottom:0;width:100%;max-width:420px;background:hsl(var(--card));box-shadow:var(--shadow-elegant);display:flex;flex-direction:column;animation:slide-in .35s var(--transition-smooth)}
.cart-head{padding:1.5rem;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid hsl(var(--border))}
.cart-items{flex:1;overflow-y:auto;padding:1rem 1.5rem}
.cart-empty{text-align:center;padding:3rem 1rem;color:hsl(var(--muted-foreground))}
.cart-item{display:flex;gap:.75rem;padding:.75rem 0;border-bottom:1px solid hsl(var(--border))}
.cart-item img{width:64px;height:64px;border-radius:.75rem;object-fit:cover}
.cart-item .meta{flex:1;font-size:.875rem}
.cart-item .meta .n{font-weight:500}
.cart-item .meta .s{color:hsl(var(--muted-foreground));font-size:.75rem;margin-top:2px}
.cart-item .rm{color:hsl(var(--muted-foreground));font-size:.75rem;margin-top:.25rem}
.cart-item .rm:hover{color:hsl(var(--primary))}
.cart-item-top{display:flex;align-items:flex-start;justify-content:space-between;gap:.75rem}
.cart-item-bottom{display:flex;align-items:center;justify-content:space-between;gap:.75rem;margin-top:.75rem}
.drawer-qty{display:inline-flex;align-items:center;border:1px solid hsl(var(--border));border-radius:9999px;overflow:hidden;background:hsl(var(--background)/.55)}
.drawer-qty button{width:2rem;height:2rem;display:grid;place-items:center;color:hsl(var(--muted-foreground));transition:.2s}
.drawer-qty button:hover{background:hsl(var(--muted));color:hsl(var(--foreground))}
.drawer-qty button:disabled{opacity:.35;cursor:not-allowed}
.drawer-qty button:disabled:hover{background:transparent;color:hsl(var(--muted-foreground))}
.drawer-qty span{min-width:2rem;text-align:center;font-weight:600;font-size:.82rem}
.cart-remove-btn{width:2rem;height:2rem;border-radius:9999px;display:grid;place-items:center;flex-shrink:0;color:hsl(var(--muted-foreground));background:hsl(var(--background)/.4);border:1px solid hsl(var(--border)/.7);transition:.2s}
.cart-remove-btn:hover{color:hsl(var(--primary));background:hsl(var(--primary)/.08);border-color:hsl(var(--primary)/.25)}
.cart-remove-btn svg{width:14px;height:14px}
.cart-foot{padding:1.5rem;border-top:1px solid hsl(var(--border));display:flex;flex-direction:column;gap:.75rem}
.cart-total{display:flex;justify-content:space-between;font-family:'Inter',sans-serif;font-size:1.25rem}
.cart-price-note{font-size:.85rem;line-height:1.45;color:hsl(var(--muted-foreground));text-align:right}

/* Cart page */
.cart-page-section{padding:0 0 6rem}
.cart-page-grid{display:grid;gap:1.5rem;align-items:start}
@media(min-width:1024px){.cart-page-grid{grid-template-columns:minmax(0,1fr) 360px}}
.cart-page-list{display:grid;gap:1rem}
.cart-page-item{display:grid;grid-template-columns:96px minmax(0,1fr);gap:1rem;padding:1rem;border-radius:1.25rem;background:hsl(var(--card));border:1px solid hsl(var(--border));box-shadow:var(--shadow-soft)}
@media(min-width:640px){.cart-page-item{grid-template-columns:128px minmax(0,1fr);padding:1.25rem}}
.cart-page-image{display:block;aspect-ratio:1/1;border-radius:1rem;overflow:hidden;background:hsl(var(--secondary))}
.cart-page-image img{width:100%;height:100%;object-fit:cover}
.cart-page-meta{min-width:0;display:flex;flex-direction:column;justify-content:space-between;gap:1rem}
.cart-page-top{display:grid;gap:.75rem}
@media(min-width:640px){.cart-page-top{grid-template-columns:minmax(0,1fr) auto;align-items:start}}
.cart-page-name{font-size:1.2rem;line-height:1.25}
.cart-page-sub{font-size:.85rem;color:hsl(var(--muted-foreground));margin-top:.25rem}
.cart-page-price{font-family:'Inter',sans-serif;font-size:1.25rem;white-space:nowrap;color:hsl(var(--primary))}
.cart-page-price.price-note{font-size:1rem;line-height:1.35;white-space:normal;max-width:10rem;text-align:right}
.cart-page-controls{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.mini-remove{font-size:.85rem;font-weight:600;color:hsl(var(--primary));padding:.5rem .75rem;border-radius:9999px;background:hsl(var(--primary)/.08)}
.mini-remove:hover{background:hsl(var(--primary)/.14)}
.cart-summary-card{position:sticky;top:7rem;display:flex;flex-direction:column;gap:1rem;padding:1.5rem;border-radius:1.25rem;background:hsl(var(--card));border:1px solid hsl(var(--border));box-shadow:var(--shadow-soft)}
.summary-row{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.75rem 0;border-bottom:1px solid hsl(var(--border));font-size:.9rem}
.summary-row.total{font-family:'Inter',sans-serif;font-size:1.35rem;border-bottom:0;color:hsl(var(--foreground))}
.cart-empty-page{min-height:320px;display:grid;place-items:center}
.cart-summary-card .btn:disabled{opacity:.45;cursor:not-allowed}

@media(max-width:640px){
  .btn,.btn-block,.cta-btn{width:100%}
  .section{padding:3.5rem 0}
  .section-tight{padding:2.5rem 0}
  .section-head,.split-head{margin-bottom:1.75rem}
  .section-head{align-items:flex-start}
  .split-head{gap:1rem}
  .proof-layout,.timeline-grid{gap:2rem}
  .service-card,.process-item,.feat-card,.value-card,.channel,.about-card,.about-side,.aside-card,.form-card{padding:1.35rem}
  .team-panel{padding:1.5rem;border-radius:1.5rem}
  .team-panel-copy h2{max-width:none}
  .team-panel-stats{grid-template-columns:repeat(3,minmax(0,1fr))}
  .team-panel-stat{padding:.25rem .35rem 1rem}
  .team-panel-stat + .team-panel-stat{border-top:none;border-left:1px solid hsl(var(--border)/.55)}
  .team-panel-stat-value{font-size:clamp(1.6rem,7vw,2.2rem)}
  .team-panel-stat-label{font-size:.64rem;letter-spacing:.16em}
  .team-panel-image{min-height:11.25rem;aspect-ratio:1.65/1;border-radius:1.35rem}
  .cta-card{padding:2rem;border-radius:2rem}
  .testimonial-card figcaption{flex-direction:column;gap:.35rem}
  .faq-item{padding:.95rem 1rem}
  .cat-grid,.product-grid,.feat-grid,.values-grid,.channels,.service-grid,.process-grid{gap:1rem}
  .cat-card,.product-card,.pd-image,.about-card,.about-side,.aside-card,.form-card,.cart-page-item,.cart-summary-card,.cta-card{border-radius:1.25rem}
  .pd-grid{gap:1.75rem}
  .pd-rating{flex-wrap:wrap;gap:.5rem}
  .pd-gallery{gap:.75rem}
  .pd-thumbs{gap:.55rem}
  .pd-thumb{flex-basis:4rem;width:4rem;border-radius:.9rem}
  .support-highlights{border-radius:1.2rem}
  .support-highlight{padding:1rem 1.05rem}
  .support-highlight-icon{width:2.5rem;height:2.5rem}
  .cart-page-section{padding:0 0 4.5rem}
  .cart-page-controls{align-items:flex-start}
}

/* Animations */
@keyframes fade-up{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
@keyframes search-popover-enter{from{opacity:0;transform:translate(-50%,20px)}to{opacity:1;transform:translate(-50%,0)}}
@keyframes float-in{0%{opacity:0;transform:scale(.5) translateY(0)}50%{opacity:1;transform:scale(1.1) translateY(-30px)}100%{opacity:0;transform:scale(.8) translateY(-80px)}}
@keyframes badge-pop{0%{transform:scale(1)}50%{transform:scale(1.4)}100%{transform:scale(1)}}
@keyframes slide-in{from{transform:translateX(100%)}to{transform:translateX(0)}}
.animate-fade-up{animation:fade-up .7s var(--transition-smooth) both}

.iframe-map{width:100%;border:0;aspect-ratio:4/3;border-radius:2rem;overflow:hidden;box-shadow:var(--shadow-soft)}

.empty-state{padding:4rem 1rem;text-align:center;border-radius:1.5rem;backdrop-filter:blur(24px);background:hsl(var(--background)/0.6);border:1px solid hsl(var(--border)/0.6)}
