/* ═══════════════════════════════════════════════════════════
   PEASGOLD — Premium Design System
   RTL / Vazirmatn / Teal & Gold palette
   ═══════════════════════════════════════════════════════════ */

/* ── Font-face ───────────────────────────────────────────── */
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  /* Palette */
  --c-primary:        #0D6E64;
  --c-primary-dark:   #0A584F;
  --c-primary-light:  #158F83;
  --c-primary-muted:  rgba(13,110,100,.08);
  --c-gold:           #C9A044;
  --c-gold-dark:      #B08A33;
  --c-gold-light:     #F5E4B2;
  --c-text:           #2C3A47;
  --c-text-light:     #5A6978;
  --c-text-muted:     #8699A9;
  --c-bg:             #FFFFFF;
  --c-surface:        #F0F8F6;
  --c-surface-2:      #E8F4F1;
  --c-border:         rgba(13,110,100,.12);
  --c-dark:           #0B2B27;
  --c-footer:         #0D2E2B;

  /* Typography */
  --ff-body:    'Vazirmatn', Tahoma, Arial, sans-serif;
  --fs-xs:      0.75rem;
  --fs-sm:      0.875rem;
  --fs-base:    1rem;
  --fs-md:      1.0625rem;
  --fs-lg:      1.125rem;
  --fs-xl:      1.25rem;
  --fs-2xl:     clamp(1.4rem, 3vw, 1.75rem);
  --fs-3xl:     clamp(1.6rem, 3.5vw, 2.125rem);
  --fs-hero:    clamp(1.9rem, 4.5vw, 2.75rem);

  /* Spacing */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --section-y: clamp(56px, 9vw, 96px);

  /* Border radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;

  /* Shadows (brand-tinted) */
  --shadow-xs:  0 1px 3px rgba(13,110,100,.08);
  --shadow-sm:  0 1px 3px rgba(13,110,100,.08), 0 4px 12px rgba(13,110,100,.08);
  --shadow-md:  0 2px 4px rgba(13,110,100,.08), 0 8px 24px rgba(13,110,100,.10), 0 20px 48px rgba(13,110,100,.10);
  --shadow-lg:  0 4px 8px rgba(13,110,100,.10), 0 16px 40px rgba(13,110,100,.14), 0 40px 80px rgba(13,110,100,.16);
  --shadow-gold: 0 4px 20px rgba(201,160,68,.30);

  /* Transitions */
  --tr-fast:   150ms ease;
  --tr-base:   250ms ease;
  --tr-slow:   400ms ease;

  /* Nav */
  --nav-h: 72px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 2;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  direction: rtl;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
::selection { background: rgba(13,110,100,.18); color: var(--c-primary-dark); }

/* ── Container ───────────────────────────────────────────── */
.container {
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

/* ── Section layout ──────────────────────────────────────── */
.section { padding-block: var(--section-y); }
.section--surface { background: var(--c-surface); }
.section--dark { background: var(--c-dark); color: #fff; }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-10);
}
.section-header h2 {
  font-size: var(--fs-3xl);
  font-weight: 700;
  line-height: 1.25;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
  text-wrap: balance;
}
.section-header p {
  font-size: var(--fs-md);
  color: var(--c-text-light);
  max-width: 52ch;
  margin-inline: auto;
}

/* ── Eyebrow label ───────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--c-primary);
  background: var(--c-primary-muted);
  border: 1px solid rgba(13,110,100,.20);
  border-radius: var(--r-xl);
  padding: 4px 14px;
  margin-bottom: var(--sp-3);
  letter-spacing: .01em;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 13px 28px;
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--tr-base), color var(--tr-base),
              border-color var(--tr-base), box-shadow var(--tr-base),
              transform var(--tr-fast);
  white-space: nowrap;
  line-height: 1.4;
}
.btn:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 3px;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: var(--c-gold);
  color: #fff;
  border-color: var(--c-gold);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: var(--c-gold-dark);
  border-color: var(--c-gold-dark);
  box-shadow: 0 6px 28px rgba(201,160,68,.45);
}

.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn--outline:hover {
  background: var(--c-primary-muted);
}

.btn--outline-dark {
  background: transparent;
  color: var(--c-text);
  border-color: rgba(44,58,71,.30);
}
.btn--outline-dark:hover {
  background: rgba(44,58,71,.06);
  border-color: var(--c-text);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--c-primary);
  border-color: transparent;
  padding-inline: 0;
}
.btn--ghost:hover { color: var(--c-primary-dark); }

.btn--sm {
  padding: 9px 18px;
  font-size: var(--fs-sm);
}

/* ── ================================================================
   NAVBAR
   ================================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  height: var(--nav-h);
  transition: box-shadow var(--tr-base);
}
.site-nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-6);
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--c-primary);
  flex-shrink: 0;
}
.nav-brand__logo {
  width: 40px;
  height: 40px;
  background: var(--c-primary);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.5px;
}
.nav-brand:hover { color: var(--c-primary-dark); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-text-light);
  padding: 6px 14px;
  border-radius: var(--r-sm);
  transition: color var(--tr-fast), background var(--tr-fast);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--c-primary);
  background: var(--c-primary-muted);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.nav-lang {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--c-text-light);
  padding: 5px 10px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--tr-fast);
}
.nav-lang:hover {
  color: var(--c-primary);
  border-color: var(--c-primary);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
  background: none;
  border: none;
  color: var(--c-text);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--tr-base), opacity var(--tr-base);
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: #fff;
  z-index: 99;
  padding: var(--sp-6) var(--sp-6) var(--sp-12);
  overflow-y: auto;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: var(--shadow-lg);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--c-text);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-sm);
  border-bottom: 1px solid var(--c-border);
}
.nav-drawer a:hover {
  color: var(--c-primary);
  background: var(--c-primary-muted);
}
.nav-drawer .drawer-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

/* ── ================================================================
   HERO
   ================================================================ */
.hero {
  background: var(--c-bg);
  padding-top: clamp(48px, 8vw, 80px);
  overflow: hidden;
  position: relative;
}

/* Decorative blob */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13,110,100,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  padding-bottom: var(--sp-12);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-5);
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-text);
  text-wrap: balance;
}
.hero__title span { color: var(--c-primary); }

.hero__subtitle {
  font-size: var(--fs-lg);
  color: var(--c-text-light);
  line-height: 1.9;
  max-width: 44ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

/* Hero visual */
.hero__visual {
  position: relative;
}
.hero__img-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.hero__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 12s ease;
}
.hero__img-frame:hover img { transform: scale(1.04); }

/* Gold badge overlay */
.hero__img-frame::after {
  content: 'peasgold';
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--c-gold);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-gold);
}

/* Decorative card behind image */
.hero__visual::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--c-primary-muted), var(--c-gold-light));
  z-index: -1;
}

/* Stats strip */
.hero__stats {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding-block: var(--sp-6);
}
.stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-inline: clamp(24px, 5vw, 64px);
  text-align: center;
}
.stat-item__num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
}
.stat-item__label {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--c-border);
  flex-shrink: 0;
}

/* ── ================================================================
   SERVICES
   ================================================================ */
.services { padding-block: var(--section-y); }

/* Category tabs */
.cat-tabs {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
  justify-content: center;
}
.cat-tab {
  padding: 10px 22px;
  border-radius: var(--r-xl);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-text-light);
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  cursor: pointer;
  transition: all var(--tr-base);
}
.cat-tab:hover {
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.cat-tab--active,
.cat-tab[aria-selected="true"] {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
  box-shadow: var(--shadow-sm);
}
.cat-tab:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 3px;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-6);
}

/* Service card */
.service-card {
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--tr-base), transform var(--tr-base), border-color var(--tr-base);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(13,110,100,.25);
}
.service-card.hidden { display: none; }

.service-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.service-card:hover .service-card__img img {
  transform: scale(1.05);
}
.service-card__cat {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(13,110,100,.90);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-xl);
  backdrop-filter: blur(4px);
}

.service-card__body {
  padding: var(--sp-5) var(--sp-5) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}
.service-card__body h3 {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.4;
}
.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  line-height: 1.7;
}
.service-card__price {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-primary);
  margin-top: auto;
}
.service-card__price--free {
  color: var(--c-gold-dark);
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-primary);
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--c-border);
  transition: color var(--tr-fast), gap var(--tr-fast);
}
.service-card__link:hover {
  color: var(--c-primary-dark);
  gap: 10px;
}

/* ── ================================================================
   HOW IT WORKS
   ================================================================ */
.how-it-works {
  background: var(--c-surface);
  padding-block: var(--section-y);
}
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--sp-4);
  align-items: start;
  margin-top: var(--sp-8);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
}
.step__circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(13,110,100,.30);
  position: relative;
  flex-shrink: 0;
}
.step__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: rgba(13,110,100,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
}
.step h3 {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-text);
}
.step p {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  line-height: 1.7;
  max-width: 22ch;
  margin-inline: auto;
}
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 36px;
  color: var(--c-gold);
  opacity: .7;
}

/* ── ================================================================
   BRANCH NETWORK
   ================================================================ */
.branch-network {
  padding-block: var(--section-y);
}
.branch-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.branch-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.branch-content h2 {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
}
.branch-content p {
  font-size: var(--fs-md);
  color: var(--c-text-light);
  line-height: 1.9;
}
.country-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.country-pill {
  padding: 6px 14px;
  background: var(--c-primary-muted);
  border: 1px solid rgba(13,110,100,.18);
  border-radius: var(--r-xl);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-primary);
}

.branch-visual {
  position: relative;
}
.branch-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.branch-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Stats overlay card */
.branch-stats-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--c-primary);
  color: #fff;
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-md);
  display: flex;
  gap: var(--sp-5);
}
.bsc-item {
  text-align: center;
}
.bsc-item__num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-gold-light);
  line-height: 1;
}
.bsc-item__label {
  font-size: var(--fs-xs);
  margin-top: 4px;
  opacity: .85;
}

/* ── ================================================================
   TRUST STRIP
   ================================================================ */
.trust {
  background: var(--c-surface);
  padding-block: clamp(40px, 6vw, 64px);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
  padding: var(--sp-6) var(--sp-4);
  background: var(--c-bg);
  border: 1.5px solid rgba(201,160,68,.30);
  border-radius: var(--r-md);
  transition: box-shadow var(--tr-base), border-color var(--tr-base);
}
.trust-badge:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--c-gold);
}
.trust-badge__icon {
  width: 48px;
  height: 48px;
  color: var(--c-primary);
}
.trust-badge h4 {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.4;
}

/* ── ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials {
  padding-block: var(--section-y);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}
.testi-card {
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--tr-base);
}
.testi-card:hover { box-shadow: var(--shadow-sm); }
.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--c-gold);
}
.testi-text {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  line-height: 1.9;
  flex: 1;
}
.testi-text::before { content: '«'; }
.testi-text::after  { content: '»'; }
.testi-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--c-border);
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author-info h4 {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-text);
}
.testi-author-info p {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}

/* ── ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 100%);
  padding-block: clamp(48px, 8vw, 80px);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(201,160,68,.12);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band__inner {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}
.cta-band h2 {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  text-wrap: balance;
}
.cta-band p {
  font-size: var(--fs-md);
  color: rgba(255,255,255,.80);
  max-width: 46ch;
}

/* ── ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--c-footer);
  color: rgba(255,255,255,.80);
  padding-top: var(--sp-16);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-10);
}
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: #fff;
  font-size: var(--fs-xl);
  font-weight: 700;
}
.footer-logo__icon {
  width: 44px;
  height: 44px;
  background: var(--c-gold);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.footer-tagline {
  font-size: var(--fs-sm);
  line-height: 1.8;
  color: rgba(255,255,255,.60);
  max-width: 32ch;
}
.footer-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--c-gold);
  font-size: var(--fs-md);
  font-weight: 700;
  direction: ltr;
}
.footer-col h4 {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(201,160,68,.25);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-col ul a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.60);
  transition: color var(--tr-fast);
}
.footer-col ul a:hover { color: var(--c-gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin-bottom: var(--sp-3);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--c-gold); }
.footer-socials {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}
.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.70);
  transition: background var(--tr-fast), color var(--tr-fast);
}
.footer-social-link:hover {
  background: var(--c-gold);
  color: #fff;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to left, transparent, var(--c-gold) 30%, var(--c-gold) 70%, transparent);
  opacity: .25;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--sp-5);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* ── ================================================================
   ABOUT / INTERIOR HERO (reused on inner pages)
   ================================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 100%);
  padding-block: clamp(48px, 8vw, 80px);
  color: #fff;
  text-align: center;
}
.page-hero h1 {
  font-size: var(--fs-3xl);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}
.page-hero p {
  font-size: var(--fs-md);
  opacity: .85;
}

/* ── ================================================================
   FORMS (login / register / contact)
   ================================================================ */
.form-card {
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 5vw, 48px);
  box-shadow: var(--shadow-md);
  max-width: 480px;
  margin-inline: auto;
}
.form-title {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--sp-6);
  text-align: center;
}
.form-group {
  margin-bottom: var(--sp-5);
}
.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  font-size: var(--fs-base);
  font-family: inherit;
  color: var(--c-text);
  background: var(--c-bg);
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
  direction: inherit;
}
.form-control::placeholder { color: var(--c-text-muted); }
.form-control:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(13,110,100,.12);
}
.form-control:invalid:not(:placeholder-shown) { border-color: #e53935; }
.form-hint {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-top: var(--sp-1);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6978' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
}
.alert {
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  margin-bottom: var(--sp-4);
}
.alert--success { background: rgba(13,110,100,.10); color: var(--c-primary); border: 1px solid rgba(13,110,100,.20); }
.alert--error   { background: rgba(229,57,53,.08); color: #c62828; border: 1px solid rgba(229,57,53,.20); }

/* ── ================================================================
   ACCOUNT / DASHBOARD (stubs)
   ================================================================ */
.account-wrap {
  max-width: 900px;
  margin-inline: auto;
  padding-block: var(--section-y);
}
.account-card {
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  box-shadow: var(--shadow-xs);
  margin-bottom: var(--sp-5);
}
.account-no {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--c-primary);
  direction: ltr;
}

/* ── ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--c-primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { opacity: .5; }

/* ── ================================================================
   UTILITY
   ================================================================ */
.text-center { text-align: center; }
.text-primary { color: var(--c-primary); }
.text-gold    { color: var(--c-gold); }
.text-muted   { color: var(--c-text-muted); }
.mt-auto      { margin-top: auto; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.d-flex { display: flex; }
.gap-3  { gap: var(--sp-3); }
.align-center { align-items: center; }

/* ── ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(13,110,100,.35); }
  70%  { box-shadow: 0 0 0 12px rgba(13,110,100,0); }
  100% { box-shadow: 0 0 0 0 rgba(13,110,100,0); }
}
.animate-fade-up { animation: fadeUp .6s ease both; }
.animate-fade-up:nth-child(2) { animation-delay: .1s; }
.animate-fade-up:nth-child(3) { animation-delay: .2s; }
.animate-fade-up:nth-child(4) { animation-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── ================================================================
   RESPONSIVE — 1024px
   ================================================================ */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── ================================================================
   RESPONSIVE — 768px
   ================================================================ */
@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-actions .btn { display: none; }
  .nav-actions .nav-lang { display: none; }
  .nav-toggle { display: flex; }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .hero__visual { order: -1; }
  .hero__visual::before { display: none; }

  .steps-row {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .step-arrow { display: none; }

  .branch-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .branch-stats-card {
    position: static;
    margin-top: var(--sp-4);
    justify-content: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

/* ── ================================================================
   RESPONSIVE — 390px (mobile-first fine-tuning)
   ================================================================ */
@media (max-width: 480px) {
  :root { --nav-h: 60px; }

  .hero__cta { flex-direction: column; width: 100%; }
  .hero__cta .btn { width: 100%; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip { gap: 0; }
  .stat-item { padding-inline: 16px; }
  .stat-divider { height: 32px; }

  .cat-tabs { gap: var(--sp-1); }
  .cat-tab  { padding: 8px 14px; font-size: var(--fs-xs); }

  .trust-grid { grid-template-columns: 1fr 1fr; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-card { padding: var(--sp-5); }
}

/* ── ================================================================
   CART BADGE (nav)
   ================================================================ */
.nav-cart {
  gap: var(--sp-2);
  position: relative;
}
.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-gold);
  color: #fff;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 700;
  padding: 0 4px;
  line-height: 1;
  margin-right: 2px;
}

/* ── ================================================================
   SHOP — product grid
   ================================================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-6);
}
/* reuses .service-card, .service-card__img, etc. */
.product-card__weight {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  font-weight: 500;
}

/* ── ================================================================
   PRODUCT DETAIL
   ================================================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
  padding-block: var(--section-y);
}
.product-gallery__main {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.product-gallery__main:hover img { transform: scale(1.03); }

.product-gallery__thumbs {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
  flex-wrap: wrap;
}
.product-gallery__thumb {
  border-radius: var(--r-sm);
  overflow: hidden;
  width: 76px;
  height: 76px;
  cursor: pointer;
  border: 2.5px solid transparent;
  flex-shrink: 0;
  transition: border-color var(--tr-fast);
}
.product-gallery__thumb.active,
.product-gallery__thumb:hover { border-color: var(--c-primary); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding-top: var(--sp-3);
}
.product-price {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1.2;
}
.product-price__unit {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--c-text-muted);
  margin-right: var(--sp-2);
}
.product-meta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.product-meta__row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
}
.product-meta__label {
  color: var(--c-text-muted);
  width: 80px;
  flex-shrink: 0;
}
.product-meta__val {
  font-weight: 600;
  color: var(--c-text);
}

/* Size selector (related variants) */
.size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.size-btn {
  padding: 8px 18px;
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  border: 2px solid var(--c-border);
  background: var(--c-bg);
  color: var(--c-text);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all var(--tr-fast);
  line-height: 1.5;
}
.size-btn:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: var(--c-primary-muted);
}
.size-btn--active {
  border-color: var(--c-primary);
  background: var(--c-primary);
  color: #fff;
}

/* Quantity control */
.qty-control {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.qty-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  background: var(--c-surface);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
  transition: background var(--tr-fast), border-color var(--tr-fast);
  line-height: 1;
  flex-shrink: 0;
}
.qty-btn:hover { background: var(--c-primary-muted); border-color: var(--c-primary); }
.qty-input {
  width: 64px;
  text-align: center;
  font-size: var(--fs-lg);
  font-weight: 700;
  padding: 8px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  color: var(--c-text);
  background: var(--c-bg);
  font-family: inherit;
}
.qty-input:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(13,110,100,.12); }

/* ── ================================================================
   CART
   ================================================================ */
.cart-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-8);
  align-items: start;
  padding-block: var(--section-y);
}
.cart-table {
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.cart-table-head {
  display: grid;
  grid-template-columns: 76px 1fr 140px 140px 56px;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-surface);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--c-text-muted);
  border-bottom: 1px solid var(--c-border);
}
.cart-row {
  display: grid;
  grid-template-columns: 76px 1fr 140px 140px 56px;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  align-items: center;
  border-bottom: 1px solid var(--c-border);
}
.cart-row:last-child { border-bottom: none; }
.cart-row__img {
  width: 68px;
  height: 68px;
  border-radius: var(--r-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.cart-row__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-row__name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.5;
}
.cart-row__price {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-primary);
  direction: ltr;
  text-align: center;
}
.cart-row__qty {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.cart-qty-input {
  width: 48px;
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 6px 4px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  color: var(--c-text);
  background: var(--c-bg);
  font-family: inherit;
}
.cart-qty-input:focus { outline: none; border-color: var(--c-primary); }
.cart-qty-btn {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  background: var(--c-surface);
  font-size: var(--fs-md);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
  transition: all var(--tr-fast);
  line-height: 1;
  flex-shrink: 0;
}
.cart-qty-btn:hover { background: var(--c-primary-muted); border-color: var(--c-primary); }
.cart-row__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-text-muted);
  padding: 6px;
  border-radius: var(--r-sm);
  transition: color var(--tr-fast), background var(--tr-fast);
}
.cart-row__remove:hover { color: #e53935; background: rgba(229,57,53,.08); }

.cart-summary-card {
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  box-shadow: var(--shadow-xs);
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}
.cart-summary-card h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--c-border);
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--c-text-light);
}
.cart-summary-row--total {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-text);
  border-top: 1px solid var(--c-border);
  margin-top: var(--sp-2);
  padding-top: var(--sp-4);
}
.cart-summary-row--total span:last-child { color: var(--c-primary); }

/* Empty cart state */
.cart-empty {
  text-align: center;
  padding: clamp(48px, 10vw, 80px) var(--sp-6);
  color: var(--c-text-muted);
}
.cart-empty svg { color: var(--c-text-muted); margin: 0 auto var(--sp-5); opacity: .4; }
.cart-empty h2 { font-size: var(--fs-2xl); font-weight: 700; color: var(--c-text); margin-bottom: var(--sp-3); }
.cart-empty p  { font-size: var(--fs-md); margin-bottom: var(--sp-6); }

/* ── ================================================================
   CHECKOUT
   ================================================================ */
.checkout-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--sp-8);
  align-items: start;
  padding-block: var(--section-y);
}
.checkout-form-card {
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  box-shadow: var(--shadow-xs);
}
.checkout-form-card h2 {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--c-border);
}
.checkout-summary-card {
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  box-shadow: var(--shadow-xs);
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}
.checkout-summary-card h3 {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--c-border);
}
.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-3);
  padding-block: var(--sp-3);
  border-bottom: 1px solid var(--c-border);
  font-size: var(--fs-sm);
}
.checkout-item:last-of-type { border-bottom: none; }
.checkout-item__name { color: var(--c-text); flex: 1; line-height: 1.5; }
.checkout-item__qty  { color: var(--c-text-muted); flex-shrink: 0; }
.checkout-item__price { color: var(--c-primary); font-weight: 600; flex-shrink: 0; direction: ltr; text-align: left; }
.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-text);
  padding-top: var(--sp-4);
  border-top: 1.5px solid var(--c-border);
  margin-top: var(--sp-3);
}
.checkout-total span:last-child { color: var(--c-primary); }

/* Order success card */
.order-success {
  text-align: center;
  padding: clamp(48px, 10vw, 80px) var(--sp-6);
  max-width: 560px;
  margin-inline: auto;
}
.order-success__icon {
  width: 80px;
  height: 80px;
  background: rgba(13,110,100,.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  margin: 0 auto var(--sp-5);
}
.order-success h2 { font-size: var(--fs-3xl); font-weight: 700; color: var(--c-text); margin-bottom: var(--sp-3); }
.order-success p  { font-size: var(--fs-md); color: var(--c-text-light); margin-bottom: var(--sp-4); }
.order-no-display {
  display: inline-block;
  background: var(--c-primary-muted);
  border: 1px solid rgba(13,110,100,.20);
  border-radius: var(--r-sm);
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--c-primary);
  direction: ltr;
  letter-spacing: .05em;
  margin-bottom: var(--sp-6);
}

/* ── ================================================================
   RESPONSIVE additions for shop/product/cart/checkout
   ================================================================ */
@media (max-width: 1024px) {
  .cart-wrap      { grid-template-columns: 1fr 280px; }
  .checkout-wrap  { grid-template-columns: 1fr 300px; }
}

@media (max-width: 768px) {
  .product-detail { grid-template-columns: 1fr; gap: var(--sp-8); }

  .cart-wrap, .checkout-wrap {
    grid-template-columns: 1fr;
  }
  .cart-summary-card,
  .checkout-summary-card { position: static; }

  .cart-table-head { display: none; }
  .cart-row {
    grid-template-columns: 68px 1fr auto;
    grid-template-rows: auto auto;
    gap: var(--sp-2) var(--sp-3);
  }
  .cart-row__price { grid-column: 2; }
  .cart-row__qty   { grid-column: 2; justify-content: flex-start; }
  .cart-row__remove { grid-column: 3; grid-row: 1; }

  .checkout-form-card { padding: var(--sp-5); }
}

@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; }
  .product-gallery__thumbs { gap: var(--sp-1); }
  .product-gallery__thumb  { width: 60px; height: 60px; }
  .size-btn { padding: 7px 14px; font-size: var(--fs-xs); }
}
