/* ============================================================
   ARSENAL GUN STORE — Design System
   ============================================================ */

/* 1. RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* 2. DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  /* Backgrounds */
  --bg-base:      #f8f6f2;
  --bg-surface:   #ffffff;
  --bg-elevated:  #f0ede7;
  --bg-subtle:    #e2ddd5;
  --bg-hover:     #d4cec5;

  /* Brand accent */
  --accent:       #c8922a;
  --accent-hover: #e0a830;
  --accent-muted: rgba(200, 146, 42, 0.12);
  --accent-dim:   rgba(200, 146, 42, 0.25);

  /* Text */
  --text-primary:   #18150f;
  --text-secondary: #5a5040;
  --text-muted:     #9a9080;

  /* Status */
  --status-available-bg:   #dff0e8;
  --status-available-text: #1a7a3d;
  --status-waiting-bg:     #fef2d0;
  --status-waiting-text:   #9a6a00;
  --status-unavail-bg:     #fde4e4;
  --status-unavail-text:   #c02828;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;

  /* Typography */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;

  /* Border radius */
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-card:     0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-elevated: 0 8px 32px rgba(0, 0, 0, 0.14);
  --shadow-accent:   0 4px 20px rgba(200, 146, 42, 0.25);

  /* Transitions */
  --transition:      150ms ease;
  --transition-slow: 300ms ease;

  /* Navbar height */
  --navbar-h: 68px;
}

/* 3. TYPOGRAPHY
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2rem, 5vw, var(--text-5xl)); }
h2 { font-size: clamp(1.5rem, 3vw, var(--text-4xl)); }
h3 { font-size: clamp(1.25rem, 2.5vw, var(--text-2xl)); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }

p { line-height: 1.7; color: var(--text-secondary); }
p + p { margin-top: var(--space-md); }

strong { color: var(--text-primary); font-weight: 600; }

.eyebrow {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* 4. LAYOUT
   ------------------------------------------------------------ */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-xl);
}

.section {
  padding-block: var(--space-3xl);
}

.section--sm {
  padding-block: var(--space-2xl);
}

/* Section heading row */
.section-header {
  margin-bottom: var(--space-2xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  max-width: 560px;
}

.section-header--centered {
  text-align: center;
}

.section-header--centered p {
  margin-inline: auto;
}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); }

/* Prevent grid/flex children from overflowing their container */
.grid-2 > *, .grid-3 > *, .grid-4 > *,
.products-grid > *, .listing-layout > * { min-width: 0; }

/* Stats grid (4-col, responsive) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stats-grid > * { min-width: 0; }

/* 5. NAVBAR
   ------------------------------------------------------------ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--navbar-h);
  background: rgba(31, 31, 31, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bg-subtle);
}

.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.navbar__brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.navbar__store-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link--active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link--active::after {
  width: 100%;
}

/* Force nav links inside the dark navbar to stay light */
.navbar .nav-link        { color: #a09880; }
.navbar .nav-link:hover,
.navbar .nav-link--active { color: #f0ece4; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #f0ece4;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--navbar-h);
  left: 0;
  right: 0;
  background: #1f1f1f;
  border-bottom: 1px solid #2a2a2a;
  flex-direction: column;
  z-index: 99;
  /* max-height animation — closed state */
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.nav-drawer.is-open {
  max-height: calc(100vh - var(--navbar-h));
  overflow-y: auto;
}

.nav-drawer__inner {
  padding: var(--space-lg) var(--space-xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.nav-drawer .nav-link {
  font-size: var(--text-base);
  padding: var(--space-md) var(--space-sm);
  border-bottom: 1px solid #2a2a2a;
  display: block;
  letter-spacing: 0.05em;
  color: #a09880;
}

.nav-drawer .nav-link:hover,
.nav-drawer .nav-link--active {
  color: #f0ece4;
}

.nav-drawer .nav-link:last-child {
  border-bottom: none;
}

/* Nav dropdown (desktop) */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown__chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown__chevron,
.nav-dropdown:focus-within .nav-dropdown__chevron {
  transform: rotate(180deg);
}

.nav-dropdown__panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 200px;
  background: #1c1c1c;
  border: 1px solid #2e2e2e;
  border-radius: var(--radius-md);
  padding: var(--space-xs) 0;
  margin-top: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

.nav-dropdown__panel::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__item {
  display: block;
  padding: 0.55rem var(--space-lg);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a09880;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.nav-dropdown__item:hover {
  color: #f0ece4;
  background: rgba(255,255,255,0.05);
}

.nav-dropdown__item:first-child {
  /* border-bottom: 1px solid #2e2e2e; */
  margin-bottom: var(--space-xs);
  padding-bottom: 0.65rem;
}

/* Nav dropdown (mobile drawer) */
.nav-drawer__dropdown {
  border-bottom: 1px solid #2a2a2a;
}

.nav-drawer__dropdown summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: none;
}

.nav-drawer__dropdown summary::-webkit-details-marker { display: none; }

.nav-drawer__dropdown[open] .nav-dropdown__chevron {
  transform: rotate(180deg);
}

.nav-drawer__dropdown-panel {
  display: flex;
  flex-direction: column;
  padding-bottom: var(--space-xs);
}

.nav-drawer__dropdown-item {
  display: block;
  padding: var(--space-sm) var(--space-sm) var(--space-sm) calc(var(--space-sm) + var(--space-lg));
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7a7060;
  transition: color var(--transition);
}

.nav-drawer__dropdown-item:hover { color: #f0ece4; }

/* NOTIFICATION BANNER */
:root { --notification-h: 40px; }

.site-notification {
  position: fixed;
  top: var(--navbar-h);
  left: 0;
  right: 0;
  z-index: 99;
  height: var(--notification-h);
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
}

.site-notification.is-hidden {
  /* display: none; */
}

.site-notification__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  position: relative;
  width: 100%;
}

.site-notification__text {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
}

.site-notification__link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-notification__link:hover { opacity: 0.85; }

.site-notification__close {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  opacity: 0.75;
  padding: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s;
}

.site-notification__close:hover { opacity: 1; }

/* Page top padding */
.page-content {
  padding-top: calc(var(--navbar-h) + var(--notification-h));
}

.page-content--no-notification {
  padding-top: var(--navbar-h);
}

/* 6. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

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

.btn-primary {
  background: var(--accent);
  color: #0d0d0d;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: var(--shadow-accent);
}

.btn-secondary {
  background: var(--bg-subtle);
  color: var(--text-primary);
  border-color: var(--bg-subtle);
}

.btn-secondary:hover {
  background: var(--bg-hover);
  border-color: var(--bg-hover);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent-muted);
  box-shadow: var(--shadow-accent);
}

.btn--full { width: 100%; }

.btn--lg {
  padding: 0.85rem 2rem;
  font-size: var(--text-base);
}

.btn--sm {
  padding: 0.4rem 1rem;
  font-size: var(--text-xs);
}

/* 7. BADGES
   ------------------------------------------------------------ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.badge--available {
  background: var(--status-available-bg);
  color: var(--status-available-text);
}
.badge--available::before { background: var(--status-available-text); }

.badge--waiting {
  background: var(--status-waiting-bg);
  color: var(--status-waiting-text);
}
.badge--waiting::before { background: var(--status-waiting-text); }

.badge--unavailable {
  background: var(--status-unavail-bg);
  color: var(--status-unavail-text);
}
.badge--unavailable::before { background: var(--status-unavail-text); }

/* 8. CARDS — PRODUCT
   ------------------------------------------------------------ */
.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-elevated);
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-elevated);
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-card__badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
}

.product-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.product-card__name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--text-primary);
  line-height: 1.2;
}

.product-card__meta {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.product-card__price {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: var(--text-xl);
  color: var(--accent);
  margin-top: auto;
  padding-top: var(--space-sm);
}

.product-card__footer {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  padding-top: 0;
}

/* 9. CARDS — CATEGORY
   ------------------------------------------------------------ */
.category-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-elevated);
}

.category-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card:hover .category-card__image img {
  transform: scale(1.06);
}

.category-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.7) 0%, transparent 60%);
}

.category-card__body {
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--bg-subtle);
}

.category-card__name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--text-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.category-card__count {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.category-card__arrow {
  color: var(--accent);
  font-size: var(--text-xl);
  line-height: 1;
  transition: transform var(--transition);
}

.category-card:hover .category-card__arrow {
  transform: translateX(4px);
}

/* 10. HERO
   ------------------------------------------------------------ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(135deg, rgba(248,246,242,0.96) 0%, rgba(200,146,42,0.10) 100%),
    linear-gradient(to bottom, #f8f6f2 0%, #f0e8d5 100%);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  padding-bottom: 8vw;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,146,42,0.09) 0%, transparent 70%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(0,0,0,0.02) 40px,
      rgba(0,0,0,0.02) 41px
    );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.hero__title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.hero__title span {
  color: var(--accent);
}

.hero__desc {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Hero mini (inner pages) */
.hero-mini {
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-3xl);
  background:
    linear-gradient(135deg, rgba(248,246,242,0.97) 0%, rgba(200,146,42,0.08) 100%),
    linear-gradient(to bottom, #f8f6f2 0%, #f0e8d5 100%);
  position: relative;
  overflow: hidden;
}

.hero-mini::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.015) 20px,
    rgba(0,0,0,0.015) 21px
  );
  pointer-events: none;
}

.hero-mini__content {
  position: relative;
  z-index: 1;
}

.hero-mini__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

/* 11. BREADCRUMB
   ------------------------------------------------------------ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding-block: var(--space-lg);
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb__sep {
  color: var(--text-muted);
  user-select: none;
}

.breadcrumb__current { color: var(--text-secondary); }

/* 12. PAGE HEADER (listing/about etc.)
   ------------------------------------------------------------ */
.page-header {
  padding-block: var(--space-2xl) var(--space-xl);
  border-bottom: 1px solid var(--bg-subtle);
  margin-bottom: var(--space-2xl);
}

.page-header__eyebrow {
  margin-bottom: var(--space-sm);
}

.page-header h1 {
  margin-bottom: var(--space-sm);
}

.page-header p {
  max-width: 560px;
}

/* 13. PRODUCT GALLERY
   ------------------------------------------------------------ */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.gallery-main-wrap {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-main-wrap img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  display: block;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 70px));
  gap: var(--space-sm);
}

.gallery-thumb {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--bg-subtle);
  cursor: pointer;
  transition: border-color var(--transition);
  background: var(--bg-surface);
}

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

.gallery-thumb:hover { border-color: var(--text-secondary); }
.gallery-thumb.thumb--active { border-color: var(--accent); }

/* Image loading state */
.img-loading {
  position: relative;
}
.img-loading img {
  opacity: 0;
  transition: opacity 250ms ease;
}
.img-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--bg-surface) 25%,
    var(--bg-subtle) 50%,
    var(--bg-surface) 75%
  );
  background-size: 200% 100%;
  animation: img-shimmer 1.2s infinite linear;
  border-radius: inherit;
  pointer-events: none;
}
@keyframes img-shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

.lightbox.is-open { display: flex; }

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(31, 31, 31, 0.85);
  border: 1px solid var(--bg-subtle);
  color: var(--text-primary);
  font-size: var(--text-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  flex-shrink: 0;
}

.lightbox__close { top: var(--space-xl); right: var(--space-xl); }
.lightbox__prev  { left: var(--space-xl); top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: var(--space-xl); top: 50%; transform: translateY(-50%); }

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--accent);
  color: #0d0d0d;
  border-color: var(--accent);
}

.lightbox__prev:disabled,
.lightbox__next:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

/* Counter label */
.lightbox__counter {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  background: rgba(31, 31, 31, 0.7);
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

@media (max-width: 480px) {
  .lightbox__prev { left: var(--space-sm); }
  .lightbox__next { right: var(--space-sm); }
  .lightbox__close { top: var(--space-sm); right: var(--space-sm); }
}

/* 14. PRODUCT DETAIL PAGE
   ------------------------------------------------------------ */
.product-layout {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.product-info { display: flex; flex-direction: column; gap: var(--space-md); }

.product-info__badge { margin-bottom: var(--space-xs); }

.product-title {
  font-size: clamp(1.75rem, 3vw, var(--text-4xl));
  line-height: 1.1;
}

.product-sku {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.product-price {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: var(--text-3xl);
  color: var(--accent);
  padding-block: var(--space-sm);
}

.product-summary {
  color: var(--text-secondary);
  line-height: 1.7;
  padding-block: var(--space-sm);
  border-top: 1px solid var(--bg-subtle);
  border-bottom: 1px solid var(--bg-subtle);
}

.product-specs { display: flex; flex-direction: column; gap: var(--space-xs); }

.spec-row {
  display: flex;
  gap: var(--space-md);
  font-size: var(--text-sm);
  padding-block: var(--space-xs);
  border-bottom: 1px solid var(--bg-subtle);
}

.spec-row:last-child { border-bottom: none; }

.spec-label {
  color: var(--text-muted);
  min-width: 140px;
  flex-shrink: 0;
}

.spec-value { color: var(--text-primary); }

.product-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
}

.product-description {
  padding-block: var(--space-3xl);
  border-top: 1px solid var(--bg-subtle);
  margin-top: var(--space-2xl);
}

.product-description h2 {
  margin-bottom: var(--space-xl);
}

.product-description p,
.product-description li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.product-description ul {
  list-style: disc;
  padding-left: var(--space-xl);
}

.product-description li { margin-bottom: var(--space-sm); }

/* 15. LISTING LAYOUT
   ------------------------------------------------------------ */
.listing-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

/* Filter sidebar */
.filters {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: sticky;
  top: calc(var(--navbar-h) + var(--space-md));
}

.filter-section {
  padding-bottom: var(--space-lg);
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid var(--bg-subtle);
}

.filter-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-section h4 {
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.filter-check {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  cursor: pointer;
}

.filter-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}

.filter-check span {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.filter-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.filter-price input {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  width: 100%;
  transition: border-color var(--transition);
}

.filter-price input:focus {
  outline: none;
  border-color: var(--accent);
}

.filter-price input::placeholder { color: var(--text-muted); }

/* Listing toolbar */
.listing-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--bg-subtle);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.listing-count {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.listing-count strong {
  color: var(--text-primary);
}

.listing-sort {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.listing-sort label {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.listing-sort select {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: border-color var(--transition);
}

.listing-sort select:focus {
  outline: none;
  border-color: var(--accent);
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.page-btn {
  min-width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-subtle);
  background: var(--bg-surface);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.page-btn:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

.page-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0d0d0d;
  font-weight: 700;
}

.page-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Mobile filter toggle */
.filter-toggle {
  display: none;
}

/* 16. ABOUT SECTION (2-col)
   ------------------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-grid--reverse {
  direction: rtl;
}

.about-grid--reverse > * {
  direction: ltr;
}

.about-text h2 { margin-bottom: var(--space-lg); }
.about-text .eyebrow { margin-bottom: var(--space-sm); }

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Values grid */
.value-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
}

.value-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  display: block;
}

.value-card h3 {
  margin-bottom: var(--space-sm);
  font-size: var(--text-xl);
}

/* Team cards */
.team-card {
  text-align: center;
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.team-card__photo {
  aspect-ratio: 1;
  overflow: hidden;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__body {
  padding: var(--space-lg);
}

.team-card__name {
  font-family: 'Rajdhani', sans-serif;
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.team-card__role {
  font-size: var(--text-sm);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* 17. CONTACT LAYOUT
   ------------------------------------------------------------ */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-3xl);
  align-items: start;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  padding: 0.75rem var(--space-md);
  font-size: var(--text-base);
  width: 100%;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-elevated); }

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-error {
  font-size: var(--text-xs);
  color: var(--status-unavail-text);
  display: none;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: var(--status-unavail-text);
}

.form-group.has-error .form-error { display: block; }

.form-success {
  display: none;
  background: var(--status-available-bg);
  border: 1px solid var(--status-available-text);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
}

.form-success.is-visible { display: block; }

.form-success h3 {
  color: var(--status-available-text);
  margin-bottom: var(--space-sm);
}

/* Contact info panel */
.contact-info {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  position: sticky;
  top: calc(var(--navbar-h) + var(--space-md));
}

.contact-info h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--bg-subtle);
}

.info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.info-item__icon {
  width: 40px;
  height: 40px;
  background: var(--accent-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--accent);
}

.info-item__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.info-item__value {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Hours table */
.hours-table {
  width: 100%;
  font-size: var(--text-sm);
  border-collapse: collapse;
}

.hours-table td {
  padding: var(--space-xs) 0;
  color: var(--text-secondary);
}

.hours-table td:first-child {
  color: var(--text-primary);
  font-weight: 500;
  width: 50%;
}

/* Map placeholder */
.map-placeholder {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-subtle);
  border-radius: var(--radius-md);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-sm);
  color: var(--text-muted);
  font-size: var(--text-sm);
  text-align: center;
}

.map-placeholder__icon { font-size: 2rem; }

/* 18. CTA BANNER
   ------------------------------------------------------------ */
.cta-banner {
  background: var(--accent-muted);
  border-top: 1px solid var(--accent-dim);
  border-bottom: 1px solid var(--accent-dim);
  text-align: center;
  padding-block: var(--space-3xl);
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, var(--text-4xl));
  margin-bottom: var(--space-md);
}

.cta-banner p {
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

/* 19. RELATED PRODUCTS
   ------------------------------------------------------------ */
.related-products {
  padding-block: var(--space-3xl);
  border-top: 1px solid var(--bg-subtle);
}

.related-products h2 {
  margin-bottom: var(--space-2xl);
}

/* 20. FOOTER
   ------------------------------------------------------------ */
.footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--bg-subtle);
  padding-top: var(--space-3xl);
  margin-top: var(--space-3xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--bg-subtle);
}

.footer__brand img {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
}

.footer__store-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__col h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--accent); }

.footer__bottom {
  padding-block: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copy {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__legal a:hover { color: var(--accent); }

/* 21. UTILITIES
   ------------------------------------------------------------ */
.text-accent { color: var(--accent); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.hidden { display: none !important; }

.divider {
  height: 1px;
  background: var(--bg-subtle);
  border: none;
  margin-block: var(--space-2xl);
}

/* 22. SEARCH MODAL
   ------------------------------------------------------------ */
.navbar__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  color: #a09880;
  flex-shrink: 0;
  transition: color var(--transition), background var(--transition);
}

.navbar__search-btn:hover {
  color: var(--accent);
  background: rgba(200, 146, 42, 0.12);
}

.search-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.45);
  align-items: flex-start;
  justify-content: center;
  padding-top: calc(var(--navbar-h) + var(--space-lg));
  padding-inline: var(--space-md);
}

.search-modal.is-open { display: flex; }

.search-modal__box {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  padding: var(--space-xl);
  width: 100%;
  max-width: 560px;
  animation: searchSlideIn 0.18s ease;
}

@keyframes searchSlideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.search-modal__form {
  display: flex;
  gap: var(--space-sm);
}

.search-modal__input {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--bg-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  padding: 0.75rem var(--space-md);
  font-size: var(--text-base);
  transition: border-color var(--transition);
}

.search-modal__input::placeholder { color: var(--text-muted); }

.search-modal__input:focus {
  outline: none;
  border-color: var(--accent);
}

.search-modal__submit {
  padding: 0.75rem var(--space-lg);
  background: var(--accent);
  color: #0d0d0d;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
}

.search-modal__submit:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-accent);
}

/* Search entry inside mobile drawer */
.nav-drawer__search {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-sm);
  border-bottom: 1px solid #2a2a2a;
  color: #a09880;
  font-size: var(--text-base);
  letter-spacing: 0.05em;
  cursor: pointer;
  background: none;
  width: 100%;
  text-align: left;
  transition: color var(--transition);
}

.nav-drawer__search:hover { color: #f0ece4; }

.nav-drawer__search svg { flex-shrink: 0; }

/* Hero two-column layout */
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

/* Deliveries panel */
.deliveries-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--bg-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.deliveries-panel__title {
  font-family: 'Rajdhani', sans-serif;
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--accent-dim);
}

.deliveries-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.deliveries-table th {
  text-align: left;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--bg-subtle);
  padding-right: var(--space-md);
}

.deliveries-table td {
  padding: var(--space-sm) var(--space-md) var(--space-sm) 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--bg-subtle);
  vertical-align: middle;
}

.deliveries-table tr:last-child td { border-bottom: none; }

.deliveries-table td:first-child { color: var(--text-primary); font-weight: 500; }
.deliveries-table td:last-child  { color: var(--text-primary); white-space: nowrap; font-weight: 500; }

/* 23. RESPONSIVE BREAKPOINTS
   ------------------------------------------------------------ */


/* Tablet — 1024px */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .listing-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
    display: none;
  }

  .filters.is-open { display: block; }

  .filter-toggle {
    display: flex;
    margin-bottom: var(--space-lg);
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

/* Tablet — 768px */
@media (max-width: 768px) {
  :root { --space-3xl: 3rem; }

  .container { padding-inline: var(--space-lg); }

  .navbar__nav { display: none; }
  .navbar__search-btn { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }

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

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-grid--reverse { direction: ltr; }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .hero__deliveries { order: 1; }

  .search-modal__form { flex-direction: column; }
  .search-modal__submit { width: 100%; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

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

/* Mobile — 480px */
@media (max-width: 480px) {
  :root { --navbar-h: 60px; --notification-h: 48px; }

  .container { padding-inline: var(--space-md); }

  .hero__title { font-size: 2rem; }

  .grid-2, .grid-3, .grid-4, .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-thumbs { gap: var(--space-xs); }

  .product-price { font-size: var(--text-2xl); }

  .product-layout,
  .contact-layout {
    gap: var(--space-xl);
  }

  .hero__actions .btn { width: 100%; justify-content: center; }

  .pagination { flex-wrap: wrap; }

  /* Prevent long words/URLs from causing overflow */
  p, li, h1, h2, h3, h4 { overflow-wrap: break-word; word-break: break-word; }
}
