/* SENIOR PRINCIPAL ENGINEER GUARANTEE OF VISIBILITY & LAYOUT */
html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #FFFFFF !important;
  color: #0F172A !important;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#main-content, main {
  display: block !important;
  width: 100%;
  min-height: 100vh;
  opacity: 1 !important;
  visibility: visible !important;
}

header, nav, section, footer, article, form, .hero, .section, .product-card, .catalog-toolbar, h1, h2, h3, h4, p, span, a, img, button {
  opacity: 1 !important;
  visibility: visible !important;
}


:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.92);
  
  --gold-primary: #C0950A;
  --gold-light: #D4AF37;
  --gold-dark: #8C6A05;
  --gold-glow: rgba(192, 149, 10, 0.15);
  
  --crimson: #BE123C;
  --crimson-glow: rgba(190, 18, 60, 0.15);
  
  --text-main: #0F172A;
  --text-muted: #94A3B8;
  --text-dim: #A1A1AA;
  
  --border-subtle: rgba(192, 149, 10, 0.25);
  --border-bright: rgba(192, 149, 10, 0.6);

  --font-heading: 'Syne', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-sub: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Brand Logo Image */
.brand-logo-img {
  height: 48px;
  max-height: 54px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(192, 149, 10, 0.25));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.brand-logo-img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 18px rgba(229, 190, 53, 0.45));
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Background Ambient Glows */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}
.glow-1 {
  top: -10%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
}
.glow-2 {
  top: 40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.12) 0%, transparent 70%);
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: var(--transition-smooth);
}
.header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.85rem 2rem;
}
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-main);
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold-primary), var(--crimson));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #000;
  font-size: 1.2rem;
  box-shadow: 0 0 20px var(--gold-glow);
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #FFF 30%, var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition-fast);
}
.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.btn-icon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}
.btn-icon:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--crimson);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #000;
  font-family: var(--font-sub);
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px var(--gold-glow);
  transition: var(--transition-bounce);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-sub);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}
.btn-secondary:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 10rem 2rem 5rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #FFFFFF;
  border: 1px solid var(--border-bright);
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(192, 149, 10, 0.08);
  font-family: var(--font-sub);
  font-size: 0.88rem;
  color: #0F172A;
  margin-bottom: 1rem;
}
.top-badge-icon {
  width: 26px;
  height: 26px;
  background: rgba(192, 149, 10, 0.15);
  color: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--gold-primary);
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 0.85rem;
  max-width: 500px;
}
.hero-title.gold-lilac-blend, .hero-title.lilac-glow-text {
  background: linear-gradient(90deg, #FFD700 0%, #F59E0B 35%, #E9D5FF 70%, #C084FC 88%, #9333EA 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 2px 14px rgba(212, 175, 55, 0.3));
}
.hero-title span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--crimson));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-description {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-frame {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #090514;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px var(--gold-glow);
  border: 1px solid var(--border-bright);
}
.hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.hero-frame:hover .hero-img {
  transform: scale(1.04);
}

/* Header Social & Action Buttons */
.social-header-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-fast);
  flex-shrink: 0;
  position: relative;
}
.social-header-btn:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}
.insta-icon {
  color: #E1306C;
}
.face-icon {
  color: #1877F2;
}
.radio-icon {
  color: #F59E0B;
}
.cart-icon {
  color: #D4AF37;
}
.menu-icon {
  color: #FFF;
}
.cart-header-btn .cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-primary);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.hero-floating-card {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.floating-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(245, 158, 11, 0.2);
  color: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Sections Global */
.section {
  padding: 7rem 2rem;
  position: relative;
  z-index: 1;
}
.section-container {
  max-width: 1300px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-subtitle {
  color: var(--gold-primary);
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

/* Manifesto Section */
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.manifesto-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.manifesto-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold-primary), var(--crimson));
}
.manifesto-quote {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}
.manifesto-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}
.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold-primary);
}
.stat-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: var(--font-sub);
}

/* Catalog & Filter */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-sub);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}
.filter-btn.active, .filter-btn:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px var(--gold-glow);
}
.product-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-secondary);
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-image {
  transform: scale(1.08);
}
.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: var(--gold-primary);
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}
.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.product-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product-price {
  font-family: var(--font-sub);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-primary);
}

/* Oráculo / Interactive Soundscape Section */
.oracle-section {
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary), var(--bg-primary));
  border-y: 1px solid var(--border-subtle);
  overflow: hidden;
}
.oracle-box {
  background: var(--bg-glass);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(192, 149, 10, 0.08);
}
.oracle-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px var(--gold-primary)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 25px var(--crimson)); }
}
.oracle-card-display {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  border: 1px dashed var(--border-subtle);
}
.oracle-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--text-main);
  transition: opacity 0.4s ease;
}

/* Dias da Semana Selector */
.dias-semana-selector .dia-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}
.dias-semana-selector .dia-btn:hover,
.dias-semana-selector .dia-btn.active {
  background: rgba(245, 158, 11, 0.2);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
  transform: translateY(-1px);
}

/* Orixás do Mês Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  grid-template-rows: repeat(2, 240px);
  gap: 1.5rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  background: var(--bg-card);
}
.gallery-item:first-child,
.gallery-item.featured-orixa {
  grid-row: 1 / span 2;
  grid-column: 1;
  border: 1px solid var(--border-bright);
  box-shadow: 0 15px 40px rgba(192, 149, 10, 0.2);
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 13, 0.95) 0%, rgba(9, 9, 13, 0.45) 55%, transparent 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 1;
  transition: background 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  background: linear-gradient(to top, rgba(9, 9, 13, 0.98) 0%, rgba(9, 9, 13, 0.6) 65%, transparent 100%);
}
.orixa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(15, 23, 42, 0.85);
  color: var(--gold-light);
  border: 1px solid var(--border-bright);
  backdrop-filter: blur(8px);
  margin-bottom: 0.4rem;
}
.orixa-badge.main-badge {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #000000;
  border: none;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(192, 149, 10, 0.4);
}

/* Shopping Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-subtle);
  z-index: 200;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}
.cart-drawer.open {
  right: 0;
}
.cart-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
}
.cart-body {
  padding: 1.5rem;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-empty {
  text-align: center;
  color: var(--text-muted);
  margin: auto 0;
  font-family: var(--font-sub);
}
.cart-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--bg-card);
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}
.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.cart-item-info {
  flex-grow: 1;
}
.cart-item-title {
  font-size: 0.95rem;
  font-weight: 600;
}
.cart-item-price {
  color: var(--gold-primary);
  font-family: var(--font-sub);
  font-size: 0.9rem;
}
.cart-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sub);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

/* Modal Quick View */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: #FFFFFF;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.modal-backdrop.open .modal-content {
  transform: scale(1);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(15, 23, 42, 0.1);
  border: none;
  color: #0F172A;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.modal-close:hover {
  background: var(--crimson);
  color: white;
}

/* Footer */
.footer {
  background: #0F172A;
  color: #F8FAFC;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 1;
}
.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-desc {
  color: #94A3B8;
  margin-top: 1rem;
  max-width: 340px;
}
.footer-col h4 {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--gold-light);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: var(--transition-fast);
}
.footer-links a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #64748B;
  font-size: 0.85rem;
}

/* Mobile Nav Toggle & Drawer */

/* Mobile & Desktop Menu Toggle Button (Prominent Gold Badge + Label) */
.mobile-menu-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  border-radius: var(--radius-full);
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:active {
  background: var(--gold-primary);
  color: #09090D;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
.menu-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.5px;
}
.menu-toggle-text {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 700;
}

/* Original fallback */
.mobile-menu-toggle-old {
  display: none;
}
/* Slim, Clean Floating Lilac Menu with Gold Lettering (Fundo Lilás da Marca + Letras Douradas) */
.mobile-nav {
  position: fixed;
  top: 75px;
  right: 20px;
  width: 310px;
  max-width: calc(100vw - 40px);
  background: rgba(127, 107, 178, 0.98); /* Official Brand Lilac #7F6BB2 */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(243, 212, 156, 0.5); /* Palette Light Gold #F3D49C */
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 25px rgba(127, 107, 178, 0.4);
  transform: translateY(-15px) scale(0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Mobile Nav Header & Close Button */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.25);
}
.mobile-nav-title {
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.mobile-nav-close {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: #FFD700;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.mobile-nav-close:hover {
  background: #FFD700;
  color: #2E1065;
  border-color: #FFD700;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.mobile-nav-link {
  color: #F3D49C;
  text-decoration: none;
  font-family: var(--font-sub);
  font-size: 0.96rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-link:hover {
  color: #FFFFFF;
  background: rgba(255, 215, 0, 0.2);
  padding-left: 0.9rem;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Newsletter VIP Box & Form Validation */
.newsletter-box {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(16px);
}
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
}
@media (max-width: 768px) {
  .newsletter-form {
    grid-template-columns: 1fr;
  }
}
.form-group {
  position: relative;
}
.form-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.85rem 1.5rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}
.form-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}
/* Modern Pseudo-classes for Accessible Form Validation */
.form-input:user-valid {
  border-color: #10B981;
}
.form-input:user-invalid {
  border-color: var(--crimson);
}

/* Scroll Reveal Animations - Immediate Visibility for Above The Fold and Mobile */
.reveal-on-scroll,
.reveal-on-scroll.is-visible {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.4s ease, transform 0.4s ease !important;
  visibility: visible !important;
}

/* Cart Quantity Controls */
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.cart-qty-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
}
.cart-qty-btn:hover {
  background: var(--gold-primary);
  color: #000;
}
.cart-qty-val {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Catalog Toolbar & Search / Sort */
.catalog-toolbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.search-sort-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 680px;
}
.search-box, .sort-box {
  position: relative;
  display: flex;
  align-items: center;
}
.search-box {
  flex-grow: 1;
}
.search-box i, .sort-box i {
  position: absolute;
  left: 1.2rem;
  color: var(--gold-primary);
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.search-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.25rem 0.75rem 3rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}
.search-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}
.sort-select {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.5rem 0.75rem 3rem;
  color: var(--text-main);
  font-family: var(--font-sub);
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: var(--transition-fast);
}
.sort-select:focus, .sort-select:hover {
  border-color: var(--gold-primary);
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.testimonial-rating {
  color: var(--gold-light);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-primary), var(--crimson));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #000;
  font-size: 0.95rem;
}
.author-name {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 700;
}
.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Google Reviews Header Badge */
.google-badge-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.google-score {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.score-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: #0F172A;
}
.stars-gold {
  color: #F59E0B;
  letter-spacing: 2px;
  font-size: 1.1rem;
}
.score-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Reviews Carousel Slider */
.reviews-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.reviews-carousel-container {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-md);
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.google-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 280px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.google-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.google-verified-tag {
  font-size: 0.78rem;
  color: #10B981;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Carousel Controls */
.carousel-nav-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.carousel-nav-btn:hover {
  background: var(--gold-primary);
  color: #000;
  transform: scale(1.08);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3.5rem;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(192, 149, 10, 0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}
.dot.active {
  background: var(--gold-primary);
  width: 32px;
  border-radius: var(--radius-full);
}

/* Google Review Request Banner */
.google-review-request-box {
  background: linear-gradient(135deg, #FFFFFF, #F8FAFC);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(192, 149, 10, 0.08);
}
.review-request-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-primary);
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.google-review-request-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #0F172A;
  margin-bottom: 0.5rem;
}
.google-review-request-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
}
.google-review-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* FAQ Accordion Section */
.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}
.faq-item.open {
  border-color: var(--gold-primary);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.35rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-main);
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}
.faq-icon {
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.75rem;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 1.75rem 1.5rem 1.75rem;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Checkout WhatsApp Modal */
.checkout-modal-content {
  max-width: 650px;
  grid-template-columns: 1fr !important;
  padding: 2.5rem;
  max-height: 90vh;
  overflow-y: auto;
}
.checkout-summary-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1.25rem;
}
.checkout-summary-list {
  max-height: 120px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-label {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 0.35rem;
}
.checkout-modal-footer {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 180;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  animation: pulse-whatsapp 3s infinite;
}
.floating-whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65);
}
.whatsapp-icon {
  width: 32px;
  height: 32px;
  stroke-width: 2.2;
}
.whatsapp-tooltip {
  display: none !important;
  position: absolute;
  right: 70px;
  background: #0F172A;
  color: #FFFFFF;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s ease;
  border: 1px solid var(--border-subtle);
}
.floating-whatsapp-btn:hover .whatsapp-tooltip {
  display: none !important;
  opacity: 1;
  transform: translateX(0);
}
@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 8px 25px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 12px 30px rgba(37, 211, 102, 0.55);
  }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-container, .manifesto-grid, .modal-content {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 3rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-rows: 240px;
  }
  .gallery-item:first-child,
  .gallery-item.featured-orixa {
    grid-row: span 1;
    grid-column: span 1;
    min-height: 320px;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links, .desktop-only-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex !important;
  }
  
/* Mobile & Desktop Menu Toggle Button (Prominent Gold Badge + Label) */
.mobile-menu-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  border-radius: var(--radius-full);
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:active {
  background: var(--gold-primary);
  color: #09090D;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
.menu-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.5px;
}
.menu-toggle-text {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 700;
}

/* Original fallback */
.mobile-menu-toggle-old {
    display: flex;
  }
  .google-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
  .google-review-request-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 7.5rem 1.25rem 3.5rem;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-img {
    height: 360px;
  }
  .hero-floating-card {
    bottom: 1rem;
    left: 0.5rem;
    right: 0.5rem;
    padding: 0.85rem 1rem;
  }
  .catalog-toolbar {
    gap: 1rem;
  }
  .search-sort-group {
    flex-direction: column;
    width: 100%;
  }
  .search-box, .sort-box, .sort-select {
    width: 100%;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
  }
  .section {
    padding: 2.25rem 1.25rem;
  }
  .section-header {
    margin: 0 auto 2rem;
  }
  .manifesto-grid {
    gap: 1.5rem;
  }
  .section-title {
    font-size: 2.1rem;
  }
  .manifesto-card {
    padding: 1.75rem 1.25rem;
  }
  .manifesto-quote {
    font-size: 1.3rem;
  }
  .manifesto-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .oracle-box {
    padding: 2rem 1.25rem;
  }
  .oracle-card-display {
    margin: 1rem 0;
    padding: 1.25rem;
    min-height: auto;
  }
  .oracle-quote {
    font-size: 1.15rem;
  }
  .faq-question {
    padding: 1.1rem 1.25rem;
    font-size: 0.95rem;
  }
  .faq-answer {
    padding: 0 1.25rem;
  }
  .faq-item.open .faq-answer {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .checkout-modal-content {
    padding: 1.75rem 1.25rem;
  }
  .cart-drawer {
    max-width: 100%;
  }
  .floating-whatsapp-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 54px;
    height: 54px;
  }
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
  .whatsapp-tooltip {
  display: none !important;
    display: none;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 1.75rem 1rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .brand-logo-img {
    height: 60px;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .filter-bar {
    gap: 0.4rem;
  }
  .filter-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* --- TOP GOOGLE TRUST BAR --- */
.top-google-trust-bar {
  background: rgba(18, 18, 24, 0.75);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 1rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.trust-bar-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-main);
  flex-wrap: wrap;
}
.trust-score {
  font-weight: 700;
  color: var(--gold-light);
}
.trust-stars {
  color: #F59E0B;
  letter-spacing: 2px;
  font-size: 1rem;
}
.trust-text {
  color: var(--text-muted);
  font-size: 0.88rem;
}



/* WCAG AA 44x44px Minimum Touch Target Size Enforcement */
button, a.btn-primary, a.btn-secondary, .social-header-btn, .btn-icon, .filter-btn, .dot, .carousel-nav-btn, .modal-close {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trust-text {
  color: #94A3B8 !important;
}
.footer-desc, .footer-note, .author-role {
  color: #94A3B8 !important;
}



/* === MOBILE RESPONSIVE OVERFLOW & CLIPPING FIXES === */
html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

img, svg, video, iframe {
  max-width: 100%;
}

@media (max-width: 600px) {
  .header {
    padding: 0.75rem 0.85rem !important;
  }
  .nav-container {
    gap: 0.35rem !important;
  }
  .brand-logo-img {
    width: 140px !important;
    height: auto !important;
  }
  .social-header-btn.insta-icon-btn, 
  .social-header-btn.face-icon-btn,
  .header-actions a[title*="Instagram"],
  .header-actions a[title*="Facebook"] {
    display: none !important; /* Hide social icons in mobile header to prevent button overflow */
  }
  .header-actions {
    gap: 0.35rem !important;
  }
  .mobile-menu-toggle {
    padding: 0.4rem 0.65rem !important;
    font-size: 0.78rem !important;
  }
  .hero {
    padding: 6.5rem 1rem 2.5rem !important;
  }
  .hero-title {
    font-size: 2.1rem !important;
    line-height: 1.25 !important;
  }
  .hero-description {
    font-size: 0.95rem !important;
  }
  .hero-img {
    height: auto !important;
    max-height: 320px !important;
    width: 100% !important;
    object-fit: cover !important;
  }
  .filter-bar {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 0.5rem !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    scrollbar-width: none !important;
  }
  .filter-bar::-webkit-scrollbar {
    display: none !important;
  }
  .filter-btn {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }
  .section {
    padding: 3rem 1rem !important;
  }
  .manifesto-grid, .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .testimonial-card, .google-card {
    padding: 1.25rem !important;
  }
}

/* Submenu Accordion & Dropdown in Mobile/Desktop Hamburger Nav */
.mobile-nav-item-dropdown {
  position: relative;
  width: 100%;
}
.mobile-nav-dropdown-toggle {
  justify-content: space-between;
}
.dropdown-chevron {
  transition: transform 0.3s ease;
  color: #FFD700;
}
.mobile-nav-item-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}
.mobile-submenu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 0 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.mobile-nav-item-dropdown.open .mobile-submenu {
  max-height: 380px;
  overflow-y: auto;
  padding: 0.4rem 0 0.4rem 0.75rem;
  border-left: 2px solid rgba(255, 215, 0, 0.3);
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.mobile-submenu-link {
  color: #F3D49C;
  text-decoration: none;
  font-family: var(--font-sub);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  display: block;
  transition: all 0.2s ease;
}
.mobile-submenu-link:hover {
  color: #FFFFFF;
  background: rgba(255, 215, 0, 0.22);
  padding-left: 0.85rem;
}

/* Enhanced Option A Clean Filter Pills */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0.25rem 0.6rem;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar {
  display: none;
}
.filter-btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(192, 149, 10, 0.08);
}
.filter-btn.active {
  background: var(--gold-primary);
  color: #000000;
  border-color: var(--gold-primary);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(192, 149, 10, 0.3);
}

/* 1:1 Brand Lilac #7F6BB2 Filter Pills matching Hamburger Menu */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.35rem 0.25rem 0.65rem;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar {
  display: none;
}
.filter-btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.45rem 1.05rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(127, 107, 178, 0.12);
  border: 1px solid rgba(127, 107, 178, 0.4);
  color: #334155;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover {
  border-color: #7F6BB2;
  color: #FFFFFF;
  background: #7F6BB2;
  box-shadow: 0 4px 12px rgba(127, 107, 178, 0.25);
}
.filter-btn.active {
  background: #7F6BB2;
  color: #FFFFFF;
  border: 1px solid #F3D49C;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(127, 107, 178, 0.4);
}

/* Sleek Clean Rounded Filter Pills (Formato Pílula Limpa) */
.filter-bar {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.35rem 0.25rem 0.75rem;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar {
  display: none;
}
.filter-btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.42rem 1.15rem !important;
  border-radius: 9999px !important;
  font-family: var(--font-sub);
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  color: #334155 !important;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1.3 !important;
}
.filter-btn:hover {
  border-color: #7F6BB2 !important;
  color: #7F6BB2 !important;
  background: rgba(127, 107, 178, 0.08) !important;
  transform: translateY(-1px);
}
.filter-btn.active {
  background: #7F6BB2 !important;
  color: #FFFFFF !important;
  border-color: #7F6BB2 !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(127, 107, 178, 0.35) !important;
}
