/* ============================================
   Shop Page - Sidebar + Product Grid
   ============================================ */
/* ============================================
   Design System - Tokens & Components
   ============================================ */
/* ---- Design Tokens ---- */
:root {
  /* Primary - warm terracotta */
  --primary: #C4553A;
  --primary-light: #D4715A;
  --primary-dark: #9E3F2A;
  /* Accent - sage green */
  --accent: #5B7C5E;
  --accent-light: #7FA882;
  --accent-dark: #4A654D;
  /* Neutrals */
  --cream: #FAF6F1;
  --warm-gray: #6B5E57;
  --warm-gray-light: #A89B93;
  /* Surfaces */
  --surface: #FFFFFF;
  --surface-alt: #F7F3EE;
  --border: #E5DDD5;
  --border-light: #F0EBE5;
  /* Text */
  --text-primary: #2D2520;
  --text-secondary: #5C524B;
  --text-muted: #8A7F78;
  --text-inverse: #FFFFFF;
  /* Functional */
  --success: #4A8B5C;
  --error: #C4553A;
  --warning: #D4915A;
  --info: #5A7C9E;
  /* Spacing scale */
  --space-2xs: 0.125rem;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 900px;
  --max-width-wide: 1440px;
  --header-height: 72px;
  --utility-height: 44px;
  --total-header-height: calc(var(--header-height) + var(--utility-height));
  --sidebar-width: 280px;
  /* Typography */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "DM Serif Text", Georgia, "Times New Roman", serif;
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 999px;
  --radius-circle: 50%;
  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(45, 37, 32, 0.04);
  --shadow-sm: 0 1px 3px rgba(45, 37, 32, 0.06), 0 1px 2px rgba(45, 37, 32, 0.04);
  --shadow-md: 0 4px 12px rgba(45, 37, 32, 0.08);
  --shadow-lg: 0 8px 24px rgba(45, 37, 32, 0.12);
  --shadow-xl: 0 16px 48px rgba(45, 37, 32, 0.16);
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
  /* Section padding */
  --section-padding: clamp(3rem, 7vw, 5rem) 0;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}
@media (min-width: 768px) {
  .container {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.container--wide {
  max-width: var(--max-width-wide);
}

/* ---- Section ---- */
.section {
  padding: var(--section-padding);
}

.section--alt {
  background-color: var(--surface-alt);
}

.section--dark {
  background-color: var(--text-primary);
  color: var(--text-inverse);
}
.section--dark .topper {
  color: var(--primary-light);
}
.section--dark p {
  color: rgba(255, 255, 255, 0.8);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.btn--primary {
  background-color: var(--primary);
  color: var(--text-inverse);
  border-color: var(--primary);
}
.btn--primary:hover:not(:disabled) {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-inverse);
}

.btn--outline {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}
.btn--outline:hover:not(:disabled) {
  border-color: var(--text-primary);
  background-color: var(--surface-alt);
}

.btn--ghost {
  background-color: transparent;
  color: var(--text-secondary);
  padding: 0.5rem 0.75rem;
}
.btn--ghost:hover:not(:disabled) {
  color: var(--text-primary);
  background-color: var(--surface-alt);
}

.btn--accent {
  background-color: var(--accent);
  color: var(--text-inverse);
  border-color: var(--accent);
}
.btn--accent:hover:not(:disabled) {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

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

/* ---- Cards ---- */
.card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--surface-alt);
}
.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.card__image:hover img {
  transform: scale(1.03);
}

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

/* ---- Badges ---- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.badge--primary {
  background-color: var(--primary);
  color: var(--text-inverse);
}

.badge--accent {
  background-color: var(--accent);
  color: var(--text-inverse);
}

.badge--outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.badge--sale {
  background-color: var(--error);
  color: var(--text-inverse);
}

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

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-primary);
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 85, 58, 0.12);
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B5E57' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

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

/* ---- Utility Classes ---- */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

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

.grid {
  display: grid;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.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);
}

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

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.hidden {
  display: none;
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}
/* ---- Divider ---- */
.divider {
  width: 100%;
  height: 1px;
  background-color: var(--border);
  border: none;
  margin: var(--space-xl) 0;
}

/* ---- Loading Spinner ---- */
.spinner {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  border-radius: var(--radius-circle);
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* ---- Toast / Notification ---- */
.toast {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  background-color: var(--text-primary);
  color: var(--text-inverse);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 10001;
  transform: translateY(120%);
  opacity: 0;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}
.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================
   Typography - Font Faces & Type Scale
   ============================================ */
/* Inter - Body Font */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/inter-v18-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/inter-v18-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/inter-v18-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/inter-v18-latin-700.woff2") format("woff2");
}
/* DM Serif Text - Heading Font */
@font-face {
  font-family: "DM Serif Text";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/dm-serif-text-v12-latin-regular.woff2") format("woff2");
}
/* Heading Styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

h1 {
  /* 36px - 56px */
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.15;
}

h2 {
  /* 28px - 42px */
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  line-height: 1.2;
}

h3 {
  /* 22px - 30px */
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  line-height: 1.25;
}

h4 {
  /* 18px - 24px */
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.3;
}

h5 {
  font-size: 1.125rem;
  line-height: 1.4;
  font-family: var(--font-body);
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  line-height: 1.4;
  font-family: var(--font-body);
  font-weight: 600;
}

/* Body Text */
p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
p:last-child {
  margin-bottom: 0;
}

/* Links */
a {
  color: var(--primary);
  transition: color 0.2s ease;
}
a:hover {
  color: var(--primary-dark);
}

/* Small/Label Text */
small,
.text-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1.5;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Section Topper */
.topper {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

/* Section Title */
.section-title {
  margin-bottom: 1rem;
  max-width: 44rem;
}

/* Section Text */
.section-text {
  max-width: 40rem;
  color: var(--text-secondary);
}

/* ---- Shop Header ---- */
.shop {
  padding: calc(var(--total-header-height) + var(--space-lg)) 0 var(--space-4xl);
}

.shop__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-light);
}
.shop__header .section-title {
  margin-bottom: 0;
}

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

@media (min-width: 1024px) {
  .shop__filter-toggle {
    display: none;
  }
}

.shop__sort .form-select {
  min-width: 180px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
}

/* ---- Two Column Layout ---- */
.shop__layout {
  display: flex;
  gap: var(--space-2xl);
  align-items: flex-start;
}

/* ---- Sidebar ---- */
.shop__sidebar {
  width: var(--sidebar-width);
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--total-header-height) + var(--space-lg));
  /* Mobile: slide-in overlay */
}
@media (max-width: 1023px) {
  .shop__sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    z-index: 10001;
    background: var(--surface);
    box-shadow: var(--shadow-xl);
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .shop__sidebar.is-open {
    transform: translateX(0);
  }
}
@media (min-width: 1024px) {
  .shop__sidebar {
    display: block;
  }
}

.shop__sidebar-inner {
  padding: 0;
}
@media (max-width: 1023px) {
  .shop__sidebar-inner {
    padding: var(--space-xl) var(--space-lg) calc(var(--space-4xl) + 60px);
  }
}

.shop__sidebar-close-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  padding: var(--space-md) var(--space-lg);
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  z-index: 10002;
}

/* ---- Filter Groups ---- */
.shop__filter-group {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
}

.shop__filter-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-sm) 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.shop__filter-heading svg {
  transition: transform var(--transition-fast);
  color: var(--text-muted);
}
.shop__filter-heading[aria-expanded=false] svg {
  transform: rotate(-90deg);
}

.shop__filter-body {
  padding-top: var(--space-xs);
}

/* ---- Checkboxes ---- */
.shop__filter-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 0;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.shop__filter-checkbox:hover {
  color: var(--text-primary);
}
.shop__filter-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.shop__checkbox-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: all var(--transition-fast);
}
input:checked + .shop__checkbox-mark {
  background-color: var(--primary);
  border-color: var(--primary);
}
input:checked + .shop__checkbox-mark::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
input:focus-visible + .shop__checkbox-mark {
  box-shadow: 0 0 0 3px rgba(196, 85, 58, 0.15);
}

.shop__checkbox-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop__checkbox-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ---- Price Range ---- */
.shop__price-inputs {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.shop__price-field {
  position: relative;
  flex: 1;
}
.shop__price-field .form-input {
  padding-left: 1.5rem;
  font-size: 0.875rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.shop__price-prefix {
  position: absolute;
  left: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.875rem;
  color: var(--text-muted);
  pointer-events: none;
}

.shop__price-dash {
  color: var(--text-muted);
  flex-shrink: 0;
}

.shop__price-apply {
  margin-top: var(--space-xs);
}

/* ---- Active Filters ---- */
.shop__active-filters {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

.shop__filter-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.shop__filter-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.shop__clear-all {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.shop__clear-all:hover {
  text-decoration: underline;
}

.shop__active-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.shop__active-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.shop__active-tag:hover {
  background: var(--cream);
  border-color: var(--primary-light);
  color: var(--primary-dark);
}
.shop__active-tag svg {
  flex-shrink: 0;
  opacity: 0.6;
}

/* ---- Main Content Area ---- */
.shop__main {
  flex: 1;
  min-width: 0;
}

.shop__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ---- Product Grid ---- */
.shop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .shop__grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

/* ---- Product Card ---- */
.shop__product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.shop__product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.shop__product-card:hover .shop__product-image img {
  transform: scale(1.04);
}

.shop__product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--surface-alt);
}
.shop__product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.shop__product-image .badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
}

.shop__product-info {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.shop__product-vendor {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.shop__product-title {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop__product-price {
  margin-top: auto;
  padding-top: var(--space-xs);
  font-size: 0.9375rem;
  font-weight: 600;
}

.shop__price-current {
  color: var(--text-primary);
}
.shop__price-current--sale {
  color: var(--error);
}

.shop__price-compare {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.8125rem;
}

/* ---- Empty State ---- */
.shop__empty {
  grid-column: 1/-1;
  text-align: center;
  padding: var(--space-4xl) var(--space-lg);
  color: var(--text-muted);
}
.shop__empty svg {
  margin: 0 auto var(--space-md);
  display: block;
}
.shop__empty p {
  margin-bottom: var(--space-lg);
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ---- Pagination ---- */
.shop__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-light);
}
.shop__pagination:empty {
  display: none;
}

.shop__page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--space-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.shop__page-btn:hover:not(:disabled) {
  background: var(--surface-alt);
  border-color: var(--border);
  color: var(--text-primary);
}
.shop__page-btn.is-active {
  background: var(--primary);
  color: var(--text-inverse);
  border-color: var(--primary);
  font-weight: 600;
}
.shop__page-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.shop__page-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 40px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ---- Mobile sidebar backdrop ---- */
@media (max-width: 1023px) {
  .shop__sidebar.is-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 320px;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
  }
}

/*# sourceMappingURL=shop.css.map */
