/** Shopify CDN: Minification failed

Line 146:41 Unexpected ".5"

**/
/*
 * Al Hamad Herbals — base.css
 * Custom styles not handled by Tailwind CDN.
 * Tailwind handles most utilities; this file covers:
 *   - Gradient text
 *   - Glassmorphism panel
 *   - Shared animations
 *   - Cart drawer open state (class toggled by JS)
 *   - Mobile nav open state (class toggled by JS)
 *   - Cart count badge transitions
 *   - Reveal scroll animation
 *   - Policy page typography
 */

/* ─── Gradient Text Utility ─────────────────────────────────── */
.text-gradient-gold {
  background: linear-gradient(to right, #d4af37, #fdd275);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Glassmorphism Panel ────────────────────────────────────── */
.glass-panel {
  background: rgba(45, 95, 46, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* ─── Cart Drawer: JS-toggled open state ─────────────────────── */
#cart-drawer.open {
  right: 0 !important;
}
#cart-overlay.open {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* ─── Navigation Underline Indicator Styles ───────────────────── */
.nav-links-container {
  position: relative;
}
.nav-indicator {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}

/* ─── Mobile Nav: JS-toggled open state ──────────────────────── */
#mobile-nav.open {
  transform: translateY(0) !important;
}

/* ─── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Shared Marquee Animation ───────────────────────────────── */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause marquee when only 1 review (no duplicate clone set rendered) */
.marquee-paused {
  animation-play-state: paused !important;
  justify-content: center !important;
}

/* ─── Material Symbols rendering fix ────────────────────────── */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* ─── Hairline gold border utility ──────────────────────────── */
.hairline-gold {
  border-color: rgba(212, 175, 55, 0.4);
}

/* ─── Hover whisper shadow ───────────────────────────────────── */
.whisper-shadow {
  box-shadow: 0 10px 40px -10px rgba(45, 95, 46, 0.08);
}

/* ─── Floating badge bounce ──────────────────────────────────── */
@keyframes bounce-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ─── img defaults ───────────────────────────────────────────── */
img {
  max-width: 100%;
  height: auto;
}

/* ─── Smooth scroll for anchor links ────────────────────────── */
html {
  scroll-behavior: smooth;
}

/* ─── Remove default list styles ────────────────────────────── */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ─── Link default ───────────────────────────────────────────── */
a {
  text-decoration: none;
  color: inherit;
}

/* ─── Reviews: Mobile aggregate rating — smaller on small screens ── */
@media (max-width: 480px) {
  #results .flex.flex-wrap.items-center.justify-center {
    gap: 4px !important;
    flex-direction: column;
    align-items: center;
  }
  #results .flex.text-gold-accent.gap-0\\.5 span {
    font-size: 16px !important;
  }
}

/* ─── Shopify Buy Button iframe fix ─────────────────────────── */
.shopify-buy-frame--product iframe {
  width: 100% !important;
  min-width: unset !important;
}

/* ─── Policy page: Cormorant Garamond headings ───────────────── */
.page-hero h1,
.cert-title,
.faq-page h1 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
}
