/* ---------- Hero ---------- */
.hero{
  position:relative;
  background:
    linear-gradient(90deg, rgba(10,10,11,0.94) 0%, rgba(10,10,11,0.82) 38%, rgba(10,10,11,0.4) 68%, rgba(10,10,11,0.55) 100%),
    url('../images/hero-bg.jpg');
  background-size:cover;
  background-position: center 22%;
  color:var(--paper);
  overflow:hidden;
  padding:0;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 12% 18%, rgba(176,138,78,0.16), transparent 42%),
    linear-gradient(0deg, rgba(10,10,11,0.55), transparent 30%);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1fr;
  align-items:center;
  min-height:640px;
}
.hero-copy{ padding:80px 0; max-width:600px; }
.hero .eyebrow{ color:var(--red); margin-bottom:22px; }
.hero h1{
  font-size:clamp(46px,6.4vw,80px);
  font-weight:600;
  color:var(--paper);
}
.hero h1 em{ font-style:italic; color:var(--red); font-weight:500; }
.hero p.lede{
  font-size:17px; color:rgba(250,246,239,0.68); margin:26px 0 34px; max-width:440px;
  font-family:var(--body); font-weight:300;
}
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; }

.hero-stats{
  display:flex; gap:36px; margin-top:48px; padding-top:32px;
  border-top:1px solid rgba(250,246,239,0.14);
}
.hero-stat{ display:flex; flex-direction:column; gap:4px; }
.hero-stat strong{
  font-family:var(--display); font-size:26px; font-weight:700; color:var(--paper);
}
.hero-stat span{
  font-family:var(--mono); font-size:12px; letter-spacing:.04em; color:rgba(250,246,239,0.55);
}

@media (max-width: 980px){
  .hero-grid{ min-height:auto; }
  .hero-copy{ padding:64px 0 48px; max-width:none; }
  .hero-stats{ gap:24px; }
  .hero{ background-position: 68% center; }
}
@media (max-width: 600px){
  .hero-stats{ flex-wrap:wrap; row-gap:18px; }
  .hero{
    background:
      linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.88) 55%, rgba(10,10,11,0.96) 100%),
      url('../images/hero-bg.jpg');
    background-size:cover;
    background-position: 70% center;
  }
}


/* ---------- Category strip ---------- */
.cat-strip{ padding-top:80px; }
.cat-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}
.cat-card{
  position:relative;
  background-color:var(--charcoal);
  background-size:cover;
  background-position:center;
  color:var(--paper);
  border-radius:8px;
  padding:18px 16px 16px;
  min-height:170px;
  aspect-ratio: 4/3;
  display:flex; flex-direction:column; justify-content:flex-end;
  overflow:hidden;
  transition: transform .3s ease, box-shadow .3s ease, background-size .3s ease;
  border:1px solid rgba(176,138,78,0.2);
}
.cat-card:hover{ transform:translateY(-4px); box-shadow:0 16px 28px rgba(20,15,10,0.24); background-size:108%; }
.cat-card .cat-icon{
  width:36px; height:36px; margin-bottom:auto;
  display:flex; align-items:center; justify-content:center;
  background:rgba(10,10,11,0.5); backdrop-filter:blur(2px);
  border:1px solid rgba(244,243,238,0.4); border-radius:50%;
  transition: background .25s ease, border-color .25s ease;
}
.cat-card:hover .cat-icon{ background:var(--red); border-color:var(--red); }
.cat-card .cat-icon svg{ width:16px; height:16px; color:var(--paper); }
.cat-card h3{ font-size:16px; margin-top:14px; font-family:var(--display); font-weight:500; color:#fff; }
.cat-card span{
  font-family:var(--mono); font-size:10px; color:rgba(244,243,238,0.75);
  text-transform:uppercase; letter-spacing:.08em; margin-top:5px; display:block;
}

@media (max-width: 980px){
  .cat-grid{ grid-template-columns:repeat(3,1fr); gap:12px; }
  .cat-card{ min-height:140px; padding:14px 12px 12px; }
  .cat-card h3{ font-size:14.5px; margin-top:10px; }
}
@media (max-width: 640px){
  .cat-grid{ grid-template-columns:repeat(2,1fr); gap:10px; }
  .cat-card{ min-height:120px; aspect-ratio:1/1; padding:12px 10px 10px; }
  .cat-card .cat-icon{ width:30px; height:30px; }
  .cat-card .cat-icon svg{ width:14px; height:14px; }
  .cat-card h3{ font-size:13px; margin-top:8px; }
  .cat-card span{ font-size:9px; }
}

/* ---------- Product grid ---------- */
.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}
.product-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:6px;
  overflow:hidden;
  display:flex; flex-direction:column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover{ transform:translateY(-5px); box-shadow:0 18px 32px rgba(42,33,23,0.1); border-color:var(--line-strong); }
.product-media{
  aspect-ratio:1/1;
  position:relative;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  background:var(--paper, #eae7df);
}
.product-media img{
  width:100%; height:100%; object-fit:contain; display:block; padding:6%; box-sizing:border-box;
}
.product-media .swatch{
  position:absolute; inset:0;
}
.product-media .hole{
  width:74%; height:74%;
}
.product-media .hole svg{ width:100%; height:100%; }
.product-media .hole-icon{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
}
.product-media .hole-icon svg{ width:38%; height:38%; color:var(--grey-light); }
.product-info{ padding:16px 15px 18px; display:flex; flex-direction:column; gap:5px; flex:1; }
.product-info .p-cat{ font-family:var(--mono); font-size:10.5px; color:var(--red); text-transform:uppercase; letter-spacing:.1em; }
.product-info h3{ font-family:var(--display); font-weight:500; text-transform:none; font-size:16px; letter-spacing:0; line-height:1.3; }
.price-row{ display:flex; align-items:center; gap:8px; margin-top:auto; padding-top:4px; }
.price{ font-family:var(--mono); font-weight:600; font-size:15.5px; color:var(--ink); }
.price.strike{ text-decoration:line-through; color:var(--grey); font-weight:400; font-size:12.5px; }
.add-btn{
  margin-top:10px; width:100%; padding:9px; border:1.5px solid var(--ink); background:transparent;
  font-family:var(--mono); font-size:11px; letter-spacing:.09em; text-transform:uppercase; border-radius:3px;
  transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.add-btn:hover{ background:var(--red); color:#fff; border-color:var(--red); box-shadow:0 8px 16px rgba(237,32,36,0.18); }

@media (max-width: 980px){
  .product-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 560px){
  .product-grid{ grid-template-columns:1fr 1fr; gap:14px; }
  .product-info{ padding:10px; }
}

/* ---------- Why choose ---------- */
.why-band{ background:var(--paper-dim); }
.why-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:44px;
}
.why-card{
  position:relative;
  background:#fff; border:1px solid var(--line); border-radius:12px; padding:40px 32px 36px;
  text-align:left; overflow:hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.why-card::before{
  content:""; position:absolute; top:0; left:0; right:0; height:3px;
  background:var(--red); transform:scaleX(0); transform-origin:left;
  transition: transform .35s ease;
}
.why-card:hover{ transform:translateY(-8px); box-shadow:0 26px 46px rgba(42,33,23,0.14); border-color:transparent; }
.why-card:hover::before{ transform:scaleX(1); }
.why-icon{
  display:flex; align-items:center; justify-content:center;
  width:56px; height:56px; border-radius:50%;
  background:var(--paper-dim); border:1px solid var(--line-strong);
  margin-bottom:26px;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.why-card:hover .why-icon{ background:var(--red); border-color:var(--red); transform:scale(1.08) rotate(-4deg); }
.why-icon svg{ width:24px; height:24px; color:var(--red); transition:color .3s ease; }
.why-card:hover .why-icon svg{ color:#fff; }
.why-card .num{ font-family:var(--mono); font-weight:500; color:var(--red); font-size:11px; letter-spacing:.18em; text-transform:uppercase; }
.why-card h3{ font-family:var(--display); text-transform:none; font-weight:500; font-size:22px; margin:14px 0 12px; letter-spacing:0; line-height:1.25; }
.why-card p{ color:#6b5f4f; font-size:14.5px; line-height:1.7; }
@media (max-width:880px){ .why-grid{ grid-template-columns:1fr; } }

/* ---------- Testimonials ---------- */
.testi-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
}
.testi-card{
  background:var(--charcoal); color:var(--paper); border-radius:8px; padding:30px;
  display:flex; flex-direction:column; gap:14px; border:1px solid rgba(176,138,78,0.22);
}
.stars{ color:var(--red); letter-spacing:2px; font-size:14px; }
.testi-card p.quote{ font-size:15px; color:rgba(250,246,239,0.82); line-height:1.65; font-family:var(--display); font-style:italic; }
.testi-who{ display:flex; align-items:center; gap:12px; margin-top:auto; }
.avatar{
  width:40px; height:40px; border-radius:50%; background:transparent; color:var(--red); border:1px solid var(--red);
  display:flex; align-items:center; justify-content:center; font-family:var(--mono); font-weight:600; font-size:14px;
}
.testi-who div span{ display:block; font-size:12px; color:var(--grey-light); font-family:var(--mono); letter-spacing:.04em; }
@media (max-width:880px){ .testi-grid{ grid-template-columns:1fr; } }

/* ---------- Bulk / brand CTA ---------- */
.bulk-cta{
  background:var(--red); color:#fff; border-radius:8px; padding:56px 48px;
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
}
.bulk-cta h2{ font-size:clamp(26px,3.4vw,40px); max-width:560px; font-weight:500; }
.bulk-cta p{ color:rgba(255,255,255,0.85); margin-top:10px; max-width:480px; }
.bulk-cta .btn{
  background:var(--ink); border-color:var(--ink); color:#fff;
  flex-shrink:0; box-shadow:0 10px 26px rgba(0,0,0,0.22);
}
.bulk-cta .btn:hover{ background:#fff; border-color:#fff; color:var(--red-dark); transform:translateY(-2px); }
@media (max-width:780px){ .bulk-cta{ flex-direction:column; align-items:flex-start; } }

/* ---------- Marketplace trust section ---------- */
.market-trust{
  padding:72px 0;
  background:
    radial-gradient(1100px 420px at 12% -10%, rgba(237,32,36,0.06), transparent 60%),
    var(--paper-dim);
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.market-trust-head{ max-width:640px; margin:0 auto; text-align:center; }
.trust-pill{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--mono); font-weight:600; font-size:11.5px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--red-dark); background:rgba(237,32,36,0.08); border:1px solid rgba(237,32,36,0.22);
  border-radius:30px; padding:8px 18px 8px 14px;
}
.trust-pill svg{ width:15px; height:15px; flex-shrink:0; }
.market-trust-head h2{ font-size:clamp(24px,3vw,34px); }
.market-trust-head p{ color:#5b5850; margin-top:12px; font-size:14.5px; line-height:1.65; }

.trust-badges{
  display:flex; align-items:center; justify-content:center; gap:40px; flex-wrap:wrap;
  margin:36px 0 46px; padding-bottom:38px; border-bottom:1px solid var(--line);
}
.trust-badge{ display:flex; align-items:center; gap:11px; font-family:var(--mono); font-size:12px; letter-spacing:.03em; color:var(--ink); text-transform:uppercase; }
.trust-badge svg{
  width:34px; height:34px; padding:8px; box-sizing:border-box; color:var(--red);
  background:#fff; border:1px solid var(--line-strong); border-radius:50%; flex-shrink:0;
}

.market-cards{
  display:grid; grid-template-columns:repeat(2, 1fr); gap:22px;
  max-width:800px; margin:0 auto;
}
.market-cards-3{
  grid-template-columns:repeat(3, 1fr);
  max-width:1000px;
}
@media (max-width:860px){
  .market-cards-3{ grid-template-columns:repeat(2, 1fr); max-width:800px; }
}
.market-card{
  display:flex; flex-direction:column; align-items:flex-start; gap:14px;
  background:#fff; border:1px solid var(--line-strong); border-radius:12px;
  padding:30px 28px; text-align:left;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.market-card:hover{ transform:translateY(-5px); box-shadow:0 22px 36px rgba(20,15,10,0.14); border-color:transparent; }
.market-card-top{ display:flex; align-items:center; justify-content:space-between; width:100%; gap:12px; }
.market-card-logo{ height:28px; width:auto; display:block; }
.market-card-tag{
  font-family:var(--mono); font-size:10px; letter-spacing:.06em; text-transform:uppercase;
  color:var(--grey); border:1px solid var(--line-strong); border-radius:20px; padding:4px 10px; flex-shrink:0;
}
.market-card-desc{ font-size:13.5px; color:#5b5850; line-height:1.55; }
.market-card-cta{
  margin-top:auto; display:inline-flex; align-items:center; gap:6px;
  font-family:var(--mono); font-size:12px; text-transform:uppercase; letter-spacing:.06em;
  color:var(--ink); font-weight:600;
}
.market-card .arrow{ transition:transform .2s ease; }
.market-card:hover .arrow{ transform:translateX(4px); color:var(--red); }
.market-card:hover .market-card-cta{ color:var(--red); }
.market-logo-fallback{ font-family:var(--display); font-size:20px; font-weight:600; color:var(--ink); }

@media (max-width:640px){
  .trust-badges{ gap:18px 26px; margin:26px 0 32px; padding-bottom:28px; }
  .market-cards{ grid-template-columns:1fr; gap:16px; }
  .market-card{ padding:24px 22px; }
}

/* ---------- Newsletter ---------- */
.news-band{ background:var(--charcoal); color:var(--paper); padding:64px 0; }
.news-inner{ text-align:center; max-width:520px; margin:0 auto; }
.news-inner h2{ font-size:clamp(24px,3vw,32px); color:var(--paper); }
.news-inner p{ color:var(--grey-light); margin:10px 0 24px; font-size:14.5px; }
.news-form{ display:flex; gap:10px; max-width:420px; margin:0 auto; }
.news-form input{
  flex:1; padding:13px 16px; border:1px solid rgba(176,138,78,0.35); background:transparent;
  color:var(--paper); border-radius:2px; font-size:14px;
}
.news-form input::placeholder{ color:var(--grey-light); }
.news-msg{ margin-top:12px; font-family:var(--mono); font-size:13px; color:var(--red); min-height:0; }
@media (max-width:560px){ .news-form{ flex-direction:column; } }
