/* ==========================================================================
   DentalSave BG – WordPress / WooCommerce Dental Theme
   Author: Senior Frontend Architect (10+ Years Experience)
   Standards: Clean CSS3, CSS Custom Properties, BEM Architecture, Responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties & Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Dental Color Palette */
  --primary: #0284c7;             /* Ocean Dental Blue */
  --primary-hover: #0369a1;
  --primary-light: #e0f2fe;
  
  --mint: #0d9488;                /* Medical Fresh Mint Teal */
  --mint-light: #ccfbf1;
  --mint-hover: #0f766e;
  
  --accent-green: #10b981;        /* Clinical Fresh Green */
  --accent-green-light: #ecfdf5;
  
  --discount-red: #ef4444;        /* Promotional Badge Red */
  --discount-badge-bg: #fee2e2;
  --star-gold: #f59e0b;
  
  /* Background & Surface */
  --bg-page: #f8fafc;             /* Crisp clinical light grey */
  --bg-surface: #ffffff;
  --bg-alt: #f0fdfa;              /* Soft Enamel Tinted Glow */
  --bg-dark: #0f172a;             /* Deep Slate Footer */
  --bg-darker: #020617;
  
  /* Typography & Text */
  --text-main: #1e293b;           /* Slate 800 */
  --text-muted: #64748b;          /* Slate 500 */
  --text-light: #94a3b8;          /* Slate 400 */
  --text-white: #ffffff;
  
  /* Borders & Shadows */
  --border-light: #e2e8f0;
  --border-mint: #99f6e4;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px -2px rgba(2, 132, 199, 0.08), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 28px -4px rgba(13, 148, 136, 0.12), 0 4px 12px -2px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 20px rgba(13, 148, 136, 0.25);
  
  /* Layout */
  --container-max: 1240px;
  --header-height: 84px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Tooth Watermark SVG Vector (Clean, elegant semi-transparent dental motif) */
  --tooth-watermark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' opacity='0.035'%3E%3Cpath fill='%230284c7' d='M50 8 C65 8 82 15 84 32 C86 46 80 62 76 74 C73 83 67 92 61 92 C56 92 54 84 50 78 C46 84 44 92 39 92 C33 92 27 83 24 74 C20 62 14 46 16 32 C18 15 35 8 50 8 Z'/%3E%3C/svg%3E");
  --tooth-sparkle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230d9488' opacity='0.15'%3E%3Cpath d='M12 0L14.59 9.41L24 12L14.59 14.59L12 24L9.41 14.59L0 12L9.41 9.41L12 0Z'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   2. Reset & Base Typography
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-main);
  background-color: var(--bg-page);
  background-image: var(--tooth-watermark);
  background-repeat: repeat;
  background-size: 160px 160px;
  background-attachment: fixed;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

/* --------------------------------------------------------------------------
   3. Top Announcement Bar (Trust & Urgency)
   -------------------------------------------------------------------------- */
.top-bar {
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
  font-size: 0.8125rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-green);
}

.top-bar-badge {
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.top-bar-currency {
  font-weight: 600;
  color: #38bdf8;
}

/* --------------------------------------------------------------------------
   4. WordPress / WooCommerce Site Header
   -------------------------------------------------------------------------- */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.header-main {
  padding: 14px 0;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo & Tooth Symbol */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0d9488 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
  position: relative;
  overflow: hidden;
}

.brand-icon-box svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #0f172a;
  line-height: 1.1;
}

.brand-title span {
  color: #0284c7;
}

.brand-title .brand-bg {
  color: #0d9488;
  font-weight: 900;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Search Bar (WooCommerce Style with Category Selector) */
.header-search {
  flex: 1;
  max-width: 520px;
}

.search-form {
  display: flex;
  align-items: center;
  border: 2px solid #cbd5e1;
  border-radius: var(--radius-pill);
  background: #ffffff;
  overflow: hidden;
  transition: var(--transition);
  padding: 2px;
}

.search-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.search-category-select {
  border: none;
  background: #f1f5f9;
  padding: 8px 12px;
  font-size: 0.8125rem;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
  border-right: 1px solid #e2e8f0;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 14px;
  font-size: 0.875rem;
  color: var(--text-main);
  background: transparent;
}

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

.search-submit-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--mint) 100%);
  color: #ffffff;
  border: none;
  outline: none;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.search-submit-btn:hover {
  filter: brightness(1.1);
  transform: scale(1.03);
}

.search-submit-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Header Hotline (Direct Dentist Consultation) */
.header-hotline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hotline-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mint-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotline-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--mint);
}

.hotline-details {
  display: flex;
  flex-direction: column;
}

.hotline-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.hotline-number {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.hotline-number:hover {
  color: var(--primary);
}

/* Header Actions (Fast Order & Cart Drawer) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-quick-order-header {
  background: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.28);
  transition: var(--transition);
}

.btn-quick-order-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.38);
}

.header-cart-btn {
  position: relative;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  color: #0f172a;
}

.header-cart-btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

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

.cart-icon-wrapper svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--discount-red);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.cart-text-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cart-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.cart-sum {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #0f172a;
}

.mobile-nav-toggle svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   5. Category Navigation Bar (Sticky WooCommerce Nav)
   -------------------------------------------------------------------------- */
.site-nav {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.nav-badge-hot {
  background: var(--discount-red);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.nav-extra-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.nav-extra-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
}

.nav-extra-link:hover {
  color: var(--primary);
}

.nav-extra-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   6. Hero Section (Rearranged & High-Impact)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 40px 0 60px;
  background: radial-gradient(100% 100% at 50% 0%, #e0f2fe 0%, #f0fdfa 60%, #ffffff 100%);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background-image: var(--tooth-sparkle);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #bae6fd;
  box-shadow: var(--shadow-sm);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-hover);
  margin-bottom: 18px;
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #0284c7 0%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 580px;
}

.hero-trust-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.hero-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
}

.hero-bullet-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-bullet-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--mint);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Beautiful WordPress Pill Buttons */
.btn-primary-dental {
  background: linear-gradient(135deg, #0284c7 0%, #0d9488 100%);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.28);
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary-dental:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.38);
  filter: brightness(1.05);
}

.btn-secondary-dental {
  background: #ffffff;
  color: #0f172a;
  border: 2px solid #cbd5e1;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-secondary-dental:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* Hero Media Box */
.hero-media-wrapper {
  position: relative;
  z-index: 2;
}

.hero-main-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Floating Badges on Hero */
.hero-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-floating-badge.badge-top {
  top: 30px;
  right: -14px;
}

.hero-floating-badge.badge-bottom {
  bottom: 30px;
  left: -14px;
}

.badge-avatar-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
}

.badge-text-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
}

.badge-text-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. Deal of the Day Banner (Flash Countdown & 1-Click Order)
   -------------------------------------------------------------------------- */
.deal-banner-section {
  padding: 30px 0;
  background: #ffffff;
}

.deal-box {
  background: linear-gradient(135deg, #0369a1 0%, #0f766e 100%);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.deal-box::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 240px;
  height: 240px;
  background-image: var(--tooth-watermark);
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
}

.deal-header-badge {
  display: inline-block;
  background: #f43f5e;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.deal-title {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.deal-subtitle {
  font-size: 0.95rem;
  color: #e0f2fe;
  margin-bottom: 20px;
}

.deal-countdown {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.countdown-unit {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  text-align: center;
  min-width: 60px;
}

.countdown-num {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.countdown-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #93c5fd;
  margin-top: 2px;
}

.deal-quick-form {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px;
  color: var(--text-main);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.deal-form-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.deal-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.deal-price-current {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--mint);
}

.deal-price-old {
  font-size: 1.05rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.deal-discount-tag {
  background: #fee2e2;
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

/* Quick Order Form (Only Name and Phone Number) */
.form-compact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
}

.form-input {
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.form-input.is-invalid {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.form-error-msg {
  font-size: 0.75rem;
  color: #ef4444;
  display: none;
}

.btn-submit-order {
  background: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit-order:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.form-privacy-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   8. Dental Categories Visual Grid
   -------------------------------------------------------------------------- */
.categories-section {
  padding: 50px 0 30px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.section-pretitle {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mint);
  margin-bottom: 6px;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.category-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--mint);
  box-shadow: var(--shadow-md);
}

.category-img-box {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--bg-alt);
  border: 2px solid #e0f2fe;
}

.category-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.category-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

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

/* --------------------------------------------------------------------------
   9. Filterable Product Grid (Different Product Cards & Discounts in EUR)
   -------------------------------------------------------------------------- */
.products-section {
  padding: 40px 0 60px;
}

.product-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab-btn {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #475569;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* WordPress / WooCommerce Style Product Card */
.product-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #bae6fd;
}

/* Badges */
.product-badge-group {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 3;
}

.badge-discount {
  background: var(--discount-red);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

.badge-featured {
  background: #0284c7;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.badge-eco {
  background: #10b981;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Product Media */
.product-thumb-wrap {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-thumb {
  transform: scale(1.05);
}

/* Product Details */
.product-category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 4px;
}

.product-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 6px;
  min-height: 42px;
}

.product-name a {
  color: inherit;
}

.product-name a:hover {
  color: var(--primary);
}

/* Rating & Reviews */
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.rating-stars {
  color: var(--star-gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.rating-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Pricing Block (in EUR €) */
.product-price-box {
  margin-top: auto;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-current {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
}

.price-old {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: line-through;
}

/* Card Buttons (WordPress Store Standard) */
.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn-card-buy {
  background: var(--primary);
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 9px 8px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.btn-card-buy:hover {
  background: var(--primary-hover);
}

.btn-card-quick {
  background: #f0fdfa;
  color: var(--mint);
  border: 1.5px solid var(--mint);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 8px 8px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.btn-card-quick:hover {
  background: var(--mint);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   10. Interactive Dental Care Quiz / Finder
   -------------------------------------------------------------------------- */
.quiz-section {
  padding: 50px 0;
  background: #f0fdfa;
  border-top: 1px solid #ccfbf1;
  border-bottom: 1px solid #ccfbf1;
  position: relative;
}

.quiz-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border-mint);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.quiz-options-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quiz-opt-btn {
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  padding: 14px;
  border-radius: var(--radius-md);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.quiz-opt-btn:hover, .quiz-opt-btn.active {
  border-color: var(--mint);
  background: #f0fdfa;
  box-shadow: var(--shadow-sm);
}

.quiz-opt-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.quiz-opt-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.quiz-result-box {
  background: var(--bg-alt);
  border: 1px dashed var(--mint);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   11. Trust & Medical Guarantees (Why Choose DentalSave BG)
   -------------------------------------------------------------------------- */
.trust-section {
  padding: 60px 0;
  background: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #f8fafc;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.trust-card:hover {
  background: #ffffff;
  border-color: #bae6fd;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.trust-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--primary);
}

.trust-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.trust-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   12. Dentist Endorsement & Clinical Expertise
   -------------------------------------------------------------------------- */
.doctor-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
}

.doctor-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-mint);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: center;
}

.doctor-photo-wrap {
  position: relative;
}

.doctor-photo {
  width: 220px;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.doctor-quote-icon {
  font-size: 2.5rem;
  color: var(--mint);
  line-height: 1;
  margin-bottom: 8px;
}

.doctor-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 16px;
}

.doctor-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}

.doctor-credentials {
  font-size: 0.8125rem;
  color: var(--mint);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   13. Customer Reviews Section
   -------------------------------------------------------------------------- */
.reviews-section {
  padding: 50px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-author {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--accent-green);
  font-weight: 700;
}

.review-product-tag {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   14. FAQ Accordion (Google Ads Transparency)
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 50px 0 70px;
  background: #ffffff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
}

.faq-item.active .faq-answer {
  display: block;
}

/* --------------------------------------------------------------------------
   15. WordPress Style Mega Footer & Google Ads Compliance
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-dark);
  color: #94a3b8;
  font-size: 0.875rem;
  margin-top: auto;
  border-top: 4px solid var(--mint);
}

.footer-top-strip {
  background: #1e293b;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f8fafc;
}

.footer-strip-item svg {
  width: 28px;
  height: 28px;
  fill: var(--mint);
  flex-shrink: 0;
}

.footer-strip-text-title {
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-strip-text-sub {
  font-size: 0.75rem;
  color: #94a3b8;
}

.footer-main {
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--mint);
}

.footer-about-text {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-company-details {
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  line-height: 1.5;
  color: #cbd5e1;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-list a {
  color: #94a3b8;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--mint);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #f8fafc;
  font-weight: 600;
}

.footer-contact-item a:hover {
  color: var(--primary);
}

/* Payment & Regulatory Badges */
.footer-payments-box {
  margin-top: 16px;
}

.payment-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.pay-badge {
  background: #ffffff;
  color: #0f172a;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Footer Bottom Strip */
.footer-bottom {
  background: var(--bg-darker);
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.medical-disclaimer {
  font-size: 0.72rem;
  color: #64748b;
  text-align: center;
  margin-top: 14px;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   16. Modals & Drawers (1-Click Quick Order Modal & Cart Drawer)
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-backdrop.is-open {
  display: flex;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.25s ease;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.modal-product-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: #f8fafc;
  border-radius: var(--radius-sm);
  margin: 16px 0;
  border: 1px solid var(--border-light);
}

.modal-product-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* Cart Drawer */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 2000;
  display: none;
}

.cart-drawer-backdrop.is-open {
  display: block;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #ffffff;
  z-index: 2001;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.cart-drawer.is-open {
  right: 0;
}

.cart-drawer-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-light);
  background: #f8fafc;
}

/* --------------------------------------------------------------------------
   17. GDPR Cookie Banner
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border-mint);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  font-size: 0.8125rem;
  color: #334155;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--mint);
  color: #ffffff;
  border: none;
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
}

.btn-cookie-decline {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   18. Catalog & Product Page Specifics
   -------------------------------------------------------------------------- */
.page-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 40px 0;
  margin-bottom: 40px;
}

.page-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
}

.breadcrumbs a {
  color: #38bdf8;
}

.breadcrumbs span.current {
  color: #e2e8f0;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  margin-bottom: 60px;
}

.catalog-sidebar {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
}

.filter-group {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #475569;
  cursor: pointer;
}

.filter-checkbox {
  accent-color: var(--mint);
  width: 16px;
  height: 16px;
}

/* Product Detail Page Specifics */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 40px 0 60px;
  background: #ffffff;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.product-gallery-main {
  width: 100%;
  height: 440px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f8fafc;
  margin-bottom: 16px;
  border: 1px solid var(--border-light);
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: #f8fafc;
  transition: var(--transition);
}

.gallery-thumb.active, .gallery-thumb:hover {
  border-color: var(--primary);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-stock-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-green);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-detail-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 14px;
}

.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.product-price-current-lg {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--mint);
}

.product-price-old-lg {
  font-size: 1.3rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-variant-selector {
  margin-bottom: 24px;
}

.variant-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
}

.variant-buttons {
  display: flex;
  gap: 8px;
}

.variant-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.variant-btn.active, .variant-btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

.fast-order-box-lg {
  background: #f0fdfa;
  border: 2px solid var(--border-mint);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.fast-order-box-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.fast-order-box-subtitle {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.product-detail-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
  color: #334155;
  margin-top: 20px;
}

.product-tabs-section {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 32px;
  margin-bottom: 60px;
}

/* Legal & Policy Content Styling */
.legal-content-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 60px;
  line-height: 1.7;
}

.legal-content-card h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  margin: 28px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-light);
}

.legal-content-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin: 20px 0 8px;
}

.legal-content-card p {
  margin-bottom: 16px;
  color: #475569;
}

.legal-content-card ul {
  margin-bottom: 16px;
  padding-left: 20px;
  list-style: disc;
  color: #475569;
}

.legal-content-card li {
  margin-bottom: 6px;
}

.highlight-box {
  background: var(--bg-alt);
  border-left: 4px solid var(--mint);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
}
