/* ==========================================================================
   MEWS DOCES GOURMET — LUXURY DESIGN SYSTEM
   Confeitaria Artesanal Premium · Elegância & Sofisticação
   ========================================================================== */

/* ── Google Fonts: Cormorant Garamond + DM Sans ──────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── Design Tokens ────────────────────────────────────────────────────────── */
:root {
  /* Palette — Luxury Chocolatier */
  --c-espresso:        #1A0D05;
  --c-chocolate:       #2A1508;
  --c-chocolate-soft:  #3D1F0A;
  --c-chocolate-mid:   #5C3018;
  --c-caramel:         #C9903C;
  --c-caramel-hover:   #B07A28;
  --c-caramel-light:   #FBF3E8;
  --c-gold:            #D4A843;
  --c-gold-light:      #F7EAC8;
  --c-rose-gold:       #C8906E;
  --c-cream:           #FDFAF5;
  --c-cream-alt:       #F8F3EC;
  --c-surface:         #FFFFFF;
  --c-surface-alt:     #F5EFE8;
  --c-surface-warm:    #FDF8F2;
  --c-border:          #E8DDD0;
  --c-border-subtle:   #F0E8DC;
  --c-border-gold:     rgba(212, 168, 67, 0.35);
  --c-berry:           #C0394D;
  --c-green:           #22C55E;
  --c-green-bg:        rgba(34, 197, 94, 0.10);
  --c-red:             #EF4444;
  --c-red-bg:          rgba(239, 68, 68, 0.10);
  --c-whatsapp:        #25D366;
  --c-whatsapp-hover:  #1EB854;
  --c-whatsapp-glow:   rgba(37, 211, 102, 0.25);

  /* Text */
  --c-text-main:    #1A0D05;
  --c-text-body:    #4D3520;
  --c-text-muted:   #9C7E68;
  --c-text-inverse: #FFFFFF;
  --c-text-gold:    #C9903C;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Radii */
  --radius-xs:   4px;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   22px;
  --radius-xl:   30px;
  --radius-pill: 9999px;

  /* Shadows — warm, layered */
  --shadow-xs:    0 1px 3px rgba(26,13,5,0.05), 0 1px 2px rgba(26,13,5,0.04);
  --shadow-sm:    0 2px 8px rgba(26,13,5,0.06), 0 1px 4px rgba(26,13,5,0.04);
  --shadow-card:  0 4px 20px rgba(26,13,5,0.08), 0 2px 8px rgba(26,13,5,0.05);
  --shadow-hover: 0 12px 32px rgba(26,13,5,0.14), 0 4px 12px rgba(26,13,5,0.08);
  --shadow-modal: 0 24px 64px rgba(26,13,5,0.24), 0 8px 24px rgba(26,13,5,0.12);
  --shadow-gold:  0 4px 20px rgba(212,168,67,0.22);
  --shadow-drawer: -6px 0 40px rgba(26,13,5,0.22);

  /* Transitions */
  --t-fast:   0.16s ease;
  --t-base:   0.28s cubic-bezier(0.16,1,0.3,1);
  --t-spring: 0.42s cubic-bezier(0.16,1,0.3,1);
  --t-slow:   0.6s cubic-bezier(0.16,1,0.3,1);

  /* Layout */
  --container-max: 1200px;
  --header-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--c-text-body);
  background-color: var(--c-cream);
  line-height: 1.58;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; transition: var(--t-fast); }
a { color: inherit; text-decoration: none; }
:focus-visible {
  outline: 2px solid var(--c-caramel);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: var(--radius-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--c-caramel); }

/* Utility */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, var(--c-espresso) 0%, #2E1408 50%, var(--c-chocolate-soft) 100%);
  color: #F5E8D5;
  padding: 9px 16px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  z-index: 110;
  border-bottom: 1px solid rgba(212,168,67,0.25);
  position: relative;
}

.announcement-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.4), transparent);
}

.announcement-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0 auto;
  justify-content: center;
}

.announcement-badge {
  background: linear-gradient(135deg, var(--c-gold), var(--c-caramel));
  color: #FFF;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.announcement-text strong { color: #FFD990; }

.announcement-btn {
  background: rgba(255,255,255,0.12);
  color: #F5E8D5;
  font-weight: 600;
  font-size: 0.73rem;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.22);
  transition: all var(--t-fast);
}
.announcement-btn:hover { background: var(--c-gold); border-color: var(--c-gold); color: var(--c-espresso); }

.announcement-close {
  color: rgba(255,255,255,0.6);
  font-size: 1.15rem;
  line-height: 1;
  padding: 4px 6px;
  flex-shrink: 0;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.announcement-close:hover { color: #FFF; }

/* ==========================================================================
   HEADER — Luxo fixo
   ========================================================================== */
.site-header {
  background: rgba(253,250,245,0.96);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 90;
  transition: box-shadow var(--t-base);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(26,13,5,0.10);
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-pill);
  object-fit: cover;
  border: 2px solid var(--c-border-gold);
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.brand-block:hover .brand-logo {
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(212,168,67,0.35);
}

.brand-titles {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-chocolate);
  line-height: 1.1;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Status indicator */
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.71rem;
  margin-top: 3px;
  font-weight: 500;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--c-green);
  box-shadow: 0 0 0 3px var(--c-green-bg);
  display: inline-block;
  animation: pulse-dot 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.18); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0.05); }
}

.status-indicator.closed .status-dot {
  background-color: var(--c-red);
  box-shadow: 0 0 0 3px var(--c-red-bg);
  animation: none;
}

.status-label { font-weight: 700; color: #15803D; font-size: 0.71rem; }
.status-indicator.closed .status-label { color: #991B1B; }
.status-hours { color: var(--c-text-muted); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.btn-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  font-size: 0.79rem;
  font-weight: 600;
  transition: all var(--t-fast);
  white-space: nowrap;
  min-height: 36px;
}

.whatsapp-btn {
  background: rgba(34,197,94,0.1);
  color: #15803D;
  border: 1px solid rgba(34,197,94,0.25);
}
.whatsapp-btn:hover { background: var(--c-whatsapp); color: #FFF; transform: translateY(-1px); }

.instagram-btn {
  background: rgba(236,72,153,0.08);
  color: #9D174D;
  border: 1px solid rgba(236,72,153,0.2);
}
.instagram-btn:hover { background: #DB2777; color: #FFF; transform: translateY(-1px); }

.btn-cart-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-chocolate);
  color: #FFF;
  padding: 8px 15px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: var(--shadow-sm);
  min-height: 36px;
  transition: all var(--t-fast);
}
.btn-cart-header:hover { background: var(--c-caramel); transform: translateY(-1px); }

.cart-badge {
  background: var(--c-gold);
  color: var(--c-espresso);
  font-size: 0.68rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   HERO SECTION — Imersivo & Luxuoso
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--c-espresso);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.48;
  filter: brightness(0.88) saturate(1.1);
  transform: scale(1.04);
  transition: transform 10s ease, opacity 0.6s ease;
}
.hero-section:hover .hero-backdrop { transform: scale(1.08); opacity: 0.52; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(20,8,2,0.72) 0%,
      rgba(30,12,4,0.68) 40%,
      rgba(26,13,5,0.88) 100%);
}

/* Gold shimmer line at bottom of hero */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212,168,67,0.5) 50%, transparent 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  padding: 52px 24px 48px;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  animation: hero-fade-in 0.9s var(--t-spring) both;
}

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,168,67,0.18);
  color: #FFD990;
  border: 1px solid rgba(212,168,67,0.45);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.14;
  margin-bottom: 14px;
  color: #FFFFFF;
  letter-spacing: -0.3px;
}

.hero-title em {
  font-style: italic;
  color: #FFD990;
}

.hero-description {
  color: rgba(255,255,255,0.78);
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  transition: all var(--t-base);
  white-space: nowrap;
  min-height: 46px;
  letter-spacing: 0.1px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-caramel) 100%);
  color: #FFF;
  box-shadow: 0 4px 18px rgba(212,168,67,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,168,67,0.45);
  filter: brightness(1.06);
}

.btn-secondary {
  background: rgba(255,255,255,0.13);
  color: #FFF;
  border: 1.5px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

/* Hero badges strip */
.hero-badges-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.hero-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.88);
  font-size: 0.76rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-badge-item svg { opacity: 0.8; flex-shrink: 0; }

/* ==========================================================================
   FEATURED SECTION
   ========================================================================== */
.featured-section { padding: 28px 0 0; }

.featured-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-gold);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-hover), inset 0 0 0 1px rgba(255,255,255,0.5);
  position: relative;
}

@media (min-width: 700px) {
  .featured-card { flex-direction: row; align-items: stretch; min-height: 230px; }
}

.featured-pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-caramel) 100%);
  color: #FFF;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-gold);
}

.featured-media {
  position: relative;
  flex-shrink: 0;
  background: var(--c-surface-alt);
  overflow: hidden;
}
@media (max-width: 699px) { .featured-media { width: 100%; aspect-ratio: 16/9; min-height: 200px; } }
@media (min-width: 700px) { .featured-media { width: 300px; } }

.featured-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.featured-card:hover .featured-img { transform: scale(1.06); }

.featured-info {
  flex: 1;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  color: var(--c-chocolate);
  line-height: 1.18;
  margin-bottom: 10px;
}

.featured-desc {
  color: var(--c-text-body);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 480px;
}

.featured-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }

.spec-chip {
  background: var(--c-gold-light);
  color: var(--c-chocolate);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212,168,67,0.28);
}

.featured-footer { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.featured-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-chocolate);
  font-family: var(--font-serif);
}

.btn-featured {
  background: var(--c-chocolate);
  color: #FFF;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  min-height: 44px;
}
.btn-featured:hover { background: var(--c-caramel); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* ==========================================================================
   MAIN CONTENT
   ========================================================================== */
.main-content {
  flex: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  padding: 0 20px 100px;
}

/* ==========================================================================
   CATALOG LAYOUT — 2 COLUNAS (SIDEBAR DESKTOP + CONTEÚDO)
   ========================================================================== */
.catalog-layout-wrapper {
  display: block;
  width: 100%;
}

@media (min-width: 992px) {
  .catalog-layout-wrapper {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
    padding-top: 16px;
  }
}

/* ── Desktop Sidebar ──────────────────────────────────────────────────────── */
.catalog-sidebar {
  display: none;
}

@media (min-width: 992px) {
  .catalog-sidebar {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + 20px);
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 22px 18px;
    box-shadow: 0 4px 20px rgba(46, 26, 12, 0.05);
    max-height: calc(100vh - var(--header-h) - 40px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--c-border-gold) transparent;
  }

  .catalog-sidebar::-webkit-scrollbar {
    width: 5px;
  }
  .catalog-sidebar::-webkit-scrollbar-thumb {
    background: var(--c-border-gold);
    border-radius: 10px;
  }

  .catalog-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--c-border);
  }

  .sidebar-header-title-box {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .sidebar-header-icon {
    font-size: 1.15rem;
  }

  .catalog-sidebar-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--c-espresso);
    font-weight: 700;
    margin: 0;
  }

  .sidebar-total-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--c-caramel);
    background: var(--c-caramel-light);
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(196, 123, 44, 0.2);
  }

  .sidebar-category-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .sidebar-cat-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    background: transparent;
    border: 1px solid transparent;
    color: var(--c-text-body);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all var(--t-fast);
  }

  .sidebar-cat-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .sidebar-cat-icon {
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: transform var(--t-fast);
  }

  .sidebar-cat-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sidebar-cat-count {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: var(--radius-pill);
    background: rgba(46, 26, 12, 0.06);
    color: var(--c-text-muted);
    flex-shrink: 0;
    min-width: 22px;
    text-align: center;
    transition: all var(--t-fast);
  }

  .sidebar-cat-btn:hover {
    background: var(--c-caramel-light);
    color: var(--c-chocolate);
    transform: translateX(4px);
  }

  .sidebar-cat-btn:hover .sidebar-cat-icon {
    transform: scale(1.15);
  }

  .sidebar-cat-btn.active {
    background: var(--c-chocolate);
    color: #FFF;
    border-color: var(--c-border-gold);
    box-shadow: 0 4px 14px rgba(46, 26, 12, 0.18);
    font-weight: 600;
    transform: translateX(4px);
  }

  .sidebar-cat-btn.active .sidebar-cat-count {
    background: var(--c-gold);
    color: var(--c-espresso);
  }
}

/* ==========================================================================
   MOBILE CATEGORY BAR & BOTTOM SHEET DRAWER
   ========================================================================== */
.mobile-category-bar {
  display: block;
  position: sticky;
  top: var(--header-h);
  z-index: 80;
  background: rgba(253, 250, 245, 0.97);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  margin: 0 -20px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--c-border);
}

.mobile-category-bar::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.25), transparent);
}

@media (min-width: 992px) {
  .mobile-category-bar {
    display: none;
  }
}

.mobile-category-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 14px;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border-gold);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(46, 26, 12, 0.06);
  cursor: pointer;
  transition: all var(--t-fast);
}

.mobile-category-trigger:hover,
.mobile-category-trigger:active {
  background: var(--c-cream);
  border-color: var(--c-gold);
  box-shadow: 0 4px 16px rgba(212, 168, 67, 0.22);
}

.mobile-category-trigger-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-align: left;
}

.mobile-category-trigger-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.mobile-category-trigger-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mobile-category-trigger-caption {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--c-caramel);
  line-height: 1.1;
}

.mobile-category-trigger-name {
  font-size: 0.92rem;
  color: var(--c-espresso);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
}

.mobile-category-trigger-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.mobile-category-trigger-badge {
  background: var(--c-chocolate);
  color: #FFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
}

.mobile-category-trigger-action {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--c-caramel);
  background: var(--c-caramel-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(196, 123, 44, 0.25);
}

/* ── Mobile Category Bottom Sheet Drawer ─────────────────────────────────── */
.mobile-category-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.25s, opacity 0.25s ease;
}

.mobile-category-drawer:not([hidden]) {
  visibility: visible;
  opacity: 1;
}

.category-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 13, 5, 0.65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.category-drawer-panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 82vh;
  background: var(--c-surface);
  border-radius: 24px 24px 0 0;
  border: 1px solid var(--c-border);
  border-bottom: none;
  box-shadow: 0 -10px 40px rgba(26, 13, 5, 0.28);
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  overflow: hidden;
}

.mobile-category-drawer:not([hidden]) .category-drawer-panel {
  transform: translateY(0);
}

.category-drawer-handle {
  width: 44px;
  height: 5px;
  background: rgba(46, 26, 12, 0.2);
  border-radius: 10px;
  margin: 12px auto 6px;
}

.category-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px 14px;
  border-bottom: 1px solid var(--c-border);
}

.category-drawer-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-drawer-icon {
  font-size: 1.4rem;
}

.category-drawer-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--c-espresso);
  margin: 0;
  line-height: 1.15;
}

.category-drawer-subtitle {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  margin: 0;
}

.category-drawer-close {
  background: rgba(46, 26, 12, 0.08);
  color: var(--c-espresso);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
  transition: background var(--t-fast);
}

.category-drawer-close:hover {
  background: rgba(46, 26, 12, 0.16);
}

.category-drawer-body {
  padding: 12px 16px 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-cat-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  cursor: pointer;
  text-align: left;
  transition: all var(--t-fast);
  min-height: 52px;
}

.drawer-cat-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.drawer-cat-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.drawer-cat-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.drawer-cat-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-espresso);
  line-height: 1.2;
}

.drawer-cat-desc {
  font-size: 0.74rem;
  color: var(--c-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.drawer-cat-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.drawer-cat-count {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: rgba(46, 26, 12, 0.08);
  color: var(--c-text-body);
}

.drawer-cat-check {
  display: none;
  color: var(--c-gold);
  font-size: 1.1rem;
  font-weight: 900;
}

.drawer-cat-btn:active {
  transform: scale(0.98);
}

.drawer-cat-btn.active {
  background: var(--c-chocolate);
  border-color: var(--c-border-gold);
  box-shadow: 0 4px 16px rgba(46, 26, 12, 0.2);
}

.drawer-cat-btn.active .drawer-cat-name {
  color: #FFF;
}

.drawer-cat-btn.active .drawer-cat-desc {
  color: rgba(255, 255, 255, 0.75);
}

.drawer-cat-btn.active .drawer-cat-count {
  background: var(--c-gold);
  color: var(--c-espresso);
}

.drawer-cat-btn.active .drawer-cat-check {
  display: inline-block;
}

/* ==========================================================================
   CATALOG CONTROLS
   ========================================================================== */
.catalog-main-col {
  min-width: 0;
  width: 100%;
}

.catalog-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 0 18px;
}

@media (min-width: 992px) {
  .catalog-controls {
    padding-top: 0;
  }
}

.catalog-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.catalog-current-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--c-chocolate);
  line-height: 1.18;
  letter-spacing: -0.2px;
}

.catalog-current-desc {
  font-size: 0.84rem;
  color: var(--c-text-muted);
  margin: 3px 0 0;
  line-height: 1.35;
}

.catalog-count {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-caramel);
  background: var(--c-gold-light);
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  border: 1px solid rgba(212,168,67,0.25);
}

/* Search */
.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon-svg {
  position: absolute;
  left: 15px;
  pointer-events: none;
  color: var(--c-text-muted);
  flex-shrink: 0;
}

.search-input {
  width: 100%;
  padding: 12px 44px 12px 46px;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  box-shadow: var(--shadow-xs);
  color: var(--c-text-main);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  min-height: 46px;
}

.search-input:focus {
  outline: none;
  border-color: var(--c-caramel);
  box-shadow: 0 0 0 3px rgba(201,144,60,0.12);
}

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

.search-clear-btn {
  position: absolute;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-border);
  color: var(--c-text-muted);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.search-clear-btn:hover { background: var(--c-caramel); color: #FFF; }

/* ==========================================================================
   PRODUCTS GRID
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}

/* ==========================================================================
   PRODUCT CARD — Luxury elevated
   ========================================================================== */
.product-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  cursor: pointer;
  position: relative;
  animation: card-in 0.5s var(--t-spring) both;
  will-change: transform;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover), 0 0 0 1px rgba(201,144,60,0.18);
  border-color: rgba(201,144,60,0.4);
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background-color: var(--c-surface-alt);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .card-img { transform: scale(1.08); }

/* Hover overlay shimmer */
.card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,13,5,0.15) 100%);
  opacity: 0;
  transition: opacity var(--t-base);
}
.product-card:hover .card-media::after { opacity: 1; }

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(26,13,5,0.85);
  backdrop-filter: blur(6px);
  color: #FFF;
  font-size: 0.64rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  z-index: 2;
}

.card-badge.badge-destaque {
  background: linear-gradient(135deg, var(--c-gold), var(--c-caramel));
  color: #FFF;
}

.card-badge.badge-gold {
  background: linear-gradient(135deg, var(--c-gold), var(--c-rose-gold));
}

.card-badge.badge-novo { background: #059669; }

.card-body {
  padding: 13px 15px 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-category-tag {
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-caramel);
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--c-chocolate);
  line-height: 1.3;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6rem;
}

.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.price-value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-chocolate);
  letter-spacing: -0.2px;
}

.btn-card-action {
  background: var(--c-chocolate);
  color: #FFF;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: var(--shadow-xs);
  transition: all var(--t-fast);
  min-height: 34px;
}
.btn-card-action:hover { background: var(--c-caramel); transform: scale(1.05); }
.btn-plus { font-size: 1.05rem; line-height: 1; }

/* Empty State */
.empty-state {
  text-align: center;
  padding: 56px 20px;
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  border: 1.5px dashed var(--c-border);
  margin-top: 14px;
}
.empty-emoji { font-size: 3.2rem; display: block; margin-bottom: 12px; }
.empty-state h4 { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: var(--c-chocolate); margin-bottom: 8px; }
.empty-state p { color: var(--c-text-muted); max-width: 400px; margin: 0 auto 18px; font-size: 0.88rem; line-height: 1.6; }

.btn-reset {
  background: var(--c-gold-light);
  color: var(--c-chocolate);
  border: 1px solid rgba(212,168,67,0.35);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
  min-height: 44px;
}
.btn-reset:hover { background: var(--c-caramel); color: #FFF; border-color: var(--c-caramel); }

/* ==========================================================================
   STORE INFO SECTION
   ========================================================================== */
.store-info-section {
  padding: 52px 0 0;
  border-top: 1px solid var(--c-border);
  margin-top: 44px;
  position: relative;
}

.store-info-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border-gold), transparent);
}

.info-section-header { margin-bottom: 28px; }

.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-caramel);
  display: block;
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  color: var(--c-chocolate);
  line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--c-caramel); }

/* Info grid */
.info-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .info-grid { grid-template-columns: 1fr 1fr; } }

.hours-card, .services-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.hours-card::before, .services-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-caramel));
  opacity: 0.5;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-border-subtle);
}
.info-card-header svg { color: var(--c-caramel); flex-shrink: 0; }
.info-card-title {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--c-chocolate);
}

/* Hours list */
.hours-list { list-style: none; display: flex; flex-direction: column; gap: 3px; }

.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
}

.hour-row.today {
  background: var(--c-gold-light);
  font-weight: 700;
  color: var(--c-chocolate);
  border-left: 3px solid var(--c-gold);
}
.hour-row.closed { opacity: 0.45; font-style: italic; }

.today-badge {
  font-size: 0.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--c-gold), var(--c-caramel));
  color: #FFF;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  margin-left: 6px;
}

/* Services */
.service-modes { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }

.service-mode-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--c-surface-warm);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border-subtle);
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--c-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-caramel);
  border: 1px solid rgba(212,168,67,0.2);
}

.service-details { display: flex; flex-direction: column; }
.service-name { font-weight: 700; color: var(--c-chocolate); font-size: 0.92rem; margin-bottom: 3px; }
.service-desc { font-size: 0.79rem; color: var(--c-text-muted); line-height: 1.45; }

.info-cta-stack { display: flex; flex-direction: column; gap: 10px; }

.btn-cta-whatsapp {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-whatsapp);
  color: #FFF;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 16px var(--c-whatsapp-glow);
  transition: all var(--t-base);
  min-height: 56px;
}
.btn-cta-whatsapp:hover { background: var(--c-whatsapp-hover); transform: translateY(-2px); }

.btn-cta-instagram {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-surface-alt);
  color: #9D174D;
  border: 1px solid rgba(219,39,119,0.2);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--t-base);
  min-height: 56px;
}
.btn-cta-instagram:hover { background: #9D174D; color: #FFF; border-color: #9D174D; transform: translateY(-2px); }

.cta-btn-label { font-size: 0.7rem; font-weight: 500; opacity: 0.82; display: block; }
.cta-btn-value { font-size: 0.9rem; font-weight: 700; }

/* ==========================================================================
   FOOTER — Luxuoso & Escuro
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, var(--c-chocolate) 0%, var(--c-espresso) 100%);
  color: #C8B4A4;
  padding: 40px 0 0;
  margin-top: auto;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.4), transparent);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand { display: flex; align-items: center; gap: 13px; }

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(212,168,67,0.45);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.footer-brand-name {
  font-family: var(--font-serif);
  color: #FFF;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.footer-brand-tagline {
  font-size: 0.76rem;
  color: #8A7264;
  line-height: 1.45;
  max-width: 200px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  align-items: flex-start;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #9A8070;
  transition: color var(--t-fast);
  min-height: 36px;
}
.footer-link:hover { color: #FFD990; }

.footer-bottom {
  padding: 14px 0 max(14px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.71rem;
  color: #5A4838;
}

/* ==========================================================================
   FLOATING CART BUTTON
   ========================================================================== */
.floating-cart-btn {
  position: fixed;
  bottom: calc(16px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 100;
  background: var(--c-chocolate);
  color: #FFF;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 28px rgba(26,13,5,0.42);
  display: none;
  align-items: center;
  gap: 14px;
  border: 1.5px solid var(--c-border-gold);
  min-width: 230px;
  justify-content: center;
  opacity: 0;
  transition: transform var(--t-spring), opacity var(--t-spring), background var(--t-fast);
}

.floating-cart-btn.visible {
  display: flex;
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.floating-cart-btn:hover {
  transform: translateX(-50%) translateY(-2px);
  background: var(--c-chocolate-soft);
}

.floating-cart-inner { display: flex; align-items: center; gap: 12px; }

.floating-cart-icon-group {
  position: relative;
  display: flex;
  align-items: center;
}

.floating-cart-icon { font-size: 1.35rem; }

.floating-cart-badge {
  position: absolute;
  top: -9px;
  right: -9px;
  background: var(--c-gold);
  color: var(--c-espresso);
  font-size: 0.68rem;
  font-weight: 800;
  min-width: 19px;
  height: 19px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--c-chocolate);
}

.floating-cart-text { display: flex; flex-direction: column; text-align: left; }
.floating-cart-label { font-size: 0.66rem; font-weight: 600; color: #B8A090; text-transform: uppercase; letter-spacing: 0.5px; }
.floating-cart-subtotal { font-size: 0.98rem; font-weight: 700; color: #FFF; }

/* FAB WhatsApp */
.fab-whatsapp {
  position: fixed;
  bottom: calc(22px + env(safe-area-inset-bottom));
  right: 20px;
  z-index: 99;
  background: var(--c-whatsapp);
  color: #FFF;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--c-whatsapp-glow);
  transition: all var(--t-base);
}
.fab-whatsapp:hover { background: var(--c-whatsapp-hover); transform: scale(1.12); box-shadow: 0 8px 30px var(--c-whatsapp-glow); }
body.cart-visible .fab-whatsapp { bottom: calc(84px + env(safe-area-inset-bottom)); }

/* Toast */
.toast-notification {
  position: fixed;
  bottom: calc(90px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--c-chocolate);
  color: #FFF;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: var(--shadow-modal);
  border: 1px solid var(--c-border-gold);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  max-width: calc(100vw - 32px);
  text-align: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.toast-notification.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   RESPONSIVE — Mobile-First Perfect
   ========================================================================== */

/* Tablet */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .featured-info { padding: 20px 18px; }
  .featured-title { font-size: 1.4rem; }
}

/* Mobile */
@media (max-width: 480px) {
  :root { --header-h: 58px; }

  /* Announcement */
  .announcement-bar { padding: 7px 12px; font-size: 0.76rem; }
  .announcement-content { gap: 4px 8px; }
  .announcement-badge { font-size: 0.62rem; padding: 2px 7px; }
  .announcement-btn { font-size: 0.7rem; padding: 2px 8px; }

  /* Header */
  .header-container { padding: 0 14px; gap: 8px; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-name { font-size: 1.08rem; }
  .status-indicator { font-size: 0.67rem; }
  .status-hours { display: none; }
  .header-actions { gap: 5px; }
  .btn-icon-link .btn-text { display: none; }
  .btn-icon-link { padding: 8px; border-radius: 50%; min-width: 36px; min-height: 36px; justify-content: center; }
  .instagram-btn { display: none; }
  .btn-cart-header { padding: 7px 11px; font-size: 0.76rem; }

  /* Hero */
  .hero-section { min-height: 380px; }
  .hero-container { padding: 40px 18px 36px; }
  .hero-chip { font-size: 0.68rem; padding: 5px 13px; }
  .hero-title { font-size: 1.85rem; margin-bottom: 12px; }
  .hero-description { font-size: 0.88rem; margin-bottom: 22px; }
  .hero-actions { gap: 10px; }
  .btn { padding: 12px 22px; font-size: 0.86rem; min-height: 46px; }
  .hero-badge-item { font-size: 0.72rem; padding: 5px 11px; }

  /* Featured */
  .featured-section { padding: 20px 0 0; }
  .featured-info { padding: 18px 16px 16px; }
  .featured-title { font-size: 1.3rem; }
  .featured-price { font-size: 1.35rem; }
  .featured-desc { font-size: 0.85rem; }

  /* Main */
  .main-content { padding: 0 14px 110px; }

  /* Mobile category bar */
  .mobile-category-bar {
    margin: 0 -14px;
    padding: 8px 14px;
    top: var(--header-h);
  }

  /* Catalog controls */
  .catalog-controls { padding: 18px 0 14px; gap: 12px; }
  .catalog-current-title { font-size: 1.3rem; }
  .search-input { font-size: 0.88rem; padding: 11px 42px 11px 44px; min-height: 44px; }

  /* Products grid — 2 col */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 11px; }

  .product-card { border-radius: var(--radius-md); }
  .card-media { aspect-ratio: 4/5; }
  .card-body { padding: 10px 11px 12px; }
  .card-category-tag { font-size: 0.6rem; }
  .card-title { font-size: 0.9rem; min-height: 2.3rem; margin-bottom: 8px; }
  .price-value { font-size: 1rem; }
  .btn-card-action { padding: 6px 10px; font-size: 0.72rem; min-height: 32px; }

  /* Info section */
  .store-info-section { padding: 36px 0 0; margin-top: 32px; }
  .hours-card, .services-card { padding: 18px; border-radius: var(--radius-md); }
  .info-section-header { margin-bottom: 20px; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 18px; padding-bottom: 20px; }
  .footer-links { gap: 14px; }
  .footer-bottom { font-size: 0.68rem; }

  /* Floating cart — full width */
  .floating-cart-btn {
    left: 14px;
    right: 14px;
    width: calc(100% - 28px);
    transform: translateY(100px);
    border-radius: var(--radius-pill);
    min-width: unset;
  }
  .floating-cart-btn.visible {
    transform: translateY(0);
  }
  .floating-cart-btn:hover {
    transform: translateY(-2px);
  }
  .floating-cart-inner { width: 100%; justify-content: space-between; }

  /* FAB */
  .fab-whatsapp { bottom: calc(20px + env(safe-area-inset-bottom)); right: 16px; width: 50px; height: 50px; }
  body.cart-visible .fab-whatsapp { bottom: calc(82px + env(safe-area-inset-bottom)); }
}

/* Extra small */
@media (max-width: 360px) {
  .hero-title { font-size: 1.65rem; }
  .products-grid { gap: 9px; }
  .card-title { font-size: 0.86rem; }
  .btn-card-action { padding: 5px 8px; font-size: 0.68rem; }
  .price-value { font-size: 0.94rem; }
}
