/* ============================
   DU QUINTAL - Design System
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #175f31;
  --color-primary-light: #2c7a4a;
  --color-secondary: #a61922;
  --color-secondary-light: #c92430;
  --color-accent: #c8963c;
  --color-gold: #d4a843;
  --color-bg: #faf8f5;
  --color-surface: #ffffff;
  --color-surface-alt: #f5f0e8;
  --color-border: #e8dcc8;
  --color-text: #2c1810;
  --color-text-light: #6b5a4e;
  --color-text-muted: #9c8a7e;
  --shadow-sm: 0 1px 3px rgba(44,24,16,0.08), 0 1px 2px rgba(44,24,16,0.05);
  --shadow-md: 0 4px 16px rgba(44,24,16,0.1), 0 2px 6px rgba(44,24,16,0.06);
  --shadow-lg: 0 10px 40px rgba(44,24,16,0.15), 0 4px 12px rgba(44,24,16,0.08);
  --shadow-xl: 0 25px 60px rgba(44,24,16,0.2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-height: 80px;
  --sidebar-width: 280px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ============================
   SCROLLBAR
   ============================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-accent); }

/* ============================
   HEADER & NAVIGATION
   ============================ */
.header {
  background: var(--color-primary);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header.scrolled,
.header.solid {
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border), var(--shadow-sm);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  height: 85px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 12px;
  transition: all var(--transition);
}

.header.scrolled .logo-img,
.header.solid .logo-img {
  height: 70px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.15);
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  color: var(--color-primary);
  background: rgba(23, 95, 49, 0.06);
}

.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Header not scrolled styles for transparent/green header */
.header:not(.scrolled):not(.solid) .logo-text {
  color: white;
}

.header:not(.scrolled):not(.solid) .nav-link {
  color: rgba(255, 255, 255, 0.95);
}

.header:not(.scrolled):not(.solid) .nav-link::after {
  background-color: var(--color-gold);
}

.header:not(.scrolled):not(.solid) .nav-link:hover {
  color: var(--color-gold);
  background: rgba(255, 255, 255, 0.08);
}

.header:not(.scrolled):not(.solid) .nav-link.active {
  color: var(--color-gold);
  background: rgba(255, 255, 255, 0.12);
}

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  background: var(--color-secondary);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
  margin-left: 8px;
  animation: cta-pulse 2s infinite alternate;
}

.nav-cta:hover {
  background: var(--color-secondary-light);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 12px rgba(166, 25, 34, 0.4);
}

@keyframes cta-pulse {
  0% { box-shadow: 0 0 0 rgba(166, 25, 34, 0); }
  100% { box-shadow: 0 0 10px rgba(166, 25, 34, 0.6); }
}

.mobile-toggle {
  display: none;
  color: var(--color-text);
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-toggle:hover { background: var(--color-surface-alt); }

/* ============================
   HERO STATIC
   ============================ */
/* ============================
   HERO MOSAIC LAYOUT
   ============================ */
.hero-static {
  position: relative;
  background: #0b180d; /* Extremely elegant deep forest green background */
  padding: calc(var(--nav-height) + 32px) 0 48px 0;
  color: white;
  overflow: hidden;
}

.hero-static::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212, 168, 67, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.6;
}

.hero-mosaic-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  min-height: 520px;
}

.hero-mosaic-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: stretch;
}

.mosaic-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.25), border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 40px;
}

.mosaic-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Block background classes */
.block-buy {
  background: linear-gradient(135deg, #175f31 0%, #0d361c 100%);
  flex: 1;
}

.block-buy:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 25px rgba(23, 95, 49, 0.3);
}

.block-chope {
  background: linear-gradient(135deg, #1d0f0a 0%, #3d1c0e 100%);
  border: 1.5px dashed rgba(212, 168, 67, 0.35);
  flex: 1;
}

.block-chope:hover {
  border-color: var(--color-gold);
  box-shadow: 0 10px 25px rgba(212, 168, 67, 0.2);
}

.hero-mosaic-right {
  display: flex;
}

.block-promo {
  flex: 1;
  padding: 0;
  border: 1.5px solid rgba(212, 168, 67, 0.2);
  position: relative;
}

.block-promo:hover {
  border-color: var(--color-gold);
  box-shadow: 0 10px 30px rgba(212, 168, 67, 0.2);
}

/* Promo Slider Container */
.promo-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.promo-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  padding: 40px 50px;
}

.promo-slide.active {
  opacity: 1;
  z-index: 2;
}

.promo-slide-content {
  position: relative;
  z-index: 3;
  max-width: 500px;
  text-align: left;
}

/* Block text styling */
.block-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.block-badge.promo {
  color: #fff;
  background: var(--color-secondary);
  padding: 4px 10px;
  border-radius: 100px;
}

.block-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  line-height: 1.2;
}

.block-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 20px;
}

.mosaic-block-content {
  text-align: left;
}

.mosaic-block-content .btn,
.promo-slide-content .btn {
  box-shadow: none;
}

/* Dots navigation */
.promo-dots {
  position: absolute;
  bottom: 24px;
  right: 32px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.promo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.promo-dot.active {
  background: var(--color-gold);
  transform: scale(1.25);
}

/* Responsive Mosaic grid */
@media (max-width: 992px) {
  .hero-mosaic {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-mosaic-right {
    min-height: 380px;
  }
  .promo-slider {
    min-height: 380px;
  }
  .promo-slide {
    min-height: 380px;
    padding: 30px;
  }
  .hero-static {
    padding: calc(var(--nav-height) + 20px) 0 40px 0;
  }
}

/* ============================
   BUTTONS & ANIMATED LINKS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease, background-color 0.2s ease, border-color 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.75s ease;
}

.btn:hover::after {
  left: 150%;
}

.btn:active {
  transform: translateY(-1px) scale(0.97);
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
  background: var(--color-secondary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--color-secondary-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
  background: var(--color-accent);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* Custom Animated Link for "Peça Chope! 🍺" */
.nav-link-chope {
  color: #d4a843 !important; /* Gold text */
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: rgba(212, 168, 67, 0.08);
  border: 1.5px solid rgba(212, 168, 67, 0.3);
  animation: chope-pulse 2s infinite alternate;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.2), background-color 0.2s ease, border-color 0.2s ease !important;
}

.nav-link-chope:hover {
  background: rgba(212, 168, 67, 0.2) !important;
  border-color: rgba(212, 168, 67, 0.7) !important;
  transform: translateY(-2px) scale(1.04);
}

.nav-link-chope .chope-emoji {
  display: inline-block;
  transform-origin: bottom center;
  animation: mug-toast 1.4s infinite ease-in-out;
}

@keyframes chope-pulse {
  0% { box-shadow: 0 0 0 rgba(212, 168, 67, 0); }
  100% { box-shadow: 0 0 8px rgba(212, 168, 67, 0.35); }
}

@keyframes mug-toast {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-18deg) scale(1.15); }
}

/* ============================
   SECTIONS
   ============================ */
.section {
  padding: 80px 0;
}

.section-sm { padding: 50px 0; }
.section-lg { padding: 120px 0; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================
   PRODUCT CARDS
   ============================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.product-card-img-wrap {
  position: relative;
  height: 240px; /* Fixed height for uniformity */
  background: #f8f9fa;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end; /* Align items to the bottom */
  justify-content: center;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center; /* Make them sit on the same floor */
  padding: 16px 16px 8px 16px;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.05);
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.product-volume-tag {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  backdrop-filter: blur(4px);
}

.product-country-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.2rem; /* Big enough for the emoji */
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-badge.gold { background: var(--color-gold); color: var(--color-text); }
.product-card-badge.green { background: var(--color-secondary); }

.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.product-card-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-brand {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.product-card-style {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.product-card-desc {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
  flex: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  gap: 10px;
}

.product-card-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
}

.product-card-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

.product-card-box {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.product-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 6px;
  background: var(--color-primary);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 24px;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.product-card-btn:hover {
  background: var(--color-secondary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26,71,42,0.25);
}

/* ============================
   CATALOG PAGE LAYOUT
   ============================ */
.catalog-page {
  padding-top: 0;
  min-height: 100vh;
}

.catalog-header-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #4a1a08 100%);
  padding: 16px 0 8px 0;
  position: relative;
  overflow: hidden;
}

.catalog-header-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.catalog-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.catalog-header-content .section-badge { color: var(--color-gold); }
.catalog-header-content .section-title { color: white; }
.catalog-header-content .section-desc { color: rgba(255,255,255,0.75); }

/* Catalog layout: sidebar + main */
.catalog-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 40px 0 80px;
}

/* ============================
   SIDEBAR FILTERS
   ============================ */
.sidebar {
  width: var(--sidebar-width);
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  max-height: calc(100vh - var(--nav-height) - 40px);
  overflow-y: auto;
  scrollbar-width: thin;
}
.sidebar::-webkit-scrollbar {
  width: 6px;
}
.sidebar::-webkit-scrollbar-thumb {
  background-color: var(--color-border);
  border-radius: 4px;
}

.sidebar-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: 20px 24px;
  color: white;
}

.sidebar-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.sidebar-header p {
  font-size: 0.8rem;
  opacity: 0.8;
}

.sidebar-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-group-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.filter-select {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-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='%236b5a4e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.filter-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(124,58,30,0.1);
}

.filter-select:hover {
  border-color: var(--color-primary-light);
}

.filter-divider {
  height: 1px;
  background: var(--color-border);
  margin: 0 -24px;
}

.filter-count {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding: 4px 0;
}

.filter-count strong {
  color: var(--color-primary);
  font-weight: 700;
}

.btn-clear-filters {
  width: 100%;
  padding: 11px;
  background: var(--color-surface-alt);
  color: var(--color-text-light);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-clear-filters:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* ============================
   PRODUCTS MAIN AREA
   ============================ */
.products-main {
  flex: 1;
  min-width: 0;
}

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.products-count {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.products-count strong {
  color: var(--color-text);
  font-weight: 700;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f4f5f7;
  border: none;
  border-radius: 24px;
  padding: 12px 20px;
  flex: 1;
  max-width: 360px;
  transition: box-shadow var(--transition);
}

.search-bar:focus-within {
  box-shadow: 0 0 0 3px rgba(26,71,42,0.15);
}

.search-bar svg {
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text);
  outline: none;
}

.search-input::placeholder {
  color: var(--color-text-muted);
}

/* No results */
.no-results {
  text-align: center;
  padding: 80px 20px;
  color: var(--color-text-light);
}

.no-results-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  opacity: 0.5;
}

.no-results h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
}

/* ============================
   STATS SECTION
   ============================ */
.stats-section {
  background: var(--color-surface-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 44px 20px;
  border-right: 1px solid var(--color-border);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ============================
   FEATURED SECTION
   ============================ */
.featured-section {
  background: var(--color-bg);
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
  background: linear-gradient(135deg, #1a0a04 0%, var(--color-primary) 60%, #3d1a08 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(212,168,67,0.06);
  pointer-events: none;
}

.cta-section .section-title { color: white; }
.cta-section .section-desc { color: rgba(255,255,255,0.75); }
.cta-section .section-badge { color: var(--color-gold); }
.cta-section .section-header { margin-bottom: 36px; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #0f0604;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  color: white;
  margin-bottom: 14px;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-section h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.footer-links-list li { margin-bottom: 10px; }

.footer-links-list a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links-list a:hover { color: white; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================
   WHATSAPP FLOAT
   ============================ */
.whatsapp-float {
  position: fixed;
  bottom: 85px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.15);
  transition: all var(--transition);
  animation: float-pulse 3s infinite;
}

.whatsapp-float:hover {
  background: #20ba5a;
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* ============================
   CATEGORY PILLS (HOME)
   ============================ */
.category-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-light);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================
   SOBRE / CONTATO PAGES
   ============================ */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #3a1408 100%);
  padding: calc(var(--nav-height) + 60px) 0 60px;
  text-align: center;
}

.page-hero .section-title { color: white; }
.page-hero .section-desc { color: rgba(255,255,255,0.75); }
.page-hero .section-badge { color: var(--color-gold); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.story-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.story-text .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.story-text p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Contato */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(124,58,30,0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card-body h4 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-card-body p, .contact-card-body a {
  font-size: 0.9rem;
  color: var(--color-text-light);
  transition: color var(--transition);
}

.contact-card-body a:hover { color: var(--color-primary); }

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.product-card {
  animation: fadeIn 0.4s ease;
}

/* ============================
   LOADING STATE
   ============================ */
.skeleton {
  background: linear-gradient(90deg, #f0e8d5 25%, #e8dcc8 50%, #f0e8d5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================
   MOBILE RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--color-border); }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-img img { height: 350px; }
}

@media (max-width: 900px) {
  .catalog-layout { flex-direction: column; }
  .sidebar {
    display: none !important;
  }
  .sidebar-header {
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--color-surface-alt);
    transition: background 0.3s ease;
  }
  .sidebar-header:hover {
    background: #ebe3d5;
  }
  .sidebar-header::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform var(--transition);
    color: var(--color-text-light);
  }
  .sidebar-header.active::after {
    transform: rotate(180deg);
  }
  .sidebar-body {
    display: none;
    padding: 20px;
    background: var(--color-surface);
  }
  .sidebar-body.open {
    display: block;
    position: absolute;
    width: 100%;
    z-index: 100;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
  }
  .sidebar-body.open {
    display: block;
  }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }

  .logo-img {
    height: 48px !important;
    padding: 4px !important;
    border-radius: 12px !important;
  }
  .header.scrolled .logo-img,
  .header.solid .logo-img {
    height: 40px !important;
    padding: 2px !important;
  }

  .mosaic-block {
    padding: 20px 24px !important;
  }
  .promo-slide {
    padding: 24px !important;
  }
  .block-title {
    font-size: 1.45rem !important;
  }

  .nav-menu {
    display: flex;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-surface);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--color-border);
    z-index: 999;
    
    /* Premium Slide and Fade Transition */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-menu.open .nav-link {
    color: var(--color-text) !important;
  }
  .nav-menu.open .nav-link.active {
    color: var(--color-primary) !important;
    background: rgba(23, 95, 49, 0.08) !important;
  }
  .nav-link { padding: 12px 16px; }
  .nav-cta { margin-left: 0; text-align: center; }
  .mobile-toggle { display: flex; }

  .hero-content { padding: 0 24px; padding-top: var(--nav-height); }
  .hero-title { font-size: 2.2rem; }

  .section { padding: 56px 0; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }

  .products-toolbar { flex-direction: column; align-items: stretch; }
  .search-bar { max-width: 100%; }

  .slider-nav { display: none; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-card { flex-direction: row; align-items: center; padding: 8px; border-radius: 12px; box-shadow: none; border: 1px solid var(--color-border); }
  .product-card:hover { transform: none; box-shadow: none; }
  .product-card-img-wrap { width: 90px; height: 90px; padding: 4px; background: transparent; border-bottom: none; }
  .product-card-body { flex: 1; padding: 0 0 0 12px; }
  .product-card-name { font-size: 0.95rem; margin-bottom: 4px; }
  .product-card-brand, .product-card-style, .product-card-desc { display: none; }
  .product-card-price { font-size: 1.05rem; }
  .product-card-footer { margin-top: 8px; justify-content: space-between; align-items: center; }
  .product-card-btn { width: auto; padding: 6px 12px; font-size: 0.8rem; border-radius: 16px; }
  .hero-actions { flex-direction: column; }
  .stat-number { font-size: 2.2rem; }
}

/* Chope Promo Banner (iFood style) */
.chope-promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--color-primary) 0%, #133320 100%);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
  gap: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chope-promo-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.chope-promo-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212,168,67,0.15) 0%, rgba(212,168,67,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.chope-promo-banner .btn-gold {
  animation: chope-pulse 2s infinite;
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4);
}

@media (max-width: 600px) {
  .chope-promo-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }
  .chope-promo-banner .btn-gold {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* =========================================
   IFOOD STYLE LAYOUT
   ========================================= */

/* Visual Category Grid */
.visual-category-grid {
  display: flex;
  overflow-x: auto;
  gap: 4px;
  margin-bottom: 20px;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.visual-category-grid::-webkit-scrollbar {
  display: none;
}

.visual-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 4px;
  transition: transform 0.2s;
  flex-shrink: 0;
  min-width: 50px;
}

.visual-cat-card:hover {
  transform: translateY(-4px);
}

.visual-cat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), #113820);
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
}

.visual-cat-icon svg {
  color: white;
}

.visual-cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.visual-cat-name {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
}

.btn-ver-mais {
  background: var(--color-background);
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 20px;
  transition: all 0.2s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.btn-ver-mais:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(29, 87, 50, 0.2);
}

/* Promo Cards */
.promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.promo-card {
  border-radius: 16px;
  padding: 24px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.promo-card-1 {
  background: linear-gradient(135deg, #7c1228 0%, #3e0914 100%);
}
.promo-card-2 {
  background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
}
.promo-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
}
.promo-badge {
  display: inline-block;
  background: rgba(0,0,0,0.2);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.promo-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.promo-card p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 16px;
  opacity: 0.9;
}
.promo-card .promo-link {
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
}

.btn-voltar-todos {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.btn-voltar-todos:hover {
  background: var(--color-background);
  transform: translateX(-3px);
  color: var(--color-primary);
}
.ifood-catalog-container {
  background-color: var(--color-background);
  min-height: 100vh;
  padding-bottom: 80px; /* Space for mobile cart if needed */
}

.category-nav-wrapper {
  position: sticky;
  top: var(--nav-height);
  background: var(--color-surface);
  z-index: 90;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-bottom: 1px solid var(--color-border);
}

.category-nav-container {
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.category-nav-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.category-nav-list {
  display: flex;
  list-style: none;
  padding: 12px 0;
  margin: 0;
  gap: 12px;
  white-space: nowrap;
}

.cat-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: #f4f5f7;
  border: none;
  border-radius: 20px;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cat-nav-link:hover {
  background: #e9ecef;
}

.cat-nav-link.active {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 71, 42, 0.25);
}

.catalog-section {
  padding: 40px 0 20px;
  border-bottom: 1px solid var(--color-border);
}
.catalog-section:last-child {
  border-bottom: none;
}

.catalog-section-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.catalog-section-title::after {
  display: none;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { display: block; opacity: 1; }

.filters-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  width: 90%; max-width: 400px;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.filters-modal.active {
  display: flex;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.filters-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filters-modal-header h3 { margin: 0; font-family: var(--font-display); font-size: 1.25rem; }
.close-modal-btn { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--color-text-light); }
.filters-modal-body { padding: 24px; display: flex; flex-direction: column; gap: 20px; max-height: 60vh; overflow-y: auto; }
.filters-modal-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 12px;
}

/* Mobile Bottom Cart Bar */
.mobile-cart-bar {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background: var(--color-secondary-light);
  color: white;
  padding: 16px 20px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transition: bottom 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.mobile-cart-bar.visible {
  bottom: 0;
}

.mobile-cart-count {
  background: rgba(255,255,255,0.2);
  color: white;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* DOPAMINE EFFECTS */
@keyframes goldGlow {
  0% { text-shadow: 0 0 5px rgba(234, 179, 8, 0.2); }
  50% { text-shadow: 0 0 20px rgba(234, 179, 8, 0.8), 0 0 30px rgba(234, 179, 8, 0.6); }
  100% { text-shadow: 0 0 5px rgba(234, 179, 8, 0.2); }
}
.gold-glow {
  color: var(--color-gold);
  animation: goldGlow 2s infinite alternate;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.btn-dopamine {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-dopamine:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(234, 179, 8, 0.6);
}
.btn-dopamine::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-25deg);
  animation: shimmer 2.5s infinite;
}

@keyframes floatSubtle {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}
.visual-cat-card {
  animation: floatSubtle 4s ease-in-out infinite;
}
.visual-cat-card:nth-child(even) {
  animation-delay: 1s;
}

