/* ==========================================================================
   SANTECH HUNGARY - SHOPIFY-STYLE MODERN DESIGN SYSTEM
   Professional Senior Frontend Architecture (HTML5 / CSS3 / Vanilla JS)
   ========================================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
  --primary: #0284c7;         /* Shopify cyan/royal accent */
  --primary-hover: #0369a1;
  --primary-dark: #075985;
  --primary-light: #e0f2fe;
  --primary-glow: rgba(2, 132, 199, 0.15);

  --accent: #e11d48;          /* Bright sale & discount coral red */
  --accent-hover: #be123c;
  --accent-light: #ffe4e6;

  --success: #059669;         /* Trust emerald green */
  --success-light: #d1fae5;
  --warning: #f59e0b;
  --warning-light: #fef3c7;

  --dark: #0f172a;            /* Deep slate black */
  --dark-surface: #1e293b;
  --gray-900: #0f172a;
  --gray-800: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50:  #f8fafc;
  --white:    #ffffff;

  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.04);

  --transition-fast: 0.18s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);

  --container-max: 1280px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --- Typography & Headings --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--gray-900);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.section-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}
.section-title {
  margin-bottom: 0.75rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
}

/* --- Shopify-Style Announcement Bar --- */
.announcement-bar {
  background: var(--dark);
  color: var(--white);
  font-size: 0.825rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.announcement-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.announcement-tag {
  background: var(--accent);
  color: var(--white);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.announcement-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.announcement-phone {
  color: #38bdf8;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.announcement-phone:hover {
  text-decoration: underline;
}

/* --- Header & Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
}
.brand-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary) 0%, #0369a1 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}
.brand-logo span.badge-location {
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
  margin-left: 0.25rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  position: relative;
  padding: 0.5rem 0;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-phone-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-100);
  color: var(--gray-900);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--transition-fast);
}
.header-phone-btn:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.cart-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  color: var(--gray-800);
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}
.cart-trigger:hover {
  background: var(--primary);
  color: var(--white);
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-800);
  cursor: pointer;
  padding: 0.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}
.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
}
.btn-accent:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.45);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-surface);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gray-800);
  border-color: var(--gray-300);
}
.btn-outline:hover {
  border-color: var(--gray-800);
  background: var(--gray-50);
}
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}
.btn-block {
  width: 100%;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0b1329 0%, #1e293b 100%);
  color: var(--white);
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(2, 132, 199, 0.25) 0%, transparent 60%),
                    radial-gradient(circle at 20% 80%, rgba(225, 29, 72, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.18;
}
.hero-content h1 span.highlight {
  color: #38bdf8;
  background: linear-gradient(120deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content p {
  color: #cbd5e1;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 580px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.12);
}

/* Fast Booking Card in Hero (Name + Phone ONLY) */
.hero-order-card {
  background: var(--white);
  color: var(--gray-900);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.hero-order-card .card-discount-ribbon {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-order-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}
.hero-order-card p.card-sub {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}
.form-label span.req {
  color: var(--accent);
}
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--gray-900);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-control::placeholder {
  color: var(--gray-400);
}
.form-helper {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.form-privacy-note {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
  text-align: center;
  line-height: 1.4;
}
.form-privacy-note a {
  color: var(--primary);
  text-decoration: underline;
}

/* --- Trust / Stats Bar --- */
.trust-bar {
  background: var(--white);
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.trust-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 0.15rem;
}
.trust-desc {
  font-size: 0.825rem;
  color: var(--gray-500);
  margin: 0;
}

/* --- Sections Common --- */
.section {
  padding: 5rem 0;
}
.section-gray {
  background: var(--gray-50);
}

/* --- Service Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}
.card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--gray-100);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .card-media img {
  transform: scale(1.05);
}
.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}
.card-discount {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--warning);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.card-rating span.rating-count {
  color: var(--gray-400);
  font-size: 0.78rem;
}
.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}
.service-card:hover .card-title {
  color: var(--primary);
}
.card-features {
  margin: 0.75rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.card-features li {
  font-size: 0.85rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.card-price-box {
  display: flex;
  flex-direction: column;
}
.card-price-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 700;
}
.card-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gray-900);
}
.card-price-old {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-left: 0.35rem;
}

/* --- E-Commerce Product Cards --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.75rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.product-media {
  position: relative;
  height: 240px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1rem;
}
.product-media img {
  max-height: 100%;
  width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .product-media img {
  transform: scale(1.08);
}
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-sale {
  background: var(--accent);
  color: var(--white);
}
.badge-stock {
  background: var(--success-light);
  color: var(--success);
}
.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gray-400);
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}
.product-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}
.product-title a:hover {
  color: var(--primary);
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
}
.product-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
}
.product-old-price {
  font-size: 0.88rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.product-actions {
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
}

/* --- Filter & Category Tabs --- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.25);
}

/* --- Banner & Special Deals --- */
.promo-banner {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  margin: 3rem 0;
  box-shadow: var(--shadow-xl);
}
.promo-banner-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.promo-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.promo-banner p {
  color: #e0f2fe;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.promo-countdown {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.countdown-block {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  min-width: 65px;
}
.countdown-num {
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
}
.countdown-lbl {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: #93c5fd;
  font-weight: 700;
}

/* --- Why Choose Us Grid --- */
.feature-box {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
  text-align: left;
}
.feature-box:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}
.feature-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.feature-text {
  font-size: 0.92rem;
  color: var(--gray-600);
}

/* --- Reviews / Testimonials --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: var(--warning);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.review-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.author-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.author-info span {
  font-size: 0.78rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.verified-check {
  color: var(--success);
  font-size: 0.8rem;
}

/* --- Google Ads Trust / Transparency Banner --- */
.trust-compliance-banner {
  background: #f8fafc;
  border: 1.5px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.compliance-item {
  padding: 0.5rem;
}
.compliance-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--gray-900);
}
.compliance-item p {
  font-size: 0.825rem;
  color: var(--gray-600);
  margin: 0;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: all var(--transition-fast);
}
.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.faq-question svg {
  transition: transform var(--transition-fast);
  color: var(--primary);
  flex-shrink: 0;
}
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  display: none;
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
}
.faq-item.active .faq-answer {
  display: block;
}

/* --- Footer --- */
.site-footer {
  background: var(--dark);
  color: #cbd5e1;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .brand-logo {
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.footer-title {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}
.footer-links a:hover {
  color: #38bdf8;
  transform: translateX(3px);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 0.85rem;
}
.footer-contact-item svg {
  color: #38bdf8;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.footer-contact-item a {
  color: #e2e8f0;
  font-weight: 600;
}
.footer-contact-item a:hover {
  color: #38bdf8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.825rem;
  color: #64748b;
}
.footer-legal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-legal-row a {
  color: #94a3b8;
}
.footer-legal-row a:hover {
  color: var(--white);
  text-decoration: underline;
}
.payment-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.payment-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: #cbd5e1;
}

/* --- Cart Drawer (Shopify Style) --- */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}
.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: var(--white);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-normal);
}
.cart-drawer.active {
  right: 0;
}
.cart-drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-drawer-header h3 {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-drawer-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-500);
  padding: 0.25rem;
}
.cart-drawer-close:hover {
  color: var(--gray-900);
}
.cart-drawer-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex-grow: 1;
}
.cart-item-card {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}
.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  padding: 0.25rem;
  flex-shrink: 0;
  object-fit: contain;
}
.cart-item-details {
  flex-grow: 1;
}
.cart-item-title {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.cart-item-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gray-900);
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}
.qty-val {
  font-size: 0.88rem;
  font-weight: 600;
}
.cart-item-remove {
  color: var(--gray-400);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  position: absolute;
  top: 0;
  right: 0;
}
.cart-item-remove:hover {
  color: var(--accent);
}
.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.cart-summary-row.total {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 1rem 0;
  border-top: 1px dashed var(--gray-300);
  padding-top: 0.75rem;
}
.cart-empty-message {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray-500);
}

/* --- Quick Order Modal (Name + Phone ONLY) --- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}
.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.modal-window {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 2.25rem;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: transform var(--transition-fast);
}
.modal-backdrop.active .modal-window {
  transform: scale(1);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gray-100);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
}
.modal-close:hover {
  background: var(--gray-200);
  color: var(--gray-900);
}

/* --- Cookie Consent Banner (Google Ads & GDPR Compliant) --- */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 480px;
  background: var(--dark);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.5;
}
.cookie-banner a {
  color: #38bdf8;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

/* --- Breadcrumbs --- */
.breadcrumb-nav {
  padding: 1rem 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.85rem;
  color: var(--gray-500);
}
.breadcrumb-nav ol {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb-nav li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--gray-400);
}
.breadcrumb-nav a:hover {
  color: var(--primary);
}

/* --- Legal / Policy Pages Styling --- */
.policy-container {
  max-width: 860px;
  margin: 3rem auto 5rem;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.policy-container h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.policy-meta {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}
.policy-container h2 {
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
  color: var(--gray-900);
}
.policy-container p, .policy-container ul {
  font-size: 0.98rem;
  color: var(--gray-700);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.policy-container ul {
  list-style: disc;
  padding-left: 1.5rem;
}
.policy-container li {
  margin-bottom: 0.5rem;
}

/* --- Thank You Page Styling --- */
.thank-you-box {
  max-width: 640px;
  margin: 4rem auto 6rem;
  text-align: center;
  background: var(--white);
  padding: 3.5rem 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xl);
}
.thank-you-icon {
  width: 80px;
  height: 80px;
  background: var(--success-light);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}
.order-id-badge {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-800);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--gray-200);
}
.callback-timer {
  background: var(--primary-light);
  border: 1px solid #bae6fd;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  color: var(--primary-dark);
  font-weight: 600;
}

/* --- Product Detail Page Specific --- */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin: 2.5rem 0 4rem;
}
.product-gallery-main {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}
.product-gallery-main img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.product-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.product-specs-table tr {
  border-bottom: 1px solid var(--gray-200);
}
.product-specs-table td {
  padding: 0.75rem 0;
}
.product-specs-table td:first-child {
  font-weight: 600;
  color: var(--gray-600);
  width: 40%;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .promo-banner-inner {
    grid-template-columns: 1fr;
  }
  .trust-compliance-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .announcement-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.35rem;
  }
  .announcement-contact {
    display: none;
  }
  .main-nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--gray-200);
  }
  .main-nav.active {
    display: flex;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .header-phone-btn {
    display: none;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .promo-banner {
    padding: 2rem 1.5rem;
  }
  .policy-container {
    padding: 1.5rem;
  }
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}
