/* ===== Header base ===== */
.hdr{
  position: fixed;     /* equivalente a fixed-top */
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;        /* altura fija tipo navbar */
  z-index: 5000;
 /*  background: #fff; */
  border-bottom: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  display: flex;
  align-items: center;
}


/* LEFT */
.hdr__left{ display:flex; align-items:center; gap:10px; flex: 0 0 auto; }
.hdr__brand img{ height:56px; width:auto; display:block; }

/* CENTER */
.hdr__nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 28px;
    /*flex: 1 1 auto;     <-- este es el flex-1 real */
  min-width: 200px;
}
.hdr__link{
  font-weight: 800;
  font-size: 14px;
  /* color:#334155; */
  text-decoration:none;
}
.hdr__link:hover{ color:#2563eb; }

/* RIGHT */
.hdr__right{ display:flex; align-items:center; gap:12px; flex: 1 0 auto; }

/* Icon buttons */
.iconbtn{
  width:35px; height:35px;
  border:0;
 /*  background:#fff; */
 /*  border-radius:14px; */
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}

/* Search desktop */
/* Search desktop: que no se coma todo el header */
.search{
  position: relative;
  width: 420px;        /* ancho máximo cómodo */
  max-width: 32vw;     /* para pantallas medianas */
  min-width: 240px;
  flex: 0 1 auto;      /* permite que reduzca */
}

.search__input{
  width: 100%;
  padding: 12px 44px 12px 44px; /* espacio real para icono izq y botón der */
  border-radius: 15px !important;
  border: 1px solid rgba(15,23,42,.16) !important;
  outline: none;
  font-size: 14px;
  box-sizing: border-box;
}
.search__icon{
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);
  color:#94a3b8;
  pointer-events:none;
}

.search__btn{
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  border:0;
  background:transparent;
  cursor:pointer;
  color:#64748b;
  padding:0;
}
/* Dropdown categorías desktop */
.dd{ position:relative; }
.dd__btn{
  display:flex; align-items:center; gap:6px;
  font-weight:800;
  font-size:14px;
 /*  color:#334155; */
  background:transparent;
  border:0;
  cursor:pointer;
  padding: 10px 8px;
  border-radius: 12px;
}
.dd__btn:hover{ color:#2563eb; /* background:#f8fafc; */ }
.dd__chev{ font-size:18px; color:#64748b; }

.dd__menu{
  position:absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 280px;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  box-shadow: 0 22px 50px rgba(0,0,0,.14);
  overflow:hidden;
  opacity:0;
  visibility:hidden;
  transform: translateY(6px);
  transition: .16s ease;
  z-index: 9999;
}
.dd:hover .dd__menu{
  opacity:1; visibility:visible; transform: translateY(0);
}
.dd__scroll{ max-height: 320px; overflow:auto; padding: 8px 0; }

/* Cart */
.cart{ position:relative; }
.cart__btn{ position:relative; }
.cart__badge{
  position:absolute;
  top:-6px; right:-6px;
  width:18px; height:18px;
  border-radius: 999px;
  background:#2563eb;
  color:#fff;
  font-weight:900;
  font-size: 11px;
  display:flex; align-items:center; justify-content:center;
  border:2px solid #fff;
}
.cart { position: relative; }
.cart__pop{
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 380px;
  max-width: 92vw;
  z-index: 20000;      /* <--- SUBE EL Z-INDEX */
  display: none;
}
.cart.open .cart__pop{ display: block; }

/* ===== Mobile drawer ===== */
.m{ position:fixed; inset:0; z-index: 10000; display:none; }
.m.open{ display:block; }
.m__back{ position:absolute; inset:0; background: rgba(15,23,42,.45); }

.m__drawer, .m__sub{
  position:absolute;
  top:0; left:0;
  width: 86vw;
  max-width: 360px;
  height: 100vh;
  background:#fff;
  border-right:1px solid rgba(15,23,42,.10);
  box-shadow: 0 25px 60px rgba(0,0,0,.20);
  padding: 12px;
  transform: translateX(-110%);
  transition: transform .22s ease;
}
.m.open .m__drawer{ transform: translateX(0); }
.m.cats-open .m__sub{ transform: translateX(0); }

.m__head{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding-bottom: 10px;
  border-bottom:1px solid rgba(15,23,42,.08);
}
.m__title{ font-weight: 900; }

.m__search{
  margin-top: 12px;
  display:flex; align-items:center; gap:8px;
  border:1px solid rgba(15,23,42,.14);
  border-radius: 14px;
  padding: 10px 12px;
}
.m__sicon{ color:#94a3b8; }
.m__sinput{ width:100%; border:0; outline:none; font-size:16px; }
.m__sbtn{ border:0; background:transparent; cursor:pointer; color:#64748b; }

.m__links{ margin-top: 12px; display:flex; flex-direction:column; gap:8px; }
.m__link{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 12px;
  border:1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  text-decoration:none;
  color:#0f172a;
  font-weight: 900;
  background:#fff;
}
.m__link:hover{ background:#f8fafc; }
.m__linkbtn{ cursor:pointer; width:100%; }

.m__cats{
  margin-top:12px;
  border:1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  overflow:hidden;
  max-height: calc(100vh - 120px);
  overflow-y:auto;
}
.m__cats .cat-link{ padding: 14px; font-size: 16px; }

/* ===== Responsive rules ===== */
.hdr__hamb{ display:none; }
@media (max-width: 991px){
  .hdr__nav{ display:none; }
  .search{ display:none; }
  .hdr__hamb{ display:flex; }
}

/* Header */
.hdr{ position:sticky; top:0; z-index:5000; background:#fff; border-bottom:1px solid rgba(15,23,42,.10); }

.hdr__inner{ width:95%;
  padding:10px 20px;   /* solo margen interno */
  margin:0 auto;            /* quita el centrado */
  max-width:none;  
}

.hdr__left{ display:flex; align-items:center; gap:10px; flex:0 0 auto; }
.hdr__brand img{ height:56px; width:auto; display:block; }
.hdr__nav{ display:flex; align-items:center; justify-content:center; gap:28px; flex:1 1 auto; min-width:200px; }

.hdr__row{
  display:flex;
  align-items:center;
}

.hdr__nav{
  flex:1;
  display:flex;
  justify-content:center;
}

.hdr__right{
  margin-left:auto;
}
/* Botones */
.iconbtn{
  width:35px; height:35px;
  border:0;
  background: transparent;
 /*  border-radius:14px; */
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}

/* Search (PC) - evita empalme */
.search{ position:relative; width:420px; max-width:32vw; min-width:240px; flex:0 1 auto; }
.search__icon{ position:absolute; left:12px; top:50%; transform:translateY(-50%); color:#94a3b8; pointer-events:none; }
.search__input{
  width:100%;
  padding:12px 44px 12px 44px;  /* espacio iconos */
  border-radius:15px !important;
  border:1px solid rgba(15,23,42,.16) !important;
  outline:none; font-size:14px; box-sizing:border-box;
}
.search__btn{ position:absolute; right:12px; top:50%; transform:translateY(-50%); border:0; background:transparent; cursor:pointer; color:#64748b; padding:0; }

/* Carrito popover */
.cart{ position:relative; }
.cart__btn{ position:relative; }
.cart__badge{
  position:absolute; top:-6px; right:-6px;
  width:18px; height:18px; border-radius:999px;
  background:#2563eb; color:#fff; font-weight:900; font-size:11px;
  display:flex; align-items:center; justify-content:center;
  border:2px solid #fff;
}
.cart__pop{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  width:380px;
  max-width:92vw;
  z-index:20000;
  display:none;
}
.cart.open .cart__pop{ display:block; }

/* Móvil: ocultar nav + search y mostrar hamburguesa */
@media (max-width: 991px){
  .hdr__nav{ display:none; }
  .search{ display:none; }
}

/* Panel del popover */
.cartpanel{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  box-shadow: 0 22px 50px rgba(0,0,0,.14);
  overflow:hidden;
}

/* Mini cart */
.mini{ width: 100%; }
.mini__head{
  display:flex; justify-content:space-between; align-items:flex-start;
  gap:10px;
  padding:14px 14px 10px 14px;
  border-bottom:1px solid rgba(15,23,42,.08);
}
.mini__title{ font-weight:900; color:#0f172a; }
.mini__sub{ font-size:13px; color:#64748b; margin-top:2px; }
.mini__close{
  width:36px; height:36px; border-radius:12px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff; cursor:pointer;
  font-size:20px; line-height:1;
}

.mini__body{
  max-height: 320px;
  overflow:auto;
  padding: 10px 16px;
}
.mini__table{ width:100%; border-collapse:collapse; }
.mini__row + .mini__row{ border-top:1px solid rgba(15,23,42,.08); }

.mini__imgcell{ width:70px; padding:14px 10px 14px 0; vertical-align:middle; }
.mini__img{
  width:58px; height:58px; border-radius:16px; object-fit:cover; display:block;
  background:#fff; border:1px solid rgba(148,163,184,.22);
}

.mini__infocell{ padding:14px 8px; vertical-align:middle; }
.mini__name{
  font-weight:900; font-size:15px; line-height:1.15; color:#0f172a;
  max-width:190px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.mini__meta{ font-size:12px; color:#64748b; margin-top:8px; }
.mini__qty{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px;
  border-radius:999px;
  background:#f8fafc;
}
.mini__qtybtn{
  width:30px;
  height:30px;
  border:0;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#ffffff;
  color:#334155;
  cursor:pointer;
  border:1px solid rgba(148,163,184,.2);
  transition:background .16s ease, color .16s ease, border-color .16s ease;
}
.mini__qtybtn:hover{
  background:#f1f5f9;
}
.mini__qtyvalue{
  min-width:28px;
  text-align:center;
  font-weight:900;
  font-size:13px;
  color:#0f172a;
}

@media (max-width: 767px){
  .mini__qty{
    gap:10px;
    padding:5px 6px;
  }

  .mini__qtybtn{
    width:20px;
    height:20px;
    font-size:16px;
  }

  .mini__qtyvalue{
    min-width:38px;
    font-size:16px;
  }
}
.mini__price{
  margin-top:10px; font-weight:900; font-size:16px; color:#1e3a5f;
}

.mini__actcell{ width:64px; padding:14px 0 14px 8px; vertical-align:middle; text-align:right; }
.mini__actions{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:8px;
}
.mini__trash{
  width:38px; height:38px;
  border-radius:14px;
  border:1px solid transparent;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:background .16s ease, color .16s ease, border-color .16s ease;
}
.mini__trash--soft{
  background:#fff7ed;
  border-color:#fed7aa;
  color:#ea580c;
}
.mini__trash--soft:hover{
  background:#ffedd5;
}
.mini__trash--danger{
  background:#fff5f5;
  border-color:#fecaca;
  color:#dc2626;
}
.mini__trash--danger:hover{
  background:#fee2e2;
}

.mini__foot{
  padding: 12px 14px 14px 14px;
  border-top:1px solid rgba(15,23,42,.08);
}
.mini__total{
  display:flex; justify-content:space-between; align-items:center;
  font-size:14px;
  margin-bottom: 10px;
}
.mini__btn{
  display:block;
  width:100%;
  text-align:center;
  text-decoration:none;
  padding: 12px 14px;
  border-radius:14px;
  background:#2563eb;
  color:#fff;
  font-weight:900;
}
.mini__btn:hover{ filter: brightness(.95); }

.mini__empty{
  padding: 18px 10px;
  text-align:center;
  color:#64748b;
  font-weight:700;
}

/* Mostrar hamburguesa solo en móvil */
.hdr__hamb{ display:none; }

/* En móvil: logo izquierda, acciones derecha */
@media (max-width: 991px){
  .hdr__right{
    margin-left: auto;         /* manda a la derecha */
    gap: 10px;
  }
  .hdr__hamb{ display:flex; }  /* aparece al final */
}
@media (max-width: 991px){
  .cart__pop{
    position: fixed;           /* <- ya no absoluto */
    left: 50%;
    top: 76px;                 /* debajo del header */
    transform: translateX(-50%);
    right: auto;
    width: min(92vw, 420px);
    max-height: calc(100vh - 100px);
    overflow: auto;
    z-index: 30000;
  }

  /* El contenido interno no debe romperse */
  .cartpanel{ max-height: calc(100vh - 100px); overflow:auto; }
  .mini__body{ max-height: 50vh; } /* lista scrolleable */
}

/* NAV siempre visible */
.hdr{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: #fff;
  border-bottom: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

/* evita que el contenido quede debajo del header fijo */
body{
  padding-top: 76px; /* ajusta si tu header mide más/menos */
}

@media (max-width: 991px){
  body{ padding-top: 64px; } /* si en móvil tu header es más bajito */
}

/* Layout correcto: LEFT | CENTER (flex-1) | RIGHT */
.hdr__row{
  display:flex;
  align-items:center;
  min-height:56px;
  gap: 12px;              /* ajusta aquí el espaciado entre bloques */
}

/* LEFT fijo */
.hdr__left{ flex: 0 0 auto; }

/* CENTER se estira y empuja al RIGHT */
.hdr__nav{
  flex: 1 1 auto;         /* clave: ocupa el espacio del medio */
  display:flex;
  align-items:center;
  justify-content:center; /* nav centrado */
  gap: 28px;
  min-width: 0;           /* evita empujes raros */
}

/* RIGHT fijo al extremo derecho */
.hdr__right{
  flex: 0 0 auto;
  display:flex;
  align-items:center;
  gap: 12px;
  margin-left: auto;      /* asegura que se vaya totalmente a la derecha */
}

/* Si el buscador empuja mucho, limita su tamaño */
.search{
  width: 360px;
  max-width: 28vw;
  min-width: 220px;
}

/* En móvil: ocultar nav+search, mostrar hamburguesa */
@media (max-width: 991px){
  .hdr__nav{ display:none; }
  .search{ display:none; }
  .hdr__right{ margin-left:auto; } /* mantiene bolsa+hamburguesa a la derecha */
}

.hdr__row{
  display:flex !important;
  align-items:center !important;
  justify-content: space-between !important; /* extremos */
  min-height:56px;
}

/* 3 columnas */
.hdr__left{ flex:0 0 auto; }
.hdr__nav{  flex:1 1 auto; display:flex; justify-content:center; gap:28px; }
.hdr__right{flex:0 0 auto; display:flex; align-items:center; gap:12px; }


/* ====== LAYOUT BASE ====== */
.hdr__row{
  display:flex !important;
  align-items:center !important;
  min-height:56px;
  gap: 12px; /* solo separa bloques */
}

/* Left fijo */
.hdr__left{ flex: 0 0 auto !important; }

/* Center ocupa el espacio REAL */
.hdr__nav{
  flex: 1 1 0% !important;     /* clave: 0% evita que se "pegue" */
  min-width: 0 !important;     /* clave: permite que encoja */
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap: 54px;
}

/* Right fijo a la derecha */
.hdr__right{
  flex: 0 0 auto !important;
  display:flex !important;
  align-items:center !important;
  gap: 12px;
  margin-left: auto !important; /* empuja al extremo */
}

/* Search: que no empuje demasiado */
.search{
  width: 360px;
  max-width: 28vw;
  min-width: 220px;
  flex: 0 1 auto;
}

/* ====== MÓVIL ====== */
@media (max-width: 991px){
  .hdr__nav{ display:none !important; }   /* oculta menú */
  .search{ display:none !important; }    /* oculta buscador */
  .hdr__hamb{ display:flex !important; } /* muestra hamburguesa */
}

.search{
  position: relative;
}

.search-results{
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
  border: 1px solid rgba(15,23,42,.08);
  max-height: 420px;
  overflow-y: auto;
  display: none;
  z-index: 30000;
}

.search-results.active{
  display: block;
}

/* ===== Redesign System ===== */
:root{
  --shop-ink:#201a17;
  --shop-muted:#6b625d;
  --shop-primary:#8f1d35;
  --shop-accent:#d59a49;
  --shop-shadow:0 24px 60px rgba(32,26,23,.10);
}

body{
  color:var(--shop-ink);
  background-color:#fff;
  padding-top:104px;
}

.hdr__topline{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:100000;
  background:#201a17;
  color:#f8f3ed;
  font-size:12px;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.hdr__topline-inner{
  width:min(1320px, calc(100% - 32px));
  min-height:32px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.hdr__topline-links{
  display:flex;
  align-items:center;
  gap:16px;
}

.hdr__topline-links a{
  color:#f8f3ed;
  text-decoration:none;
}

.hdr{
  top:32px;
  background:rgba(255,253,250,.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(32,26,23,.08);
  box-shadow:0 12px 34px rgba(32,26,23,.08);
}

.hdr__inner{
  width:min(1320px, calc(100% - 32px));
  padding:14px 0;
}

.hdr__row{
  min-height:58px;
  gap:20px;
}

.hdr__left{
  gap:14px;
}

.hdr__brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:var(--shop-ink);
}

.hdr__brand-mark{
  width:48px;
  height:48px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, var(--shop-primary) 0%, #c64a62 100%);
  color:#fff;
  font-weight:900;
  letter-spacing:.08em;
  box-shadow:0 16px 30px rgba(143,29,53,.24);
}

.hdr__brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.hdr__brand-copy strong{
  font-size:15px;
  font-weight:800;
}

.hdr__brand-copy small{
  color:var(--shop-muted);
  font-size:12px;
}

.hdr__nav{
  gap:32px;
}

.hdr__link,
.dd__btn{
  font-size:14px;
  font-weight:700;
  color:var(--shop-ink) !important;
}

.search{
  width:420px;
  max-width:32vw;
}

.search__input{
  min-height:52px;
  padding-left:46px;
  padding-right:46px;
  border-radius:18px !important;
  border:1px solid rgba(32,26,23,.10) !important;
  background:rgba(255,255,255,.9);
}

.search__input:focus{
  border-color:rgba(143,29,53,.36) !important;
  box-shadow:0 0 0 4px rgba(143,29,53,.08);
}

.hdr__orders{
  min-height:48px;
  padding:0 16px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--shop-ink);
  text-decoration:none;
  border:1px solid rgba(32,26,23,.08);
  background:rgba(255,255,255,.72);
  font-weight:700;
}

.cart__btn{
  width:48px;
  height:48px;
  border-radius:16px;
}

.cart__badge{
  background:var(--shop-primary);
  border-color:#fffdfa;
}

.mini{
  border-radius:24px;
  overflow:hidden;
}

.mini__btn{
  background:linear-gradient(135deg, var(--shop-primary) 0%, #b53954 100%);
}

.shop-kicker,
.shop-section-kicker,
.site-footer__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--shop-primary);
}

.shop-hero{
  display:grid;
  grid-template-columns:minmax(0, 1.3fr) minmax(300px, .7fr);
  gap:24px;
  align-items:stretch;
}

.shop-hero__content,
.shop-hero__panel{
  border-radius:32px;
  background:linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(247,239,230,.92) 100%);
  border:1px solid rgba(32,26,23,.08);
  box-shadow:var(--shop-shadow);
}

.shop-hero__content{
  padding:42px;
  text-align:left;
}

.shop-hero__title{
  margin:14px 0 16px;
  font-size:clamp(34px, 4vw, 64px);
  line-height:.98;
  font-weight:900;
  letter-spacing:-.04em;
}

.shop-hero__copy{
  max-width:720px;
  margin:0;
  color:var(--shop-muted);
  font-size:17px;
  line-height:1.7;
}

.shop-hero__actions,
.shop-hero__chips{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.shop-hero__actions{
  margin-top:28px;
}

.shop-hero__chips{
  margin-top:22px;
}

.shop-btn{
  min-height:52px;
  padding:0 22px;
  border-radius:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:800;
}

.shop-btn--primary{
  background:linear-gradient(135deg, var(--shop-primary) 0%, #b53954 100%);
  color:#fff;
  box-shadow:0 18px 36px rgba(143,29,53,.22);
}

.shop-btn--ghost{
  background:#fff;
  color:var(--shop-ink);
  border:1px solid rgba(32,26,23,.10);
}

.shop-chip{
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  color:var(--shop-ink);
  background:rgba(255,255,255,.86);
  border:1px solid rgba(32,26,23,.08);
  font-weight:700;
}

.shop-hero__panel{
  padding:24px;
  display:grid;
  gap:14px;
  align-content:start;
  text-align:left;
}

.shop-stat-card{
  padding:18px 20px;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(32,26,23,.08);
}

.shop-stat-card__label{
  display:block;
  color:var(--shop-muted);
  font-size:13px;
  margin-bottom:8px;
}

.shop-stat-card__value{
  font-size:32px;
  line-height:1;
  font-weight:900;
}

.shop-hero__note{
  margin-top:6px;
  padding:16px 18px;
  border-radius:20px;
  background:rgba(213,154,73,.10);
  color:#5e4727;
  font-weight:700;
}

.shop-hero__note-dot{
  width:9px;
  height:9px;
  margin-right:8px;
  border-radius:50%;
  display:inline-block;
  background:var(--shop-accent);
}

.shop-benefits{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.shop-benefit{
  padding:22px;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(32,26,23,.08);
  display:flex;
  gap:16px;
  align-items:flex-start;
  text-align:left;
}

.shop-benefit__icon{
  width:48px;
  height:48px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(143,29,53,.08);
  color:var(--shop-primary);
}

.shop-benefit h3{
  margin:0 0 6px;
  font-size:18px;
  font-weight:800;
}

.shop-benefit p{
  margin:0;
  color:var(--shop-muted);
  line-height:1.6;
}

.shop-highlights__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.shop-highlight-card{
  min-height:180px;
  padding:22px;
  border-radius:28px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  text-decoration:none;
  color:#fff;
  box-shadow:var(--shop-shadow);
  text-align:left;
}

.shop-tone--rose{ background:linear-gradient(135deg, #8f1d35 0%, #c84f67 100%); }
.shop-tone--gold{ background:linear-gradient(135deg, #b37a2f 0%, #dcb068 100%); }
.shop-tone--ink{ background:linear-gradient(135deg, #1f2937 0%, #3f4c5d 100%); }
.shop-tone--sand{ background:linear-gradient(135deg, #a66a4c 0%, #d59a7d 100%); }

.shop-highlight-card__eyebrow{
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.8;
}

.shop-highlight-card__title{
  font-size:28px;
  line-height:1.05;
}

.shop-highlight-card__link{
  font-weight:700;
}

.shop-message-slot{
  display:block;
}

.shop-section-heading{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:20px;
  text-align:left;
}

.shop-section-heading.is-tight{
  margin-bottom:18px;
}

.shop-section-title{
  margin:8px 0 0;
  font-size:clamp(28px, 3vw, 42px);
  line-height:1.02;
  font-weight:900;
  letter-spacing:-.03em;
}

.shop-section-copy{
  max-width:760px;
  margin:12px 0 0;
  color:var(--shop-muted);
  font-size:16px;
  line-height:1.7;
}

.site-footer{
  margin-top:56px;
  padding:42px 0 18px;
  background:#1f1a17;
  color:#f8f3ed;
}

.site-footer__inner{
  width:min(1320px, calc(100% - 32px));
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0, 1.3fr) repeat(2, minmax(220px, .7fr));
  gap:28px;
  text-align:left;
}

.site-footer__brand h3{
  margin:12px 0 12px;
  font-size:34px;
  line-height:1.05;
  font-weight:900;
}

.site-footer__brand p{
  margin:0;
  max-width:560px;
  color:rgba(248,243,237,.72);
  line-height:1.7;
}

.site-footer__nav{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:20px;
}

.site-footer__title{
  display:block;
  margin-bottom:14px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(248,243,237,.68);
}

.site-footer__nav a{
  display:block;
  margin-bottom:10px;
  color:#f8f3ed;
  text-decoration:none;
}

.site-footer__social-links{
  display:flex;
  gap:12px;
}

.site-footer__social-links a{
  width:46px;
  height:46px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
}

.site-footer__social-links svg{
  width:18px;
  height:18px;
}

.site-footer__bottom{
  width:min(1320px, calc(100% - 32px));
  margin:26px auto 0;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(248,243,237,.62);
  font-size:13px;
  text-align:left;
}

@media (max-width: 1100px){
  .shop-hero{
    grid-template-columns:1fr;
  }

  .shop-benefits,
  .shop-highlights__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .site-footer__inner{
    grid-template-columns:1fr;
  }
}

@media (max-width: 991px){
  body{
    padding-top:88px;
  }

  .hdr__topline{
    display:none;
  }

  .hdr{
    top:0;
  }

  .hdr__inner{
    width:min(100% - 20px, 1320px);
    padding:10px 0;
  }

  .hdr__orders{
    display:none;
  }
}

@media (max-width: 767px){
  .shop-hero__content,
  .shop-hero__panel{
    padding:24px;
  }

  .shop-benefits,
  .shop-highlights__grid,
  .site-footer__nav{
    grid-template-columns:1fr;
  }

  .shop-section-heading{
    align-items:flex-start;
    flex-direction:column;
  }
}

/* ===== Nav Cleanup ===== */
body{
  padding-top:88px !important;
}

.hdr__topline{
  display:none !important;
}

.hdr{
  top:0 !important;
  height:auto !important;
  z-index:99999 !important;
}

.hdr__inner{
  width:min(1380px, calc(100% - 40px)) !important;
  padding:12px 0 !important;
}

.hdr__row{
  display:grid !important;
  grid-template-columns:max-content minmax(340px, 1fr) max-content;
  align-items:center !important;
  gap:28px !important;
  min-height:64px !important;
}

.hdr__left{
  display:flex !important;
  align-items:center !important;
  gap:14px !important;
  min-width:0;
}

.hdr__brand{
  flex-shrink:0;
  gap:12px !important;
}

.hdr__brand-mark{
  width:42px;
  height:42px;
  border-radius:14px;
  font-size:14px;
}

.hdr__brand-copy strong{
  display:block;
  font-size:14px !important;
  line-height:1.05;
  white-space:nowrap;
}

.hdr__brand-copy small{
  display:block;
  margin-top:2px;
  font-size:11px !important;
  line-height:1.1;
  white-space:nowrap;
}

.hdr__nav{
  min-width:0 !important;
  gap:26px !important;
  justify-content:flex-start !important;
}

.hdr__link,
.dd__btn{
  font-size:13px !important;
  font-weight:800 !important;
  white-space:nowrap;
}

.hdr__right{
  display:flex !important;
  align-items:center !important;
  gap:14px !important;
  margin-left:0 !important;
}

.search{
  width:520px !important;
  max-width:100% !important;
  min-width:320px !important;
}

.search__input{
  min-height:50px !important;
  padding:0 48px 0 46px !important;
  font-size:15px !important;
}

.search__icon{
  left:14px !important;
  font-size:20px;
}

.search__btn{
  right:14px !important;
  width:20px;
  height:20px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.cart__btn{
  width:46px !important;
  height:46px !important;
}

@media (max-width: 1260px){
  .hdr__row{
    grid-template-columns:max-content minmax(240px, 1fr) max-content;
    gap:18px !important;
  }

  .hdr__nav{
    gap:18px !important;
  }

  .search{
    width:420px !important;
    min-width:240px !important;
  }
}

@media (max-width: 991px){
  body{
    padding-top:74px !important;
  }

  .hdr__inner{
    width:min(100% - 20px, 1380px) !important;
    padding:10px 0 !important;
  }

  .hdr__row{
    display:flex !important;
    gap:12px !important;
    min-height:54px !important;
  }

  .hdr__brand-copy small{
    display:none;
  }

  .hdr__brand-copy strong{
    font-size:13px !important;
  }

  .hdr__nav,
  .search{
    display:none !important;
  }

  .hdr__right{
    margin-left:auto !important;
  }

  .hdr__hamb{
    display:flex !important;
  }
}
