/* =========================================
   Bem Garota Moda Feminina — Loja
   Estética minimalista feminina (inspiração Farm)
   ========================================= */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f5f2;
  --bg-mist: #faf8f6;
  --ink: #1a1a1a;
  --ink-soft: #5c5c5c;
  --line: #e8e4df;
  --cherry: #c8102e;
  --cherry-deep: #9e0c24;
  --leaf: #3f8a4c;
  --sand: #ebe6df;
  --blush: #f3e8ea;
  --ok: #1f7a45;
  --warn: #b45309;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Helvetica Neue", sans-serif;
  --max: 1280px;
  --header-h: 72px;
  --radius: 0;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ----- Top bar ----- */
.topbar {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
}

.topbar span {
  opacity: 0.92;
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-right {
  justify-content: flex-end;
}

.nav-left a,
.nav-link {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
}

.nav-left a:hover,
.nav-link:hover {
  color: var(--cherry);
}

.brand {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0.1rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-sub {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.brand-sub img {
  width: 14px;
  height: 14px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  position: relative;
  transition: transform 0.25s var(--ease);
}

.icon-btn:hover {
  transform: translateY(-1px);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--cherry);
  color: #fff;
  font-size: 0.62rem;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--bg-mist);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: heroZoom 18s var(--ease) infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.15) 40%,
    rgba(255, 255, 255, 0.72) 78%,
    rgba(255, 255, 255, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 0 4.5rem;
  animation: riseIn 1s var(--ease) both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 0.65rem;
}

.hero-slogan {
  max-width: 28rem;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--ink-soft);
  font-weight: 400;
  margin-bottom: 1.75rem;
}

.hero-slogan em {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.25em;
  color: var(--ink);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.75rem 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}

.btn-primary:hover {
  background: var(--cherry);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--ink);
}

.btn-ghost:hover {
  border-color: var(--cherry);
  color: var(--cherry);
}

.btn-cherry {
  background: var(--cherry);
  color: #fff;
}

.btn-cherry:hover {
  background: var(--cherry-deep);
}

.btn-block {
  width: 100%;
}

/* ----- Sections ----- */
.section {
  padding: 4.5rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
}

.section-note {
  color: var(--ink-soft);
  font-size: 0.92rem;
  max-width: 22rem;
}

/* Category strip */
.cats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cat-tile {
  background: var(--bg);
  padding: 1.6rem 1rem;
  text-align: center;
  transition: background 0.3s var(--ease);
}

.cat-tile:hover {
  background: var(--blush);
}

.cat-tile span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Shop layout */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.filters {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1.25rem;
  background: var(--bg-mist);
  border: 1px solid var(--line);
}

.filters h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.filter-group {
  margin-bottom: 1.35rem;
}

.filter-group label,
.filter-group .label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.55rem;
}

.filter-group input[type="search"],
.filter-group select,
.filter-group input[type="number"] {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.65rem 0.75rem;
  outline: none;
}

.filter-group input:focus,
.filter-group select:focus {
  border-color: var(--ink);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.check-list {
  display: grid;
  gap: 0.45rem;
}

.check-list label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  cursor: pointer;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.toolbar p {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.toolbar select {
  border: 1px solid var(--line);
  padding: 0.55rem 0.7rem;
  background: #fff;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1.1rem;
}

.product-card {
  display: grid;
  gap: 0.75rem;
  animation: fadeUp 0.7s var(--ease) both;
  cursor: pointer;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--sand);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  background: #fff;
  padding: 0.35rem 0.55rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge-sale {
  color: var(--cherry);
}

.badge-feat {
  left: auto;
  right: 0.75rem;
  background: var(--ink);
  color: #fff;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
}

.product-meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 0.2rem 0 0.45rem;
}

.price-row-inline {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price {
  font-size: 0.95rem;
  font-weight: 600;
}

.price-old {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-decoration: line-through;
  font-weight: 400;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.product-actions .btn {
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  font-size: 0.65rem;
}

.size-select {
  border: 1px solid var(--line);
  padding: 0 0.5rem;
  background: #fff;
  min-width: 72px;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-soft);
}

/* About strip */
.about-band {
  background: linear-gradient(135deg, var(--bg-soft), var(--blush) 55%, #fff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.about-copy p {
  margin-top: 1rem;
  color: var(--ink-soft);
  max-width: 34rem;
}

.about-mark {
  display: grid;
  place-items: center;
  padding: 2rem;
}

.about-mark img {
  width: min(280px, 100%);
  animation: softFloat 5s ease-in-out infinite;
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Footer */
.site-footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.footer-grid p,
.footer-grid a {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-grid h4 {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.footer-grid ul {
  display: grid;
  gap: 0.4rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--ink-soft);
  align-items: center;
}

.footer-tryon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: 0.25s var(--ease);
  color: var(--ink);
}

.footer-tryon:hover {
  background: var(--ink);
  color: #fff;
}

/* ----- Cart drawer ----- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  z-index: 50;
}

.overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-head,
.drawer-foot {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.drawer-foot {
  border-bottom: none;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.75rem;
}

.coupon-bar label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}

.coupon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem;
}

.coupon-row input {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  background: #fff;
  text-transform: uppercase;
  outline: none;
}

.coupon-row input:focus {
  border-color: var(--ink);
}

.coupon-row .btn {
  min-height: 42px;
  padding: 0.55rem 0.85rem;
}

.cart-breakdown {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.25rem;
}

.cart-total-row.soft {
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.cart-total-row.discount {
  color: var(--cherry);
}

.cart-total-row .link-remove {
  margin-left: 0.35rem;
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-decoration: underline;
}

.cart-price-detail {
  font-size: 0.78rem;
  color: var(--ink);
  margin: 0.15rem 0;
}

.cart-price-detail.muted-line {
  color: var(--ink-soft);
}

.disc-tag {
  display: inline-block;
  margin-left: 0.25rem;
  color: var(--cherry);
  font-weight: 600;
  font-size: 0.72rem;
}

.cart-line-total {
  text-align: right;
  display: grid;
  gap: 0.2rem;
  justify-items: end;
}

.cart-line-total .price-old {
  font-size: 0.75rem;
}

.summary-line small {
  color: var(--ink-soft);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-head h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
}

.drawer-body {
  overflow: auto;
  padding: 1rem 1.25rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  background: var(--sand);
}

.cart-item h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.cart-item p {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  margin-top: 0.45rem;
}

.qty-ctrl button {
  width: 28px;
  height: 28px;
}

.qty-ctrl span {
  min-width: 28px;
  text-align: center;
  font-size: 0.85rem;
}

.cart-remove {
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

/* ----- Modal ----- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-panel {
  width: min(920px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  transform: translateY(12px);
  transition: transform 0.35s var(--ease);
}

.modal.open .modal-panel {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid var(--line);
  z-index: 2;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.checkout-form,
.checkout-summary {
  padding: 1.5rem;
}

.checkout-summary {
  background: var(--bg-mist);
  border-left: 1px solid var(--line);
}

.form-grid {
  display: grid;
  gap: 0.75rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 0.75rem;
}

.field label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.7rem 0.75rem;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
}

.ship-options {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.ship-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
  border: 1px solid var(--line);
  padding: 0.7rem 0.8rem;
  cursor: pointer;
  background: #fff;
}

.ship-option.active {
  border-color: var(--cherry);
  background: var(--blush);
}

.ship-option small {
  color: var(--ink-soft);
}

.hint {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 0.35rem;
}

.hint.error {
  color: var(--cherry);
}

.hint.ok {
  color: var(--ok);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.4rem 0;
  font-size: 0.92rem;
}

.summary-line.total {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 700;
}

/* Product page */
body.product-open {
  overflow: hidden;
}

.product-page {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: #fff;
  overflow: auto;
  display: none;
}

.product-page.is-open {
  display: block !important;
  animation: riseIn 0.45s var(--ease) both;
}

.btn-text {
  margin-top: 0.45rem;
  justify-self: start;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
}

.btn-text:hover {
  color: var(--cherry);
}

.product-page-inner {
  padding: 1.25rem 0 3.5rem;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
}

.btn-back:hover {
  color: var(--cherry);
}

.pd-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}

.pd-gallery {
  display: grid;
  gap: 0.75rem;
}

.pd-main {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--sand);
}

.pd-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.5rem;
}

.pd-thumb {
  border: 1px solid var(--line);
  padding: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sand);
  opacity: 0.75;
  transition: opacity 0.25s var(--ease), border-color 0.25s var(--ease);
}

.pd-thumb.active,
.pd-thumb:hover {
  opacity: 1;
  border-color: var(--ink);
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 0.2rem 0 0.85rem;
}

.pd-desc {
  color: var(--ink-soft);
  margin: 0.85rem 0;
  max-width: 34rem;
}

.pd-info .field select {
  width: 100%;
  max-width: 220px;
  border: 1px solid var(--line);
  padding: 0.7rem 0.75rem;
  background: #fff;
}

.pd-upsell {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .pd-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Product page */
.qv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.qv-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.qv-info {
  padding: 1.75rem;
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.qv-info h2 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.1;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.1rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s var(--ease);
  z-index: 100;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem 1.25rem;
  z-index: 35;
}

.mobile-nav.open {
  display: grid;
  gap: 0.85rem;
}

.mobile-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 980px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .footer-grid,
  .checkout-grid,
  .qv-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    border-left: none;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .nav-left {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding-bottom: 2.5rem;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.65rem;
  }

  .form-row-2,
  .form-row-3,
  .price-row {
    grid-template-columns: 1fr;
  }

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