/* ==========================================================================
   Royal Sports Rajkot — design system
   One stylesheet, no build step. Edit in cPanel File Manager if you need to.
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  --navy-900: #071E42;
  --navy-800: #0B2B5B;
  --navy-700: #123A75;
  --navy-600: #1B4FA0;
  --navy-100: #E8EEF8;
  --navy-50:  #F4F7FC;

  /* Brand red, taken from the RS shield. Nudged a shade darker than the logo
     artwork's raw red so small text on white clears WCAG AA (4.55:1). */
  --accent:      #D93B2B;
  --accent-dark: #B22C1E;
  --accent-soft: #FDEDEB;

  --green:      #12874B;
  --green-soft: #E6F5ED;

  --ink:      #0E1726;
  --ink-soft: #475569;
  --ink-mute: #7C8AA0;
  --line:     #E2E8F1;
  --surface:  #FFFFFF;
  --page:     #F6F8FC;

  --wrap: 1200px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-sm: 9px;

  --shadow-sm: 0 1px 2px rgba(11, 43, 91, .06), 0 2px 6px rgba(11, 43, 91, .05);
  --shadow-md: 0 4px 12px rgba(11, 43, 91, .08), 0 12px 28px rgba(11, 43, 91, .07);
  --shadow-lg: 0 10px 24px rgba(11, 43, 91, .10), 0 28px 60px rgba(11, 43, 91, .12);

  --font: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* The off-canvas mobile nav sits just past the right edge via a transform.
     Being position:fixed it escapes any clip set on <body>, so without this it
     widens the scrollable area and phones can pan sideways on every page.
     `clip` on the root trims it without creating a scroll container, so the
     sticky header still sticks (which `overflow-x: hidden` would break). */
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5.2vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 3.6vw, 2.4rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p  { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy-800); color: #fff; padding: 12px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- Layout --------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(48px, 7vw, 84px); }
.section--tight { padding-block: clamp(32px, 5vw, 56px); }
.section--alt { background: var(--surface); }

.section-head { margin-bottom: clamp(24px, 4vw, 40px); }
.section-head--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.section-head p { color: var(--ink-soft); max-width: 60ch; margin: 0; }
.section-head h2 { margin-bottom: .25em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px;
  font-weight: 700; font-size: .95rem; line-height: 1;
  border: 2px solid transparent; white-space: nowrap;
  transition: transform .16s var(--ease), background-color .16s var(--ease),
              box-shadow .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary  { background: var(--accent); color: #fff; box-shadow: 0 6px 16px rgba(217, 59, 43, .32); }
.btn--primary:hover { background: var(--accent-dark); box-shadow: 0 10px 22px rgba(217, 59, 43, .38); }
.btn--navy     { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-700); }
.btn--whatsapp { background: #25D366; color: #05301A; box-shadow: 0 6px 16px rgba(37, 211, 102, .3); }
.btn--whatsapp:hover { background: #1FBE5A; color: #04250f; }
.btn--ghost    { border-color: var(--line); background: var(--surface); color: var(--navy-800); }
.btn--ghost:hover { border-color: var(--navy-600); color: var(--navy-600); }
.btn--on-dark  { border-color: rgba(255,255,255,.32); color: #fff; background: rgba(255,255,255,.06); }
.btn--on-dark:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.6); }
.btn--block    { display: flex; width: 100%; }
.btn--sm       { padding: 9px 16px; font-size: .85rem; }
.btn[disabled] { opacity: .5; pointer-events: none; }

/* --- Announcement bar ----------------------------------------------------- */
.topbar {
  background: var(--navy-900); color: #C9D8EE;
  font-size: .82rem; font-weight: 500;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 40px; flex-wrap: wrap;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--accent); }
.topbar__left { display: flex; align-items: center; gap: 8px; }
.topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__dot { width: 7px; height: 7px; border-radius: 50%; background: #2BD07C; flex: none; }
.topbar__dot.is-shut { background: var(--accent); }
@media (max-width: 640px) {
  .topbar__right { display: none; }
  .topbar .wrap { justify-content: center; }
}

/* --- Header --------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header .wrap {
  display: flex; align-items: center; gap: 20px; min-height: 72px;
}
.header__logo { flex: none; }
.header__logo img { height: 42px; width: auto; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link {
  display: block; padding: 10px 14px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .94rem; color: var(--ink-soft);
  transition: color .15s var(--ease), background-color .15s var(--ease);
}
.nav__link:hover { color: var(--navy-600); background: var(--navy-50); }
.nav__link[aria-current="page"] { color: var(--navy-800); background: var(--navy-100); }

.header__actions { display: flex; align-items: center; gap: 10px; flex: none; }

.icon-btn {
  position: relative; display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  color: var(--navy-800); background: var(--navy-50);
  transition: background-color .15s var(--ease), color .15s var(--ease);
}
.icon-btn:hover { background: var(--navy-100); }
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn__count {
  position: absolute; top: -3px; right: -3px; min-width: 20px; height: 20px;
  padding: 0 5px; border-radius: 999px; background: var(--accent); color: #fff;
  font-size: .7rem; font-weight: 800; display: grid; place-items: center;
  border: 2px solid var(--surface);
}
.icon-btn__count[hidden] { display: none; }

/* On the narrowest phones the wordmark plus three round buttons no longer fit
   across the header, so both step down a size. */
@media (max-width: 430px) {
  .header .wrap { gap: 12px; min-height: 64px; }
  .header__logo img { height: 34px; }
  .header__actions { gap: 6px; }
  .icon-btn { width: 38px; height: 38px; }
  .icon-btn svg { width: 18px; height: 18px; }
  .icon-btn__count { min-width: 18px; height: 18px; font-size: .65rem; }
}

.nav-toggle { display: none; }
@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 86vw);
    background: var(--surface); box-shadow: var(--shadow-lg);
    padding: 88px 20px 32px; transform: translateX(100%);
    transition: transform .28s var(--ease); overflow-y: auto; z-index: 95;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { padding: 14px 16px; font-size: 1.05rem; }
  .nav__cta { margin-top: 16px; display: grid; gap: 10px; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(7, 30, 66, .45);
    opacity: 0; pointer-events: none; transition: opacity .25s var(--ease); z-index: 94;
  }
  .nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
}
@media (min-width: 901px) { .nav__cta { display: none; } .nav-backdrop { display: none; } }

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1000px 520px at 82% 8%, rgba(217, 59, 43, .24), transparent 62%),
    radial-gradient(760px 480px at 8% 96%, rgba(27, 79, 160, .55), transparent 58%),
    linear-gradient(150deg, var(--navy-900), var(--navy-800) 58%, var(--navy-700));
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 70% 30%, #000, transparent 72%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero__grid {
  display: grid; gap: clamp(32px, 5vw, 56px); align-items: center;
  padding-block: clamp(52px, 8vw, 96px);
}
@media (min-width: 940px) { .hero__grid { grid-template-columns: 1.05fr .95fr; } }

.hero h1 { color: #fff; margin-bottom: .4em; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__lead { font-size: clamp(1.02rem, 1.7vw, 1.18rem); color: #C7D6EC; max-width: 54ch; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px;
  padding: 7px 15px 7px 9px; border-radius: 999px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16);
  font-size: .8rem; font-weight: 600; letter-spacing: .02em; color: #E4EDFA;
}
.hero__eyebrow strong { color: var(--accent); font-weight: 800; }
.hero__pin {
  display: grid; place-items: center; width: 24px; height: 24px;
  border-radius: 50%; background: var(--accent); color: #fff; flex: none;
}
.hero__pin svg { width: 13px; height: 13px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14);
}
.hero__stat b { display: block; font-size: clamp(1.3rem, 2.6vw, 1.75rem); font-weight: 800; color: #fff; }
.hero__stat span { font-size: .82rem; color: #A8BEDD; line-height: 1.35; display: block; }

/* Hero visual — stacked category cards */
.hero__visual { position: relative; }
.hero__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero__card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.hero__card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.4); }
.hero__card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.hero__card:nth-child(1) { transform: translateY(-16px); }
.hero__card:nth-child(1):hover { transform: translateY(-24px); }
.hero__card:nth-child(4) { transform: translateY(16px); }
.hero__card:nth-child(4):hover { transform: translateY(8px); }
.hero__card b {
  position: absolute; left: 14px; bottom: 12px; z-index: 1;
  font-size: .92rem; font-weight: 700; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
@media (max-width: 939px) {
  .hero__card:nth-child(1), .hero__card:nth-child(4) { transform: none; }
  .hero__visual { max-width: 460px; }
}
@media (max-width: 460px) { .hero__cards { grid-template-columns: 1fr 1fr; gap: 10px; } }

/* --- Trust strip ---------------------------------------------------------- */
.trust { background: var(--surface); border-bottom: 1px solid var(--line); }
.trust__grid {
  display: grid; gap: 4px; padding-block: 8px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.trust__item { display: flex; align-items: center; gap: 13px; padding: 18px 16px; }
.trust__icon {
  display: grid; place-items: center; width: 42px; height: 42px; flex: none;
  border-radius: 12px; background: var(--accent-soft); color: var(--accent);
}
.trust__icon svg { width: 21px; height: 21px; }
.trust__item b { display: block; font-size: .93rem; font-weight: 700; }
.trust__item span { font-size: .82rem; color: var(--ink-soft); line-height: 1.4; }

/* --- Category grid -------------------------------------------------------- */
.cat-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.cat-card {
  position: relative; display: flex; flex-direction: column;
  border-radius: var(--radius-lg); overflow: hidden; background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cat-card__media { position: relative; aspect-ratio: 9 / 7; overflow: hidden; background: var(--navy-100); }
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.cat-card:hover .cat-card__media img { transform: scale(1.05); }
.cat-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.cat-card__body h3 { margin-bottom: 4px; font-size: 1.15rem; }
.cat-card__body p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 14px; flex: 1; }
.cat-card__more {
  font-size: .87rem; font-weight: 700; color: var(--navy-600);
  display: inline-flex; align-items: center; gap: 6px;
}
.cat-card__more svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.cat-card:hover .cat-card__more svg { transform: translateX(4px); }
.cat-card__count {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  padding: 5px 11px; border-radius: 999px; font-size: .72rem; font-weight: 700;
  background: rgba(7, 30, 66, .72); color: #fff; backdrop-filter: blur(6px);
}

/* --- Product card --------------------------------------------------------- */
.product-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
@media (max-width: 520px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.pcard {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border-radius: var(--radius);
  border: 1px solid var(--line); overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.pcard__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--navy-50); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.06); }

.pcard__badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  padding: 5px 10px; border-radius: 7px; font-size: .68rem; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase;
  background: var(--navy-800); color: #fff;
}
.pcard__badge--sale { background: var(--accent); }
.pcard__off {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  padding: 5px 9px; border-radius: 7px; font-size: .7rem; font-weight: 800;
  background: var(--green-soft); color: var(--green);
}
.pcard__oos {
  position: absolute; inset: 0; z-index: 3; display: grid; place-items: center;
  background: rgba(255,255,255,.72); backdrop-filter: blur(1px);
  font-weight: 800; font-size: .8rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-soft);
}

.pcard__body { padding: 14px 14px 16px; display: flex; flex-direction: column; flex: 1; }
.pcard__brand {
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 5px;
}
.pcard__name {
  font-size: .95rem; font-weight: 600; line-height: 1.35; margin: 0 0 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pcard__name a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.pcard__price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.pcard__price b { font-size: 1.08rem; font-weight: 800; color: var(--navy-800); }
.pcard__price s { font-size: .85rem; color: var(--ink-mute); }
.pcard__actions { margin-top: 12px; position: relative; z-index: 2; display: grid; gap: 8px; }
@media (max-width: 520px) {
  .pcard__body { padding: 12px; }
  .pcard__name { font-size: .88rem; }
}

/* --- Shop layout ---------------------------------------------------------- */
.shop { display: grid; gap: 28px; align-items: start; }
@media (min-width: 940px) { .shop { grid-template-columns: 260px 1fr; gap: 36px; } }

.filters {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
}
@media (min-width: 940px) { .filters { position: sticky; top: 92px; } }
.filters__group + .filters__group { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.filters__group h4 {
  font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 12px;
}
.filters__list { display: grid; gap: 2px; }
.check {
  display: flex; align-items: center; gap: 10px; padding: 7px 8px;
  border-radius: var(--radius-sm); font-size: .9rem; cursor: pointer;
  transition: background-color .14s var(--ease);
}
.check:hover { background: var(--navy-50); }
.check input { accent-color: var(--accent); width: 17px; height: 17px; flex: none; cursor: pointer; }
.check span { flex: 1; }
.check small { color: var(--ink-mute); font-size: .78rem; }

.shop__bar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.shop__count { font-size: .9rem; color: var(--ink-soft); margin-right: auto; }
.shop__count b { color: var(--ink); }

.field {
  display: flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 0 16px; height: 44px;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field:focus-within { border-color: var(--navy-600); box-shadow: 0 0 0 3px rgba(27, 79, 160, .12); }
.field svg { width: 17px; height: 17px; color: var(--ink-mute); flex: none; }
.field input { border: 0; outline: 0; background: none; width: 100%; font-size: .93rem; }
.field--search { flex: 1; min-width: 200px; max-width: 380px; }

select.select {
  height: 44px; padding: 0 38px 0 16px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface); font-size: .9rem;
  font-weight: 600; cursor: pointer; 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='%237C8AA0' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 15px;
}
select.select:focus { outline: 0; border-color: var(--navy-600); box-shadow: 0 0 0 3px rgba(27, 79, 160, .12); }

.filters-toggle { display: none; }
@media (max-width: 939px) {
  .filters-toggle { display: inline-flex; }
  .filters {
    position: fixed; inset: auto 0 0 0; z-index: 96; max-height: 82vh; overflow-y: auto;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0; border: 0;
    box-shadow: var(--shadow-lg); transform: translateY(101%);
    transition: transform .3s var(--ease); padding-bottom: 90px;
  }
  .filters.is-open { transform: translateY(0); }
  .filters__done {
    position: absolute; left: 20px; right: 20px; bottom: 20px;
  }
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 8px 7px 14px; border-radius: 999px;
  background: var(--navy-100); color: var(--navy-800);
  font-size: .82rem; font-weight: 600;
}
.chip button {
  display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%;
  background: rgba(11, 43, 91, .14); color: var(--navy-800); font-size: .9rem; line-height: 1;
}
.chip button:hover { background: var(--accent); color: #fff; }
.chip--clear { background: none; border: 1px dashed var(--line); color: var(--ink-soft); padding: 7px 14px; }
.chip--clear:hover { border-color: var(--accent); color: var(--accent); }

.empty {
  text-align: center; padding: 64px 20px; background: var(--surface);
  border: 1px dashed var(--line); border-radius: var(--radius-lg);
}
.empty svg { width: 48px; height: 48px; color: var(--ink-mute); margin: 0 auto 16px; }
.empty h3 { margin-bottom: 6px; }
.empty p { color: var(--ink-soft); margin-bottom: 20px; }

/* --- Product detail ------------------------------------------------------- */
.pdp { display: grid; gap: clamp(28px, 5vw, 52px); align-items: start; }
@media (min-width: 900px) { .pdp { grid-template-columns: 1fr 1fr; } }

.pdp__media {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
}
.pdp__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
@media (min-width: 900px) { .pdp__media { position: sticky; top: 92px; } }

.pdp__brand {
  font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.pdp h1 { font-size: clamp(1.5rem, 3.4vw, 2.15rem); margin-bottom: 14px; }

.pdp__price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.pdp__price b { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800; color: var(--navy-800); }
.pdp__price s { font-size: 1.05rem; color: var(--ink-mute); }
.pdp__price .save {
  padding: 4px 10px; border-radius: 7px; font-size: .8rem; font-weight: 800;
  background: var(--green-soft); color: var(--green);
}
.pdp__tax { font-size: .82rem; color: var(--ink-mute); margin-bottom: 20px; }

.pdp__stock {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
  padding: 7px 14px; border-radius: 999px; font-size: .85rem; font-weight: 700;
  background: var(--green-soft); color: var(--green);
}
.pdp__stock.is-out { background: #FDECEC; color: #B42318; }
.pdp__stock::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

.pdp__opts { margin-bottom: 22px; }
.pdp__opts h4 { font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px; }
.sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.sizes button {
  padding: 9px 16px; border-radius: 9px; border: 1.5px solid var(--line);
  background: var(--surface); font-size: .88rem; font-weight: 600;
  transition: all .15s var(--ease);
}
.sizes button:hover { border-color: var(--navy-600); }
.sizes button[aria-pressed="true"] { border-color: var(--navy-800); background: var(--navy-800); color: #fff; }

.pdp__cta { display: grid; gap: 10px; margin-bottom: 26px; }
@media (min-width: 520px) { .pdp__cta { grid-template-columns: 1fr 1fr; } }
.pdp__cta .btn--whatsapp { grid-column: 1 / -1; }

.pdp__note {
  display: flex; gap: 12px; padding: 16px; border-radius: var(--radius);
  background: var(--accent-soft); font-size: .88rem; color: #7A3A10; margin-bottom: 26px;
}
.pdp__note svg { width: 19px; height: 19px; flex: none; color: var(--accent); margin-top: 2px; }
.pdp__note a { font-weight: 700; text-decoration: underline; }

.specs { border-top: 1px solid var(--line); }
.specs__row {
  display: grid; grid-template-columns: 40% 1fr; gap: 12px;
  padding: 13px 2px; border-bottom: 1px solid var(--line); font-size: .91rem;
}
.specs__row dt { color: var(--ink-soft); }
.specs__row dd { margin: 0; font-weight: 600; }

.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 2px; font-weight: 700; cursor: pointer; list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+"; font-size: 1.3rem; font-weight: 400; color: var(--ink-mute); line-height: 1;
}
.accordion details[open] summary::after { content: "−"; }
.accordion__body { padding: 0 2px 18px; color: var(--ink-soft); font-size: .93rem; }
.accordion__body p:last-child { margin-bottom: 0; }

/* --- Cart drawer ---------------------------------------------------------- */
.drawer {
  position: fixed; inset: 0 0 0 auto; z-index: 110;
  width: min(420px, 100vw); background: var(--surface);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s var(--ease);
  box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; gap: 12px;
  padding: 20px; border-bottom: 1px solid var(--line);
}
.drawer__head h2 { margin: 0; font-size: 1.15rem; }
.drawer__head .icon-btn { margin-left: auto; }
.drawer__body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.drawer__foot { padding: 20px; border-top: 1px solid var(--line); background: var(--navy-50); }

.drawer-backdrop {
  position: fixed; inset: 0; z-index: 105; background: rgba(7, 30, 66, .5);
  opacity: 0; pointer-events: none; transition: opacity .28s var(--ease);
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.citem { display: flex; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.citem:last-child { border-bottom: 0; }
.citem img {
  width: 72px; height: 72px; border-radius: 10px; object-fit: cover;
  background: var(--navy-50); flex: none;
}
.citem__body { flex: 1; min-width: 0; }
.citem__name { font-size: .9rem; font-weight: 600; line-height: 1.3; margin-bottom: 3px; }
.citem__meta { font-size: .78rem; color: var(--ink-mute); margin-bottom: 8px; }
.citem__foot { display: flex; align-items: center; gap: 12px; }
.citem__price { font-weight: 800; font-size: .95rem; margin-left: auto; color: var(--navy-800); }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; }
.qty button {
  width: 30px; height: 30px; display: grid; place-items: center;
  font-size: 1.1rem; color: var(--navy-800); border-radius: 50%;
}
.qty button:hover { background: var(--navy-50); }
.qty span { min-width: 26px; text-align: center; font-weight: 700; font-size: .88rem; }

.drawer__total {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 6px; font-size: 1.05rem;
}
.drawer__total b { font-size: 1.35rem; font-weight: 800; color: var(--navy-800); }
.drawer__hint { font-size: .8rem; color: var(--ink-soft); margin-bottom: 14px; }

/* --- Visit / map ---------------------------------------------------------- */
.visit { display: grid; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
@media (min-width: 880px) { .visit { grid-template-columns: 1fr 1.1fr; } }
.visit__panel { background: var(--navy-800); color: #fff; padding: clamp(28px, 4vw, 46px); }
.visit__panel h2 { color: #fff; }
.visit__panel > p { color: #B9CCE8; }
.visit__map { min-height: 340px; background: var(--navy-100); }
.visit__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

.infolist { display: grid; gap: 18px; margin: 26px 0; }
.infolist__item { display: flex; gap: 14px; }
.infolist__icon {
  display: grid; place-items: center; width: 40px; height: 40px; flex: none;
  border-radius: 11px; background: rgba(255,255,255,.1); color: var(--accent);
}
.infolist__icon svg { width: 19px; height: 19px; }
.infolist__item b { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #8EA9CE; margin-bottom: 3px; }
.infolist__item span, .infolist__item a { font-size: .96rem; color: #fff; line-height: 1.5; }
.infolist__item a:hover { color: var(--accent); }
.visit__cta { display: flex; flex-wrap: wrap; gap: 10px; }

/* --- Instagram ------------------------------------------------------------ */
.ig-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.ig-tile {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius);
  overflow: hidden; background: var(--navy-100);
  display: grid; place-items: center; text-align: center; padding: 14px;
  transition: transform .22s var(--ease);
}
.ig-tile:hover { transform: translateY(-4px); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.ig-tile__overlay {
  position: relative; z-index: 1; display: grid; place-items: center; gap: 6px;
  width: 100%; height: 100%; border-radius: inherit;
  background: linear-gradient(160deg, rgba(217,59,43,.9), rgba(157,32,140,.88));
  color: #fff; font-size: .82rem; font-weight: 700; opacity: 0; transition: opacity .22s var(--ease);
}
.ig-tile:hover .ig-tile__overlay { opacity: 1; }
.ig-tile__overlay svg { width: 26px; height: 26px; }

/* --- Testimonials --------------------------------------------------------- */
.quote-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.quote {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
}
.quote__stars { display: flex; gap: 2px; color: #F5A524; margin-bottom: 12px; }
.quote__stars svg { width: 16px; height: 16px; }
.quote p { font-size: .95rem; color: var(--ink-soft); }
.quote footer { display: flex; align-items: center; gap: 11px; margin-top: 16px; }
.quote__avatar {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy-100); color: var(--navy-800); font-weight: 800; font-size: .9rem; flex: none;
}
.quote__who b { display: block; font-size: .9rem; }
.quote__who span { font-size: .78rem; color: var(--ink-mute); }

/* --- CTA band ------------------------------------------------------------- */
.cta-band {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background:
    radial-gradient(680px 320px at 88% 10%, rgba(217,59,43,.32), transparent 60%),
    linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: #fff; padding: clamp(32px, 5vw, 56px); text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #C4D5EC; max-width: 56ch; margin-inline: auto; }
.cta-band__row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }

/* --- Forms ---------------------------------------------------------------- */
.form { display: grid; gap: 16px; }
.form__row { display: grid; gap: 16px; }
@media (min-width: 620px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 12px 15px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--surface); font-size: .95rem;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
  /* A <select> reports the width of its longest option as its minimum, which on
     a narrow phone pushes the whole grid column past the screen edge. */
  min-width: 0; max-width: 100%;
}
.form > *, .form__row > * { min-width: 0; }
.form textarea { min-height: 120px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 0; border-color: var(--navy-600); box-shadow: 0 0 0 3px rgba(27, 79, 160, .12);
}
.form__hint { font-size: .82rem; color: var(--ink-mute); }

/* --- Breadcrumb ----------------------------------------------------------- */
.crumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 7px;
  font-size: .84rem; color: var(--ink-mute); padding-block: 18px;
}
.crumb a:hover { color: var(--navy-600); }
.crumb span[aria-current] { color: var(--ink); font-weight: 600; }

.page-head { background: var(--surface); border-bottom: 1px solid var(--line); }
.page-head__inner { padding-block: clamp(24px, 4vw, 44px) clamp(24px, 4vw, 40px); }
.page-head h1 { margin-bottom: .3em; }
.page-head p { color: var(--ink-soft); max-width: 64ch; margin: 0; }

/* --- Footer --------------------------------------------------------------- */
.footer { background: var(--navy-900); color: #A8BEDD; padding-block: clamp(44px, 6vw, 68px) 0; }
.footer__grid {
  display: grid; gap: 34px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; } }
.footer__brand img { height: 44px; margin-bottom: 16px; }
.footer__brand p { font-size: .9rem; max-width: 38ch; }
.footer h4 {
  color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 16px;
}
.footer__links { display: grid; gap: 10px; }
.footer__links a { font-size: .91rem; transition: color .15s var(--ease); }
.footer__links a:hover { color: var(--accent); }
.footer__contact { display: grid; gap: 12px; font-size: .91rem; }
.footer__contact a:hover { color: var(--accent); }
.footer__contact strong { color: #fff; display: block; font-weight: 600; }

.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px;
  background: rgba(255,255,255,.08); color: #fff;
  transition: background-color .16s var(--ease), transform .16s var(--ease);
}
.socials a:hover { background: var(--accent); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }

.footer__bottom {
  margin-top: 40px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .84rem;
}
.footer__bottom a:hover { color: var(--accent); }

/* --- Floating WhatsApp ---------------------------------------------------- */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px 13px 16px; border-radius: 999px;
  background: #25D366; color: #04250f; font-weight: 700; font-size: .92rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .42);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.fab:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37, 211, 102, .5); }
.fab svg { width: 22px; height: 22px; flex: none; }
@media (max-width: 520px) {
  .fab { padding: 14px; right: 14px; bottom: 14px; }
  .fab span { display: none; }
}

/* --- Toast ---------------------------------------------------------------- */
.toast {
  position: fixed; left: 50%; bottom: 92px; z-index: 130;
  transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
  background: var(--navy-900); color: #fff; padding: 13px 22px;
  border-radius: 999px; font-size: .9rem; font-weight: 600;
  box-shadow: var(--shadow-lg); transition: all .26s var(--ease);
  max-width: min(460px, calc(100vw - 32px)); text-align: center;
}
.toast.is-on { transform: translate(-50%, 0); opacity: 1; }

/* On a phone the bottom of the screen belongs to the WhatsApp button and the
   cart drawer's checkout footer, so the confirmation drops down from the top
   instead of landing on top of them. */
@media (max-width: 640px) {
  .toast { bottom: auto; top: 14px; transform: translate(-50%, -20px); }
  .toast.is-on { transform: translate(-50%, 0); }
}

/* --- Utilities ------------------------------------------------------------ */
.is-locked { overflow: hidden; }
.skeleton {
  background: linear-gradient(100deg, var(--navy-50) 30%, #fff 50%, var(--navy-50) 70%);
  background-size: 200% 100%; animation: sk 1.3s linear infinite; border-radius: var(--radius);
}
@keyframes sk { to { background-position: -200% 0; } }
.stack-sm > * + * { margin-top: 10px; }
.text-center { text-align: center; }
.prose p { color: var(--ink-soft); }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul { display: grid; gap: 10px; margin-bottom: 1.2em; }
.prose ul li { position: relative; padding-left: 26px; color: var(--ink-soft); }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--accent);
}
