/* ===========================================================================
   Sood Studio — B2C landing page (USA)
   Everything is scoped under .b2c-page so it cannot leak into the shared site
   header/footer or into styles.css. Design tokens live on .b2c-page rather
   than :root for the same reason, and mirror the homepage palette defined in
   /home2-assets/css/home.css (:root) so both pages stay visually consistent.
   Generic utility classes are prefixed .cs-* (e.g. .cs-btn) to avoid
   collisions with Bootstrap/global styles.
   =========================================================================== */
html {
    scroll-behavior: smooth;
}
.b2c-page{
  /* palette — identical values to home2-assets/css/home.css :root */
  --paper:#ffffff;
  --paper-alt:#faf9f6;
  --ink:#000000;
  --ink-soft:#5c594f;
  --ink-faint:#8c8879;
  --line:#e7e1d2;
  --primary:#f70f05;
  --primary-dark:#000000;
  --gold:#c1c1c1;
  --gold-tint:#f4ebd8;
  /* page-local extras */
  --serif:'Roboto', system-ui, serif;
  --sans:'Roboto', system-ui, serif;
  --mono:'Roboto', system-ui, serif;
  --max:1240px;
}

.b2c-page *{ box-sizing:border-box; margin:0; padding:0; }
.b2c-page{ background:var(--paper); color:var(--ink); font-family:var(--sans); -webkit-font-smoothing:antialiased; }
.b2c-page p, .b2c-page h1, .b2c-page h2, .b2c-page h3, .b2c-page h4, .b2c-page h5{ letter-spacing:normal; }
.b2c-page a{ color:inherit; text-decoration:none; }
.b2c-page a:hover{ text-decoration:none; }
.b2c-page img, .b2c-page svg{display:block;max-width:100%;}
.b2c-page ul{ list-style:none; }
/* .b2c-page ::selection{ background:var(--gold-tint); color:var(--primary-dark); } */
.b2c-page h1, .b2c-page h2, .b2c-page h3, .b2c-page h4{ font-family:var(--serif); font-weight:500; line-height:1.12; color:var(--ink); text-transform:none; }

.b2c-page .wrap{max-width:var(--max);margin:0 auto;padding:0 32px;width:100%;}
@media (max-width:720px){ .b2c-page .wrap{ padding:0 20px; } }

@media (prefers-reduced-motion: reduce){
  .b2c-page *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

.eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-weight: 700;
}
.b2c-page .eyebrow::before{content:'';width:20px;height:1px;background:var(--primary);display: none;}
.b2c-page .eyebrow.on-dark{color: var(--gold-tint);}
.b2c-page .eyebrow.on-dark::before{ background:var(--gold); }
.b2c-page .eyebrow.center{ justify-content:center; }

/* ---------- buttons (.cs-* names avoid Bootstrap's .btn) ---------- */
  .cs-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-weight:700;
    font-size: 1rem;
    padding:14px 26px;
    border-radius: 5px;
    border:1.5px solid transparent;
    cursor:pointer;
    transition:transform .18s ease, box-shadow .18s ease, background .2s ease, color .2s ease, border-color .2s ease;
    line-height: 1.575;
  }.b2c-page .cs-btn-primary{ background:var(--primary); color:#fff; box-shadow:0 8px 20px rgba(247,15,5,0.26); }
.b2c-page .cs-btn-primary:hover, .b2c-page .cs-btn-primary:focus{ background:var(--primary-dark); color:#fff; transform:translateY(-1px); box-shadow:0 12px 26px rgba(247,15,5,0.32); }
.b2c-page .cs-btn-outline{ background:transparent; border-color:var(--ink); color:var(--ink); }
.b2c-page .cs-btn-outline:hover, .b2c-page .cs-btn-outline:focus{ background:var(--ink); color:#fff; }
.b2c-page .cs-btn-ghost-white{ background:transparent; border-color:rgba(255,255,255,0.4); color:#fff; }
.b2c-page .cs-btn-ghost-white:hover, .b2c-page .cs-btn-ghost-white:focus{ border-color:#fff; color:#fff; background:rgba(255,255,255,0.08); }
.b2c-page .cs-btn-white{ background:#fff; color:var(--primary-dark); }
.b2c-page .cs-btn-white:hover, .b2c-page .cs-btn-white:focus{ background:var(--gold-tint); color:var(--primary-dark); }
.b2c-page .cs-btn-sm{ padding:10px 18px; font-size:0.78rem; }
.b2c-page .cs-btn-lg{padding:16px 32px;font-size: 14px;}

/* ---------- announcement bar ---------- */
.b2c-page .utilbar{ background:var(--ink); color:#e9e6dd; font-size:0.76rem; text-align:center; padding:9px 20px; }
.b2c-page .utilbar b{ color:var(--gold); }

/* ---------- section rhythm ---------- */
.pd_90{padding: 75px 0;}
.b2c-page .section-head{ max-width:840px; margin-bottom:52px; }
.b2c-page .section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.b2c-page .section-head.center .eyebrow{ justify-content:center; }
.b2c-page .section-head h2, .partner h2 { font-size:clamp(1.8rem, 3vw, 2.9rem); line-height:1.15; }
.b2c-page .section-head h2 em{font-style:normal;font-weight: 500;color: #f70f05;}
.b2c-page .section-head p{ margin-top:14px; font-size:15px; color:var(--ink-soft); line-height:1.65; }
@media (max-width:380px){ .b2c-page .section-head h2, .partner h2 { font-size:1.8rem; } }
.b2c-page [data-reveal]{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.b2c-page [data-reveal].in{ opacity:1; transform:translateY(0); }

/* ---------- hero ---------- */
.b2c-page .hero{ background:var(--paper-alt); padding:60px 0 0; overflow:hidden; }
.b2c-page .hero .wrap{ display:grid; grid-template-columns:1fr 0.92fr; gap:64px; align-items:center; padding-bottom:70px; }
@media (max-width:1024px){ .b2c-page .hero .wrap{ grid-template-columns:1fr; } }
.b2c-page h1.headline{ font-size:clamp(2.2rem, 4.2vw, 3.3rem); letter-spacing:-0.01em; }
.b2c-page h1.headline em{font-style:normal;font-weight: 600;color:var(--primary);}
.b2c-page .hero-sub{margin-top:20px;font-size: 1rem;color:var(--ink-soft);line-height:1.6;max-width: 500px;}
.b2c-page .hero-ctas{ margin-top:30px; display:flex; gap:14px; flex-wrap:wrap; }
.b2c-page .hero-trust{ display:flex; gap:28px; margin-top:44px; flex-wrap:wrap; }
.b2c-page .hero-trust div{ display:inline-block; align-items:center; gap:8px; font-size:0.82rem; color:var(--ink-soft); font-weight:600; }
.b2c-page .hero-trust div b{ font-family:var(--serif); color:var(--primary); font-size:1.05rem; }
.hero-txt {
    padding-right: 70px;
}
.b2c-page .album-stage{ perspective:1800px; display:flex; justify-content:center; align-items:center; height:460px; }
.b2c-page .album{ position:relative; width:300px; height:380px; transform-style:preserve-3d; }
.b2c-page .album-base{ position:absolute; inset:0; border-radius:6px; background:linear-gradient(155deg,#2a2a28,var(--ink) 65%); box-shadow:0 40px 80px rgba(0,0,0,0.35); }
.b2c-page .album-page{ position:absolute; inset:12px; border-radius:3px; overflow:hidden; background:var(--paper); display:grid; grid-template-columns:1fr 1fr; gap:7px; padding:14px; }
.b2c-page .ph{border-radius:2px;background:linear-gradient(160deg, var(--a), var(--b));display: block;width: 100%;height: 100%;object-fit: cover;}
.b2c-page .ph.tall{ grid-row:span 2; }
.b2c-page .p1{ --a:#d8b48f; --b:#a9744f; }
.b2c-page .p2{ --a:#e7d3b0; --b:#c79a63; }
.b2c-page .p3{--a:#9a3346;--b:#5c1a2b;grid-column: span 2;}
.b2c-page .p4{ --a:#c9ccc4; --b:#8f97a1; }
.b2c-page .album-cover{
  position:absolute; inset:0; border-radius:6px; transform-origin:left center;
  background:linear-gradient(200deg,#2a2a28,var(--ink) 70%);
  box-shadow:0 30px 60px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(193,193,193,0.35);
  animation:b2cOpenCover 2.2s cubic-bezier(.65,.05,.36,1) 0.5s both;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px;
}
.b2c-page .album-cover .flourish{ font-family:var(--serif); font-style:italic; font-size:1.05rem; color:var(--gold); }
.b2c-page .album-cover .cover-line{ width:38px; height:1px; background:var(--gold); opacity:0.6; }
.b2c-page .album-cover .cover-label{ font-family:var(--mono); font-size:0.6rem; letter-spacing:0.18em; color:rgba(255,255,255,0.55); text-transform:uppercase; }
@keyframes b2cOpenCover{ 0%{ transform:rotateY(0deg); } 100%{ transform:rotateY(-124deg); } }
.b2c-page .album-ribbon{ position:absolute; top:-8px; right:34px; width:9px; height:52px; background:linear-gradient(180deg, var(--gold), var(--primary)); clip-path:polygon(0 0,100% 0,100% 78%,50% 100%,0 78%); z-index:5; box-shadow:0 6px 16px rgba(0,0,0,0.3); }
@media (max-width:1024px){
    .b2c-page .album-stage{height:380px;/* order:-1; */padding-left: 170px;}
    .hero-txt {
        padding: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-txt .eyebrow, .b2c-page .hero-trust, .b2c-page .hero-ctas  {
        justify-content: center;
    }
}

@media (max-width:600px){
    .b2c-page .album {
        width: 54vw;
        height: 300px;
    }
    .b2c-page .hero-trust {
        justify-content: center;
        gap: 14px 13px;
    }
    .b2c-page .album-stage {
        padding-left: 32vw;
        height: 300px;
    }
    .b2c-page .hero-ctas {
        justify-content: center;
    }
}
/* ---------- trust signal ---------- */
.b2c-page .trust-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
@media (max-width:900px){ .b2c-page .trust-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .b2c-page .trust-grid{ grid-template-columns:1fr; } }
.b2c-page .trust-card{ background:var(--paper); padding:32px 26px; text-align:center; }
.b2c-page .trust-card .tic{width: 50px;height: 50px;border-radius:50%;background:var(--gold-tint);color:var(--primary);display:flex;align-items:center;justify-content:center;margin:0 auto 16px;font-size:1.1rem;padding: 11px;}
.b2c-page .trust-card h3{ font-size:1rem; margin-bottom:8px; font-weight:500; }
.b2c-page .trust-card p{ font-size:14px; line-height:1.6; color:var(--ink-soft); }
.b2c-page .trust-card .tic img {
    filter: brightness(0);
}

  /* ---------- problem section ---------- */
  .problem{background: var(--paper-alt);/* color:#EDE7D6; */}
  .problem .section-head h2, .problem .section-head p{/* color: #fff; */}
  .problem .section-head p{/* color: #fff; */}
  .problem-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid rgba(237,231,214,0.12); }
  @media (max-width:820px){ .problem-grid{ grid-template-columns:1fr; } }
  .problem-card{background: var(--paper);padding:34px 30px;}
  .problem-card .qtag{font-family:var(--mono);font-size: 13px;color:var(--primary-bright);letter-spacing:0.1em;margin-bottom:16px;display:block;font-weight: 600;}
  .problem-card h3{font-size:1.12rem;color:var(--ink);margin-bottom:12px;font-weight:500;}
  .problem-card p{font-size: 14px;line-height:1.65;/* color: #fff; */}
  .problem .section-head {
        max-width: 100%;
    }

/* ---------- solution section ---------- */
.solution-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
@media (max-width:820px){ .solution-grid{ grid-template-columns:1fr; } }
.solution-card{position:relative;background: var(--paper-alt);border:1px solid var(--line);border-radius:6px;padding:28px 26px;overflow:hidden;}
.solution-card .mark{/* position:absolute; *//* inset:8px; *//* pointer-events:none; *//* z-index:0; */}
.solution-card .mark ellipse{ fill:none; stroke:var(--primary); stroke-width:2; stroke-dasharray:100; stroke-dashoffset:100; transition:stroke-dashoffset .6s ease; }
.solution-card:hover .mark ellipse{ stroke-dashoffset:0; }
.solution-card h3{ font-size:1.05rem; margin-bottom:8px; position:relative; z-index:1; font-weight:500; }
.solution-card p{ font-size:1rem; line-height:1.6; color:var(--ink-soft); position:relative; z-index:1; }

/* ---------- product showcase (bento) ---------- */
.cs-products{background: var(--paper-alt);}
.cat-grid{ display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:200px; gap:2px; background:var(--near-black); border:1px solid var(--near-black); }
@media (max-width:900px){ .cat-grid{
    grid-template-columns: repeat(6,1fr);grid-auto-rows:190px;}
    a.cat-tile.g2 {
        grid-column: span 3;
        grid-row: span 1;
    }
    a.cat-tile {
        grid-column: span 2;
    }

}

.cat-tile{ position:relative; overflow:hidden; display:block; }
.cat-tile.large{ grid-column:span 2; grid-row:span 2; }
@media (min-width:901px){ .cat-tile.large .cat-info h3{ font-size:1.5rem; } }
@media (max-width:900px){ .cat-tile.large{grid-column: span 3;grid-row:span 1;} }
.cat-tile .img{position:absolute;inset:0;background:var(--g);width: 100%;transition:transform .6s ease;height: 100%;object-fit: cover;}
.cat-tile:hover .img{ transform:scale(1.06); }
.cat-tile::after{content:'';position:absolute;inset:0;background: linear-gradient(180deg, rgba(20,18,16,0) 27%, rgba(20,18,16,0.75) 100%);}
.cat-code{ position:absolute; top:16px; left:18px; z-index:2; font-family:var(--mono); font-size:0.62rem; color:rgba(250,246,236,0.8); letter-spacing:0.08em; }
.cat-info{ position:absolute; left:20px; right:20px; bottom:18px; z-index:2; color:#fff; }
.cat-info h3{ color:#fff; font-size:1.1rem; font-weight:500; }

.cat-info p{font-size: 14px;opacity:0.82;margin-top:6px;max-width: 320px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.cat-cta{display:inline-flex;gap:6px;margin-top:12px;font-family:var(--mono);font-size: 14px;letter-spacing:0.06em;text-transform:uppercase;color: #fff;/* opacity:0; *//* transform:translateY(6px); */transition:opacity .3s ease, transform .3s ease;font-weight: 600;}
.cat-tile:hover .cat-cta{/* opacity:1; *//* transform:translateY(0); */}
.g1{ --g:linear-gradient(155deg,#d8b48f,#7a4d29 65%,#3d2612); }
.g2{ --g:linear-gradient(155deg,#c9ccc4,#6b7069 65%,#33342f); }
.g3{ --g:linear-gradient(155deg,#9a3346,#4a1420 70%); }
.center-cta{ text-align:center; margin-top:38px; }
@media (max-width:560px){
    .cat-grid{ grid-template-columns:1fr; } .cat-tile.large{ grid-row:span 1 !important; }
    .cat-tile.large, a.cat-tile.g2, a.cat-tile {
    grid-column: span 1;
    }

}


/* ---------- partner / why choose us ---------- */
.partner .wrap{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:40px; align-items:center; }
@media (max-width:800px){ .partner .wrap{grid-template-columns:1fr;} }
.partner-visual{ position:relative; height:420px; border-radius:6px; background:linear-gradient(155deg,#4A2622,var(--near-black) 70%); overflow:hidden; }
.partner-visual::after{ content:''; position:absolute; inset:0; background:linear-gradient(155deg,rgba(169,132,63,0.16),transparent 55%); }
.partner-visual .frame{ position:absolute; inset:22px; border:1px solid rgba(169,132,63,0.35); border-radius:3px; }
.partner p{ margin-top:14px; font-size:0.98rem; line-height:1.68; color:var(--ink-soft); }
.partner-stats{ display:flex; gap:36px; margin:28px 0; flex-wrap:wrap; }
.partner-stats div b{ display:block; font-family:var(--serif); font-size:1.7rem; color:var(--primary); font-weight:500; }
.partner-stats div span{ font-size:0.7rem; text-transform:uppercase; letter-spacing:0.04em; color:var(--ink-faint); font-weight:600; }
.partner-visual img {
width: 100%;
height: 100%;
object-fit: cover;
}


/* ---------- why sood studio ---------- */
.why {
    background: var(--paper-alt);
}
.b2c-page .why-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
@media (max-width:760px){ .b2c-page .why-grid{ grid-template-columns:1fr; } }
.b2c-page .why-card{ background:var(--paper); padding:30px 28px; display:flex; gap:18px; }
.b2c-page .why-card .num{ font-family:var(--serif); font-style:italic; font-size:1.7rem; color:var(--primary); flex-shrink:0; }
.b2c-page .why-card h3{ font-size:1.04rem; margin-bottom:8px; font-weight:500; }
.b2c-page .why-card p{ font-size:14px; color:var(--ink-soft); line-height:1.6; }

/* ---------- craftsmanship ---------- */
.b2c-page .craft{background: var(--paper);}
/* ---------- craftsmanship ---------- */

.b2c-page .craft .wrap {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 30px; */
}

/* ========================================
   INTRO
======================================== */

.b2c-page .craft-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Visual */

.b2c-page .craft-visual {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 6px;
  background: #eee;
}

.b2c-page .craft-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.b2c-page .craft-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.14),
    transparent 55%
  );
}

.b2c-page .craft-visual .frame {
  position: absolute;
  inset: 22px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 3px;
}

/* Copy */

.b2c-page .craft-copy {
  max-width: 520px;
}
.b2c-page .craft-copy p {
  margin: 22px 0 0;
  font-size: 1rem;
  /* line-height: 1.7; */
  color: var(--ink-soft);
}

/* ========================================
   SWATCHES
======================================== */

.b2c-page .swatch-section {
  margin-top: 20px;
  margin-bottom: 30px;
}

.b2c-page .swatch-row {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.b2c-page .swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 80px;
}

.b2c-page .swatch i {
  width: 68px;
  height: 68px;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12),
    0 3px 12px rgba(0, 0, 0, 0.06);
}

.b2c-page .swatch i img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.b2c-page .swatch span {
  font-size: 0.64rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  text-align: center;
  font-weight: 600;
}

/* ========================================
   CARDS
======================================== */

.b2c-page .craft-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 45px;
}

.b2c-page .craft-card {
  position: relative;
  display: flex;
  flex-direction: column;
  /* min-height: 350px; */
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-alt);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.b2c-page .craft-card:hover {
  transform: translateY(-5px);
  /* background: #fff; */
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
}

/* Card top */

.b2c-page .craft-card-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.b2c-page .craft-card-number {
  flex: 0 0 auto;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
}

.b2c-page .craft-card-line {
  width: 100%;
  height: 1px;
  background: var(--line);
}

/* Card content */

.b2c-page .craft-card h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.15;
  font-weight: 500;
  color: var(--ink);
}

.b2c-page .craft-card p {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* Card footer */

.b2c-page .craft-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 28px;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  font-weight: 600;
}

.b2c-page .craft-card-footer .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.b2c-page .craft-card:hover .arrow {
  transform: translate(2px, -2px);
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {
  .b2c-page .craft {
    padding: 75px 0;
  }

  .b2c-page .craft-intro {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .b2c-page .craft-visual {
    height: 330px;
  }

  .b2c-page .craft-copy h2 {
    font-size: 2.2rem;
  }

  .b2c-page .swatch-row {
    /* gap: 35px; */
  }

  .b2c-page .craft-cards {
    gap: 12px;
  }

  .b2c-page .craft-card {
    padding: 20px;
    /* min-height: 360px; */
  }

  .b2c-page .craft-card h3 {
    font-size: 1.5rem;
  }
  .b2c-page .swatch {
        width: 60px;
    }

    .b2c-page .swatch i {
        width: 50px;
        aspect-ratio: 1;
        height: 50px;
    }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {
  .b2c-page .craft {
    padding: 60px 0;
  }

  .b2c-page .craft .wrap {
    padding: 0 20px;
  }

  .b2c-page .craft-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .b2c-page .craft-visual {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .b2c-page .craft-copy {
    max-width: none;
  }

  .b2c-page .craft-copy h2 {
    font-size: 2rem;
  }

  .b2c-page .craft-copy p {
    font-size: 15px;
  }

  .b2c-page .swatch-section {
    margin-top: 25px;
  }

  .b2c-page .swatch-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
  }

  .b2c-page .swatch {
    width: 100%;
  }

  .b2c-page .swatch i {
    width: 44px;
    height: 44px;
  }

  .b2c-page .craft-cards {
    grid-template-columns: 1fr;
    margin-top: 55px;
    gap: 12px;
  }

  .b2c-page .craft-card {
    min-height: 0;
    padding: 26px;
  }

  .b2c-page .craft-card-top {
    margin-bottom: 35px;
  }
}


/* ---------- how it works ---------- */
.b2c-page .how-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
@media (max-width:820px){ .b2c-page .how-row{ grid-template-columns:1fr 1fr; row-gap:26px; } }
@media (max-width:560px){ .b2c-page .how-row{ grid-template-columns:1fr; } }
.b2c-page .how-step{background: var(--paper);border-radius:8px;padding:28px 24px;}
.b2c-page .how-step .num{width:32px;height:32px;border-radius:50%;background: #000;color:#fff;font-family:var(--mono);font-size:0.78rem;display:flex;align-items:center;justify-content:center;margin-bottom:18px;}
.b2c-page .how-step h3{ font-size:1rem; margin-bottom:8px; font-weight:500; }
.b2c-page .how-step p{ font-size:13px; color:var(--ink-soft); line-height:1.6; }

/* ---------- social proof ---------- */
section#reviews {
    background: var(--paper);
}
/* ---------- testimonial slider (same markup/classes as before, now in swiper) ---------- */
.testi-slider { position: relative; }
.testi-slider .swiper { overflow: hidden; }
.testi-slider .swiper-slide { height: auto; }
.testi-slider .testi { height: 100%; }
.icon-star {
    width: 16px;
    height: 16px;
    fill: #ff9400;
}
.icon {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}
.stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.testi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
@media (max-width:980px) {
  .testi-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:600px) {
  .testi-grid { grid-template-columns: 1fr; }
}
.testi { background: var(--paper-alt); border: 1px solid var(--line); border-radius: 8px; padding: 24px 22px; display: flex; flex-direction: column; gap: 16px; }
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.testi p {font-size: 1rem;line-height: 1.55;color: var(--ink);}
.testi .who { font-size: 0.76rem; font-weight: 700; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.03em; margin-top: auto; }
.testi p br {
    display: none;
}

/* ---------- newsletter ---------- */
.slider-viewport { position: relative; }
.slider-nav { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; margin: 0; padding: 0 8px; pointer-events: none; z-index: 5; }
.slider-arrow {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,0.94);
  display: flex; align-items: center; justify-content: center; cursor: pointer; pointer-events: auto;
  box-shadow: 0 10px 24px rgba(27,26,23,0.14); backdrop-filter: blur(2px);
  transition: background .2s ease, border-color .2s ease, transform .18s ease, box-shadow .2s ease;
  position: relative; flex-shrink: 0; color: var(--ink);
}
.slider-arrow:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(247,15,5,0.24); }
.slider-arrow:active { transform: translateY(0) scale(.96); }
.slider-arrow.swiper-button-disabled { opacity: .35; cursor: default; pointer-events: none; box-shadow: none; }


/* ---------- occasions ---------- */
.b2c-page .occ-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
@media (max-width:900px){ .b2c-page .occ-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .b2c-page .occ-grid{ grid-template-columns:1fr; } }
.b2c-page .occ-card{position:relative;/* height:260px; */border-radius:8px;overflow:hidden;/* display:flex; */align-items:flex-end;background: var(--paper-alt);border-radius: 8px;overflow: hidden;border: 1px solid var(--line);}
.b2c-page .occ-card .bg{position: static;background:var(--g);transition:transform .5s ease;object-fit: cover;height: 100%;width: 100%;}
.b2c-page .occ-card:hover .bg{ transform:scale(1.06); }
/* .b2c-page .occ-card::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.72) 100%);opacity: 0;} */
.b2c-page .occ-card .body{position:relative;z-index:2;padding: 20px;color: #000;}
.b2c-page .occ-card h3{color: #000;font-size: 16px;font-weight:500;}
.b2c-page .occ-card p{font-size:14px;opacity:0.82;margin-top: 9px;}
.occ-card-img {
    aspect-ratio: 1/0.6;
    overflow: hidden;
}
.b2c-page .o1{ --g:linear-gradient(155deg,#9a3346,#4a1420 70%); }
.b2c-page .o2{ --g:linear-gradient(155deg,#d8b48f,#7a4d29 65%); }
.b2c-page .o3{ --g:linear-gradient(155deg,#c9a668,#6d4f21 70%); }
.b2c-page .o4{ --g:linear-gradient(155deg,#8fa0ab,#33424f 70%); }
.b2c-page .o5{ --g:linear-gradient(155deg,#c9ccc4,#6b7069 65%); }
.b2c-page .o6{ --g:linear-gradient(155deg,#2a2a28,#000000 70%); }

/* ---------- journal / blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width:900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:767px) {
  .blog-grid { grid-template-columns: 1fr; }
}
@media (min-width:768px) and (max-width:900px) {
    .blog-grid .blog-card:nth-child(3) {
        display: none;
    }
}
.blog-card {display: block;background: #fff;border-radius: 8px;overflow: hidden;border: 1px solid var(--line);transition: box-shadow .25s ease, transform .25s ease;display: flex;flex-direction: column;}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(27,26,23,0.1); }
.blog-media {/* height: 200px; */overflow: hidden;background: linear-gradient(155deg,#f2f2f0,#e1e1e1);aspect-ratio: 2.06/1;}
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-media img {/* transform: scale(1.06); */}
.blog-card .blog-body {padding: 20px 22px 24px;flex: 1;display: flex;flex-direction: column;}
.blog-tag {display: inline-block;font-size: 11px;font-weight: 700;letter-spacing: 0.06em;text-transform: uppercase;color: rgb(51, 51, 51);margin-bottom: 10px;}
.blog-card h3 {font-family: var(--serif);font-weight: 600;font-size: 16px;line-height: 1.35;color: var(--ink);}
.blog-card p {margin-top: 10px;font-size: 1rem;line-height: 1.6;color: var(--ink-soft);margin-bottom: 10px;}
.blog-read {
  display: block;
  align-items: center;
  gap: 6px;
  /* margin-top: 14px; */
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: auto;
}

/* ---------- faq ---------- */
.b2c-page .faq{ background:var(--paper-alt); }
.b2c-page .faq-list{ max-width:760px; margin:0 auto; }
.b2c-page .faq-item{ background:var(--paper); border:1px solid var(--line); border-radius:6px; margin-bottom:12px; overflow:hidden; }
.b2c-page .faq-q{width:100%;display:flex;justify-content:space-between;align-items:center;gap:14px;padding:20px 22px;background:none;border:none;text-align:left;cursor:pointer;font-family:var(--sans);font-weight:600;font-size: 16px;color:var(--ink);text-transform:none;outline: none;}
.faq-q .plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: #000;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  transition: transform .2s ease;
}
.b2c-page .faq-item.open .plus{ transform:rotate(45deg); }
.b2c-page .faq-a{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
.b2c-page .faq-a p{padding: 0 22px 10px;font-size:15px;color:var(--ink-soft);line-height: 1.3;margin: 0;}
.b2c-page .faq-a p:last-child {
    padding-bottom: 20px;
}

/* ---------- most popular slider ---------- */
.popular-slider {
    background: var(--paper-alt);
}
.popular-slider .swiper { overflow: hidden; }
.popular-tile { position: relative; display: block; min-height: 280px; border-radius: 6px; overflow: hidden; background: linear-gradient(155deg,#2a2a28,#0f0f0e); aspect-ratio: 1; }
.popular-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; opacity: 0.82; }
.popular-tile:hover img { transform: scale(1.07); }
.popular-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(348deg, rgb(0 0 0 / 0%) 40%, rgb(0 0 0 / 61%) 100%); }
.popular-label { position: absolute; left: 0; right: 0; top: 26px; z-index: 2; text-align: center; color: #fff; font-family: var(--sans); font-weight: 500; font-size: 20px; text-transform: uppercase; letter-spacing: 0.09em; padding: 0 18px; }
.popular-slider .section-head {
    max-width: 840px;
}
/* ---------- cta band ----------
   Mirrors the homepage "BEFORE YOU COMMIT" band (home.css: .pd_60.cta-band,
   .eyebrow, h2.title, .section-lede, .cta-row). */
.b2c-page .cta-band{ background:linear-gradient(155deg, var(--primary-dark), #3d3d3d); color:#fff; text-align:center; padding:60px 0; }
.b2c-page .cta-band .eyebrow{ font-family:var(--sans); font-size:12px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold-tint); justify-content:center; }
.b2c-page .cta-band .eyebrow::before{ content:none; }
.b2c-page .cta-band h2{ color:#fff; font-weight:600; font-size:clamp(1.8rem, 3vw, 2.9rem); line-height:1.15; margin:0 auto; }
.b2c-page .cta-band h2 em{ font-style:normal; font-weight:inherit; color:inherit; }
.b2c-page .cta-band p{ color:rgba(255,255,255,0.78); font-size:15px; line-height:1.65; max-width:640px; margin:14px auto 0; }
.b2c-page .cta-band .hero-ctas{ justify-content:center; gap:16px; margin-top:30px; }
.b2c-page .cta-band .cs-btn{ padding:14px 26px; font-size:1rem; border-radius:5px; }
.b2c-page .cta-band .cs-btn-white:hover, .b2c-page .cta-band .cs-btn-white:focus{ background:#fff; color:var(--primary-dark); }

@media (max-width:980px){
     .b2c-page .cta-band{ padding:44px 0; }
     .b2c-page .cta-band .hero-ctas .cs-btn {
        min-width: 201px;
    }
    }
@media (max-width:720px){ .b2c-page .cta-band{
     padding:36px 0; }
    }

.how {
    background: var(--paper-alt);
}
#occasions {
    background: var(--paper);
}
#occasions .section-head {
    max-width: 100%;
}
/* ---------- floating / sticky CTA ----------
   The site already parks the WhatsApp button and the PureChat widget in the
   bottom-right corner, so the desktop floating CTA sits bottom-left instead. */
.b2c-page .fab-cta{ position:fixed; left:24px; bottom:24px; z-index:950; }
.b2c-page .sticky-cta{ display:none; }
@media (max-width:720px){
  .b2c-page .fab-cta{ display:none; }
  .b2c-page .sticky-cta{ display:flex; position:fixed; left:0; right:0; bottom:0; z-index:940; background:var(--paper); border-top:1px solid var(--line); padding:10px 14px; gap:10px; box-shadow:0 -10px 22px rgba(0,0,0,0.08); }
  .b2c-page .sticky-cta .cs-btn{ flex:1; justify-content:center; padding:12px 14px; }
  .b2c-page section{ padding:68px 0; }
  body:has(.b2c-page){ padding-bottom:66px; }
}

/* Anchor targets clear the fixed site header on the breakpoints where
   styles.css makes it fixed. */
.b2c-page section[id]{ scroll-margin-top:100px; }
@media (min-width:1200px){ .b2c-page section[id]{ scroll-margin-top:150px; } }


/* Pagination hidden by default */
.cat-pagination,
.pop-pagination,
.testi-pagination {
  display: none;
}

/* Mobile: dots instead of navigation buttons */
@media (max-width: 559px) {
    .cat-next,
    .cat-prev,
    .pop-next,
    .pop-prev,
  .testi-next,
  .testi-prev {
      display: none;
    }

    .cat-pagination,
    .pop-pagination,
    .testi-pagination {
        display: block;
        position: relative;
        margin-top: 16px;
    }

    .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
        opacity: 0.4;
    }

    .swiper-pagination-bullet-active {
        opacity: 1;
    }
    .cta-band .cta-row a.cs-btn {
        min-width: 190px;
    }
    .whatsapp-icon {
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 900px) {
    .b2c-page {
        padding-top: 190px;
    }
}
@media (max-width: 560px) {
    .b2c-page {
        padding-top: 163px;
    }
    .b2c-page .hero .wrap {
        gap: 30px;
    }
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}
