/* ===== CSS VARIABLES ===== */
:root {
  --orange: #E8580C;
  --orange-light: #F07535;
  --pink: #F2A0A0;
  --burgundy: #7B2D42;
  --dark: #1C1C1C;
  --dark-2: #2A2A2A;
  --gradient-orange: linear-gradient(135deg, #E8580C, #F07535);
  --gradient-hero: linear-gradient(135deg, #1C1C1C 0%, #2A1A10 40%, #3D1A0A 100%);
  --shadow: 0 20px 60px rgba(232, 88, 12, 0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

.mj-wrapper,
.mj-wrapper *,
.mj-wrapper *::before,
.mj-wrapper *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}


a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: 'DM Sans', sans-serif;
}

/* ===== AD NOTICE ===== */
.ad-notice {
  background: var(--burgundy);
  text-align: center;
  padding: 9px 16px;
  font-size: 0.78rem;
  color: #FFD4D4;
  font-weight: 500;
  position: relative;
  z-index: 1000;
  line-height: 1.4;
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse-logo 1.2s ease-in-out infinite;
  margin-bottom: 18px;
}

.loader-circle {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(232, 88, 12, 0.2);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-logo {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  max-width: 660px;
  background: #222;
  border: 1px solid rgba(232, 88, 12, 0.35);
  border-radius: var(--radius);
  padding: 18px 18px;
  z-index: 8888;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.5);
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
}

.cookie-icon {
  font-size: 1.7rem;
  flex-shrink: 0;
}

.cookie-text {
  flex: 1;
  min-width: 160px;
}

.cookie-text strong {
  color: var(--orange);
  display: block;
  margin-bottom: 4px;
  font-size: 0.93rem;
}

.cookie-text p {
  font-size: 0.78rem;
  color: #bbb;
  line-height: 1.5;
}

.cookie-btns {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-top: 2px;
}

.btn-accept {
  flex: 1;
  background: var(--gradient-orange);
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-accept:hover {
  opacity: 0.88;
}

.btn-reject {
  flex: 1;
  background: transparent;
  color: #aaa;
  border: 1px solid #555;
  padding: 10px 14px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-reject:hover {
  border-color: #aaa;
  color: white;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(28, 28, 28, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 88, 12, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 5%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 12px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.4px;
  flex-shrink: 0;
  white-space: nowrap;
  cursor: default;
}

.logo-m {
  color: var(--orange);
}

.logo-eister {
  color: white;
}

.logo-juice {
  color: var(--pink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  color: #ccc;
  padding: 8px 13px;
  border-radius: 50px;
  font-size: 0.86rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--orange);
  background: rgba(232, 88, 12, 0.08);
}

.btn-shop {
  background: var(--gradient-orange);
  color: white;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.86rem;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(232, 88, 12, 0.3);
}

.btn-shop:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 88, 12, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9400;
  display: none;
  backdrop-filter: blur(4px);
}

.mobile-overlay.show {
  display: block;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 320px;
  height: 100%;
  background: #1e1e1e;
  z-index: 9500;
  transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(232, 88, 12, 0.2);
  box-shadow: -18px 0 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
}

.mobile-close {
  background: rgba(232, 88, 12, 0.12);
  border: 1px solid rgba(232, 88, 12, 0.3);
  color: var(--orange);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.mobile-close:hover {
  background: var(--orange);
  color: white;
}

.mobile-nav-links {
  padding: 16px 0;
  flex: 1;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav-link {
  display: block;
  color: #ddd;
  font-size: 1.02rem;
  font-weight: 500;
  padding: 15px 26px;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--orange);
  background: rgba(232, 88, 12, 0.05);
  padding-left: 34px;
}

.mobile-menu-footer {
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-shop {
  display: block;
  text-align: center;
  background: var(--gradient-orange);
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.98rem;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.11;
  animation: float-blob 10s ease-in-out infinite;
}

.blob1 {
  width: 380px;
  height: 380px;
  background: var(--orange);
  top: -80px;
  right: -80px;
}

.blob2 {
  width: 320px;
  height: 320px;
  background: var(--burgundy);
  bottom: -50px;
  left: 5%;
  animation-delay: 3s;
}

.blob3 {
  width: 240px;
  height: 240px;
  background: var(--pink);
  top: 40%;
  left: 35%;
  animation-delay: 6s;
}

@keyframes float-blob {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(14px, -14px) scale(1.04);
  }

  66% {
    transform: translate(-10px, 10px) scale(0.96);
  }
}

.hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 5% 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 88, 12, 0.14);
  border: 1px solid rgba(232, 88, 12, 0.38);
  color: var(--orange);
  padding: 7px 17px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 22px;
  animation: fadeInUp 0.8s ease both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  animation: fadeInUp 0.8s 0.1s ease both;
}

.hero-highlight {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.02rem;
  color: #bbb;
  max-width: 470px;
  margin-bottom: 34px;
  line-height: 1.7;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 42px;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.btn-hero {
  display: inline-block;
  background: var(--gradient-orange);
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.96rem;
  transition: var(--transition);
  box-shadow: 0 8px 26px rgba(232, 88, 12, 0.38);
  text-align: center;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(232, 88, 12, 0.5);
}

.btn-hero-outline {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.96rem;
  border: 2px solid rgba(255, 255, 255, 0.26);
  transition: var(--transition);
  text-align: center;
}

.btn-hero-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.stat {
  padding: 0 22px 0 0;
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--orange);
}

.stat-label {
  font-size: 0.76rem;
  color: #888;
}

.stat-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.11);
  margin-right: 22px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== PRODUCT ORBIT ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-orbit {
  position: relative;
  width: 370px;
  height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 88, 12, 0.12);
  animation: orbit-spin 25s linear infinite;
}

.ring1 {
  width: 370px;
  height: 370px;
}

.ring2 {
  width: 285px;
  height: 285px;
  animation-duration: 18s;
  animation-direction: reverse;
  border-color: rgba(242, 160, 160, 0.12);
}

.ring3 {
  width: 195px;
  height: 195px;
  animation-duration: 12s;
  border-color: rgba(123, 45, 66, 0.18);
}

@keyframes orbit-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.product-img-wrap {
  position: relative;
  z-index: 5;
  width: 175px;
  height: 255px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(232, 88, 12, 0.34));
  animation: float-product 4s ease-in-out infinite;
}

.product-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #aaa;
  font-size: 0.82rem;
}

.juicer-svg-wrap {
  width: 100px;
}

.juicer-svg {
  width: 100%;
  height: auto;
}

@keyframes float-product {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-13px);
  }
}

.float-badge {
  position: absolute;
  background: rgba(18, 18, 18, 0.95);
  border: 1px solid rgba(232, 88, 12, 0.38);
  color: var(--orange);
  padding: 7px 13px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  animation: float-badge 3s ease-in-out infinite;
}

.badge-top {
  top: 48px;
  left: -16px;
}

.badge-bottom {
  bottom: 48px;
  right: -16px;
  animation-delay: 1.5s;
}

@keyframes float-badge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.fruit-orbit {
  position: absolute;
  font-size: 1.5rem;
  animation: orbit-item 12s linear infinite;
  transform-origin: 185px 0;
}

.f1 {
  animation-delay: 0s;
}

.f2 {
  animation-delay: -3s;
}

.f3 {
  animation-delay: -6s;
}

.f4 {
  animation-delay: -9s;
}

@keyframes orbit-item {
  from {
    transform: rotate(0deg) translateX(185px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(185px) rotate(-360deg);
  }
}

/* ===== SECTION COMMONS ===== */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 5%;
}

.section-tag {
  display: inline-block;
  background: rgba(232, 88, 12, 0.09);
  color: var(--orange);
  border: 1px solid rgba(232, 88, 12, 0.26);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 46px;
  line-height: 1.2;
}

.highlight {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ABOUT ===== */
.about {
  background: #161616;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: var(--transition);
}

.about-card:hover {
  border-color: rgba(232, 88, 12, 0.26);
  transform: translateY(-5px);
  box-shadow: 0 18px 46px rgba(232, 88, 12, 0.08);
}

.about-card-main {
  background: linear-gradient(135deg, rgba(232, 88, 12, 0.07), rgba(123, 45, 66, 0.07));
  border-color: rgba(232, 88, 12, 0.2);
}

.about-icon {
  font-size: 2.1rem;
  margin-bottom: 13px;
}

.about-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 11px;
  color: white;
}

.about-card p {
  color: #aaa;
  line-height: 1.65;
  font-size: 0.91rem;
}

.about-list {
  margin-top: 15px;
}

.about-list li {
  color: #ccc;
  padding: 5px 0;
  font-size: 0.88rem;
}

/* ===== WHY US ===== */
.why-us {
  background: var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  border-color: rgba(232, 88, 12, 0.2);
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

.why-icon-wrap {
  width: 62px;
  height: 62px;
  background: rgba(232, 88, 12, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 17px;
  transition: var(--transition);
}

.why-card:hover .why-icon-wrap {
  background: rgba(232, 88, 12, 0.2);
  transform: scale(1.08);
}

.why-icon {
  font-size: 1.75rem;
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  margin-bottom: 9px;
  color: white;
}

.why-card p {
  color: #999;
  font-size: 0.86rem;
  line-height: 1.58;
}

/* ===== PRODUCT SECTION ===== */
.product-section {
  background: #161616;
}

.product-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

.product-hl-img {
  display: flex;
  justify-content: center;
}

.product-hl-orbit {
  width: 100%;
  max-width: 330px;
  aspect-ratio: 3/4;
  background: radial-gradient(circle at center, rgba(232, 88, 12, 0.07) 0%, transparent 70%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 88, 12, 0.12);
  overflow: hidden;
}

.product-hl-photo {
  width: 77%;
  height: 87%;
  object-fit: contain;
  filter: drop-shadow(0 22px 38px rgba(232, 88, 12, 0.26));
  animation: float-product 5s ease-in-out infinite;
}

.product-hl-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

.product-desc {
  color: #aaa;
  margin-bottom: 22px;
  line-height: 1.7;
  font-size: 0.92rem;
}

.product-features {
  margin-bottom: 30px;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #ccc;
  font-size: 0.9rem;
}

.feat-icon {
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--dark);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: var(--transition);
  position: relative;
}

.testi-card:hover {
  border-color: rgba(232, 88, 12, 0.26);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testi-featured {
  background: linear-gradient(135deg, rgba(232, 88, 12, 0.07), rgba(123, 45, 66, 0.07));
  border-color: rgba(232, 88, 12, 0.26);
}

.testi-top {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 15px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.testi-info {
  flex: 1;
  min-width: 0;
}

.testi-info strong {
  display: block;
  color: white;
  font-size: 0.9rem;
}

.testi-info span {
  color: #888;
  font-size: 0.76rem;
}

.testi-stars {
  color: var(--orange);
  font-size: 0.82rem;
  flex-shrink: 0;
}

.testi-card p {
  color: #aaa;
  line-height: 1.6;
  font-size: 0.88rem;
}

.testi-badge {
  position: absolute;
  top: -11px;
  right: 16px;
  background: var(--gradient-orange);
  color: white;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ===== FAQ ===== */
.faq {
  background: #161616;
}

.faq-list {
  max-width: 760px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: rgba(232, 88, 12, 0.2);
}

.faq-q {
  width: 100%;
  background: var(--dark-2);
  border: none;
  color: white;
  padding: 18px 22px;
  text-align: left;
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}

.faq-q:hover {
  background: rgba(232, 88, 12, 0.04);
}

.faq-q span:first-child {
  flex: 1;
}

.faq-icon {
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-icon.open {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #1a1a1a;
}

.faq-a.open {
  max-height: 250px;
}

.faq-a p {
  padding: 17px 22px;
  color: #aaa;
  line-height: 1.7;
  font-size: 0.9rem;
}

.faq-a a {
  color: var(--orange);
}

.faq-a a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
}

.footer-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.05;
}

.fb1 {
  width: 320px;
  height: 320px;
  background: var(--orange);
  bottom: 0;
  left: 0;
}

.fb2 {
  width: 260px;
  height: 260px;
  background: var(--burgundy);
  top: 0;
  right: 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 65px 5% 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.15fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 32px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 900;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 13px;
}

.footer-tagline {
  color: #888;
  font-size: 0.86rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  color: white;
}

.social-btn:hover {
  background: rgba(232, 88, 12, 0.16);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: #888;
  font-size: 0.86rem;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-contact li {
  color: #888;
  font-size: 0.84rem;
  margin-bottom: 11px;
  line-height: 1.5;
}

.footer-contact a {
  color: #aaa;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-disclaimer {
  background: rgba(232, 88, 12, 0.04);
  border: 1px solid rgba(232, 88, 12, 0.11);
  border-radius: var(--radius-sm);
  padding: 15px 20px;
  margin-bottom: 24px;
}

.footer-disclaimer p {
  color: #777;
  font-size: 0.79rem;
  line-height: 1.6;
}

.footer-disclaimer strong {
  color: #bbb;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #555;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== MODALS ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal.show {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.modal-box {
  position: relative;
  background: #1e1e1e;
  border: 1px solid rgba(232, 88, 12, 0.22);
  border-radius: var(--radius);
  padding: 42px 34px;
  width: 100%;
  max-width: 560px;
  max-height: 82vh;
  overflow-y: auto;
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.5);
  animation: modal-in 0.35s ease;
}

@keyframes modal-in {
  from {
    transform: scale(0.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  background: rgba(232, 88, 12, 0.1);
  border: 1px solid rgba(232, 88, 12, 0.26);
  color: var(--orange);
  width: 33px;
  height: 33px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--orange);
  color: white;
}

.modal-box h2 {
  font-family: 'Playfair Display', serif;
  color: white;
  margin-bottom: 20px;
  font-size: 1.55rem;
}

.modal-box h3 {
  color: var(--orange);
  margin: 17px 0 8px;
  font-size: 0.98rem;
}

.modal-content p {
  color: #aaa;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 11px;
}

.modal-content a {
  color: var(--orange);
}

.modal-content ul {
  color: #aaa;
  padding-left: 18px;
  margin-bottom: 11px;
  font-size: 0.88rem;
  line-height: 1.7;
}

.modal-content hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 16px 0;
}

.modal-content small {
  color: #666;
  font-size: 0.77rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   TABLET (≤1100px)
================================================================ */
@media (max-width: 1100px) {
  .hero-container {
    gap: 36px;
    padding: 90px 5% 50px;
  }

  .product-orbit {
    width: 300px;
    height: 300px;
  }

  .ring1 {
    width: 300px;
    height: 300px;
  }

  .ring2 {
    width: 230px;
    height: 230px;
  }

  .ring3 {
    width: 158px;
    height: 158px;
  }

  .fruit-orbit {
    transform-origin: 150px 0;
  }

  @keyframes orbit-item {
    from {
      transform: rotate(0deg) translateX(150px) rotate(0deg);
    }

    to {
      transform: rotate(360deg) translateX(150px) rotate(-360deg);
    }
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-card:last-child {
    grid-column: 1 / -1;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-highlight {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .product-hl-img {
    order: -1;
  }

  .product-hl-orbit {
    max-width: 280px;
    margin: 0 auto;
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ================================================================
   MOBILE (≤768px)
================================================================ */
@media (max-width: 768px) {

  /* Nav */
  .nav-links {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    padding: 12px 4%;
  }

  .logo {
    font-size: 1.35rem;
  }

  /* Hero: single column, text below orbit */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 74px 5% 48px;
    text-align: center;
  }

  .hero-text {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-sub {
    margin: 0 auto 26px;
    max-width: 100%;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  /* Orbit - smaller */
  .product-orbit {
    width: 220px;
    height: 220px;
  }

  .ring1 {
    width: 220px;
    height: 220px;
  }

  .ring2 {
    width: 168px;
    height: 168px;
  }

  .ring3 {
    width: 116px;
    height: 116px;
  }

  .product-img-wrap {
    width: 118px;
    height: 172px;
  }

  .fruit-orbit {
    display: none;
  }

  .float-badge {
    display: none;
  }

  /* Sections */
  .section-container {
    padding: 55px 5%;
  }

  .section-title {
    margin-bottom: 32px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-card:last-child {
    grid-column: auto;
  }

  /* Why us */
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .why-card {
    padding: 22px 14px;
  }

  .why-icon-wrap {
    width: 52px;
    height: 52px;
    margin-bottom: 13px;
  }

  .why-icon {
    font-size: 1.45rem;
  }

  .why-card h3 {
    font-size: 0.97rem;
  }

  .why-card p {
    font-size: 0.82rem;
  }

  /* Product */
  .product-highlight {
    gap: 28px;
  }

  .product-hl-orbit {
    max-width: 220px;
  }

  /* Testimonials */
  .testi-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-inner {
    padding: 48px 5% 22px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  /* Modal */
  .modal-box {
    padding: 32px 18px;
  }
}

/* ================================================================
   SMALL PHONES (≤480px)
================================================================ */
@media (max-width: 480px) {
  .ad-notice {
    font-size: 0.7rem;
    padding: 8px 12px;
  }

  .logo {
    font-size: 1.18rem;
  }

  .hero-container {
    padding: 66px 4% 40px;
    gap: 26px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-sub {
    font-size: 0.92rem;
  }

  .btn-hero,
  .btn-hero-outline {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 18px;
    font-size: 0.91rem;
  }

  .hero-cta-row {
    flex-direction: column;
    gap: 10px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .stat-divider {
    display: none;
  }

  .stat {
    padding: 0;
  }

  .product-orbit {
    width: 190px;
    height: 190px;
  }

  .ring1 {
    width: 190px;
    height: 190px;
  }

  .ring2 {
    width: 146px;
    height: 146px;
  }

  .ring3 {
    width: 100px;
    height: 100px;
  }

  .product-img-wrap {
    width: 102px;
    height: 148px;
  }

  .section-container {
    padding: 46px 4%;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .modal-box {
    padding: 30px 16px;
  }

  .modal-box h2 {
    font-size: 1.28rem;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-icon {
    display: none;
  }

  .footer-logo {
    font-size: 1.45rem;
  }
}

/* ================================================================
   EXTRA SMALL (≤360px)
================================================================ */
@media (max-width: 360px) {
  .logo {
    font-size: 1.05rem;
  }

  .hero-title {
    font-size: 1.65rem;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .product-orbit {
    width: 165px;
    height: 165px;
  }

  .ring1 {
    width: 165px;
    height: 165px;
  }

  .ring2 {
    width: 127px;
    height: 127px;
  }

  .ring3 {
    width: 88px;
    height: 88px;
  }

  .product-img-wrap {
    width: 88px;
    height: 128px;
  }

  .btn-hero,
  .btn-hero-outline {
    font-size: 0.86rem;
    padding: 12px 14px;
  }
}