/* ============================================================
   AeroVita Serbia — Design System
   Urban Shield Serbia — styles.css
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colours */
  --bg-warm-white: #F7F4EF;
  --white: #FFFFFF;
  --charcoal: #1F2933;
  --deep-green: #1F3A32;
  --serbian-blue: #DCE8EF;
  --soft-sage: #DDE8DF;
  --warm-beige: #E8D8C4;
  --clay-cta: #B9633F;
  --clay-cta-hover: #934E34;
  --warning-soft: #FFF2C7;
  --error: #B42318;
  --success: #027A48;
  --border: #E2DED6;

  /* Typography */
  --font-primary: 'Inter', 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: 'Manrope', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Font Sizes */
  --h1-size: clamp(38px, 7vw, 92px);
  --h2-size: clamp(28px, 5vw, 64px);
  --h3-size: clamp(22px, 3vw, 36px);
  --body-size: clamp(16px, 1.2vw, 18px);
  --caption-size: clamp(13px, 1vw, 14px);
  --legal-size: clamp(14px, 1vw, 16px);

  /* Spacing */
  --section-padding: clamp(60px, 10vw, 120px);
  --container-max: 1280px;
  --container-narrow: 900px;
  --gap-sm: 12px;
  --gap-md: 24px;
  --gap-lg: 48px;
  --gap-xl: 72px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(31, 41, 51, 0.06);
  --shadow-md: 0 4px 20px rgba(31, 41, 51, 0.08);
  --shadow-lg: 0 8px 40px rgba(31, 41, 51, 0.12);
  --shadow-xl: 0 16px 60px rgba(31, 41, 51, 0.16);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-primary);
  font-size: var(--body-size);
  line-height: 1.65;
  color: var(--charcoal);
  background-color: var(--bg-warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--deep-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--clay-cta);
}

a:focus-visible {
  outline: 3px solid var(--clay-cta);
  outline-offset: 3px;
  border-radius: 4px;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--clay-cta);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--deep-green);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  z-index: 10000;
  font-weight: 600;
  text-decoration: none;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 16px;
}

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

.container--narrow {
  max-width: var(--container-narrow);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

h1 {
  font-size: var(--h1-size);
  font-weight: 800;
}

h2 {
  font-size: var(--h2-size);
  font-weight: 700;
}

h3 {
  font-size: var(--h3-size);
  font-weight: 700;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  font-size: var(--caption-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clay-cta);
  margin-bottom: 12px;
}

.legal-text {
  font-size: var(--legal-size);
  line-height: 1.6;
  color: #5a5a5a;
}

.microcopy {
  font-size: var(--caption-size);
  color: #6b6b6b;
  line-height: 1.5;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  min-height: 52px;
  border: 2px solid transparent;
  line-height: 1.2;
  text-align: center;
}

.btn:focus-visible {
  outline: 3px solid var(--clay-cta);
  outline-offset: 3px;
}

.btn--primary {
  background-color: var(--clay-cta);
  color: var(--white);
  border-color: var(--clay-cta);
}

.btn--primary:hover {
  background-color: var(--clay-cta-hover);
  border-color: var(--clay-cta-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background-color: var(--white);
  color: var(--deep-green);
  border-color: var(--deep-green);
}

.btn--secondary:hover {
  background-color: var(--soft-sage);
  color: var(--deep-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn--small {
  padding: 10px 20px;
  font-size: 14px;
  min-height: 42px;
}

.btn--full {
  width: 100%;
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Top Ad Notice ---------- */
.ad-notice {
  background-color: var(--warning-soft);
  color: var(--charcoal);
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
  border-bottom: 1px solid #e8d9a0;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 244, 239, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.header__brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--deep-green);
  letter-spacing: -0.03em;
  line-height: 1;
}

.header__tagline {
  font-size: 11px;
  color: #6b6b6b;
  margin-top: 2px;
  white-space: nowrap;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.header__nav-link:hover {
  background-color: var(--soft-sage);
  color: var(--deep-green);
}

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

.header__cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition-fast);
}

.header__cart-btn:hover {
  background: var(--soft-sage);
}

.header__cart-btn svg {
  width: 22px;
  height: 22px;
  stroke: var(--charcoal);
  fill: none;
  stroke-width: 2;
}

.header__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--clay-cta);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all var(--transition-fast);
}

.header__cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

.header__hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.header__hamburger:hover {
  background: var(--soft-sage);
}

.header__hamburger-icon {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header__hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header__hamburger.active .header__hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active .header__hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active .header__hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- Mobile Menu Drawer ---------- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 51, 0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 90vw);
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition-fast);
  font-size: 24px;
  color: var(--charcoal);
}

.mobile-menu__close:hover {
  background: var(--soft-sage);
}

.mobile-menu__links {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu__link {
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-menu__link:hover {
  background: var(--soft-sage);
  color: var(--deep-green);
}

.mobile-menu__cta {
  padding: 24px;
  margin-top: auto;
  border-top: 1px solid var(--border);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--charcoal);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero.in-view .hero__bg {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 58, 50, 0.75) 0%,
    rgba(31, 41, 51, 0.6) 50%,
    rgba(31, 41, 51, 0.4) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: var(--section-padding) 0;
}

.hero__text {
  max-width: 600px;
}

.hero__title {
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 0.8s ease-out 0.3s forwards;
}

.hero__subtitle {
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 16px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease-out 0.5s forwards;
}

.hero__copy {
  font-size: var(--body-size);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease-out 0.7s forwards;
}

.hero__price-block {
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease-out 0.8s forwards;
}

.hero__price {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero__price-note {
  font-size: var(--caption-size);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease-out 0.9s forwards;
}

.hero__microcopy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  max-width: 480px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease-out 1.1s forwards;
}

.hero__quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease-out 1.2s forwards;
}

.hero__fact {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__product {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: heroProductIn 1s ease-out 0.6s forwards;
}

.hero__product-img {
  max-height: 500px;
  width: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroProductIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ---------- Floating Info Ribbon ---------- */
.ribbon {
  background: var(--deep-green);
  color: var(--white);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}

.ribbon__track {
  display: flex;
  white-space: nowrap;
  animation: ribbonScroll 40s linear infinite;
}

.ribbon__track:hover {
  animation-play-state: paused;
}

.ribbon__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
}

.ribbon__item::before {
  content: '·';
  font-size: 20px;
  opacity: 0.5;
}

@keyframes ribbonScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Sticky Mobile CTA ---------- */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

.sticky-mobile-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.sticky-mobile-cta__info {
  display: flex;
  flex-direction: column;
}

.sticky-mobile-cta__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.sticky-mobile-cta__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--deep-green);
  font-family: var(--font-heading);
}

/* ---------- Background Sections ---------- */
.bg-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bg-section__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.1s ease-out;
}

.bg-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31, 58, 50, 0.7) 0%,
    rgba(31, 41, 51, 0.65) 100%
  );
}

.bg-section__content {
  position: relative;
  z-index: 2;
  padding: var(--section-padding) 0;
  max-width: 800px;
}

.bg-section__eyebrow {
  font-size: var(--caption-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--warm-beige);
  margin-bottom: 16px;
}

.bg-section__heading {
  font-size: var(--h2-size);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.bg-section__copy {
  font-size: clamp(16px, 1.3vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 640px;
}

/* ---------- Section Base ---------- */
.section {
  padding: var(--section-padding) 0;
}

.section--sage {
  background-color: var(--soft-sage);
}

.section--blue {
  background-color: var(--serbian-blue);
}

.section--beige {
  background-color: var(--warm-beige);
}

.section--white {
  background-color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--gap-lg);
}

.section__header h2 {
  margin-bottom: 16px;
}

.section__header p {
  font-size: clamp(16px, 1.2vw, 18px);
  color: #5a5a5a;
  line-height: 1.7;
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap-md);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
}

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

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--soft-sage);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.card__desc {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.6;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap-md);
  counter-reset: step-counter;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  counter-increment: step-counter;
  transition: all var(--transition-base);
}

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

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--deep-green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 20px;
}

.step__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.step__desc {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.6;
}

/* ---------- Product Details ---------- */
.product-details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.product-details__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--border);
}

.product-details__row:last-child {
  border-bottom: none;
}

.product-details__label {
  padding: 16px 24px;
  font-weight: 600;
  background: rgba(221, 232, 223, 0.3);
  color: var(--charcoal);
  font-size: 15px;
}

.product-details__value {
  padding: 16px 24px;
  color: #5a5a5a;
  font-size: 15px;
}

/* ---------- Safety List ---------- */
.safety-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
}

.safety-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
}

.safety-list__item::before {
  content: '⚠';
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Legal Sources ---------- */
.legal-sources {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-source {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.legal-source:hover {
  border-color: var(--deep-green);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.legal-source__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--soft-sage);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.legal-source__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-source__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
}

.legal-source__url {
  font-size: 13px;
  color: var(--clay-cta);
  word-break: break-all;
}

/* ---------- Final CTA Section ---------- */
.final-cta {
  text-align: center;
}

.final-cta .bg-section__content {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta__price {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  margin: 24px 0 12px;
}

.final-cta__microcopy {
  font-size: var(--caption-size);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__brand-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.65);
}

.footer__company-info {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--white);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.footer__contact-item a:hover {
  color: var(--white);
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__ad-notice {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__legal-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__legal-link:hover {
  color: var(--white);
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.1);
  padding: 24px;
  transform: translateY(100%);
  opacity: 0;
  transition: all var(--transition-base);
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 300px;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.6;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Cookie Settings Modal ---------- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 51, 0.5);
  z-index: 2100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.cookie-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.cookie-modal__header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-modal__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
}

.cookie-modal__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  color: var(--charcoal);
  transition: background var(--transition-fast);
}

.cookie-modal__close:hover {
  background: var(--soft-sage);
}

.cookie-modal__body {
  padding: 24px;
}

.cookie-category {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cookie-category__name {
  font-weight: 600;
  color: var(--charcoal);
}

.cookie-category__status {
  font-size: 13px;
  color: var(--success);
  font-weight: 500;
}

.cookie-category__desc {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.5;
}

/* Toggle Switch */
.toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle__slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 26px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.toggle__slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--transition-fast);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.toggle input:checked + .toggle__slider {
  background: var(--success);
}

.toggle input:checked + .toggle__slider::before {
  transform: translateX(22px);
}

.toggle input:focus-visible + .toggle__slider {
  outline: 3px solid var(--clay-cta);
  outline-offset: 2px;
}

.cookie-modal__footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* ---------- Cart Drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 51, 0.5);
  z-index: 1300;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(440px, 92vw);
  height: 100vh;
  background: var(--white);
  z-index: 1400;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  transform: translateX(0);
}

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

.cart-drawer__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
}

.cart-drawer__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  color: var(--charcoal);
  transition: background var(--transition-fast);
}

.cart-drawer__close:hover {
  background: var(--soft-sage);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-drawer__empty {
  text-align: center;
  padding: 48px 24px;
  color: #6b6b6b;
}

.cart-drawer__empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item__img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: var(--bg-warm-white);
  border-radius: var(--radius-sm);
  padding: 8px;
}

.cart-item__name {
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.cart-item__price {
  font-weight: 700;
  color: var(--deep-green);
  font-size: 16px;
}

.cart-item__remove {
  font-size: 18px;
  color: #999;
  padding: 8px;
  transition: color var(--transition-fast);
}

.cart-item__remove:hover {
  color: var(--error);
}

.cart-drawer__footer {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}

.cart-drawer__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cart-drawer__total-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
}

.cart-drawer__total-value {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--deep-green);
}

.cart-drawer__tax-note {
  font-size: 13px;
  color: #6b6b6b;
  margin-bottom: 16px;
}

/* ---------- Checkout Page ---------- */
.checkout {
  padding: var(--section-padding) 0;
}

.checkout__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: flex-start;
}

.checkout__form-section {
  margin-bottom: 36px;
}

.checkout__form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-label .optional {
  font-weight: 400;
  color: #999;
  font-size: 13px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: #c5c0b8;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--deep-green);
  box-shadow: 0 0 0 3px rgba(31, 58, 50, 0.12);
  outline: none;
}

.form-input[aria-invalid="true"],
.form-select[aria-invalid="true"],
.form-textarea[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.1);
}

.form-error {
  font-size: 13px;
  color: var(--error);
  margin-top: 6px;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Radio & Checkbox Groups */
.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.radio-option:hover,
.checkbox-option:hover {
  border-color: var(--deep-green);
}

.radio-option input,
.checkbox-option input {
  margin-top: 2px;
  accent-color: var(--deep-green);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.radio-option__text,
.checkbox-option__text {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.5;
}

/* Order Summary */
.order-summary {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.order-summary__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.order-summary__item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.order-summary__img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: var(--bg-warm-white);
  border-radius: var(--radius-sm);
  padding: 6px;
}

.order-summary__name {
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
}

.order-summary__qty {
  font-size: 13px;
  color: #6b6b6b;
  margin-top: 4px;
}

.order-summary__price {
  font-weight: 700;
  font-size: 16px;
  color: var(--deep-green);
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 15px;
}

.order-summary__row--total {
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid var(--border);
  font-weight: 700;
  font-size: 18px;
}

.order-summary__row--total span:last-child {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--deep-green);
}

.order-summary__note {
  font-size: 13px;
  color: #6b6b6b;
  margin-top: 16px;
  line-height: 1.5;
}

/* ---------- Demo Checkout Modal ---------- */
.demo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 51, 0.6);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.demo-modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.demo-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.demo-modal__icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.demo-modal__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.demo-modal__text {
  font-size: 15px;
  color: #6b6b6b;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ---------- Legal Pages ---------- */
.legal-page {
  padding: var(--section-padding) 0;
}

.legal-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--deep-green);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color var(--transition-fast);
}

.legal-page__back:hover {
  color: var(--clay-cta);
}

.legal-page h1 {
  margin-bottom: 12px;
}

.legal-page__updated {
  font-size: var(--caption-size);
  color: #6b6b6b;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-page h3 {
  font-size: clamp(18px, 2vw, 22px);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-page p {
  font-size: var(--legal-size);
  line-height: 1.75;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal-page ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: var(--legal-size);
  color: #4a4a4a;
  line-height: 1.6;
}

.legal-page ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--clay-cta);
  font-weight: 600;
}

.legal-page .notice {
  background: var(--warning-soft);
  border-left: 4px solid var(--clay-cta);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-size: var(--legal-size);
  color: var(--charcoal);
  line-height: 1.6;
}

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 640px;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* ---------- Tracking Info Section ---------- */
.tracking-info {
  background: var(--serbian-blue);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.tracking-info__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.tracking-info__text {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.7;
}

/* ---------- Scroll Animations ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.delay-6 { transition-delay: 0.6s; }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }

  .hero__title,
  .hero__subtitle,
  .hero__copy,
  .hero__price-block,
  .hero__ctas,
  .hero__microcopy,
  .hero__quick-facts,
  .hero__product {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .ribbon__track {
    animation: none;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .bg-section__image {
    transition: none;
  }
}

/* ---------- Responsive: Tablet ---------- */
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__product {
    order: -1;
  }

  .hero__product-img {
    max-height: 350px;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__microcopy {
    margin: 0 auto;
  }

  .hero__quick-facts {
    justify-content: center;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .order-summary {
    position: static;
  }
}

/* ---------- Responsive: Mobile ---------- */
@media (max-width: 768px) {
  :root {
    --section-padding: clamp(48px, 8vw, 80px);
  }

  .header__inner {
    height: 64px;
  }

  .hero {
    min-height: 80vh;
  }

  .hero__product-img {
    max-height: 280px;
  }

  .bg-section {
    min-height: 400px;
  }

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__actions .btn {
    flex: 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .product-details__row {
    grid-template-columns: 1fr;
  }

  .product-details__label {
    padding: 12px 16px 4px;
  }

  .product-details__value {
    padding: 4px 16px 12px;
  }

  .safety-list {
    grid-template-columns: 1fr;
  }

  .sticky-mobile-cta {
    display: block;
  }

  .legal-source {
    flex-direction: column;
  }
}

/* ---------- Responsive: Small Mobile ---------- */
@media (max-width: 420px) {
  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .container {
    padding: 0 16px;
  }
}

/* ---------- Print ---------- */
@media print {
  .header,
  .ribbon,
  .cookie-banner,
  .cookie-modal-overlay,
  .cart-overlay,
  .cart-drawer,
  .sticky-mobile-cta,
  .mobile-menu,
  .mobile-menu-overlay {
    display: none !important;
  }

  .bg-section__overlay {
    background: rgba(0, 0, 0, 0.3) !important;
  }

  body {
    color: #000;
    background: #fff;
  }
}

/* ---------- Hotspot Feature ---------- */
.hotspot-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hotspot-container img {
  width: 100%;
  display: block;
}

.hotspot {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 0 rgba(220, 110, 85, 0.4);
  animation: pulse 2s infinite;
}

.hotspot:hover {
  animation: none;
  transform: translate(-50%, -50%) scale(1.2);
}

.hotspot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.hotspot-tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--charcoal);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  width: max-content;
  max-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 20;
  text-align: center;
}

.hotspot:hover .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(15px);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(220, 110, 85, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(220, 110, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 110, 85, 0); }
}

/* ---------- FAQ Accordion ---------- */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
}

.faq-icon::after {
  top: 4px;
  left: 11px;
  width: 2px;
  height: 16px;
}

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

.faq-item.active .faq-icon::after {
  transform: scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding-bottom: 24px;
  color: #4a4a4a;
  line-height: 1.6;
}

/* ---------- Aromas Section ---------- */
.aromas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.aroma-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  aspect-ratio: 4/5;
  background: var(--light-sage);
}

.aroma-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.aroma-card:hover img {
  transform: scale(1.05);
}

.aroma-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
}

.aroma-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 992px) {
  .aromas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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