/* ==========================================================================
   Bummel Shoes — site styles
   Brand: #7b1b21 burgundy · #ef3f49 red · #111 ink · Poppins
   ========================================================================== */

:root{
  --burgundy:#7b1b21;
  --burgundy-dk:#5d1319;
  --red:#c0202b;
  --ink:#111111;
  --ink-60:#5a5a5a;
  --ink-40:#8a8a8a;
  --line:#e6e3df;
  --paper:#ffffff;
  --sand:#faf8f5;
  --sand-2:#f2ede7;
  --radius:2px;
  --shadow:0 1px 2px rgba(17,17,17,.04),0 8px 24px rgba(17,17,17,.06);
  --shadow-lg:0 2px 4px rgba(17,17,17,.05),0 20px 48px rgba(17,17,17,.12);
  --ease:cubic-bezier(.22,.61,.36,1);
  --wrap:1280px;
  --head-h:76px;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;background:var(--paper);color:var(--ink);
  font-family:'Poppins',-apple-system,BlinkMacSystemFont,'Segoe UI',Helvetica,Arial,sans-serif;
  font-size:16px;line-height:1.65;font-weight:300;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit;color:inherit}
button{cursor:pointer;background:none;border:0;padding:0}
h1,h2,h3,h4{margin:0 0 .5em;font-weight:500;line-height:1.18;letter-spacing:-.015em}
h1{font-size:clamp(2rem,4.6vw,3.4rem)}
h2{font-size:clamp(1.6rem,3.2vw,2.4rem)}
h3{font-size:1.2rem}
p{margin:0 0 1.1em}
hr{border:0;border-top:1px solid var(--line);margin:3rem 0}

.wrap{width:min(100% - 2.5rem,var(--wrap));margin-inline:auto}
.wrap-narrow{width:min(100% - 2.5rem,820px);margin-inline:auto}
.section{padding:clamp(3.5rem,7vw,6.5rem) 0}
.section--sand{background:var(--sand)}
.center{text-align:center}
.stack>*+*{margin-top:1rem}

.eyebrow{
  font-size:.7rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--burgundy);font-weight:500;margin:0 0 .9rem;
}
.lede{font-size:1.06rem;color:var(--ink-60);max-width:62ch}
.rule{width:44px;height:2px;background:var(--burgundy);margin:1.2rem 0}
.center .rule{margin-inline:auto}

/* ---------------------------------------------------------------- buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  padding:.92rem 2rem;border:1px solid var(--ink);background:var(--ink);color:#fff;
  font-size:.76rem;letter-spacing:.16em;text-transform:uppercase;font-weight:500;
  border-radius:var(--radius);transition:all .3s var(--ease);position:relative;overflow:hidden;
}
.btn:hover{background:var(--burgundy);border-color:var(--burgundy);transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn--ghost{background:transparent;color:var(--ink)}
.btn--ghost:hover{background:var(--ink);color:#fff;border-color:var(--ink)}
.btn--light{background:#fff;color:var(--ink);border-color:#fff}
.btn--light:hover{background:var(--burgundy);border-color:var(--burgundy);color:#fff}
.btn--sm{padding:.6rem 1.2rem;font-size:.68rem}
.btn--block{width:100%}
.btn[disabled]{opacity:.4;pointer-events:none}

/* ---------------------------------------------------------------- header */
.header{
  position:sticky;top:0;z-index:60;background:rgba(255,255,255,.94);
  backdrop-filter:saturate(180%) blur(14px);border-bottom:1px solid var(--line);
}
.header__bar{
  display:flex;align-items:center;gap:1.5rem;height:var(--head-h);
  width:min(100% - 2.5rem,var(--wrap));margin-inline:auto;
}
.header__logo img{height:38px;width:auto}
.nav{display:flex;align-items:center;gap:1.9rem;margin-left:auto}
.nav a{
  font-size:.74rem;letter-spacing:.15em;text-transform:uppercase;font-weight:400;
  padding:.3rem 0;position:relative;color:var(--ink);white-space:nowrap;
}
.nav a::after{
  content:'';position:absolute;left:0;bottom:0;width:0;height:1px;
  background:var(--burgundy);transition:width .3s var(--ease);
}
.nav a:hover::after,.nav a[aria-current]::after{width:100%}
.nav a[aria-current]{color:var(--burgundy)}
.header__tools{display:flex;align-items:center;gap:1rem;margin-left:.4rem}
.icon-btn{
  width:40px;height:40px;display:grid;place-items:center;border-radius:50%;
  transition:background .25s var(--ease);color:var(--ink);
}
.icon-btn:hover{background:var(--sand-2)}
.icon-btn svg{width:19px;height:19px;stroke:currentColor;fill:none;stroke-width:1.6}
.burger{display:none}

.announce{
  background:var(--ink);color:#fff;text-align:center;
  font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;padding:.6rem 1rem;
}
.announce strong{color:#e8a5a9;font-weight:500}

/* mobile nav */
.drawer{
  position:fixed;inset:0;z-index:80;background:#fff;transform:translateX(100%);
  transition:transform .38s var(--ease);display:flex;flex-direction:column;padding:1.4rem;
}
.drawer.open{transform:translateX(0)}
.drawer__top{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem}
.drawer nav{display:flex;flex-direction:column;gap:.2rem;overflow-y:auto}
.drawer nav a{
  padding:.95rem .2rem;border-bottom:1px solid var(--line);
  font-size:.82rem;letter-spacing:.13em;text-transform:uppercase;
}

/* ---------------------------------------------------------------- hero */
.hero{position:relative;min-height:clamp(480px,74vh,760px);display:grid;align-items:center;overflow:hidden}
.hero__bg{position:absolute;inset:0}
.hero__bg img{width:100%;height:100%;object-fit:cover}
.hero__bg::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(100deg,rgba(17,17,17,.68) 0%,rgba(17,17,17,.38) 48%,rgba(17,17,17,.1) 100%);
}
.hero__inner{position:relative;z-index:2;color:#fff;max-width:640px;padding-block:3rem}
.hero__inner .eyebrow{color:#e8a5a9}
.hero h1{color:#fff;margin-bottom:.4em;font-weight:400}
.hero p{color:rgba(255,255,255,.86);font-size:1.05rem;max-width:46ch}
.hero__cta{display:flex;gap:.85rem;flex-wrap:wrap;margin-top:1.9rem}

/* ---------------------------------------------------------------- marquee strip */
.promise{background:var(--ink);color:#fff;padding:1.5rem 0}
.promise__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem;text-align:center}
.promise__item{font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;color:rgba(255,255,255,.8)}
.promise__item span{display:block;color:#fff;font-size:.98rem;letter-spacing:.02em;
  text-transform:none;font-weight:400;margin-top:.25rem}

/* ---------------------------------------------------------------- product grid */
.grid{display:grid;gap:2rem 1.6rem}
.grid--4{grid-template-columns:repeat(4,1fr)}
.grid--3{grid-template-columns:repeat(3,1fr)}
.grid--2{grid-template-columns:repeat(2,1fr)}

.card{position:relative;display:flex;flex-direction:column}
.card__media{
  position:relative;aspect-ratio:3/4;overflow:hidden;background:var(--sand-2);
  border-radius:var(--radius);
}
.card__media img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .7s var(--ease),opacity .4s var(--ease);
}
.card:hover .card__media img{transform:scale(1.045)}
.card__badge{
  position:absolute;top:.75rem;left:.75rem;z-index:3;background:var(--burgundy);color:#fff;
  font-size:.6rem;letter-spacing:.14em;text-transform:uppercase;padding:.32rem .6rem;font-weight:500;
}
.card__badge--out{background:var(--ink-40)}

/* carousel inside the card */
.carousel{position:absolute;inset:0}
.carousel__track{display:flex;height:100%;transition:transform .5s var(--ease)}
.carousel__slide{flex:0 0 100%;height:100%}
.carousel__slide img{width:100%;height:100%;object-fit:cover}
.carousel__nav{
  position:absolute;top:50%;transform:translateY(-50%);z-index:4;
  width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.9);
  display:grid;place-items:center;opacity:0;transition:opacity .3s var(--ease),background .2s;
  box-shadow:0 2px 8px rgba(0,0,0,.14);
}
.carousel__nav:hover{background:#fff}
.carousel__nav svg{width:15px;height:15px;stroke:var(--ink);fill:none;stroke-width:2}
.carousel__nav--prev{left:.6rem}
.carousel__nav--next{right:.6rem}
.card__media:hover .carousel__nav,.carousel:focus-within .carousel__nav{opacity:1}
.carousel__dots{
  position:absolute;bottom:.7rem;left:0;right:0;z-index:4;
  display:flex;justify-content:center;gap:.3rem;
}
.carousel__dot{
  width:5px;height:5px;border-radius:50%;background:rgba(255,255,255,.55);
  transition:all .3s var(--ease);box-shadow:0 0 0 1px rgba(0,0,0,.08);
}
.carousel__dot.on{background:#fff;width:16px;border-radius:3px}
@media (hover:none){.carousel__nav{opacity:1;background:rgba(255,255,255,.82)}}

.card__body{padding:.95rem .1rem 0}
.card__name{font-size:.94rem;font-weight:400;margin:0 0 .18rem;line-height:1.35}
.card__meta{font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-40);margin:0 0 .4rem}
.card__price{font-size:.94rem;font-weight:500;color:var(--burgundy);margin:0}
.card__price del{color:var(--ink-40);font-weight:300;margin-right:.45rem}
.card__sizes{
  display:flex;flex-wrap:wrap;gap:.28rem;margin-top:.55rem;
  opacity:0;max-height:0;overflow:hidden;transition:opacity .3s var(--ease),max-height .3s var(--ease);
}
.card:hover .card__sizes{opacity:1;max-height:60px}
.card__sizes span{
  font-size:.66rem;padding:.16rem .42rem;border:1px solid var(--line);color:var(--ink-60);
}
.card__sizes span.out{opacity:.32;text-decoration:line-through}
@media (hover:none){.card__sizes{opacity:1;max-height:60px}}

/* ---------------------------------------------------------------- shop layout */
.shop{display:grid;grid-template-columns:250px 1fr;gap:3rem;align-items:start}
.filters{position:sticky;top:calc(var(--head-h) + 1.4rem)}
.filters__group{border-bottom:1px solid var(--line);padding:0 0 1.1rem;margin-bottom:1.1rem}
.filters__group:last-child{border:0}
.filters h4{
  font-size:.68rem;letter-spacing:.17em;text-transform:uppercase;color:var(--ink);
  margin:0 0 .75rem;font-weight:500;
}
.filters label{
  display:flex;align-items:center;gap:.55rem;padding:.24rem 0;
  font-size:.84rem;color:var(--ink-60);cursor:pointer;transition:color .2s;
}
.filters label:hover{color:var(--ink)}
.filters input[type=checkbox]{
  appearance:none;width:15px;height:15px;border:1px solid var(--line);
  border-radius:1px;display:grid;place-items:center;flex:none;transition:all .2s;
}
.filters input[type=checkbox]:checked{background:var(--burgundy);border-color:var(--burgundy)}
.filters input[type=checkbox]:checked::after{
  content:'';width:8px;height:4px;border:2px solid #fff;border-top:0;border-right:0;
  transform:rotate(-45deg) translate(1px,-1px);
}
.filters .count{margin-left:auto;font-size:.7rem;color:var(--ink-40)}

.searchbar{position:relative;margin-bottom:1.6rem}
.searchbar input{
  width:100%;padding:.85rem 2.6rem .85rem 1rem;border:1px solid var(--line);
  border-radius:var(--radius);background:#fff;font-size:.9rem;font-weight:300;
  transition:border-color .25s var(--ease);
}
.searchbar input:focus{outline:0;border-color:var(--burgundy)}
.searchbar svg{
  position:absolute;right:.95rem;top:50%;transform:translateY(-50%);
  width:17px;height:17px;stroke:var(--ink-40);fill:none;stroke-width:1.7;pointer-events:none;
}

.shop__head{
  display:flex;align-items:baseline;justify-content:space-between;gap:1rem;
  flex-wrap:wrap;margin-bottom:1.5rem;
}
.shop__count{font-size:.8rem;color:var(--ink-40);letter-spacing:.04em}
.shop__sort select{
  border:1px solid var(--line);padding:.5rem 2rem .5rem .8rem;background:#fff;
  font-size:.78rem;border-radius:var(--radius);appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right .6rem center;background-size:13px;
}
.chips{display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:1.2rem}
.chip{
  display:inline-flex;align-items:center;gap:.4rem;background:var(--sand-2);
  padding:.32rem .7rem;font-size:.72rem;border-radius:999px;color:var(--ink-60);
}
.chip button{color:var(--ink-40);line-height:1;font-size:1rem}
.chip button:hover{color:var(--burgundy)}

.empty{text-align:center;padding:5rem 1rem;color:var(--ink-40)}

/* ---------------------------------------------------------------- product page */
.pdp{display:grid;grid-template-columns:1.15fr 1fr;gap:3.5rem;align-items:start}
.gallery__main{
  position:relative;aspect-ratio:4/5;background:var(--sand);overflow:hidden;
  border-radius:var(--radius);cursor:zoom-in;
}
.gallery__main img{
  width:100%;height:100%;object-fit:contain;padding:1.5rem;
  transition:transform .5s var(--ease),opacity .3s var(--ease);
}
.gallery__main.zoom img{padding:0;object-fit:cover}
.gallery__thumbs img{object-fit:contain;padding:3px;background:var(--sand)}
.gallery__main.zoom img{transform:scale(1.9);cursor:zoom-out}
.gallery__thumbs{display:grid;grid-template-columns:repeat(6,1fr);gap:.5rem;margin-top:.5rem}
.gallery__thumbs button{
  aspect-ratio:1;overflow:hidden;border:1px solid transparent;border-radius:var(--radius);
  transition:border-color .2s var(--ease);background:var(--sand-2);
}
.gallery__thumbs button.on{border-color:var(--burgundy)}
.gallery__thumbs img{width:100%;height:100%;object-fit:cover}

.pdp__info{position:sticky;top:calc(var(--head-h) + 1.6rem)}
.pdp__cats{font-size:.68rem;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-40);margin-bottom:.6rem}
.pdp h1{font-size:clamp(1.7rem,3vw,2.3rem);font-weight:400;margin-bottom:.35rem}
.pdp__price{font-size:1.5rem;color:var(--burgundy);font-weight:500;margin:0 0 1.4rem}
.pdp__price del{color:var(--ink-40);font-weight:300;font-size:1.1rem;margin-right:.5rem}

.sizes{display:flex;flex-wrap:wrap;gap:.45rem;margin:.7rem 0 .3rem}
.size-btn{
  min-width:52px;padding:.65rem .6rem;border:1px solid var(--line);text-align:center;
  font-size:.85rem;border-radius:var(--radius);transition:all .2s var(--ease);background:#fff;
}
.size-btn:hover:not(.out){border-color:var(--ink)}
.size-btn.on{background:var(--ink);color:#fff;border-color:var(--ink)}
.size-btn.out{opacity:.32;cursor:not-allowed;text-decoration:line-through}
.size-row{display:flex;align-items:baseline;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.size-row h4{font-size:.7rem;letter-spacing:.17em;text-transform:uppercase;margin:0;font-weight:500}
.size-help{font-size:.76rem;color:var(--burgundy);border-bottom:1px solid currentColor}

.pdp__actions{display:flex;gap:.7rem;margin:1.6rem 0 1.2rem}
.qty{display:flex;align-items:center;border:1px solid var(--line);border-radius:var(--radius)}
.qty button{width:42px;height:100%;font-size:1.1rem;color:var(--ink-60);transition:color .2s}
.qty button:hover{color:var(--burgundy)}
.qty input{width:38px;text-align:center;border:0;background:none;font-size:.9rem}
.qty input::-webkit-outer-spin-button,.qty input::-webkit-inner-spin-button{appearance:none}

.acc{border-top:1px solid var(--line);margin-top:1.8rem}
.acc__item{border-bottom:1px solid var(--line)}
.acc__head{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:1.05rem 0;font-size:.78rem;letter-spacing:.13em;text-transform:uppercase;
  font-weight:500;text-align:left;
}
.acc__head svg{width:14px;height:14px;stroke:var(--ink-60);fill:none;stroke-width:2;
  transition:transform .3s var(--ease);flex:none}
.acc__item.open .acc__head svg{transform:rotate(180deg)}
.acc__body{max-height:0;overflow:hidden;transition:max-height .38s var(--ease)}
.acc__body>div{padding:0 0 1.3rem;font-size:.9rem;color:var(--ink-60)}
.acc__body ul{margin:0;padding-left:1.1rem}

/* ---------------------------------------------------------------- content pages */
.prose{font-size:1rem;color:var(--ink-60);line-height:1.8}
.prose h2,.prose h3{color:var(--ink);margin-top:2.2rem}
.prose h2:first-child,.prose h3:first-child{margin-top:0}
.prose a{color:var(--burgundy);border-bottom:1px solid rgba(123,27,33,.3)}
.prose img{margin:1.6rem 0;border-radius:var(--radius)}
.prose ul,.prose ol{padding-left:1.3rem}
.prose li{margin-bottom:.45rem}
.prose blockquote{
  margin:1.8rem 0;padding:.2rem 0 .2rem 1.4rem;border-left:2px solid var(--burgundy);
  font-style:italic;color:var(--ink);
}
.page-head{padding:clamp(2.5rem,5vw,4.5rem) 0 0;text-align:center}

/* ---------------------------------------------------------------- footer */
.footer{background:var(--ink);color:rgba(255,255,255,.62);padding:4rem 0 1.8rem;font-size:.86rem}
.footer__grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.4fr;gap:2.5rem;margin-bottom:3rem}
.footer h5{
  color:#fff;font-size:.68rem;letter-spacing:.18em;text-transform:uppercase;
  margin:0 0 1.1rem;font-weight:500;
}
.footer a{color:rgba(255,255,255,.62);transition:color .2s}
.footer a:hover{color:#fff}
.footer ul{list-style:none;margin:0;padding:0}
.footer li{margin-bottom:.5rem}
.footer__logo img{height:34px;width:auto;margin-bottom:1.1rem}
.footer__bottom{
  border-top:1px solid rgba(255,255,255,.1);padding-top:1.5rem;
  display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;font-size:.74rem;
}
.footer__bottom a{color:rgba(255,255,255,.5)}
.newsletter form{display:flex;gap:.5rem;margin-top:.4rem}
.newsletter input{
  flex:1;min-width:0;padding:.75rem .9rem;background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.16);color:#fff;border-radius:var(--radius);font-size:.86rem;
}
.newsletter input::placeholder{color:rgba(255,255,255,.4)}
.newsletter input:focus{outline:0;border-color:rgba(255,255,255,.45)}
.newsletter .btn{padding:.75rem 1.2rem;background:#fff;color:var(--ink);border-color:#fff}
.newsletter .btn:hover{background:var(--burgundy);border-color:var(--burgundy);color:#fff}
.hp{position:absolute;left:-9999px}

/* ---------------------------------------------------------------- reveal */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
  *{animation-duration:.01ms !important;transition-duration:.01ms !important}
}

/* ---------------------------------------------------------------- responsive */
@media (max-width:1100px){
  .grid--4{grid-template-columns:repeat(3,1fr)}
  .footer__grid{grid-template-columns:1fr 1fr}
}
@media (max-width:900px){
  .nav{display:none}
  .burger{display:grid}
  .shop{grid-template-columns:1fr;gap:1.4rem}
  .filters{position:static;display:none}
  .filters.open{display:block}
  .pdp{grid-template-columns:1fr;gap:2rem}
  .pdp__info{position:static}
  .promise__grid{grid-template-columns:repeat(2,1fr);gap:1.6rem}
}
@media (max-width:680px){
  :root{--head-h:64px}
  .grid--4,.grid--3{grid-template-columns:repeat(2,1fr)}
  .grid{gap:1.6rem .9rem}
  .footer__grid{grid-template-columns:1fr;gap:2rem}
  .gallery__thumbs{grid-template-columns:repeat(5,1fr)}
  .hero__cta .btn{flex:1;white-space:nowrap;padding-inline:.85rem;font-size:.7rem}
}

/* cart count badge */
.icon-btn--cart{position:relative}
.icon-btn__n{
  position:absolute;top:2px;right:2px;min-width:17px;height:17px;padding:0 4px;
  background:var(--burgundy);color:#fff;border-radius:999px;font-size:.62rem;
  display:grid;place-items:center;font-weight:500;line-height:1;
}

/* ------------------------------------------------------------ hero slider */
.hero--slider{position:relative;overflow:hidden}
/* The picture layer fills the whole header. Every slide stays absolutely
   placed — one of them turning relative was what left white bands above and
   below the image, because the picture could then only be as tall as its text. */
.hero__media{position:absolute;inset:0;z-index:0}
.hero--slider .slide{
  position:absolute;inset:0;opacity:0;visibility:hidden;
  transition:opacity .9s ease;display:grid;align-items:center;
}
.hero--slider .slide.on{opacity:1;visibility:visible}
/* When every slide says the same thing the words sit above the pictures and
   never move, so only the photographs change. */
.hero__words{position:relative;z-index:2}
.hero--still .hero__inner{padding-block:3.4rem}
/* The words never move but the photographs do, and some of them are bright
   sand. A heavier scrim keeps the heading readable whichever one is showing. */
/* The mobile drawer parks itself off to the right when closed, which left the
   page scrollable sideways by a few pixels on a phone. */
html,body{overflow-x:hidden}
.hero--still .hero__bg::after{
  background:
    linear-gradient(100deg,rgba(17,17,17,.84) 0%,rgba(17,17,17,.6) 38%,
                    rgba(17,17,17,.22) 72%,rgba(17,17,17,.12) 100%),
    linear-gradient(0deg,rgba(17,17,17,.35) 0%,rgba(17,17,17,0) 22%);
}
.hero__arrow{
  position:absolute;top:50%;transform:translateY(-50%);z-index:3;
  width:46px;height:46px;display:grid;place-items:center;border-radius:50%;
  background:rgba(0,0,0,.28);color:#fff;backdrop-filter:blur(3px);
  border:1px solid rgba(255,255,255,.3);transition:background .2s;
}
.hero__arrow:hover{background:rgba(0,0,0,.5)}
.hero__arrow--prev{left:1.2rem}
.hero__arrow--next{right:1.2rem}
.hero__dots{
  position:absolute;left:0;right:0;bottom:1.5rem;z-index:3;
  display:flex;gap:.5rem;justify-content:center;
}
.hero__dots button{
  width:9px;height:9px;border-radius:50%;background:rgba(255,255,255,.45);
  border:1px solid rgba(255,255,255,.7);transition:all .25s;
}
.hero__dots button.on{background:#fff;width:26px;border-radius:5px}
.btn--outline-light{background:transparent;border-color:rgba(255,255,255,.55);color:#fff}
.btn--outline-light:hover{background:rgba(255,255,255,.14);border-color:#fff;color:#fff}
@media(max-width:700px){
  /* On a phone the arrows would sit right on top of the heading. Swipe and the
     dots do the same job without covering the words. */
  .hero__arrow{display:none}
  .hero__dots{bottom:1.1rem}
}
@media(prefers-reduced-motion:reduce){
  .hero--slider .slide{transition:none}
}

/* ------------------------------------------------------ video, click to play */
.ytbox{position:relative;aspect-ratio:16/9;background:var(--sand-2);border-radius:2px;overflow:hidden}
.ytbox__go{display:block;width:100%;height:100%;position:relative;cursor:pointer}
.ytbox__go img{width:100%;height:100%;object-fit:cover;display:block}
.ytbox__play{
  position:absolute;inset:0;display:grid;place-items:center;
  background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.28));transition:background .25s;
}
.ytbox__go:hover .ytbox__play{background:rgba(0,0,0,.14)}
.ytbox__play svg{filter:drop-shadow(0 4px 14px rgba(0,0,0,.4));transition:transform .25s}
.ytbox__go:hover .ytbox__play svg{transform:scale(1.08)}
.ytbox iframe{width:100%;height:100%;border:0;display:block}

/* -------------------------------------------------- product extras & upsell */
.xtras{border-top:1px solid var(--line);margin-top:1.6rem;padding-top:1.2rem}
.xtras h4,.goes h4{
  font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-40);
  font-weight:400;margin:0 0 .8rem;
}
.xtra{display:flex;gap:.7rem;align-items:flex-start;padding:.7rem .9rem;cursor:pointer;
  border:1px solid var(--line);border-radius:2px;margin-bottom:.5rem;transition:border-color .2s}
.xtra:hover{border-color:var(--ink-40)}
.xtra:has(input:checked){border-color:var(--burgundy);background:var(--sand)}
.xtra input{margin-top:.25rem;flex:none}
.xtra__body{flex:1;min-width:0}
.xtra__body b{display:flex;gap:.6rem;font-weight:400;font-size:.92rem}
.xtra__body b i{margin-left:auto;font-style:normal;color:var(--burgundy)}
.xtra__body small{display:block;color:var(--ink-40);font-size:.78rem;margin-top:.15rem;line-height:1.5}
.xtra__note{display:none;padding:0 0 .8rem 1.9rem}
.xtra__note.on{display:block}

.goes{border-top:1px solid var(--line);margin-top:1.6rem;padding-top:1.2rem}
.goes__it{display:flex;gap:.8rem;align-items:center;padding:.55rem 0;
  border-bottom:1px solid var(--line)}
.goes__it:last-child{border-bottom:0}
.goes__it img{width:52px;height:52px;object-fit:cover;background:var(--sand-2);flex:none;border-radius:2px}
.goes__it span{flex:1;min-width:0}
.goes__it b{display:block;font-weight:400;font-size:.88rem}
.goes__it small{color:var(--ink-40);font-size:.78rem}
.goes__it em{font-style:normal;font-size:.76rem;color:var(--burgundy);border-bottom:1px solid currentColor}


/* ------------------------------------------------- a dark band for the video */
/* Two white sections meeting left a large empty seam between the insole story
   and the workshop film. A dark band breaks the run and suits the video. */
.section--ink{background:var(--ink);color:#fff}
.section--ink h2{color:#fff}
.section--ink .eyebrow{color:#e8a5a9}
.section--ink .lede,.section--ink p{color:rgba(255,255,255,.78)}
.section--ink .rule{background:rgba(255,255,255,.28)}
.section--ink .ytbox{background:#000}

/* =========================================================== the assistant */
.ask{
  position:fixed;right:1.2rem;bottom:1.2rem;z-index:80;display:flex;align-items:center;gap:.5rem;
  background:var(--burgundy);color:#fff;padding:.75rem 1.1rem;border-radius:40px;
  box-shadow:0 8px 26px rgba(0,0,0,.26);font-size:.85rem;transition:transform .2s,opacity .2s;
}
.ask:hover{transform:translateY(-2px)}
.ask.gone{opacity:0;pointer-events:none;transform:translateY(8px)}
.askbox{
  position:fixed;right:1.2rem;bottom:1.2rem;z-index:81;width:min(380px,calc(100vw - 2.4rem));
  max-height:min(620px,calc(100dvh - 2.4rem));background:#fff;border:1px solid var(--line);
  border-radius:6px;box-shadow:0 20px 60px rgba(0,0,0,.3);display:none;flex-direction:column;
}
.askbox.on{display:flex}
.askbox__top{display:flex;gap:1rem;align-items:flex-start;padding:1rem 1.1rem;
  background:var(--ink);color:#fff;border-radius:5px 5px 0 0}
.askbox__top b{font-weight:400;font-size:.95rem;display:block}
.askbox__top small{color:rgba(255,255,255,.6);font-size:.76rem}
.askbox__top button{margin-left:auto;color:#fff;font-size:1.5rem;line-height:1;opacity:.7}
.askbox__top button:hover{opacity:1}
.askbox__log{flex:1;overflow-y:auto;padding:1.1rem;display:flex;flex-direction:column;gap:.7rem}
.ask-msg{max-width:88%;padding:.65rem .85rem;border-radius:10px;font-size:.88rem;line-height:1.55}
.ask-msg--them{background:var(--sand-2);color:var(--ink);border-bottom-left-radius:3px;align-self:flex-start}
.ask-msg--me{background:var(--burgundy);color:#fff;border-bottom-right-radius:3px;align-self:flex-end}
.ask-msg--bad{background:#fdf0f0;border:1px solid #eec4c4;color:#8d2b2b;align-self:flex-start}
.ask-msg a{color:inherit;text-decoration:underline}
.ask-msg--them a{color:var(--burgundy)}
.ask-chips{display:flex;flex-wrap:wrap;gap:.4rem}
.ask-chips button{border:1px solid var(--line);border-radius:30px;padding:.35rem .75rem;
  font-size:.78rem;color:var(--ink-60);background:#fff}
.ask-chips button:hover{border-color:var(--burgundy);color:var(--burgundy)}
.ask-dots{align-self:flex-start;display:flex;gap:4px;padding:.7rem .9rem}
.ask-dots i{width:6px;height:6px;border-radius:50%;background:var(--ink-40);
  animation:askb 1.1s infinite ease-in-out}
.ask-dots i:nth-child(2){animation-delay:.16s}
.ask-dots i:nth-child(3){animation-delay:.32s}
@keyframes askb{0%,80%,100%{opacity:.25;transform:translateY(0)}40%{opacity:1;transform:translateY(-3px)}}
.askbox__ask{display:flex;gap:.5rem;padding:.8rem 1rem;border-top:1px solid var(--line)}
.askbox__ask input{flex:1;padding:.6rem .75rem;border:1px solid var(--line);border-radius:30px;font-size:.88rem}
.askbox__ask button{width:38px;height:38px;flex:none;border-radius:50%;background:var(--burgundy);
  color:#fff;display:grid;place-items:center}
.askbox__foot{font-size:.7rem;color:var(--ink-40);padding:0 1rem .8rem;margin:0}
.askbox__foot a{color:var(--burgundy)}
@media(max-width:520px){
  .askbox{right:.6rem;left:.6rem;bottom:.6rem;width:auto;max-height:calc(100dvh - 1.2rem)}
  .ask span{display:none}
  .ask{padding:.85rem;border-radius:50%}
}

/* ============================================================== cookie bar */
.cookiebar{
  position:fixed;left:1rem;right:1rem;bottom:1rem;z-index:90;display:flex;gap:1rem;
  align-items:center;flex-wrap:wrap;background:var(--ink);color:#fff;
  padding:.9rem 1.2rem;border-radius:4px;box-shadow:0 10px 34px rgba(0,0,0,.32);
  max-width:640px;margin-inline:auto;
}
.cookiebar p{margin:0;font-size:.82rem;color:rgba(255,255,255,.8);flex:1;min-width:220px}
.cookiebar a{color:#e8a5a9}
.cookiebar .btn{background:#fff;color:var(--ink);border-color:#fff;flex:none}

/* ======================================================= newsletter popup */
/* A element with the hidden attribute must stay hidden even when a class
   below sets display. Without this the popup covers the page invisibly and
   swallows every click. */
[hidden]{display:none!important}
.nlpop{position:fixed;inset:0;z-index:95;background:rgba(17,17,17,.55);
  display:grid;place-items:center;padding:1.2rem;animation:nlfade .3s ease}
@keyframes nlfade{from{opacity:0}to{opacity:1}}
.nlpop__box{position:relative;background:#fff;max-width:430px;width:100%;padding:2.2rem 2rem 1.6rem;
  border-radius:4px;text-align:center;box-shadow:0 30px 80px rgba(0,0,0,.4)}
.nlpop__box h3{font-size:1.5rem;font-weight:300;margin:.2rem 0 .7rem}
.nlpop__sub{font-size:.88rem;color:var(--ink-60);line-height:1.6;margin:0 0 1.4rem}
.nlpop__box form{display:flex;flex-direction:column;gap:.6rem}
.nlpop__box input[type=email]{padding:.8rem;border:1px solid var(--line);border-radius:2px;
  font-size:.92rem;text-align:center}
.nlpop__x{position:absolute;top:.5rem;right:.8rem;font-size:1.6rem;color:var(--ink-40);line-height:1}
.nlpop__x:hover{color:var(--ink)}
.nlpop__no{margin-top:.9rem;font-size:.78rem;color:var(--ink-40);text-decoration:underline}
.nlpop__msg{font-size:.85rem;margin:.8rem 0 0;min-height:1.2em}
.nlpop__msg.ok{color:#2f7d52}
.nlpop__msg.bad{color:#8d2b2b}
.hp{position:absolute!important;left:-9999px!important}
.xtra__picks{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:.7rem}
.xtra__picks select{width:100%;padding:.55rem;border:1px solid var(--line);border-radius:2px;font-size:.88rem}
.xtra__hint{font-size:.76rem;color:var(--ink-40);margin:.5rem 0 0}
.xtra__hint a{color:var(--burgundy)}

/* ---------------------------------------------------- Google review strip */
.grev{background:var(--sand);border-block:1px solid var(--line);padding:2.2rem 0}
.grev__top{display:flex;gap:.7rem;align-items:baseline;flex-wrap:wrap;font-size:.9rem;
  color:var(--ink-60);margin-bottom:1.4rem}
.grev__stars{color:#e8a020;letter-spacing:.1em}
.grev__top b{color:var(--ink);font-weight:500;font-size:1.05rem}
.grev__n{color:var(--ink-40);font-size:.84rem}
.grev__all{margin-left:auto;color:var(--burgundy);font-size:.84rem;border-bottom:1px solid currentColor}
.grev__rail{display:flex;gap:1rem;overflow-x:auto;padding-bottom:.6rem;
  scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch}
.grev__card{flex:0 0 min(340px,82vw);scroll-snap-align:start;background:#fff;
  border:1px solid var(--line);border-radius:2px;padding:1.2rem;margin:0}
.grev__s{color:#e8a020;font-size:.85rem;letter-spacing:.08em;margin-bottom:.6rem}
.grev__card blockquote{margin:0 0 .8rem;font-size:.9rem;line-height:1.6;color:var(--ink);
  display:-webkit-box;-webkit-line-clamp:7;-webkit-box-orient:vertical;overflow:hidden}
.grev__card figcaption{font-size:.8rem;color:var(--ink-60)}
.grev__card figcaption span{color:var(--ink-40)}
@media(max-width:600px){.grev__all{margin-left:0;width:100%}}
