:root {
  --cream: #fff9f6;
  --cream-dark: #fde8e0;
  --coral-red: #ff5e62;
  --coral-orange: #ff8c69;
  --peach-pink: #ffa494;
  --peach-soft: #ffe4de;
  --purple-indigo: #4a347f;
  --purple-box: #6546a0;
  --teal-cyan: #26c6da;
  --teal-light: #e0f7fa;
  --yellow-butter: #ffca43;
  --yellow-light: #fff5d6;
  --ink: #2b1f3d;
  --muted: #6b5c82;
  --green: #ff5e62;
  --green-dark: #4a347f;
  --green-emerald: #ff8c69;
  --green-light: #ffe4de;
  --brown: #ff8c69;
  --brown-dark: #4a347f;
  --brown-light: #fff5d6;
  --gold: #ffca43;
  --gold-light: #fff5d6;
  --wa: #25d366;
  --wa-dark: #128c7e;
  --white: #ffffff;
  --gradient-hero: linear-gradient(135deg, #ffa494 0%, #ff8c69 50%, #ffca43 100%);
  --gradient-accent: linear-gradient(135deg, #ff5e62 0%, #ff8c69 100%);
  --gradient-warm: linear-gradient(135deg, #ffca43 0%, #ff8c69 100%);
  --gradient-purple: linear-gradient(135deg, #6546a0 0%, #4a347f 100%);
  --shadow-sm: 0 4px 16px rgba(74, 52, 127, 0.08);
  --shadow: 0 10px 30px rgba(74, 52, 127, 0.12);
  --shadow-lg: 0 20px 45px rgba(74, 52, 127, 0.18);
  --shadow-glow: 0 8px 25px rgba(255, 94, 98, 0.35);
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: 1140px;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Smooth scrolling fights momentum scrolling on touch devices,
   causing jank. Keep it only for pointer (mouse/trackpad) users. */
@media (hover: none) and (pointer: coarse) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--green-dark);
  font-weight: 700;
}

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

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Floating WA Widget ---------- */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.2s, box-shadow 0.2s;
  text-decoration: none !important;
}

.floating-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.floating-wa-icon {
  font-size: 1.3rem;
}

.floating-wa-badge {
  background: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 246, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 16px;
}

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

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--peach-soft);
  box-shadow: var(--shadow-sm);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--purple-indigo);
  letter-spacing: -0.02em;
}

.brand-accent {
  color: var(--coral-red);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-nav a {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  position: relative;
}

.primary-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral-red);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.primary-nav a:not(.btn):hover::after {
  width: 100%;
}

.primary-nav a:hover {
  color: var(--coral-red);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--purple-indigo);
  border-radius: 3px;
  transition: transform 0.25s, opacity 0.25s;
}

@media (max-width: 900px) {
  .site-header {
    background: rgba(255, 249, 246, 0.98);
  }

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .primary-nav.open {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .primary-nav a {
    padding: 14px 24px;
    border-top: 1px solid var(--cream-dark);
  }

  .nav-cta {
    text-align: center;
    margin: 14px 24px 24px;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--coral-red);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 94, 98, 0.4);
}

.btn-primary:hover {
  background: #f44336;
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 94, 98, 0.5);
}

.btn-secondary {
  background: var(--white);
  color: var(--purple-indigo);
  border: 2px solid var(--purple-indigo);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--purple-indigo);
  color: #fff;
}

.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
  background: var(--wa-dark);
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
}

.btn-outline {
  border: 2px solid var(--purple-indigo);
  color: var(--purple-indigo);
  background: transparent;
}

.btn-outline:hover {
  background: var(--purple-indigo);
  color: #fff;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 120px 0 90px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #4a347f 0%, #6546a0 48%, #b0496e 82%, #ff5e62 100%);
}

/* Decorative glows */
.hero::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 202, 67, 0.32), transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -140px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-media {
  position: relative;
  justify-self: center;
  width: min(100%, 400px);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 88%;
  border-radius: var(--radius-lg);
  border: 6px solid rgba(255, 249, 246, 0.95);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}

.hero-media-chip {
  position: absolute;
  left: -18px;
  bottom: 26px;
  background: linear-gradient(135deg, #ffca43, #ff8c69);
  color: var(--purple-indigo);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-glow);
  line-height: 1.35;
  animation: chip-float 3.2s ease-in-out infinite;
}

.hero-media-chip strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
}

.hero-media-chip span {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
}

@keyframes chip-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-badge-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-tagline {
  background: var(--gradient-warm);
  color: #fff;
  padding: 7px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 14px rgba(255, 140, 105, 0.35);
}

.hero-halal-badge {
  background: var(--gradient-accent);
  color: #fff;
  padding: 7px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 14px rgba(255, 94, 98, 0.35);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5.5vw, 3.8rem);
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 34px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions .btn-outline {
  border-color: #fff;
  color: #fff;
}

.hero-actions .btn-outline:hover {
  background: #fff;
  color: var(--purple-indigo);
}

/* ---------- Sections ---------- */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--cream-dark);
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brown);
  margin-bottom: 8px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.image-wrapper:hover img {
  transform: scale(1.03);
}

.image-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--green-dark);
  color: #fff;
  padding: 6px 16px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.85rem;
}

.split-body h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 16px;
}

.split-body p {
  margin-bottom: 16px;
  color: var(--ink);
}

.link-more {
  display: inline-block;
  font-weight: 700;
  margin-top: 8px;
  color: var(--green);
}

.trust-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.trust-icon {
  font-size: 1.8rem;
}

.trust-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--green-dark);
}

.trust-card p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0 !important;
}

.fact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-left: 4px solid var(--green);
  padding: 18px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
  margin-top: 20px;
}

.fact-icon {
  font-size: 1.6rem;
}

.fact-title {
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 2px !important;
}

.fact-desc {
  font-size: 0.95rem;
  margin-bottom: 0 !important;
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .trust-cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- Fillings ---------- */
.fillings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 44px;
}

.filling-card {
  background: var(--white);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.filling-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.15);
  border-color: var(--green);
  background: linear-gradient(180deg, #ffffff 0%, var(--green-light) 100%);
}

.filling-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.filling-card:hover .filling-icon {
  transform: scale(1.15);
}

.filling-card h3 {
  font-size: 1.12rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.filling-card p {
  font-size: 0.88rem;
  color: var(--muted);
}

.filling-card small {
  display: block;
  color: var(--brown);
  font-size: 0.8rem;
  font-weight: 600;
}

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

.filling-photos figure {
  margin: 0;
  text-align: center;
}

.filling-photos img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}

.filling-photos figure:hover img {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.filling-photos figcaption {
  margin-top: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

@media (max-width: 760px) {
  .filling-photos {
    grid-template-columns: 1fr;
  }
}

.other-products .filling-card h3 {
  color: var(--brown);
}

/* ---------- Store Locator & Store Lists ---------- */
.margin-bottom-lg {
  margin-bottom: 36px;
}

.note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-left: 5px solid var(--wa);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}

.note-icon {
  font-size: 1.8rem;
}

.note-content p {
  margin-bottom: 6px;
}

.note-content p:last-child {
  margin-bottom: 0;
}

/* Search & Tabs */
.store-locator-controls {
  margin: 36px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.store-search-box {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

.store-search-box input {
  width: 100%;
  padding: 16px 48px 16px 46px;
  border-radius: 999px;
  border: 2px solid var(--cream-dark);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.store-search-box input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(39, 98, 53, 0.15);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  opacity: 0.6;
}

.clear-search-btn {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--muted);
  cursor: pointer;
  display: none;
  line-height: 1;
}

.clear-search-btn.visible {
  display: block;
}

.store-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.store-result-count {
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
}

.store-tab {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.store-tab:hover {
  background: var(--cream-dark);
  color: var(--ink);
}

.store-tab.active {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
  box-shadow: var(--shadow-sm);
}

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

.col-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  border: 1px solid var(--cream-dark);
  transition: transform 0.25s, box-shadow 0.25s;
}

.col-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.col-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-dark);
}

.category-icon {
  font-size: 1.5rem;
}

.col-card h3 {
  font-size: 1.2rem;
  color: var(--green-dark);
}

.store-list {
  list-style: none;
}

.store-list li {
  padding: 9px 0 9px 24px;
  position: relative;
  font-size: 0.96rem;
  line-height: 1.5;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.store-list li:last-child {
  border-bottom: none;
}

.store-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.no-store-found {
  text-align: center;
  padding: 48px 20px;
  background: var(--white);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .cols {
    grid-template-columns: 1fr;
  }
}

/* ---------- Certifications & Halal ---------- */
.cert-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
}

.cert-icon {
  font-size: 1.4rem;
}

.halal-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--green-light), var(--cream-dark));
  min-height: 340px;
}

.halal-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--white);
  border: 8px solid var(--green);
  box-shadow: var(--shadow-lg);
  padding: 24px;
}

.halal-badge-crescent {
  font-size: 2.4rem;
  line-height: 1;
}

.halal-badge-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--green-dark);
}

.halal-badge-sub {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px 26px;
  position: relative;
  border: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stars {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 18px;
  color: var(--ink);
  line-height: 1.6;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.98rem;
}

.testimonial small {
  display: inline;
  font-weight: 400;
  color: var(--muted);
}

.avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  background: var(--brown-light);
  color: var(--brown);
  border: 2px solid var(--gold);
}

@media (max-width: 880px) {
  .hero {
    padding: 110px 0 70px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-media {
    width: min(100%, 340px);
  }

  .hero-media-chip {
    left: -6px;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }
}

/* ---------- FAQ Accordion ---------- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-dark);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.98rem;
  padding-bottom: 20px;
  line-height: 1.6;
}

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

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

.faq-item.active .faq-answer {
  max-height: 600px;
}

/* ---------- Map ---------- */
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  min-height: 400px;
}

.map-placeholder {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 30px;
  color: var(--muted);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ---------- Contact ---------- */
.contact-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 44px 38px;
  text-align: center;
  border: 1px solid var(--cream-dark);
  position: relative;
}

.contact-header-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 4px 14px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.contact-phone {
  font-size: 1.35rem;
  margin-bottom: 24px;
  color: var(--ink);
}

.contact-note {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-card .btn {
  margin-bottom: 26px;
  width: 100%;
  max-width: 320px;
}

.contact-card address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-dark);
  color: #e9efe7;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand p {
  margin-top: 14px;
  max-width: 340px;
  font-size: 0.95rem;
  opacity: 0.88;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-nav a {
  color: #e9efe7;
  font-weight: 600;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  font-size: 0.9rem;
  text-align: center;
  opacity: 0.85;
}

@media (max-width: 760px) {
  .footer-inner {
    flex-direction: column;
  }
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
  .shadow-pulse {
    animation: none;
  }
  .hero-media-chip {
    animation: none;
  }
  .floating-wa,
  .btn,
  .filling-card,
  .col-card,
  .testimonial,
  .filling-icon {
    transition: none;
  }
  .floating-wa:hover,
  .btn:hover,
  .filling-card:hover,
  .filling-card:hover .filling-icon,
  .col-card:hover,
  .testimonial:hover,
  .image-wrapper:hover img,
  .filling-photos figure:hover img {
    transform: none;
  }
}


/* ---------- Inline SVG Icons ---------- */
.ico {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.18em;
}

.floating-wa-icon svg,
.filling-icon .ico {
  fill: currentColor;
  stroke: none;
  width: 1.35em;
  height: 1.35em;
}

.floating-wa-icon {
  display: flex;
  align-items: center;
}

.highlight-icon {
  display: inline-flex;
  align-items: center;
}

.highlight-icon .ico {
  width: 1.25em;
  height: 1.25em;
}

/* ---------- Testimonial Polish ---------- */
.testimonial {
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -14px;
  right: 12px;
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 1;
  color: var(--coral-red);
  opacity: 0.1;
  pointer-events: none;
}

.testimonial:nth-of-type(1) .avatar {
  background: linear-gradient(135deg, #ff5e62, #ff8c69);
  border-color: var(--peach-pink);
  color: #fff;
}

.testimonial:nth-of-type(2) .avatar {
  background: linear-gradient(135deg, #6546a0, #4a347f);
  border-color: #8a6cc9;
  color: #fff;
}

.testimonial:nth-of-type(3) .avatar {
  background: linear-gradient(135deg, #ffca43, #ff8c69);
  border-color: #ffd97a;
  color: #4a347f;
}

/* ---------- Store Locator Links ---------- */
.store-list li a {
  display: block;
  color: inherit;
  text-decoration: none !important;
  border-radius: 10px;
  padding: 2px 8px;
  margin: -2px -8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.store-list li a:hover {
  background: var(--peach-soft);
  color: var(--purple-indigo);
}
