/* KRAF - estilos del sitio publico (estilo bento moderno, paleta rosa & dorado) */

:root {
  --bg: #fbf7f3;
  --bg-soft: #f5ece3;
  --surface: #ffffff;
  --text: #2a2024;
  --text-dim: #6e6168;
  --text-mute: #ab9ea2;
  --border: #efe4da;
  --border-strong: #e4d4c7;
  --accent: #d96a8f;
  --accent-deep: #c1517a;
  --accent-2: #d9a441;
  --accent-soft: rgba(217, 106, 143, .09);
  --accent-glow: rgba(217, 106, 143, .26);
  --gold-soft: rgba(217, 164, 65, .12);
  --wa: #25a366;
  --radius: 20px;
  --radius-sm: 13px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
  --shadow-xs: 0 1px 2px rgba(74, 40, 50, .05);
  --shadow-sm: 0 4px 14px -4px rgba(74, 40, 50, .10), 0 1px 3px rgba(74, 40, 50, .05);
  --shadow-md: 0 12px 28px -10px rgba(74, 40, 50, .14), 0 3px 8px rgba(74, 40, 50, .06);
  --shadow-lg: 0 26px 50px -16px var(--accent-glow), 0 8px 20px -8px rgba(74, 40, 50, .12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body { min-height: 100vh; overflow-x: hidden; }

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; font-weight: 600; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Iconos SVG propios ---------- */
.ic { width: 1.05em; height: 1.05em; display: inline-block; vertical-align: -0.16em; flex-shrink: 0; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(18px, 4vw, 40px); }
.section { padding: 58px 0; position: relative; z-index: 1; }
.section--soft { background: linear-gradient(180deg, var(--bg-soft), transparent 90%); }

/* ---------- Mesh background ---------- */
.mesh {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 12% 8%, rgba(217, 106, 143, .12), transparent 60%),
    radial-gradient(ellipse 50% 42% at 88% 92%, rgba(217, 164, 65, .12), transparent 58%),
    radial-gradient(ellipse 40% 35% at 92% 12%, rgba(217, 106, 143, .07), transparent 60%);
}

/* ---------- Header (glassmorphism) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 243, .82);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1180px; margin: 0 auto; padding: 13px clamp(18px, 4vw, 40px);
  display: flex; align-items: center; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 13px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; display: grid; place-items: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.3rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .5) inset, 0 6px 16px -4px var(--accent-glow);
}
.brand-text {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  letter-spacing: .02em; color: var(--text);
}
.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.site-nav a {
  padding: 9px 15px; border-radius: 999px; font-weight: 500; font-size: .93rem;
  white-space: nowrap; color: var(--text-dim);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.site-nav a:hover { background: var(--accent-soft); color: var(--accent-deep); }
.site-nav a.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff;
  box-shadow: 0 6px 14px -5px var(--accent-glow);
}
.search-form {
  display: flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 9px 16px; color: var(--text-mute);
  box-shadow: var(--shadow-xs); transition: border-color .25s var(--ease);
}
.search-form:focus-within { border-color: var(--accent); }
.search-form input { border: 0; outline: 0; background: transparent; font: inherit; width: 168px; color: var(--text); }
.nav-toggle {
  display: none; margin-left: auto; background: var(--surface);
  border: 1px solid var(--border); border-radius: 12px;
  width: 44px; height: 44px; font-size: 1.1rem; color: var(--text); cursor: pointer;
}

/* ---------- Hero slider (portada) ---------- */
.hero-slider { position: relative; z-index: 1; height: clamp(450px, 66vh, 600px); overflow: hidden; }
.hs-viewport { position: absolute; inset: 0; }
.hs-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .9s var(--ease), visibility .9s var(--ease);
}
.hs-slide.is-active { opacity: 1; visibility: visible; }
.hs-slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(118deg, rgba(40, 30, 34, .86) 0%, rgba(40, 30, 34, .52) 46%, rgba(193, 81, 122, .46) 100%);
}
.hs-content {
  position: relative; z-index: 2; text-align: center; color: #fff;
  max-width: 690px; padding: 0 26px;
}
.hs-slide.is-active .hs-content { animation: hs-rise 1s var(--ease) both; }
@keyframes hs-rise { from { opacity: 0; transform: translateY(26px); } }
.hs-kicker {
  display: inline-block; letter-spacing: .15em; text-transform: uppercase;
  font-size: .73rem; font-weight: 600; color: #fff;
  background: rgba(255, 255, 255, .15); backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .24);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 16px;
}
.hs-title { font-size: clamp(2.1rem, 5.4vw, 3.6rem); color: #fff; }
.hs-text { margin: 14px auto 24px; font-size: 1.06rem; color: rgba(255, 255, 255, .92); max-width: 540px; }
.hs-search {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .96); border-radius: 999px;
  padding: 7px 7px 7px 20px; max-width: 470px; margin: 0 auto 20px; color: var(--text-mute);
  box-shadow: 0 16px 34px -14px rgba(0, 0, 0, .45);
}
.hs-search input { border: 0; outline: 0; background: transparent; font: inherit; flex: 1; color: var(--text); }
.hs-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, .9); border: 0; color: var(--text);
  display: grid; place-items: center; font-size: .9rem;
  box-shadow: var(--shadow-md); transition: background .25s var(--ease), transform .25s var(--ease);
}
.hs-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.09); }
.hs-arrow--prev { left: 18px; }
.hs-arrow--next { right: 18px; }
.hs-dots {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 5;
  display: flex; gap: 9px;
}
.hs-dot {
  width: 9px; height: 9px; border-radius: 999px; cursor: pointer; padding: 0;
  background: rgba(255, 255, 255, .45); border: 0; transition: all .35s var(--ease);
}
.hs-dot.is-active { width: 30px; background: #fff; }

.search-bar {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 8px 8px 8px 20px; box-shadow: var(--shadow-md);
  max-width: 640px; margin: 0 auto 24px; color: var(--text-mute);
}
.search-bar:focus-within { border-color: var(--accent); }
.search-bar input { border: 0; outline: 0; background: transparent; font: inherit; flex: 1; color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 21px; border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  font: inherit; font-weight: 600; font-size: .92rem;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff;
  box-shadow: 0 10px 22px -8px var(--accent-glow);
}
.btn--primary:hover { box-shadow: 0 14px 28px -8px var(--accent-glow); }
.btn--ghost { background: var(--surface); color: var(--text); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-deep); }
.btn--whatsapp { background: var(--wa); color: #fff; box-shadow: 0 10px 22px -8px rgba(37, 163, 102, .4); }
.btn--whatsapp:hover { background: #1d8b53; }
.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Section heads ---------- */
.section-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 28px; flex-wrap: wrap;
}
.section-title { font-size: 1.95rem; color: var(--text); }
.section-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent-deep); font-weight: 600; font-size: .9rem;
}
.section-link::after { content: "\2192"; transition: transform .25s var(--ease); }
.section-link:hover::after { transform: translateX(4px); }

/* ---------- Access cards (home, bento) ---------- */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.access-card {
  position: relative; overflow: hidden; padding: 36px 32px;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.access-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: linear-gradient(180deg, var(--accent), transparent);
  transition: width .4s var(--ease);
}
.access-card::after {
  content: ""; position: absolute; right: -50px; top: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  pointer-events: none;
}
.access-card--variedades::after { background: radial-gradient(circle, var(--gold-soft), transparent 70%); }
.access-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.access-card:hover::before { width: 4px; }
.access-card__icon {
  width: 62px; height: 62px; border-radius: 17px; display: grid; place-items: center;
  font-size: 1.55rem; color: #fff; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .4) inset, 0 8px 18px -6px var(--accent-glow);
  transition: transform .4s var(--ease-bounce);
}
.access-card--variedades .access-card__icon {
  background: linear-gradient(135deg, var(--accent-2), #c98a2e);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .4) inset, 0 8px 18px -6px var(--gold-soft);
}
.access-card:hover .access-card__icon { transform: scale(1.08) rotate(-4deg); }
.access-card h2 { font-size: 1.75rem; margin-bottom: 8px; color: var(--text); }
.access-card p { color: var(--text-dim); margin-bottom: 18px; }
.access-card__link { font-weight: 600; color: var(--accent-deep); display: inline-flex; align-items: center; gap: 7px; }
.access-card__link .ic { transition: transform .3s var(--ease); }
.access-card:hover .access-card__link .ic { transform: translateX(5px); }

/* ---------- Chip grid ---------- */
.chip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 13px; }
.chip-card {
  display: flex; align-items: center; gap: 12px; padding: 15px 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-weight: 500; box-shadow: var(--shadow-xs);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.chip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.chip-card .ic {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; padding: 8px;
  background: var(--accent-soft); color: var(--accent-deep);
}

/* ---------- Category grid ---------- */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(218px, 1fr)); gap: 18px; }
.category-card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 24px; text-align: center; box-shadow: var(--shadow-xs);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.category-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: linear-gradient(180deg, var(--accent), transparent);
  transition: width .4s var(--ease);
}
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.category-card:hover::before { width: 4px; }
.category-card__icon {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 18px;
  display: grid; place-items: center; font-size: 1.5rem; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 18px -7px var(--accent-glow);
  transition: transform .4s var(--ease-bounce);
}
.category-card:hover .category-card__icon { transform: scale(1.08) rotate(-4deg); }
.category-card h3 { font-size: 1.22rem; color: var(--text); margin-bottom: 9px; }
.category-card__link { font-size: .85rem; font-weight: 600; color: var(--accent-deep); }

/* ---------- Product grid + card ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(238px, 1fr)); gap: 20px; }
.product-card {
  position: relative;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-xs);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card__media {
  position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-soft), #fff);
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__body { padding: 16px 17px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card__cat {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .09em;
  color: var(--accent-deep); font-weight: 600;
}
.product-card__name { font-family: 'Jost', sans-serif; font-size: 1.04rem; font-weight: 600; }
.product-card__name a:hover { color: var(--accent-deep); }
.product-card__price { display: flex; align-items: baseline; gap: 8px; }
.product-card__price strong { font-size: 1.22rem; color: var(--text); }
.price-old { color: var(--text-mute); text-decoration: line-through; font-size: .88rem; }
.product-card__stock { font-size: .81rem; color: var(--text-mute); }
.product-card__stock.is-out { color: var(--accent-deep); font-weight: 600; }
.product-card__actions { display: flex; gap: 8px; margin-top: auto; padding-top: 12px; }
.product-card__actions .btn { flex: 1; padding: 9px 10px; font-size: .82rem; }

/* ---------- Icon fallback (productos sin foto) ---------- */
.img-fallback {
  width: 100%; height: 100%; display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(217, 106, 143, .14), transparent 65%),
    linear-gradient(135deg, var(--bg-soft), #fff);
  color: var(--accent); font-size: 3.4rem;
}
.img-fallback .ic { opacity: .55; }
.img-fallback--lg { border-radius: var(--radius); font-size: 6rem; }

/* ---------- Badges ---------- */
.badge {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 12px; border-radius: 999px; font-size: .71rem; font-weight: 600;
  background: rgba(255, 255, 255, .92); color: var(--text);
  backdrop-filter: blur(6px); box-shadow: var(--shadow-sm);
}
.badge--featured { left: auto; right: 12px; background: linear-gradient(135deg, var(--accent-2), #c98a2e); color: #fff; }
.badge--nuevo { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; }
.badge--agotado { background: #b9534b; color: #fff; }
.badge--disponible { background: var(--wa); color: #fff; }
.badge--tag { position: static; background: var(--accent-soft); color: var(--accent-deep); }

/* ---------- Page hero ---------- */
.page-hero { position: relative; z-index: 1; padding: 52px 0; text-align: center; }
.page-hero__icon {
  width: 68px; height: 68px; margin: 0 auto 16px; border-radius: 19px;
  display: grid; place-items: center; font-size: 1.6rem; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 30px -12px var(--accent-glow);
}
.page-hero--variedades .page-hero__icon { background: linear-gradient(135deg, var(--accent-2), #c98a2e); }
.page-hero h1 { font-size: clamp(1.9rem, 4.4vw, 2.8rem); color: var(--text); }
.page-hero p { color: var(--text-dim); margin-top: 8px; }
.breadcrumb {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  font-size: .84rem; color: var(--text-mute); margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--accent-deep); }
.breadcrumb .is-current { color: var(--text); font-weight: 600; }

/* ---------- Category layout + filters ---------- */
.category-layout { display: grid; grid-template-columns: 248px 1fr; gap: 30px; align-items: start; }
.filters {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; position: sticky; top: 92px; box-shadow: var(--shadow-xs);
}
.filter-block { margin-bottom: 22px; }
.filter-block:last-child { margin-bottom: 0; }
.filter-block h3 {
  font-family: 'Jost', sans-serif; font-size: .76rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-mute); margin-bottom: 11px;
}
.filter-pill {
  display: inline-block; padding: 7px 14px; margin: 0 5px 7px 0;
  border-radius: 999px; border: 1px solid var(--border); font-size: .84rem;
  background: var(--bg); transition: all .25s var(--ease);
}
.filter-pill:hover { border-color: var(--accent); color: var(--accent-deep); }
.filter-pill.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff; border-color: transparent;
}

/* ---------- Search hint ---------- */
.search-hint {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  background: var(--accent-soft); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 13px 18px; margin-bottom: 24px;
  color: var(--text);
}
.search-hint .ic { color: var(--accent); }
.search-hint a { font-weight: 700; color: var(--accent-deep); }

/* ---------- Product detail ---------- */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; margin-top: 8px; }
.product-gallery__main {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  aspect-ratio: 1 / 1; background: linear-gradient(135deg, var(--bg-soft), #fff);
  box-shadow: var(--shadow-sm);
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.thumb {
  width: 74px; height: 74px; border-radius: 13px; overflow: hidden; padding: 0;
  border: 2px solid var(--border); cursor: pointer; background: none;
  transition: border-color .25s var(--ease);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.is-active { border-color: var(--accent); }
.product-info__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 15px; }
.product-info__badges .badge { position: static; }
.product-info__name { font-size: 2.1rem; color: var(--text); }
.product-info__price { display: flex; align-items: baseline; gap: 12px; margin: 14px 0; }
.product-info__price strong { font-size: 2rem; color: var(--accent-deep); }
.product-meta {
  list-style: none; display: grid; gap: 1px; background: var(--border);
  border-radius: var(--radius-sm); overflow: hidden; margin: 20px 0;
}
.product-meta li { display: flex; justify-content: space-between; padding: 12px 16px; background: var(--surface); }
.product-meta span { color: var(--text-mute); }
.product-meta strong { color: var(--text); }
.product-info__desc { margin: 20px 0; }
.product-info__desc h2 { font-size: 1.25rem; margin-bottom: 7px; color: var(--text); }
.product-info__desc p { color: var(--text-dim); }
.product-info__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(238px, 1fr)); gap: 18px; }
.contact-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-xs);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.contact-card__icon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  font-size: 1.3rem; color: #fff; margin-bottom: 13px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.contact-card__icon--wa { background: var(--wa); }
.contact-card h3 { color: var(--text); margin-bottom: 4px; }
.contact-card p { color: var(--text-dim); font-size: .9rem; }
.contact-card__value { display: block; margin-top: 8px; font-weight: 600; color: var(--accent-deep); }
.contact-cta {
  text-align: center; margin-top: 38px; padding: 44px 24px;
  background: linear-gradient(135deg, var(--accent-soft), var(--gold-soft));
  border: 1px solid var(--border); border-radius: var(--radius);
}
.contact-cta h2 { color: var(--text); }
.contact-cta p { color: var(--text-dim); margin: 8px 0 20px; }

/* ---------- Empty state ---------- */
.empty-state { text-align: center; padding: 64px 20px; color: var(--text-dim); }
.empty-state .ic { font-size: 2.8rem; color: var(--accent); opacity: .5; margin-bottom: 16px; }
.empty-state h2 { color: var(--text); margin-bottom: 8px; }
.empty-state .btn { margin-top: 18px; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative; z-index: 1; margin-top: 30px;
  background: linear-gradient(160deg, #2a2024, #3a2c30);
  color: #e8dcd9;
}
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 50px clamp(18px, 4vw, 40px) 32px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px;
}
.footer-col h3 { font-size: 1.4rem; margin-bottom: 10px; color: #fff; }
.footer-col h4 {
  font-family: 'Jost', sans-serif; font-size: .78rem; text-transform: uppercase;
  letter-spacing: .13em; margin-bottom: 13px; color: var(--accent-2);
}
.footer-col p { color: #b9aaa6; font-size: .92rem; }
.footer-col a, .footer-col span { display: block; color: #d6c7c3; padding: 4px 0; font-size: .92rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 17px clamp(18px, 4vw, 40px);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  max-width: 1180px; margin: 0 auto; font-size: .82rem; color: #9b8c89;
}
.footer-bottom a:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .access-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; gap: 26px; }
  .category-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; display: none;
    flex-direction: column; background: var(--surface);
    border-bottom: 1px solid var(--border); padding: 10px; gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .site-header.is-open .site-nav { display: flex; }
  .search-form { display: none; }
  .site-header.is-open .search-form { display: flex; width: 100%; }
  .site-header.is-open .header-inner { flex-wrap: wrap; }
  .site-nav a { padding: 12px 14px; }
}
@media (max-width: 760px) {
  .hero-slider { height: clamp(420px, 78vh, 520px); }
  .hs-arrow { width: 40px; height: 40px; }
  .hs-arrow--prev { left: 10px; }
  .hs-arrow--next { right: 10px; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 13px; }
  .product-card__actions { flex-direction: column; }
  .section { padding: 40px 0; }
  .hs-search { flex-wrap: wrap; border-radius: 18px; }
  .hs-search .btn { width: 100%; }
}
