/* ═══════════════════════════════════════════════
   WORLDO — Global Product Discovery Magazine
   Apple/Pinterest/Gem.app inspired
   ═══════════════════════════════════════════════ */

:root {
  --bg: #FAFAF8;
  --paper: #FFFFFF;
  --card-bg: #F5F4F0;
  --ink: #111111;
  --ink-soft: #333;
  --muted: #6B6B6B;
  --muted-light: #999;
  --line: #E8E6E1;
  --line-light: #EEEEEE;
  --accent: #FF5A3A;
  --accent-hover: #E84D2F;
  --lime: #DFF08A;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 2px 8px rgba(0,0,0,.05);
  --shadow-lg: 0 4px 16px rgba(0,0,0,.06);
  --shadow-xl: 0 8px 28px rgba(0,0,0,.08);
  --font-sans: Inter, -apple-system, system-ui, sans-serif;
  --font-display: Inter, -apple-system, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;background:var(--bg);color:var(--ink);
  font-family:var(--font-sans);-webkit-font-smoothing:antialiased;
  line-height:1.5;
  overflow-x:hidden;
  letter-spacing:-.01em;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input,select,textarea{font:inherit}

.shell{width:100%;max-width:1280px;margin:0 auto;padding:0 24px}

/* ═══════ TYPOGRAPHY ═══════ */
h1,h2,h3,h4{font-family:var(--font-display)}
.eyebrow{
  display:inline-block;font-size:11px;font-weight:700;
  text-transform:uppercase;letter-spacing:.12em;
  color:var(--muted);margin-bottom:10px
}
.section-title{
  font-size:clamp(26px,3.2vw,40px);font-weight:700;
  letter-spacing:-.03em;line-height:1.08;margin:0
}
.section-sub{margin:6px 0 0;color:var(--muted);font-size:15px}
.section-head { margin-bottom: 28px; }
.section-head-row{
  display:flex;justify-content:space-between;align-items:flex-end;
  margin-bottom:28px;gap:16px
}
.section-link{font-size:14px;font-weight:600;color:var(--muted);white-space:nowrap;transition:color .15s}
.section-link:hover{color:var(--ink)}

/* ═══════ TOPBAR ═══════ */
.topbar{
  position:fixed;top:0;left:0;right:0;z-index:100;
  height:56px;display:flex;align-items:center;
  background:#FFFFFF;border-bottom:1px solid #EEEEEE
}
.topbar .shell{display:flex;align-items:center;gap:28px}
.logo{
  font-weight:600;font-size:20px;
  letter-spacing:-.03em;display:flex;align-items:center;gap:8px;flex-shrink:0
}
.logo-mark{
  width:28px;height:28px;display:grid;place-items:center;
  background:var(--ink);color:#fff;border-radius:7px;font-size:12px;font-weight:900
}
.topbar-nav{display:flex;gap:2px;align-items:center}
.topbar-nav a, .nav-trigger{
  padding:8px 14px;border-radius:var(--radius-full);
  font-size:13px;font-weight:500;color:#555;transition:all .15s;cursor:pointer
}
.topbar-nav a:hover, .nav-trigger:hover{color:var(--ink)}
.topbar-nav a.active{color:var(--ink);font-weight:600}

/* Category dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown .nav-trigger { display: inline-block; background: none; border: none; font: inherit; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; margin-top: 4px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  min-width: 200px; max-height: 400px; overflow-y: auto;
  z-index: 200; opacity: 0; pointer-events: none;
  transform: translateY(-4px); transition: .15s ease;
}
.nav-dropdown-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown-loading { padding: 12px 16px; font-size: 13px; color: var(--muted); }
.nav-dropdown-item {
  display: block; padding: 10px 16px;
  font-size: 13px; color: var(--ink-soft);
  transition: .1s;
}
.nav-dropdown-item:hover { background: var(--card-bg); color: var(--ink); }
.nav-dropdown-item:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.nav-dropdown-item:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.topbar-right{margin-left:auto;display:flex;align-items:center;gap:6px}
.topbar-search-btn{
  width:36px;height:36px;display:grid;place-items:center;
  border:none;background:transparent;border-radius:50%;
  color:#555;cursor:pointer;transition:.15s
}
.topbar-search-btn:hover{color:var(--ink)}
.hamburger-btn{
  display:none;width:36px;height:36px;border:none;
  background:transparent;border-radius:8px;cursor:pointer;
  flex-direction:column;align-items:center;justify-content:center;gap:5px;padding:0
}
.hamburger-btn span{display:block;width:18px;height:2px;background:var(--ink);border-radius:1px}
.hamburger-btn:hover{background:var(--card-bg)}

/* ═══════ MOBILE MENU ═══════ */
.mobile-menu{
  position:fixed;inset:0;z-index:9999;background:#FFFFFF;
  transform:translateX(100%);
  transition:transform .35s cubic-bezier(.25,.1,.25,1);
  overflow-y:auto;pointer-events:none
}
.mobile-menu.open{transform:translateX(0);pointer-events:auto}
.mobile-menu-hd{
  display:flex;justify-content:space-between;align-items:center;
  padding:14px 20px;border-bottom:1px solid var(--line-light)
}
.mobile-close{
  width:36px;height:36px;border:none;border-radius:50%;
  background:var(--card-bg);cursor:pointer;font-size:18px;
  display:grid;place-items:center;color:var(--muted)
}
.mobile-nav-links{padding:12px 20px}
.mobile-nav-links a{
  display:block;padding:14px 0;font-size:17px;font-weight:600;
  border-bottom:1px solid var(--line-light);color:var(--ink)
}

/* ═══════ HERO ═══════ */
.hero{
  position:relative;overflow:hidden;padding:100px 0 50px;
  background:#FFFFFF;min-height:88vh;display:flex;align-items:center
}
.hero-bg{
  position:absolute;inset:0;
  background:radial-gradient(ellipse 70% 60% at 50% 20%, rgba(255,90,58,.04) 0%, transparent 60%),
              radial-gradient(ellipse 50% 50% at 80% 80%, rgba(223,240,138,.08) 0%, transparent 50%),
              radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0,0,0,.02) 0%, transparent 50%);
  pointer-events:none
}
.hero-content{
  position:relative;z-index:3;text-align:center;
  max-width:780px;margin:0 auto;padding:20px 0
}
.hero-badge{
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 14px;border:1px solid var(--line);border-radius:var(--radius-full);
  font-size:11px;font-weight:600;color:var(--muted);margin-bottom:20px;
  background:rgba(255,255,255,.7)
}
.hero h1{
  font-size:clamp(42px,6vw,72px);font-weight:900;
  letter-spacing:-.05em;line-height:.94;margin:0;color:var(--ink)
}
.hero h1 em{color:var(--accent);font-style:normal}
.hero-sub{font-size:clamp(16px,1.3vw,18px);color:var(--muted);max-width:520px;margin:16px auto 0;line-height:1.6}
.hero-search{margin:32px auto 0;max-width:620px;width:100%}
.hero-search-bar{
  display:flex;align-items:center;gap:10px;height:56px;
  padding:0 16px;background:var(--card-bg);
  border:1px solid var(--line);border-radius:var(--radius-lg);
  transition:.2s ease
}
.hero-search-bar:focus-within{border-color:var(--muted-light);background:#fff;box-shadow:var(--shadow-lg);transform:translateY(-2px)}
.hero-search-bar svg{flex-shrink:0;color:var(--muted-light)}
.hero-search-bar input{
  width:100%;height:100%;border:none;outline:none;
  background:transparent;font-size:16px;color:var(--ink)
}
.hero-search-bar input::placeholder{color:var(--muted-light)}
.hero-search-bar button{
  height:38px;padding:0 22px;border:none;
  background:var(--ink);color:#fff;border-radius:var(--radius-md);
  font-weight:600;font-size:13px;cursor:pointer;white-space:nowrap
}
.hero-search-bar button:hover{background:var(--ink-soft);transform:scale(1.02)}
.hero-chips{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;margin-top:22px}
.hero-chips .chip{
  padding:6px 14px;border:1px solid var(--line);border-radius:var(--radius-full);
  background:var(--paper);font-size:12px;font-weight:500;color:var(--muted);
  transition:.15s
}
.hero-chips .chip:hover{color:var(--ink);border-color:var(--muted-light)}

/* Floating product cards */
.hero-floating{position:absolute;inset:0;pointer-events:none;overflow:hidden}
.hero-card{
  position:absolute;width:160px;border-radius:var(--radius-lg);
  overflow:hidden;box-shadow:var(--shadow-lg);
  background:#fff;animation:heroFloat 1s ease-out both;
  display:flex;flex-direction:column
}
.hero-card img{width:100%;height:130px;object-fit:cover;display:block}
.hero-card-meta{padding:8px 10px 9px;display:flex;justify-content:space-between;align-items:center;gap:4px}
.hero-card-shop{font-size:10px;font-weight:600;color:var(--muted);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:90px}
.hero-card-price{font-family:var(--font-display);font-size:13px;font-weight:800;white-space:nowrap;flex-shrink:0}

.hero-card-1{top:10%;left:2%;animation-delay:.05s}
.hero-card-2{top:4%;right:3%;width:140px;animation-delay:.15s}
.hero-card-3{top:42%;left:1%;width:145px;animation-delay:.25s}
.hero-card-4{top:50%;right:1%;width:135px;animation-delay:.2s}
.hero-card-5{top:18%;left:16%;width:110px;animation-delay:.3s}

@keyframes heroFloat{
  0%{opacity:0;transform:translateY(16px) scale(.92)}
  100%{opacity:1;transform:translateY(0) scale(1)}
}

/* ═══════ STATS BANNER ═══════ */
.stats-banner{
  padding:0;background:#FFFFFF;border-bottom:1px solid var(--line-light)
}
.stats-row{
  max-width:900px;margin:0 auto;display:flex;
  justify-content:center;align-items:center;gap:0;padding:18px 24px
}
.stat-item{text-align:center;padding:0 28px}
.stat-item strong{
  display:block;font-family:var(--font-display);font-size:18px;
  font-weight:800;letter-spacing:-.03em;line-height:1.2
}
.stat-item span{font-size:12px;color:var(--muted)}
.stat-divider{width:1px;height:32px;background:var(--line);flex-shrink:0}

/* ═══════ EDITORIAL COLLECTIONS ═══════ */
.editorial-section{padding:60px 0;background:var(--paper)}
.editorial-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.editorial-card{
  position:relative;border-radius:var(--radius-xl);overflow:hidden;
  aspect-ratio:16/10;cursor:pointer;transition:.35s ease;display:block
}
.editorial-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-xl)}
.editorial-card img{width:100%;height:100%;object-fit:cover;transition:.5s ease}
.editorial-card:hover img{transform:scale(1.06)}
.editorial-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 30%,rgba(0,0,0,.7))
}
.editorial-info{
  position:absolute;bottom:0;left:0;right:0;padding:20px 24px;color:#fff
}
.editorial-eyebrow{
  font-size:11px;text-transform:uppercase;letter-spacing:.12em;
  font-weight:600;opacity:.6;margin-bottom:6px
}
.editorial-info h3{margin:0;font-size:clamp(20px,2.2vw,28px);font-weight:800;letter-spacing:-.03em}
.editorial-info p{margin:4px 0 0;font-size:13px;opacity:.7;font-weight:500}

/* ═══════ PRODUCT GRID ═══════ */
.products-section{padding:60px 0;background:var(--paper)}
.products-section.alt-bg{background:var(--bg)}
.product-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:16px;row-gap:24px
}
.product-card{
  background:transparent;border-radius:0;
  overflow:hidden;transition:.25s ease;display:flex;flex-direction:column;cursor:pointer
}
.product-card:hover{transform:none;box-shadow:none}
.product-media{
  position:relative;aspect-ratio:1;overflow:hidden;border-radius:16px;background:var(--card-bg)
}
.product-media img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}
.product-card:hover .product-media img{transform:scale(1.03)}
.product-placeholder{
  width:100%;height:100%;display:grid;place-items:center;
  font-size:32px;color:var(--muted-light);background:var(--card-bg)
}
.product-badge{
  position:absolute;top:8px;left:8px;padding:3px 9px;
  background:rgba(17,17,17,.85);color:#fff;font-size:9px;font-weight:700;
  border-radius:6px;letter-spacing:.04em
}
.product-save{
  position:absolute;top:8px;right:8px;width:30px;height:30px;
  display:grid;place-items:center;background:rgba(255,255,255,.9);
  border:none;border-radius:50%;cursor:pointer;
  color:var(--muted);font-size:15px;opacity:0;transition:.15s
}
.product-card:hover .product-save{opacity:1}
.product-save:hover{background:#fff;color:var(--accent);transform:scale(1.1)}
.product-save.saved{opacity:1;color:var(--accent)}
.product-info{padding:10px 0 0;flex:1;display:flex;flex-direction:column}
.product-shop-row{display:flex;align-items:center;gap:6px;margin-bottom:4px;flex-wrap:wrap}
.product-shop-name{
  font-size:10px;font-weight:600;color:var(--muted-light);
  text-transform:uppercase;letter-spacing:.04em;overflow:hidden;
  text-overflow:ellipsis;white-space:nowrap;max-width:100%
}
.product-country{font-size:10px;color:var(--muted-light);flex-shrink:0}
.product-rating{
  font-size:10px;color:#f59e0b;font-weight:700;flex-shrink:0;margin-left:auto
}
.product-title{
  margin:0;font-size:14px;font-weight:500;line-height:1.4;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;
  overflow:hidden;min-height:38px;color:#222;word-break:break-word
}
.product-bottom{
  display:flex;justify-content:space-between;align-items:center;
  margin-top:auto;padding-top:6px
}
.product-price{
  font-size:14px;font-weight:600;
  letter-spacing:-.01em;color:var(--ink)
}

/* ═══════ SHOPS ═══════ */
.shops-section{padding:60px 0;background:var(--paper)}
.shops-row{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.shop-mini-card{
  display:flex;align-items:center;gap:12px;padding:14px;
  border-radius:var(--radius-lg);background:var(--card-bg);border:1px solid var(--line-light);
  transition:.2s ease;cursor:pointer;min-width:0
}
.shop-mini-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);border-color:#ddd}
.shop-mini-logo{
  width:44px;height:44px;border-radius:var(--radius-md);overflow:hidden;
  background:#fff;border:1px solid var(--line);flex-shrink:0;
  display:grid;place-items:center
}
.shop-mini-logo img{width:100%;height:100%;object-fit:contain}
.shop-mini-initial{font-family:var(--font-display);font-size:18px;font-weight:800;color:var(--muted)}
.shop-mini-info{min-width:0;overflow:hidden}
.shop-mini-info strong{display:block;font-size:14px;font-weight:700;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.shop-mini-info span{font-size:12px;color:var(--muted)}
.shop-meta-row{display:flex;align-items:center;gap:8px;margin-top:2px}
.shop-rating{font-size:11px;color:#f59e0b;font-weight:700}

/* ═══════ SEARCH PAGE ═══════ */
.search-page{padding:70px 0 60px;background:var(--paper)}
.search-header{margin-bottom:20px}
.search-top-form{margin:0 auto;max-width:780px}
.search-top-bar{
  display:flex;align-items:center;gap:10px;height:54px;
  padding:0 16px;background:var(--bg);
  border:1px solid var(--line);border-radius:var(--radius-lg);
  transition:.2s ease
}
.search-top-bar:focus-within{border-color:var(--muted-light);background:#fff;box-shadow:var(--shadow-lg)}
.search-top-bar svg{flex-shrink:0;color:var(--muted-light)}
.search-top-bar input{
  width:100%;height:100%;border:none;outline:none;
  background:transparent;font-size:16px;color:var(--ink)
}
.search-top-bar input::placeholder{color:var(--muted-light)}
.search-top-bar button{
  height:38px;padding:0 22px;border:none;
  background:var(--ink);color:#fff;border-radius:var(--radius-md);
  font-weight:600;font-size:13px;cursor:pointer;white-space:nowrap
}
.search-top-bar button:hover{background:var(--ink-soft)}

.search-meta{text-align:center;padding:6px 0 28px}
.search-meta h1{font-family:var(--font-display);font-size:clamp(26px,3vw,36px);font-weight:800;letter-spacing:-.04em;margin:0 0 4px}
.search-meta .result-count{color:var(--muted);font-size:14px;margin:0}

.load-more-wrap{text-align:center;padding:36px 0 20px}
.load-more-btn{
  display:inline-flex;align-items:center;gap:8px;
  height:48px;padding:0 36px;border:1px solid var(--line);
  border-radius:var(--radius-full);background:var(--paper);
  font-size:14px;font-weight:600;color:var(--muted);cursor:pointer;transition:.2s ease
}
.load-more-btn:hover{border-color:var(--muted-light);color:var(--ink);background:var(--card-bg)}
.load-more-btn:disabled{opacity:.5;cursor:default}
.load-more-spinner{
  width:16px;height:16px;border:2px solid var(--line);
  border-top-color:var(--ink);border-radius:50%;animation:spin .6s linear infinite
}
@keyframes spin{to{transform:rotate(360deg)}}

.search-empty{text-align:center;padding:80px 0}
.search-empty-icon{font-size:42px;display:block;margin-bottom:14px}
.search-empty h3{font-family:var(--font-display);font-size:18px;font-weight:800;margin:0 0 6px}
.search-empty p{color:var(--muted);font-size:13px;margin:0}


/* ═══════ SEARCH OVERLAY ═══════ */
.search-overlay{position:fixed;inset:0;z-index:9998;display:none;pointer-events:none}
.search-overlay.open{display:block;pointer-events:auto}
.search-overlay-bg{position:absolute;inset:0;background:rgba(0,0,0,.35)}
.search-overlay-content{position:relative;z-index:2;padding:60px 24px 0;max-width:680px;margin:0 auto}
.search-overlay-bar{
  display:flex;align-items:center;gap:12px;height:60px;
  padding:0 20px;background:#fff;border-radius:var(--radius-lg);
  box-shadow:0 8px 40px rgba(0,0,0,.16);transition:.2s ease
}
.search-overlay-bar:focus-within{box-shadow:0 12px 50px rgba(0,0,0,.2)}
.search-overlay-bar svg{flex-shrink:0;color:var(--muted)}
.search-overlay-bar input{
  width:100%;height:100%;border:none;outline:none;
  background:transparent;font-size:18px;color:var(--ink)
}
.search-overlay-bar input::placeholder{color:var(--muted-light)}
.search-overlay-bar button{
  height:42px;padding:0 24px;border:none;
  background:var(--ink);color:#fff;border-radius:var(--radius-md);
  font-weight:600;font-size:14px;cursor:pointer;white-space:nowrap
}
.search-overlay-bar button:hover{background:var(--ink-soft);transform:scale(1.02)}

/* ── Search suggestions dropdown ── */
.search-overlay-inner{
  display:flex;justify-content:center;padding:60px 24px 0
}
.search-overlay-box{
  position:relative;max-width:640px;margin:0 auto;width:100%
}
.search-suggestions{
  display:none;position:absolute;top:100%;left:0;right:0;
  background:#fff;border-radius:0 0 16px 16px;
  box-shadow:0 8px 40px rgba(0,0,0,.12);
  max-height:320px;overflow-y:auto;z-index:10
}
.search-suggestions a.sug-item{
  display:flex;align-items:center;gap:8px;
  padding:12px 20px;font-size:14px;color:#111;
  text-decoration:none;transition:background .1s
}
.search-suggestions a.sug-item:hover,
.search-suggestions a.sug-item.active{
  background:#F5F3EE
}
.search-suggestions a.sug-item svg{
  flex-shrink:0;color:#ADA9A2;width:14px;height:14px
}

/* ═══════ CTA ═══════ */
.cta-section{padding:60px 0;background:var(--paper)}
.cta-box{
  border-radius:var(--radius-2xl);overflow:hidden;
  background:linear-gradient(135deg,#0D0D0D 0%,#1A1A1A 100%);
  padding:52px 48px;text-align:center
}
.cta-box h2{max-width:680px;margin:0 auto 12px}
.cta-box p{max-width:520px;margin:0 auto;color:rgba(255,255,255,.45);font-size:15px;line-height:1.7}
.cta-btn{
  display:inline-flex;align-items:center;gap:8px;
  margin-top:22px;padding:12px 26px;
  background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.15);
  border-radius:var(--radius-full);color:#fff;font-weight:600;font-size:14px;transition:.2s ease
}
.cta-btn:hover{background:rgba(255,255,255,.18);transform:translateY(-2px)}

/* ═══════ FOOTER ═══════ */
.footer{
  border-top:1px solid #E8E4DC;padding:48px 0 24px;background:#F5F3EE
}
.footer-grid{
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;
  padding-bottom:36px;border-bottom:1px solid var(--line-light)
}
.footer-brand .logo{margin-bottom:10px}
.footer-desc{color:var(--muted);font-size:13px;line-height:1.7;max-width:320px}
.footer-col h4{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--muted-light);margin:0 0 14px}
.footer-col a{display:block;padding:5px 0;font-size:13px;color:var(--muted);transition:.15s}
.footer-col a:hover{color:var(--ink)}
.footer-bottom{display:flex;justify-content:space-between;padding-top:20px;font-size:12px;color:var(--muted-light)}

/* ═══════ MOBILE BOTTOM NAV ═══════ */
.mobile-bottom-nav{
  display:none;position:fixed;bottom:0;left:0;right:0;z-index:200;
  height:58px;background:#FFFFFF;border-top:1px solid var(--line-light);
  justify-content:space-around;align-items:center;padding:0 4px 2px
}
.mb-nav-item{
  display:flex;flex-direction:column;align-items:center;gap:1px;
  padding:6px 10px;border-radius:var(--radius-md);color:var(--muted-light);transition:.15s;min-width:56px
}
.mb-nav-item span{font-size:10px;font-weight:600}
.mb-nav-item.active,.mb-nav-item:hover{color:var(--ink)}

/* ═══════ SUBMIT SHOP ═══════ */
.submit-wrap{padding-top:72px}
.submit-hero{text-align:center;padding:60px 0 40px;max-width:680px;margin:0 auto}
.submit-eyebrow{font-size:13px;font-weight:600;color:var(--accent);text-transform:uppercase;letter-spacing:1px;margin-bottom:12px}
.submit-hero h1{font-size:44px;font-weight:800;line-height:1.1;letter-spacing:-1px;margin:0 0 16px;font-family:Manrope,sans-serif}
.submit-hero-text{font-size:18px;line-height:1.6;color:var(--muted);margin:0}
.submit-hero-text strong{color:var(--ink)}

.submit-benefits{padding:0 0 48px}
.benefit-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;max-width:900px;margin:0 auto}
.benefit-card{background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius-lg);padding:28px 24px;text-align:center}
.benefit-icon{font-size:36px;margin-bottom:12px}
.benefit-card h3{font-size:17px;font-weight:700;margin:0 0 8px}
.benefit-card p{font-size:14px;line-height:1.5;color:var(--muted);margin:0}

.submit-form-section{padding:0 0 60px}
.form-card{max-width:560px;margin:0 auto;background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius-xl);padding:40px;text-align:center}
.form-card h2{font-size:22px;font-weight:700;margin:0 0 6px}
.form-desc{font-size:14px;color:var(--muted);margin:0 0 28px}
.submit-form{display:flex;flex-direction:column;gap:16px}
.input-wrap{display:flex;align-items:center;border:2px solid var(--border);border-radius:var(--radius-lg);padding:4px;background:var(--bg);transition:border-color .2s}
.input-wrap:focus-within{border-color:var(--accent)}
.input-prefix,.input-suffix{font-size:14px;color:var(--muted);padding:0 8px;white-space:nowrap;font-family:SFMono-Regular,Menlo,monospace}
.form-input{flex:1;border:none;outline:none;font-size:17px;padding:10px 4px;background:transparent;color:var(--ink);font-family:SFMono-Regular,Menlo,monospace}
.form-input::placeholder{color:var(--border)}
.submit-btn{width:100%;padding:14px;background:var(--ink);color:var(--bg);border:none;border-radius:var(--radius-lg);font-size:16px;font-weight:700;cursor:pointer;transition:opacity .2s;display:flex;align-items:center;justify-content:center;min-height:50px}
.submit-btn:hover{opacity:.85}
.submit-btn:disabled{opacity:.5;cursor:not-allowed}
.btn-loading{display:inline-flex;align-items:center;gap:8px}
.form-result{max-width:560px;margin:16px auto 0;padding:14px 20px;border-radius:var(--radius-lg);font-size:14px;text-align:center;display:none}
.form-result.success{display:block;background:#dff0d8;color:#3c763d;border:1px solid #d6e9c6}
.form-result.error{display:block;background:#f2dede;color:#a94442;border:1px solid #ebccd1}
.form-result .result-link{display:block;margin-top:8px;font-weight:600;color:var(--color-primary,#2563eb);text-decoration:underline;word-break:break-all}

.submit-faq{padding:0 0 80px;max-width:680px;margin:0 auto}
.submit-faq h2{font-size:22px;font-weight:700;text-align:center;margin:0 0 32px}
.faq-list{display:flex;flex-direction:column;gap:24px}
.faq-item{background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius-lg);padding:24px}
.faq-item strong{display:block;font-size:15px;margin-bottom:4px}
.faq-item p{font-size:14px;line-height:1.5;color:var(--muted);margin:0}
.faq-item code{font-size:13px;background:var(--paper);padding:2px 6px;border-radius:4px}

/* ═══════ RESPONSIVE ═══════ */
@media(max-width:1080px){
  .product-grid{grid-template-columns:repeat(3,1fr);gap:14px}
  .shops-row{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:860px){
  .hero{min-height:auto;padding:90px 0 36px}
  .hero-card{display:none!important}
  .topbar-nav{display:none}
  .hamburger-btn{display:flex}
  .hero-chips .chip{font-size:11px;padding:5px 11px}
  .stats-row{gap:0;padding:14px 16px}
  .stat-item{padding:0 16px}
  .stat-item strong{font-size:16px}
  .stat-item span{font-size:11px}
  .editorial-grid{gap:14px}
  .product-grid{grid-template-columns:repeat(2,1fr);gap:12px}
  .shops-row{grid-template-columns:1fr 1fr;gap:10px}
  .section-link{display:none}
  .footer{padding-bottom:74px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:24px}
  .mobile-bottom-nav{display:flex}
  .cta-box{padding:36px 24px}
}
@media(max-width:600px){
  .shell{padding:0 14px}
  .topbar{height:50px}
  .topbar .shell{gap:16px}
  .logo{font-size:18px}
  .logo-mark{width:26px;height:26px;font-size:11px}
  .hero{padding:70px 0 28px}
  .hero h1{font-size:34px}
  .hero-search-bar{height:48px;gap:8px;padding:0 12px}
  .hero-search-bar button{height:34px;padding:0 16px;font-size:12px}
  .hero-search-bar input{font-size:14px}
  .stats-banner{overflow-x:auto}
  .stats-row{width:max-content;padding:12px 16px;gap:0}
  .stat-item{padding:0 14px}
  .editorial-grid{grid-template-columns:1fr;gap:12px}
  .editorial-card{aspect-ratio:16/9}
  .editorial-info{padding:16px}
  .editorial-info h3{font-size:20px}
  .product-grid{grid-template-columns:1fr 1fr;gap:10px}
  .product-info{padding:8px 0 0}
  .product-title{font-size:13px;min-height:34px}
  .product-save{display:none}
  .product-price{font-size:13px}
  .shops-row{grid-template-columns:1fr;gap:8px}
  .shop-mini-card{padding:12px}
  .cta-box{padding:28px 20px;border-radius:var(--radius-xl)}
  .footer-grid{grid-template-columns:1fr;gap:16px}
  .footer-desc{max-width:100%}
}

/* ═══════ PRODUCT PAGE (v3 Magazine Fusion) ═══════ */
.prod-wrap { overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 28px 0 60px;
}
.prod-gallery {
  position: sticky;
  top: 96px;
  align-self: start;
}
.prod-main-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--card-bg);
  position: relative;
}
.prod-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.prod-main-img:hover img { transform: scale(1.06); }
.prod-arrows {
  position: absolute; inset: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 12px;
  opacity: 0; transition: opacity .25s ease;
}
.prod-main-img:hover .prod-arrows { opacity: 1; }
.prod-arrow {
  width: 38px; height: 38px; border: none; border-radius: 50%;
  background: rgba(255,255,255,.88);
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  cursor: pointer; font-size: 20px;
  display: grid; place-items: center;
  transition: .2s ease; color: var(--ink);
}
.prod-arrow:hover { background: #fff; transform: scale(1.08); }
.prod-thumbs {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  flex-wrap: nowrap;
}
.prod-thumbs::-webkit-scrollbar { height: 4px; }
.prod-thumbs::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.prod-thumb {
  flex-shrink: 0; width: 64px; height: 64px;
  border-radius: 10px; overflow: hidden;
  border: 2px solid transparent; padding: 0;
  cursor: pointer; background: var(--card-bg);
  transition: .2s ease;
}
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; }
.prod-thumb:hover { border-color: var(--muted-light); }
.prod-thumb.active { border-color: var(--ink); }
.prod-img-count {
  position: absolute; bottom: 12px; right: 12px;
  padding: 4px 10px;
  background: rgba(0,0,0,.55); color: #fff;
  font-size: 12px; font-weight: 600;
  border-radius: 6px; backdrop-filter: blur(6px);
  pointer-events: none;
}
.prod-breadcrumb { font-size: 13px; color: var(--muted-light); margin-bottom: 20px; }
.prod-breadcrumb a { color: var(--muted-light); }
.prod-breadcrumb a:hover { color: var(--ink); }
.prod-vendor {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; background: var(--card-bg);
  border-radius: 6px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--muted); margin-bottom: 14px;
}
.prod-info h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800; letter-spacing: -.03em;
  line-height: 1.15; margin: 0 0 8px;
}
.prod-price-row { margin-bottom: 20px; }
.prod-price-current {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 800; letter-spacing: -.03em;
}
.prod-divider { height: 1px; background: var(--line-light); margin: 16px 0; }

/* Selector Row */
.selector-row {
  display: flex; align-items: center;
  padding: 12px 0;
  cursor: pointer;
  border-bottom: 1px solid var(--line-light);
  transition: .15s ease;
}
.selector-row:hover { background: var(--card-bg); margin: 0 -8px; padding: 12px 8px; border-radius: 8px; }
.selector-row:last-child { border-bottom: none; }
.selector-label {
  font-size: 13px; font-weight: 600; color: var(--muted);
  min-width: 80px;
}
.selector-value {
  flex: 1; font-size: 14px; color: var(--ink);
  font-weight: 500;
}
.color-dot {
  display: inline-block;
  width: 20px; height: 20px;
  border-radius: 50%;
  margin-right: 4px;
  flex-shrink: 0;
}
.selector-arrow { color: var(--muted-light); font-size: 20px; margin-left: auto; }

/* Buy Button */
.buy-btn-block { display: flex; gap: 10px; margin-top: 8px; }
.buy-btn-primary {
  flex: 1; height: 52px; border: none; border-radius: var(--radius-md);
  background: var(--ink); color: #fff;
  font-size: 16px; font-weight: 700; cursor: pointer;
  transition: .2s ease;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
}
.buy-btn-primary:hover {
  background: var(--ink-soft); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.buy-btn-primary.sold-out {
  background: var(--muted-light); cursor: not-allowed; opacity: .75;
}
.buy-btn-primary.sold-out:hover {
  background: var(--muted-light); transform: none; box-shadow: none;
}
.buy-btn-secondary {
  width: 52px; height: 52px;
  border: 1px solid var(--line); border-radius: var(--radius-md);
  background: var(--paper); cursor: pointer;
  display: grid; place-items: center;
  font-size: 18px; color: var(--muted);
  transition: .2s ease; text-decoration: none;
}
.buy-btn-secondary:hover { border-color: var(--muted-light); background: var(--card-bg); }

/* Store Info Card */
.store-info-card {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border: 1px solid var(--line);
  border-radius: var(--radius-lg); margin: 16px 0;
  transition: .2s ease;
}
.store-info-card:hover { border-color: var(--muted-light); background: var(--card-bg); }
.store-info-card .avatar {
  width: 40px; height: 40px; border-radius: 10px;
  overflow: hidden; background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.store-info-card .avatar img { width: 100%; height: 100%; object-fit: contain; }
.store-info-card .info { flex: 1; }
.store-info-card .info strong { display: block; font-size: 14px; }
.store-info-card .info span { font-size: 12px; color: var(--muted); }
.store-info-card .arrow { color: var(--muted-light); font-size: 16px; }

/* Description Section */
.prod-desc-preview { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 12px 0 0; }

/* Option selectors */
.opt-inline { padding: 12px 0; }
.opt-inline-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 8px; }
.opt-inline-list { display: flex; flex-wrap: wrap; gap: 6px; }
.opt-inline-btn {
  padding: 8px 18px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: .15s ease; background: var(--paper); color: var(--ink-soft);
}
.opt-inline-btn:hover { border-color: var(--muted-light); color: var(--ink); }
.opt-inline-btn.sel { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Color swatch picker */
.opt-color-list { gap: 8px; }
.opt-color-btn {
  width: 36px; height: 36px;
  padding: 0; border: 2px solid transparent;
  border-radius: 50%; cursor: pointer;
  display: grid; place-items: center;
  background: transparent;
  transition: .15s ease;
}
.opt-color-btn:hover { border-color: var(--muted-light); }
.opt-color-btn.sel { border-color: var(--ink); box-shadow: 0 0 0 3px var(--paper), 0 0 0 5px var(--ink); }
.opt-color-swatch {
  display: block;
  width: 26px; height: 26px;
  border-radius: 50%;
}
@media (max-width: 500px) {
  .opt-inline-btn { padding: 7px 14px; font-size: 12px; }
  .opt-color-btn { width: 32px; height: 32px; }
  .opt-color-swatch { width: 22px; height: 22px; }
}
.prod-desc-section { padding: 48px 0; border-top: 1px solid var(--line-light); }
.prod-desc-section .shell { max-width: 800px; margin: 0 auto; }
.prod-desc-section h2 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800; letter-spacing: -.03em;
  margin: 0 0 4px;
}
.prod-desc-section p { color: var(--muted); line-height: 1.8; margin: 16px 0 0; font-size: 15px; }
.desc-eyebrow {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted-light); margin-bottom: 4px;
}

/* Related products section on product page */
.related-section {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  background: var(--card-bg);
}
.related-section .section-title { font-size: clamp(24px, 2.8vw, 36px); }
}

/* ═══════ SHOP PAGE (v3 Magazine Fusion) ═══════ */
main { padding-top: 72px; }

/* ═══════ SHOP HEADER (Shop banner style) ═══════ */
.shop-header {
  background: #151515;
  border-radius: var(--radius-2xl);
  margin: 0 -24px;
  padding: 40px 24px 24px;
  text-align: center;
}
.shop-header-logo {
  width: 72px; height: 72px;
  margin: 0 auto 14px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 2px solid rgba(255,255,255,.3);
  padding: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.shop-header-logo img { width: 100%; height: 100%; object-fit: contain; }
.shop-header h1 {
  color: #fff;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700; letter-spacing: -.03em;
  margin: 0 0 6px;
}
.shop-header-meta {
  display: flex; justify-content: center; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,.55);
}
.shop-header-desc {
  max-width: 460px; margin: 10px auto 0;
  font-size: 13px; color: rgba(255,255,255,.4);
  line-height: 1.5;
}

/* ═══════ SHOP TABS ═══════ */
.shop-tabs-wrap {
  background: var(--paper);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  margin: -12px -24px 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.shop-tabs {
  display: flex;
  gap: 4px;
  padding: 14px 0;
}
.shop-tabs a {
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: #777;
  transition: .15s;
}
.shop-tabs a:hover { background: #F0EEE9; }
.shop-tabs a.active {
  background: #111111; color: #fff; font-weight: 600;
}

/* ═══════ COLLECTIONS (Horizontal scroll) ═══════ */
.collection-section { background: var(--card-bg); border-radius: var(--radius-xl); padding: 20px 0; position: relative; }
.collection-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 16px;
}
.collection-scroll::-webkit-scrollbar { display: none; }
.collection-track {
  display: flex; gap: 8px;
  width: max-content;
}
/* Scroll arrows */
.collection-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: grid; place-items: center;
  font-size: 14px; color: var(--muted);
  z-index: 3;
  transition: .15s;
  opacity: 0;
}
.collection-section:hover .collection-arrow { opacity: 1; }
.collection-arrow:hover { color: var(--ink); border-color: var(--muted-light); }
.collection-arrow-left { left: -10px; }
.collection-arrow-right { right: -10px; }
/* Compact cards */
.collection-card {
  min-width: auto;
  border-radius: var(--radius-full);
  background: var(--paper);
  border: 1px solid var(--line-light);
  transition: .15s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 8px;
}
.collection-card:hover { border-color: var(--muted-light); background: var(--paper); }
.collection-card-img {
  width: 32px; height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--card-bg);
}
.collection-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.collection-card-info { flex: 1; min-width: 0; }
.collection-card-info h3 {
  margin: 0;
  font-size: 13px; font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.collection-card-info .count {
  font-size: 10px; color: var(--muted-light);
  display: block;
}
.collection-pill {
  display: inline-block;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600;
  background: var(--card-bg);
  color: var(--ink-soft);
  white-space: nowrap;
  transition: .15s ease;
  flex-shrink: 0;
}
.collection-pill:hover { background: var(--line); }
.collection-pill.active { background: var(--ink); color: var(--paper); }

/* ═══════ SHOP SECTIONS ═══════ */
.shop-section { padding: 40px 0; }
.shop-section:not(:last-child) { border-bottom: 1px solid var(--line-light); }
.shop-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 16px;
}
.shop-section-head .left { flex: 1; min-width: 0; }
.shop-section-head .eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .12em; color: var(--muted); margin-bottom: 6px; }
.shop-section-head h2 { font-size: 24px; font-weight: 650; letter-spacing: -.03em; margin: 0; }
.shop-section-head .link-more {
  font-size: 13px; font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .15s;
}
.shop-section-head .link-more:hover { color: var(--ink); }

/* All products header */
.shop-products-header { padding: 24px 0 8px; }
.shop-products-header h1 {
  margin: 4px 0 0;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  letter-spacing: -.03em;
}

.store-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: .15s ease;
}
.store-card:hover { border-color: var(--ink); }
.store-card-head { display: flex; align-items: center; gap: 12px; }
.store-card-logo {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--card-bg);
}
.store-card-logo img { width: 100%; height: 100%; object-fit: contain; }
.store-card-info { flex: 1; min-width: 0; }
.store-card-info h3 {
  margin: 0; font-size: 14px; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.store-card-count { font-size: 11px; color: var(--muted); display: block; margin-top: 2px; }
.store-card-rating { font-size: 11px; color: #f59e0b; display: block; }

.shop-empty {
  padding: 80px 0;
  text-align: center;
  color: var(--muted);
}
.shop-empty-icon { font-size: 42px; margin-bottom: 14px; }
.shop-empty h3 { margin: 0 0 6px; font-size: 16px; color: var(--ink); }
.shop-empty p { font-size: 13px; margin: 0; }

.filters {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 20px;
  align-self: start;
  position: sticky;
  top: 80px;
}
.filter-block {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-light);
}
.filter-block:last-child { border-bottom: none; }
.filter-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
}
.check:hover { color: var(--ink); }
.range {
  display: flex;
  gap: 6px;
}
.range input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 12px;
  background: var(--paper);
}
.range input::placeholder { color: var(--muted-light); }

.load-more {
  text-align: center;
  padding: 32px 0 12px;
}
.load-more button {
  height: 46px;
  padding: 0 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  background: var(--paper);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: .2s ease;
}
.load-more button:hover {
  border-color: var(--muted-light);
  color: var(--ink);
}
.load-more button:disabled { opacity: .5; cursor: default; }

/* ═══════ PRODUCT PAGE + SHOP PAGE RESPONSIVE ═══════ */
@media (max-width: 1080px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .prod-wrap { overflow: hidden; grid-template-columns: 1fr; gap: 20px; padding: 16px 0 40px; }
  .prod-gallery { position: static; }
  .prod-info h1 { font-size: 22px; }
  .prod-price-current { font-size: 26px; }
  
  .prod-thumbs {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  flex-wrap: nowrap;
}
  .prod-breadcrumb { font-size: 12px; margin-bottom: 12px; }
  .selector-row { padding: 10px 0; }
  .selector-label { font-size: 12px; min-width: 60px; }
  .selector-value { font-size: 13px; }
  main { padding-top: 64px; }
  .shop-header { padding: 32px 14px 20px; margin: 0 -14px; }
  .shop-header-logo { width: 60px; height: 60px; padding: 6px; }
  .shop-tabs-wrap { margin: -8px -14px 0; padding: 0 14px; }
  .search-layout { grid-template-columns: 1fr; }
  .filters { position: static; display: none; }
}
@media (max-width: 600px) {
  .prod-gallery { overflow: hidden; max-width: 100vw; }
  .prod-main-img { width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg); }
  .prod-thumb { width: 52px; height: 52px; border-radius: 8px; flex-shrink: 0; }
  .prod-thumbs { display: flex; gap: 5px; overflow-x: auto; flex-wrap: nowrap; padding: 0; margin-top: 8px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .prod-thumbs::-webkit-scrollbar { display: none; }
}

  .prod-img-count { font-size: 11px; padding: 3px 8px; bottom: 8px; right: 8px; }
  .prod-arrow { width: 32px; height: 32px; font-size: 16px; }
  .prod-arrows { padding: 0 8px; }
  .prod-vendor { font-size: 10px; padding: 4px 8px; }
  .buy-btn-primary { height: 46px; font-size: 14px; border-radius: var(--radius-md); }
  .buy-btn-secondary { width: 46px; height: 46px; font-size: 16px; }
  .store-info-card { padding: 12px; }
  .store-info-card .avatar { width: 36px; height: 36px; font-size: 14px; }
  .store-info-card .info strong { font-size: 13px; }
  .related-section { padding: 40px 0; }

/* ═══════ CATEGORY PAGE — SUBCATEGORIES ═══════ */
.subcategory-scroll {
  margin: 12px 0 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.subcategory-scroll::-webkit-scrollbar { display: none; }
.subcategory-track {
  display: flex;
  gap: 8px;
  white-space: nowrap;
  padding: 4px 0;
}
.subcategory-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-full, 999px);
  background: var(--paper);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.subcategory-chip:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--bg);
}
.subcategory-chip:active {
  transform: scale(.97);
}
  .prod-desc-section { padding: 32px 0; }
  .prod-desc-section h2 { font-size: 18px; }
  .prod-desc-section p { font-size: 14px; }
  main { padding-top: 56px; }
  .shop-header { padding: 24px 14px 18px; margin: 0 -14px; }
  .shop-header-logo { width: 52px; height: 52px; padding: 5px; }
  .shop-tabs-wrap { margin: -6px -14px 0; padding: 0 14px; }
  .collection-section { padding: 14px 0; }
  .collection-scroll { padding: 0 10px; }
  .collection-arrow { display: none; }
  .shop-tabs { padding: 10px 0; overflow-x: auto; }
  .shop-tabs a { padding: 6px 14px; font-size: 12px; white-space: nowrap; }
  .shop-section { padding: 24px 0; }
  .shop-products-header { padding: 20px 0 6px; }
  .collection-card { padding: 6px 12px 6px 8px; gap: 6px; min-width: auto; }
  .collection-card-img { width: 26px; height: 26px; }
  .collection-card-info h3 { font-size: 12px; }
  .sort-row { width: 100%; }
  .sort-row select { width: 100%; }
}


@media (max-width: 600px) {
  .opt-inline-list.mobile-overflow .opt-inline-btn { display: none; }
  .prod-thumb { width: 52px; height: 52px; border-radius: 8px; flex-shrink: 0; }
  .prod-thumbs { display: flex; gap: 5px; overflow-x: auto; flex-wrap: nowrap; padding: 0; margin-top: 8px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .prod-thumbs::-webkit-scrollbar { display: none; }
  .opt-mobile-trigger { display: block; }
}
/* ═══════ OPTION BOTTOM SHEET (mobile) ═══════ */
.option-sheet-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.4);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.option-sheet-overlay.open {
  opacity: 1; pointer-events: auto;
}
.option-sheet {
  width: 100%; max-width: 480px;
  max-height: 55vh;
  background: var(--paper);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  display: flex; flex-direction: column;
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.32,.72,0,1);
}
.option-sheet-overlay.open .option-sheet {
  transform: translateY(0);
}
.option-sheet-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--line-light);
  flex-shrink: 0;
}
.option-sheet-title {
  font-size: 16px; font-weight: 700;
}
.option-sheet-close {
  width: 32px; height: 32px; border: none; border-radius: 50%;
  background: var(--bg); cursor: pointer;
  font-size: 16px; display: grid; place-items: center;
  color: var(--muted); transition: .15s ease;
}
.option-sheet-close:hover { background: var(--line-light); }
.option-sheet-body {
  overflow-y: auto; padding: 12px 20px 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.option-sheet-item {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500;
  cursor: pointer; transition: .1s ease;
  border: none; background: transparent;
  text-align: left; color: var(--ink);
}
.option-sheet-item:hover { background: var(--bg); }
.option-sheet-item:active { background: var(--line-light); }
.option-sheet-item.sel { background: var(--ink); color: var(--paper); }

/* Mobile option trigger button */
.opt-mobile-trigger {
  display: none;
  width: 100%; padding: 10px 14px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  cursor: pointer; background: var(--paper); color: var(--muted);
  transition: .15s ease; text-align: left;
  -webkit-appearance: none; appearance: none;
}
.opt-mobile-trigger::after {
  content: ' ▾';
  float: right; color: var(--muted-light);
}
.opt-mobile-trigger:hover { border-color: var(--muted-light); }
.opt-mobile-trigger.has-val { color: var(--ink); border-color: var(--ink); }


.option-sheet { max-height: 60vh !important; overflow-y: auto !important; }




.desc-toggle {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}
.desc-toggle:hover { text-decoration: underline; }

/* Fix: Product page title font size */
.prod-info h1 {
  font-size: 24px;
  line-height: 1.3;
}
@media (max-width: 600px) {
  .prod-info h1 { font-size: 20px; line-height: 1.35; }
}
