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

html { font-size: 15px; scroll-behavior: smooth; }

:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --bg-elevated: #1a1a1a;
  --border: rgba(225, 29, 46, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(225, 29, 46, 0.45);

  --red: #e11d2e;
  --red-hover: #dc2626;
  --red-light: #f43f5e;
  --red-dark: #b91c1c;
  --red-glow: rgba(225, 29, 46, 0.45);
  --red-glow-soft: rgba(225, 29, 46, 0.12);
  --red-tint: rgba(225, 29, 46, 0.12);

  --text: #e8e8e8;
  --text-bright: #ffffff;
  --text-muted: #8a8a8a;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Starfield */
.space-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(225, 29, 46, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, var(--red-glow-soft) 0%, transparent 70%),
    var(--bg);
}

.space-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 65%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 80%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 35%, rgba(255,255,255,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 90%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 45%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 72%, rgba(255,255,255,0.35) 0%, transparent 100%);
  opacity: 0.85;
}

.space-bg::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 140vmax; height: 140vmax;
  transform: translate(-50%, -50%);
  background: repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg 8deg, rgba(225, 29, 46, 0.03) 8deg 9deg);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 75%);
}

.site-shell { position: relative; z-index: 1; display: flex; flex-direction: column; min-height: 100vh; }

.gradient-text,
.section-gradient {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 45%, #fb7185 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Header */
.shop-header {
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.shop-brand {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-bright);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.shop-brand .brand-name span,
.footer-brand .brand-name span { color: var(--red-light); }

.shop-brand .brand-icon,
.footer-brand .brand-icon { height: 32px; width: auto; flex-shrink: 0; }

.shop-nav { display: flex; gap: 4px; align-items: center; }

.shop-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.shop-nav a:hover { color: var(--text-bright); background: var(--red-tint); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 18px;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 8px;
}

.header-right { display: flex; align-items: center; gap: 12px; }

.btn-contact {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: 9px 18px;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--red-glow);
  filter: brightness(1.08);
}

/* Main */
.shop-main { flex: 1; width: 100%; }

/* Buttons */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--red-glow);
  filter: brightness(1.08);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 12px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s, transform 0.2s, color 0.2s;
}

.btn-hero-outline:hover {
  border-color: var(--red);
  background: var(--red-tint);
  color: var(--text-bright);
  transform: translateY(-2px);
}

.btn-white-style {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}

.btn-white-style:hover { background: #f5f5f5; border-color: #f5f5f5; color: #0a0a0a; }

.btn-block { width: 100%; }

/* Landing homepage */
.landing-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 40px;
  text-align: center;
}

.landing-hero-inner { max-width: 720px; margin: 0 auto; }

.announcement-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(225, 29, 46, 0.5);
  box-shadow: 0 0 20px rgba(225, 29, 46, 0.2), inset 0 0 20px rgba(225, 29, 46, 0.05);
  font-size: 13px;
  margin-bottom: 28px;
}

.announcement-pill strong { color: var(--red-light); font-weight: 700; }

.landing-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-bright);
  margin-bottom: 16px;
}

.landing-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.landing-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 56px;
  text-align: left;
}

.feature-card {
  background: linear-gradient(145deg, rgba(225,29,46,0.08) 0%, rgba(17,17,17,0.95) 60%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(225, 29, 46, 0.12);
}

.feature-icon { margin-bottom: 12px; }
.feature-icon img { width: 32px; height: 32px; object-fit: contain; display: block; }

.feature-card h3 { font-size: 15px; font-weight: 700; color: var(--text-bright); margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.feature-card footer { margin-top: 16px; font-weight: 600; color: var(--text-bright); font-size: 13px; }

.landing-about {
  border-top: 1px solid var(--border-subtle);
  background: rgba(0,0,0,0.25);
  padding: 64px 24px;
}

.landing-about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.landing-about h2,
.landing-faq h2,
.landing-products h2,
.landing-reviews h2,
.landing-terms h2,
.landing-contact h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.landing-about-text { color: var(--text-muted); margin-bottom: 24px; line-height: 1.65; }

.mascot-wrap { display: flex; justify-content: center; animation: float 5s ease-in-out infinite; }
.mascot-logo { max-width: 280px; height: auto; opacity: 0.9; filter: drop-shadow(0 0 40px var(--red-glow-soft)); }

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

.landing-faq {
  max-width: 1200px;
  margin: 64px auto 0;
}

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }

.faq-item {
  background: var(--bg-card);
  border-left: 3px solid var(--red);
  border-radius: 12px;
  padding: 16px 20px;
  transition: background 0.2s;
}

.faq-item:hover { background: var(--bg-card-hover); }
.faq-item.open { border-left-color: var(--red-light); }

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  color: var(--text-bright);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.faq-chevron { color: var(--red); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s;
}

.faq-item.open .faq-answer { max-height: 200px; opacity: 1; }
.faq-answer p { padding-top: 12px; font-size: 13px; color: var(--text-muted); line-height: 1.55; }

.landing-products {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
}

.landing-products-head { text-align: center; margin-bottom: 28px; }

.landing-search {
  max-width: 520px;
  margin: 0 auto 20px;
}

.landing-search input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  outline: none;
}

.landing-search input:focus { box-shadow: 0 0 0 3px var(--red-glow-soft), 0 4px 24px rgba(0,0,0,0.3); }

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-pill {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  background: var(--red);
  color: #fff;
  transition: transform 0.15s, filter 0.15s, box-shadow 0.15s, background 0.15s;
}

.filter-pill:hover { filter: brightness(1.1); transform: scale(1.03); }
.filter-pill.active { box-shadow: 0 0 20px var(--red-glow); }
.filter-pill.inactive { background: rgba(225, 29, 46, 0.15); color: #ccc; }
.filter-pill.inactive:hover { background: rgba(225, 29, 46, 0.28); }

.landing-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.landing-product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.landing-product-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(225,29,46,0.15);
}

.landing-product-card.hidden { display: none; }

.landing-product-banner {
  display: block;
  position: relative;
  height: 140px;
  background: linear-gradient(135deg, rgba(127,29,29,0.4), var(--bg));
  overflow: hidden;
}

.landing-product-banner img { width: 100%; height: 100%; object-fit: cover; }

.landing-product-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.landing-product-placeholder img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  opacity: 0.85;
}

.price-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
}

.landing-product-body { padding: 20px; }
.landing-product-body h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.landing-product-body h3 a:hover { color: var(--red-light); }
.landing-product-body > p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }

.landing-product-features {
  list-style: none;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.landing-product-features li { margin-bottom: 4px; }
.landing-product-features li::marker { color: var(--red-light); }

.landing-reviews {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(0,0,0,0.2);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.landing-terms,
.landing-contact {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px;
  text-align: center;
}

.landing-terms p,
.landing-contact p { color: var(--text-muted); font-size: 14px; line-height: 1.65; margin-top: 12px; }

.landing-contact .btn-hero { margin-top: 24px; }

/* Inner pages wrapper */
.search-page,
.category-page,
.categories-page,
.product-page,
.section-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

.section-block { padding: 48px 24px; }

.section-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
}

.section-title-bar h2 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title-bar h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 14px;
  background: var(--red);
  margin-right: 8px;
  vertical-align: -2px;
  border-radius: 2px;
}

.section-link { font-size: 13px; color: var(--text-muted); transition: color 0.15s; }
.section-link:hover { color: var(--red-light); }

/* Product grid (browse, category, related) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(225,29,46,0.1);
}

.card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(127,29,29,0.3), var(--bg-card));
}

.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.product-card:hover .card-image img { transform: scale(1.05); }

.card-image-empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image-empty img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  opacity: 0.75;
}

.card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }

.card-title { font-size: 14px; font-weight: 700; color: var(--text-bright); line-height: 1.35; }
.card-category { font-size: 12px; color: var(--red-light); }
.card-meta { display: flex; gap: 12px; font-size: 12px; }
.card-rating { color: #f5b342; }
.card-sales { color: var(--text-muted); }
.card-prices { display: flex; gap: 10px; align-items: baseline; margin-top: auto; padding-top: 8px; }

.price-php { font-size: 16px; font-weight: 800; color: var(--text-bright); }
.price-usd { font-size: 13px; color: var(--text-muted); }

/* Product detail */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.product-main-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.product-main-image img { width: 100%; height: auto; }

.product-main-image-empty {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-main-image-empty img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  opacity: 0.85;
}

.product-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }

.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-featured { background: rgba(208, 176, 64, 0.1); color: #d0b040; border: 1px solid rgba(208, 176, 64, 0.2); }
.badge-new { background: rgba(74, 224, 106, 0.1); color: #4ae06a; border: 1px solid rgba(74, 224, 106, 0.2); }
.badge-oos { background: rgba(224, 96, 96, 0.1); color: #e06060; border: 1px solid rgba(224, 96, 96, 0.2); }

.product-title { font-size: 28px; font-weight: 800; color: var(--text-bright); margin-bottom: 8px; line-height: 1.2; }
.product-category { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.product-category a { color: var(--red-light); }
.product-category a:hover { text-decoration: underline; }

.product-meta { display: flex; gap: 16px; margin-bottom: 16px; font-size: 14px; }
.product-rating { color: #f5b342; font-weight: 600; }
.product-sales { color: var(--text-muted); }

.product-prices { margin-bottom: 20px; display: flex; gap: 16px; align-items: baseline; }
.product-price-php { font-size: 32px; font-weight: 800; color: var(--text-bright); }
.product-price-usd { font-size: 18px; color: var(--text-muted); }

.product-description {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

.product-actions { display: flex; gap: 12px; }

.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--red-glow);
}

/* Search / browse */
.search-header h1,
.categories-page h1,
.category-header h1 {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-bright);
  margin-bottom: 20px;
}

.search-header h1 .gradient-text,
.category-header h1 { background: linear-gradient(135deg, var(--red), var(--red-light)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.search-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin-bottom: 24px;
}

.search-form input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: #fff;
  color: #111;
  font-size: 14px;
  font-family: inherit;
}

.search-form input:focus { outline: none; box-shadow: 0 0 0 3px var(--red-glow-soft); border-color: var(--red); }

.search-form button {
  padding: 12px 24px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: filter 0.2s, transform 0.2s;
}

.search-form button:hover { filter: brightness(1.08); transform: translateY(-1px); }

.search-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 28px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

.filter-group { display: flex; flex-direction: column; gap: 6px; }
.filter-group label { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

.filter-group select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 13px;
  font-family: inherit;
}

.filter-group select:focus { outline: none; border-color: var(--red); }

.search-count { font-size: 13px; color: var(--text-muted); margin-left: auto; align-self: center; }

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.category-list li a {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(225, 29, 46, 0.15);
  color: #ccc;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}

.category-list li a:hover {
  background: var(--red);
  color: #fff;
  transform: scale(1.03);
}

.categories-intro { color: var(--text-muted); margin-bottom: 24px; }

.categories-doc-list { list-style: none; }

.categories-doc-list li { border-bottom: 1px solid var(--border-subtle); }
.categories-doc-list li:last-child { border-bottom: none; }

.category-doc-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.category-doc-link:hover { background: var(--bg-card); color: var(--text-bright); }
.category-doc-count { font-size: 13px; color: var(--text-muted); }

.category-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.category-count { font-size: 14px; color: var(--text-muted); }

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.page-link {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.15s;
}

.page-link:hover { color: var(--text-bright); border-color: var(--border); background: var(--bg-card); }
.page-current { font-size: 14px; color: var(--text-muted); }

.text-dim { color: var(--text-muted); font-size: 14px; }

/* Footer */
.shop-footer {
  border-top: 1px solid var(--border-subtle);
  background: rgba(10, 10, 10, 0.9);
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-bright);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-nav { display: flex; gap: 20px; }
.footer-nav a { font-size: 13px; color: var(--text-muted); transition: color 0.15s; }
.footer-nav a:hover { color: var(--red-light); }
.footer-text { font-size: 12px; color: var(--text-muted); }

/* Responsive */
@media (max-width: 900px) {
  .shop-nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: rgba(10,10,10,0.98); border-bottom: 1px solid var(--border-subtle); flex-direction: column; padding: 12px; z-index: 40; }
  .shop-nav.show { display: flex; }
  .shop-nav a { padding: 12px 16px; width: 100%; }
  .menu-toggle { display: block; }
  .btn-contact { display: none; }
  .shop-header { position: relative; }
  .header-inner { position: relative; }
  .landing-about-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 16px; }
  .landing-hero,
  .landing-about,
  .landing-products,
  .landing-reviews { padding-left: 16px; padding-right: 16px; }
  .search-page,
  .category-page,
  .categories-page,
  .product-page { padding-left: 16px; padding-right: 16px; }
  .landing-cta-row { flex-direction: column; }
  .btn-hero, .btn-hero-outline { width: 100%; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .landing-product-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .search-controls { flex-direction: column; align-items: stretch; }
  .search-count { margin-left: 0; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .card-body { padding: 10px; }
  .shop-brand .brand-icon { height: 26px; }
}
