/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --color-primary: #1a472a;
  --color-primary-light: #2d5a3f;
  --color-primary-dark: #0f2d1a;
  --color-secondary: #c9a227;
  --color-secondary-light: #d4b545;
  --color-accent: #8b4513;
  --color-text: #1a1a1a;
  --color-text-light: #666666;
  --color-text-muted: #888888;
  --color-bg: #fefefe;
  --color-bg-alt: #f8f5f0;
  --color-bg-dark: #0a1f10;
  --color-white: #ffffff;
  --color-black: #000000;

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-light) 100%
  );
  --gradient-gold: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-secondary-light) 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    rgba(26, 71, 42, 0.95) 0%,
    rgba(45, 90, 63, 0.85) 100%
  );

  /* Typography - Professional Font Stack */
  --font-primary: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 25px 80px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  max-width: 100vw;
}

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

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

ul {
  list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section {
  padding: var(--section-padding);
  position: relative;
}

/* Alternating section backgrounds */
.section:nth-of-type(even) {
  background: var(--color-bg-alt);
}

/* Section divider - subtle top border */
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-secondary),
    transparent
  );
  border-radius: 2px;
}

.section:first-of-type::before {
  display: none;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__subtitle {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #9a7b1e;
  margin-bottom: 15px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}

.section__description {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 20px auto 0;
}

.highlight {
  color: var(--color-primary);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
}

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

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

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

.btn--large {
  padding: 18px 40px;
  font-size: 16px;
}

.btn--review {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-light) 100%
  );
  color: var(--color-white);
  border: none;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn--review:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(
    135deg,
    var(--color-primary-dark) 0%,
    var(--color-primary) 100%
  );
}

.btn--google {
  background: #ffffff;
  color: #4285f4;
  border: 2px solid #4285f4;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-normal);
}

.btn--google:hover {
  background: #4285f4;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn--google svg {
  transition: var(--transition-normal);
}

.btn--google:hover svg {
  fill: #ffffff;
}

/* Reviews Buttons Container */
.reviews__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.header.scrolled .nav__link {
  color: var(--color-text);
}

.header.scrolled .nav__link.nav__cta {
  color: var(--color-white) !important;
}

.header.scrolled .nav__logo .logo-text {
  color: var(--color-primary);
}

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

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

.logo-img {
  width: 55px;
  height: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-white);
}

.header.scrolled .logo-text {
  color: var(--color-primary);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Mobile Navigation Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
}

.nav__toggle span {
  width: 24px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.header:not(.scrolled) .nav__toggle span {
  background: var(--color-white);
}

.nav__close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-text);
}

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: var(--transition-normal);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  background: var(--gradient-primary);
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: var(--radius-md);
}

.nav__cta,
.nav__cta:link,
.nav__cta:visited,
.nav__cta:hover,
.nav__cta:active,
.header.scrolled .nav__cta,
.header.scrolled .nav__link.nav__cta {
  color: #ffffff !important;
}

.nav__cta::after {
  display: none;
}

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

.nav__toggle,
.nav__close {
  display: none;
}

/* Mobile Responsive Navigation */
@media screen and (max-width: 900px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transition: right 0.4s ease;
    padding: 80px 30px 40px;
  }

  .nav__menu.show-menu {
    right: 0;
  }

  .nav__close {
    display: block;
    color: var(--color-text);
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav__item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav__link {
    display: block;
    padding: 18px 0;
    color: var(--color-text) !important;
    font-size: 16px;
  }

  .nav__link:hover {
    color: var(--color-primary) !important;
  }

  .nav__cta {
    margin-top: 20px;
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 14px 24px !important;
    border-radius: 30px;
    text-align: center;
    display: block;
  }

  /* Overlay when menu is open */
  .nav__menu::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .nav__menu.show-menu::before {
    opacity: 1;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("assets/awla-powder.jpg") center/cover;
  opacity: 0.15;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 0;
}

.hero__subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-secondary);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 25px;
  animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero__title .highlight {
  color: var(--color-secondary);
}

.hero__description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin-bottom: 35px;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero__image {
  display: flex;
  justify-content: center;
  animation: fadeInRight 1s ease 0.4s backwards;
  overflow: visible;
  max-width: 100%;
}

.hero__image-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
  max-width: calc(100vw - 40px);
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero__badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: pulse 2s ease infinite;
}

.badge-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
}

.badge-sub {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-text);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s ease infinite;
}

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

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--color-bg-alt);
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 20px;
}

.about__description {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 30px;
}

.about__features {
  display: grid;
  gap: 25px;
}

.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature__icon {
  font-size: 2rem;
  line-height: 1;
}

.feature__content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 5px;
}

.feature__content p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

/* ===== PRODUCTS SECTION ===== */
.products {
  background: var(--color-bg);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.product__card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.product__card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.product__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
}

.product__badge--new {
  background: var(--gradient-gold);
  color: var(--color-text);
}

.product__image {
  height: 300px;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product__card:hover .product__image img {
  transform: scale(1.05);
}

.product__content {
  padding: 30px;
}

.product__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
}

.product__description {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.product__variants {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.variant {
  background: var(--color-bg-alt);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-light);
}

.product__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.product__price .price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product__price .price-unit {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-light);
}

.product__price .price-separator {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin: 0 10px;
}

.product__benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
}

.benefit {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 500;
}

/* ===== ORDER STEPS SECTION ===== */
.order-steps {
  background: var(--color-bg);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps__grid::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-secondary),
    var(--color-primary),
    var(--color-secondary)
  );
  opacity: 0.3;
  z-index: 0;
}

.step__card {
  position: relative;
  background: var(--color-white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  z-index: 1;
}

.step__card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.step__number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}

.step__icon {
  font-size: 3rem;
  margin: 20px 0 25px;
  line-height: 1;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 15px;
}

.step__description {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.steps__cta {
  text-align: center;
  margin-top: 50px;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--color-bg-alt);
}

.contact__content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact__card {
  background: var(--color-white);
  padding: 25px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

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

.contact__icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact__card h4,
.contact__card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.contact__card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.contact__form {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form__group {
  margin-bottom: 25px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 10px;
}

.form__input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg-alt);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.form__input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
}

.form__input::placeholder {
  color: var(--color-text-muted);
}

.form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__note {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 15px;
}

/* ===== PRODUCT SELECTION (Order Form) ===== */
.product-selection {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--color-bg-alt);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: var(--transition-normal);
}

.product-selection:focus-within {
  border-color: var(--color-primary);
  background: var(--color-white);
}

.product-select-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: var(--transition-normal);
  cursor: pointer;
}

.product-select-item:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.product-select-item:has(input:checked) {
  border-color: var(--color-primary);
  background: rgba(26, 71, 42, 0.05);
}

.product-select-item input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.product-select-item > label {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}

.product-select-item .product-name {
  font-weight: 500;
  color: var(--color-text);
  font-size: 15px;
}

.product-select-item .product-price {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 15px;
  white-space: nowrap;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  pointer-events: none;
  transition: var(--transition-normal);
}

.product-select-item:has(input:checked) .quantity-control {
  opacity: 1;
  pointer-events: auto;
}

.qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background: var(--color-primary-dark);
  transform: scale(1.05);
}

.qty-btn:active {
  transform: scale(0.95);
}

.qty-value {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text);
}

.order-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  margin-top: 15px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  color: var(--color-white);
}

.summary-label {
  font-weight: 500;
  font-size: 15px;
}

.summary-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding: 60px 0 30px;
}

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

.footer__logo {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
}

.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.6);
}

.footer__links h4,
.footer__social h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--color-secondary);
}

.footer__links ul li {
  margin-bottom: 12px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

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

.social__links {
  display: flex;
  gap: 15px;
}

.social__link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--color-white);
  transition: var(--transition-normal);
}

.social__link:hover {
  background: var(--color-secondary);
  color: var(--color-text);
  transform: translateY(-3px);
}

.social__link svg {
  width: 20px;
  height: 20px;
}

.footer__bottom {
  text-align: center;
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__content {
  background: var(--color-white);
  padding: 50px;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 400px;
  transform: scale(0.9);
  transition: var(--transition-normal);
}

.modal.active .modal__content {
  transform: scale(1);
}

.modal__icon {
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 2.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.modal__content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 15px;
}

.modal__content p {
  color: var(--color-text-light);
  margin-bottom: 25px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 992px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__image-wrapper {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .about__content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about__image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .products__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .contact__info {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact__card {
    flex: 1;
    min-width: 200px;
  }

  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer__brand {
    grid-column: span 2;
    text-align: center;
  }

  .footer__logo {
    margin: 0 auto 15px;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .steps__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .steps__grid::before {
    display: none;
  }

  .step__card {
    max-width: 400px;
    margin: 0 auto;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--color-bg-dark);
    padding: 100px 50px;
    transition: var(--transition-normal);
  }

  .nav__menu.show {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 30px;
  }

  .nav__link {
    font-size: 1.2rem;
    color: var(--color-white);
  }

  .nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
  }

  .nav__toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-normal);
  }

  .header.scrolled .nav__toggle span {
    background: var(--color-text);
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--color-white);
    cursor: pointer;
  }

  .hero__image-wrapper {
    width: 250px;
    height: 250px;
  }

  .hero__badge {
    width: 80px;
    height: 80px;
    top: -10px;
    right: -10px;
  }

  .badge-text {
    font-size: 1.2rem;
  }

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

  .contact__form {
    padding: 30px 20px;
  }

  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer__brand {
    grid-column: span 1;
  }

  .social__links {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .contact__info {
    flex-direction: column;
  }

  .contact__card {
    width: 100%;
  }
}

@media screen and (max-width: 380px) {
  .container {
    width: 95%;
  }

  .hero__content {
    padding: 80px 0 60px;
  }

  .hero__image-wrapper {
    width: 200px;
    height: 200px;
  }

  .hero__badge {
    width: 65px;
    height: 65px;
    top: -8px;
    right: -8px;
  }

  .badge-text {
    font-size: 1rem;
  }

  .badge-sub {
    font-size: 0.6rem;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__description {
    font-size: 0.95rem;
  }

  .hero__subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .section__title {
    font-size: 1.75rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .nav__menu {
    width: 90%;
    padding: 80px 30px;
  }
}

/* ===== REVIEWS SECTION ===== */
.reviews {
  background: linear-gradient(
    180deg,
    var(--color-bg-alt) 0%,
    var(--color-bg) 100%
  );
  padding: 70px 0;
  overflow: hidden;
}

.reviews .section__header {
  margin-bottom: 40px;
}

/* Slider Wrapper */
.reviews__slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.reviews__slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
  flex: 1;
  justify-content: center;
  align-items: stretch;
}

.reviews__slider::-webkit-scrollbar {
  display: none;
}

/* Slider Arrows */
.slider__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.slider__arrow:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

/* Slider Dots */
.slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.slider__dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(26, 71, 42, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
}

.slider__dot:hover {
  background: rgba(26, 71, 42, 0.4);
}

.slider__dot.active {
  background: var(--color-primary);
  width: 32px;
  border-radius: 6px;
}

.review__card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.review__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.review__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review__avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
}

.review__info h4,
.review__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.review__meta {
  font-size: 0.75rem;
  color: #595959;
}

.review__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review__stars span {
  color: #ffc107;
  font-size: 1rem;
}

.review__stars span.empty {
  color: #e0e0e0;
}

.review__text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.review__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review__photo {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  margin-right: 8px;
  cursor: pointer;
}

.review__photo img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid var(--color-primary);
  transition: transform 0.2s ease;
}

.review__photo img:hover {
  transform: scale(1.1);
}

.review__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  flex-wrap: wrap;
}

.review__product {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(26, 71, 42, 0.08);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 12px;
}

/* Photo Modal */
.photo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.photo-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.photo-modal__content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
}

.photo-modal__content img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.photo-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  background: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* No Reviews State */
.no-reviews {
  text-align: center;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.no-reviews-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.no-reviews p {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 300px;
}

/* Review Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 16px;
}

.modal-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 400px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 24px;
}

.modal-content--compact {
  max-width: 360px;
  padding: 20px;
}

.modal-content--compact .form__group {
  margin-bottom: 16px;
}

.modal-content--compact .form__label {
  font-size: 13px;
  margin-bottom: 6px;
}

.modal-content--compact .form__input {
  padding: 10px 14px;
  font-size: 14px;
}

.modal-content--compact .form__textarea {
  min-height: 70px;
}

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

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-white);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--color-white);
  opacity: 0.8;
}

/* Star Rating Input */
.star-rating {
  display: flex;
  gap: 8px;
}

.star-rating .star {
  font-size: 2rem;
  color: #ddd;
  cursor: pointer;
  transition: var(--transition-fast);
}

.star-rating .star:hover,
.star-rating .star.active {
  color: #ffc107;
}

/* Photo Upload */
.photo-upload {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.photo-upload__btn {
  background: rgba(26, 71, 42, 0.08);
  border: 2px dashed rgba(26, 71, 42, 0.3);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-primary);
  transition: var(--transition-normal);
}

.photo-upload__btn:hover {
  background: rgba(26, 71, 42, 0.12);
  border-color: var(--color-primary);
}

.photo-upload__preview {
  position: relative;
  display: inline-block;
}

.photo-upload__preview img {
  max-width: 100%;
  max-height: 150px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.photo-upload__previews {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.photo-preview-item {
  position: relative;
  display: inline-block;
}

.photo-preview-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--color-primary);
}

.photo-preview-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.photo-upload__remove {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Review Card Photo */
.review__photo {
  margin-top: 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.review__photo img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  cursor: pointer;
  transition: var(--transition-normal);
}

.review__photo img:hover {
  transform: scale(1.02);
}

/* Review Success Toast (handled by JS) */
.review-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Reviews responsive */
@media screen and (max-width: 768px) {
  .reviews {
    padding: 50px 0;
    overflow: visible;
  }

  .reviews__slider-wrapper {
    position: relative;
    padding: 0 50px;
    gap: 0;
  }

  .reviews__slider {
    gap: 16px;
    justify-content: flex-start;
    padding: 10px 0;
    margin: 0;
  }

  .review__card {
    flex: 0 0 calc(100vw - 130px);
    min-width: 250px;
    max-width: 300px;
    padding: 20px;
    scroll-snap-align: center;
  }

  .slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    flex-shrink: 0;
    z-index: 20;
  }

  .slider__arrow--prev {
    left: 5px;
  }

  .slider__arrow--next {
    right: 5px;
  }

  .modal-content {
    padding: 20px;
  }

  .slider__dots {
    margin-top: 16px;
  }

  .slider__dot {
    width: 10px;
    height: 10px;
  }

  .slider__dot.active {
    width: 24px;
  }
}

@media screen and (max-width: 480px) {
  .reviews__slider-wrapper {
    padding: 0 45px;
  }

  .reviews__slider {
    padding: 10px 0;
  }

  .review__card {
    flex: 0 0 calc(100vw - 100px);
    min-width: 220px;
    max-width: 260px;
    padding: 16px;
  }

  .slider__arrow {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .slider__arrow--prev {
    left: 3px;
  }

  .slider__arrow--next {
    right: 3px;
  }

  .review__header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .review__avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .review__info h4,
  .review__name {
    font-size: 0.9rem;
  }

  .review__text {
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 380px) {
  .reviews__slider-wrapper {
    padding: 0 40px;
  }

  .review__card {
    flex: 0 0 calc(100vw - 90px);
    min-width: 200px;
    max-width: 240px;
    padding: 14px;
  }

  .slider__arrow {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .slider__arrow--prev {
    left: 2px;
  }

  .slider__arrow--next {
    right: 2px;
  }

  .review__avatar {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .review__info h4,
  .review__name {
    font-size: 0.85rem;
  }

  .review__meta {
    font-size: 0.7rem;
  }

  .review__stars span {
    font-size: 0.9rem;
  }

  .review__text {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .review__product {
    font-size: 0.7rem;
    padding: 3px 10px;
  }
}

/* ===== STICKY ORDER BUTTON ===== */
.sticky-order-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 14px 24px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(26, 71, 42, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  text-decoration: none;
}

.sticky-order-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-order-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 71, 42, 0.5);
}

.sticky-order-btn svg {
  width: 18px;
  height: 18px;
}

/* Nav active state enhancement */
.nav__link.active {
  color: var(--color-secondary) !important;
  font-weight: 600;
}

.header.scrolled .nav__link.active {
  color: var(--color-primary) !important;
}

@media screen and (max-width: 768px) {
  .sticky-order-btn {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
    font-size: 13px;
  }
}
/* ===== BLOG CTA SECTION ===== */
.blog-cta {
  background-color: var(--color-primary-dark);
  text-align: center;
  color: var(--color-white);
}

.cta-box h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== PREMIUM MOBILE MENU REDESIGN ===== */
@media screen and (max-width: 900px) {
  /* Animated Hamburger Icon */
  .nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
  }

  .nav__toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
  }

  .nav__toggle span:nth-child(1) {
    margin-bottom: 5px;
  }
  .nav__toggle span:nth-child(3) {
    margin-top: 5px;
  }

  .header:not(.scrolled) .nav__toggle span {
    background: var(--color-white);
  }

  /* Hamburger transforms to X when menu is open */
  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

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

  /* Premium Slide-in Menu */
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  .nav__menu.show-menu {
    right: 0;
  }

  /* Menu Header with Branding Gradient */
  .nav__menu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(
      135deg,
      var(--color-primary) 0%,
      var(--color-primary-light) 100%
    );
    z-index: -1;
  }

  /* Close Button - Premium Style */
  .nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 28px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
  }

  .nav__close span {
    font-size: 28px;
    color: var(--color-white);
    line-height: 1;
    font-weight: 300;
  }

  .nav__close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
  }

  /* Navigation List */
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 100px;
    padding: 20px 0;
  }

  .nav__item {
    width: 100%;
    border-bottom: none;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
  }

  .nav__menu.show-menu .nav__item {
    opacity: 1;
    transform: translateX(0);
  }

  /* Staggered animation for menu items */
  .nav__menu.show-menu .nav__item:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav__menu.show-menu .nav__item:nth-child(2) {
    transition-delay: 0.15s;
  }
  .nav__menu.show-menu .nav__item:nth-child(3) {
    transition-delay: 0.2s;
  }
  .nav__menu.show-menu .nav__item:nth-child(4) {
    transition-delay: 0.25s;
  }
  .nav__menu.show-menu .nav__item:nth-child(5) {
    transition-delay: 0.3s;
  }
  .nav__menu.show-menu .nav__item:nth-child(6) {
    transition-delay: 0.35s;
  }
  .nav__menu.show-menu .nav__item:nth-child(7) {
    transition-delay: 0.4s;
  }

  .nav__link {
    display: flex;
    align-items: center;
    padding: 18px 30px;
    color: var(--color-text) !important;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
  }

  .nav__link::after {
    display: none;
  }

  .nav__link:hover,
  .nav__link.active {
    background: rgba(26, 71, 42, 0.05);
    color: var(--color-primary) !important;
    border-left-color: var(--color-primary);
  }

  .nav__link.active {
    font-weight: 600;
  }

  /* CTA Button in Mobile Menu */
  .nav__cta {
    margin: 20px 30px !important;
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 16px 28px !important;
    border-radius: 50px;
    text-align: center;
    display: block;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(26, 71, 42, 0.3);
    transition: all 0.3s ease;
    border-left: none !important;
  }

  .nav__cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(26, 71, 42, 0.4);
  }

  /* Dark Overlay with Blur */
  .nav__menu::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  .nav__menu.show-menu::before {
    opacity: 1;
  }
}

/* Hide redundant close button - hamburger transforms to X instead */
@media screen and (max-width: 900px) {
  .nav__close {
    display: none !important;
  }
}

/* Force Order Now button text to always be white */
.nav__link.nav__cta,
.header .nav__link.nav__cta,
.header.scrolled .nav__link.nav__cta,
a.nav__link.nav__cta,
a.nav__cta {
  color: #ffffff !important;
}
