/* ═══════════════════════════════════════════════════════════════════════════════
   VARIABLES GLOBALES Y RESET
   ═══════════════════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #faf9f7;
  --surface: #ffffff;
  --border: #e8e4df;
  --text: #1a1916;
  --muted: #8a8680;
  --accent: #c9a96e;
  --accent-dark: #a8864d;
  --tag-m: #dce8f0;
  --tag-m-text: #2a5570;
  --tag-u: #e8e0f0;
  --tag-u-text: #4a2a70;
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HEADER Y NAVEGACIÓN
   ═══════════════════════════════════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

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

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

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--text);
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--text);
  color: #fff;
  border: none;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.cart-btn:hover {
  background: #333;
}

.cart-count {
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HERO Y SECCIONES
   ═══════════════════════════════════════════════════════════════════════════════ */
.hero {
  text-align: center;
  padding: 5rem 2rem 3.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.hero-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-pills {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border);
  padding: 0.45rem 1rem;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.section-heading {
  text-align: center;
  padding: 3rem 2rem 0.5rem;
}

.section-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
}

.section-heading p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 1rem auto 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FILTROS Y BÚSQUEDA
   ═══════════════════════════════════════════════════════════════════════════════ */
.filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 2rem 1.5rem;
}

.filter-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  padding: 0.4rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.search-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 200px;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.9rem;
  font-family: 'Jost', sans-serif;
  color: var(--text);
}

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

.search-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.1);
}

.search-results {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CATÁLOGO
   ═══════════════════════════════════════════════════════════════════════════════ */
.catalog {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  animation: fadeUp 0.4s ease both;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

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

.card-visual {
  height: 155px;
  background: linear-gradient(135deg, #f5f3f0 0%, #ece8e2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(201, 169, 110, 0.12), transparent 70%);
}

.card-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.card-icon {
  font-size: 3rem;
  opacity: 0.55;
  z-index: 2;
  position: relative;
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  font-weight: 500;
  z-index: 3;
}

.badge-masculino {
  background: var(--tag-m);
  color: var(--tag-m-text);
}

.badge-unisex {
  background: var(--tag-u);
  color: var(--tag-u-text);
}

.card-body {
  padding: 1rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-brand {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

.card-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 0.9rem;
}

.card-desc em {
  font-style: italic;
  color: var(--accent-dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
}

.size-selector {
  display: flex;
  margin-bottom: 0.9rem;
  border: 1px solid var(--border);
  width: 100%;
}

.size-opt {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.38rem 0;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  transition: all 0.18s;
  line-height: 1.3;
  text-align: center;
  flex: 1;
  user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.size-opt:first-child {
  border-right: 1px solid var(--border);
}

.size-opt:hover {
  background: rgba(201, 169, 110, 0.08);
}

.size-opt.selected {
  background: var(--text);
  color: #fff;
}

.size-opt .size-price {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: inherit;
  margin-top: 1px;
}

.size-opt .size-save {
  display: block;
  font-size: 0.59rem;
  color: #4a8a4a;
  margin-top: 1px;
}

.size-opt.selected .size-save {
  color: #a0d4a0;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 0.4rem;
  padding: 0.4rem;
}

.qty-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  width: 2rem;
  height: 2rem;
  border-radius: 0.3rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--accent-dark);
  transform: scale(1.05);
}

.qty-btn:active {
  transform: scale(0.95);
}

.qty-display {
  font-weight: 600;
  font-size: 0.95rem;
  min-width: 1.5rem;
  text-align: center;
  color: var(--text);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
  gap: 0.5rem;
}

.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.card-ml {
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
  margin-top: -3px;
}

.add-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--text);
  color: #fff;
  border: none;
  padding: 0.52rem 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.add-btn:hover {
  background: var(--accent);
}

.add-btn.added {
  background: #e8f0e8;
  color: #2a5a2a;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PAGINACIÓN
   ═══════════════════════════════════════════════════════════════════════════════ */
.pagination {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.pagination-btn {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.1em;
  transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--text);
  color: #fff;
}

.pagination-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-info {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PACKS
   ═══════════════════════════════════════════════════════════════════════════════ */
.packs-section {
  border-top: 1px solid var(--border);
  background: #fff;
  padding-bottom: 3rem;
}

.packs-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.5rem;
}

.pack-card {
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  animation: fadeUp 0.4s ease both;
  position: relative;
  overflow: hidden;
}

.pack-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.pack-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}

.pack-header {
  padding: 1.3rem 1.3rem 0;
}

.pack-tag {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
  display: block;
}

.pack-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.pack-desc {
  font-size: 0.79rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.9rem;
}

.pack-items {
  padding: 0 1.3rem;
  margin-bottom: 0.9rem;
}

.pack-item {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.79rem;
}

.pack-item:last-child {
  border-bottom: none;
}

.pack-item-dot {
  color: var(--accent);
  font-size: 0.58rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.pack-item-name {
  flex: 1;
  color: var(--text);
}

.pack-item-size {
  font-size: 0.68rem;
  color: var(--muted);
  white-space: nowrap;
  background: var(--border);
  padding: 0.1rem 0.35rem;
  align-self: center;
}

.pack-footer {
  padding: 0.9rem 1.3rem 1.3rem;
  margin-top: auto;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pack-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}

.pack-original {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 0.25rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

.pack-saving {
  font-size: 0.68rem;
  color: #4a8a4a;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 3px;
}

.pack-add-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.pack-add-btn:hover {
  background: var(--accent-dark);
}

.pack-add-btn.added {
  background: #e8f0e8;
  color: #2a5a2a;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CARRITO
   ═══════════════════════════════════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

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

.cart-panel {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(430px, 100vw);
  background: var(--surface);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.12);
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.8rem;
  border-bottom: 1px solid var(--border);
}

.cart-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--muted);
  line-height: 1;
}

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

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.cart-empty-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  opacity: 0.4;
}

.cart-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.cart-item-info {
  flex: 1;
}

.cart-item-brand {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.15rem;
}

.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.cart-item-meta {
  font-size: 0.73rem;
  color: var(--muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.15s;
}

.qty-btn:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.qty-val {
  font-size: 0.85rem;
  min-width: 20px;
  text-align: center;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-left: 0.5rem;
  text-decoration: underline;
  padding: 0;
}

.remove-btn:hover {
  color: #c0392b;
}

.cart-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  white-space: nowrap;
}

.cart-footer {
  padding: 1.2rem 1.8rem;
  border-top: 1px solid var(--border);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.3rem;
}

.cart-subtotal-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-subtotal-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
}

.cart-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.whatsapp-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 0.9rem 1.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #1da851;
}

.whatsapp-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  font-size: 0.8rem;
}

.footer-grid h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.footer-grid p {
  line-height: 1.8;
  color: var(--muted);
}

.footer-grid ul {
  list-style: none;
  line-height: 1.8;
}

.footer-grid a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-divider {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.footer-divider p {
  margin: 0.3rem 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .header {
    padding: 0 1.5rem;
  }

  nav {
    gap: 1.5rem;
  }

  .cart-btn {
    font-size: 0.7rem;
    padding: 0.4rem 0.9rem;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 0 1rem;
    height: 56px;
  }

  nav a {
    display: none;
  }

  .cart-btn {
    font-size: 0.65rem;
    padding: 0.4rem 0.8rem;
  }

  .hero {
    padding: 3rem 1.2rem 2.5rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-pills {
    gap: 0.5rem;
  }

  .hero-pill {
    font-size: 0.65rem;
    padding: 0.35rem 0.8rem;
  }

  .section-heading {
    padding: 2rem 1.2rem 0.5rem;
  }

  .section-heading h2 {
    font-size: 1.5rem;
  }

  .filters {
    padding: 1rem;
  }

  .filter-btn {
    font-size: 0.65rem;
    padding: 0.35rem 0.8rem;
  }

  .search-bar {
    padding: 1rem;
    gap: 0.5rem;
  }

  .search-input {
    min-width: 100%;
    font-size: 0.85rem;
  }

  .catalog {
    padding: 0.8rem;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .card-visual {
    height: 120px;
  }

  .card-body {
    padding: 0.8rem 1rem;
  }

  .card-name {
    font-size: 1rem;
  }

  .card-price {
    font-size: 1.2rem;
  }

  .pagination {
    padding: 1rem;
  }

  .pagination-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
  }

  .pagination-info {
    width: 100%;
    text-align: center;
    margin: 0.5rem 0 0;
  }

  .packs-grid {
    padding: 0.8rem;
    gap: 1rem;
    grid-template-columns: 1fr;
  }

  .cart-panel {
    width: 100vw;
  }

  .footer-grid {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .footer-divider {
    padding: 1rem;
  }
}
