/* ===================================
   ABSOLUBE — Main Stylesheet
   =================================== */

:root {
  --gold: #f5a623;
  --gold-dark: #d4891a;
  --gold-light: #ffc84a;
  --navy: #0d1b3e;
  --navy-light: #1a2d5a;
  --red: #c0392b;
  --red-dark: #a93226;
  --white: #ffffff;
  --off-white: #f8f7f2;
  --gray-100: #f1f1f1;
  --gray-200: #e0e0e0;
  --gray-500: #888;
  --gray-700: #444;
  --dark: #0a0a0f;
  --text: #1a1a2e;
  --text-light: #666;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.2);
  --border-radius: 12px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===================== ANNOUNCEMENT BAR ===================== */
.announcement-bar {
  background: var(--navy);
  color: var(--gold);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-family: var(--font-cond);
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.announcement-bar .sep { color: var(--gold-dark); }
.announcement-bar i { margin-right: 4px; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 62, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--gold);
  transition: var(--transition);
}
.navbar.scrolled {
  top: 0;
  box-shadow: var(--shadow-lg);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.1em;
}
.logo-sub {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-store-btn {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700 !important;
}
.nav-store-btn::after { display: none !important; }
.nav-store-btn:hover { background: var(--gold-light) !important; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.cart-icon {
  position: relative;
  color: var(--white);
  font-size: 1.3rem;
  transition: color var(--transition);
}
.cart-icon:hover { color: var(--gold); }
.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding-top: 106px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(245,166,35,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(13,27,62,0.9) 0%, transparent 60%),
    linear-gradient(135deg, #0a0a1a 0%, #0d1b3e 40%, #0a0a12 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5a623' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  flex: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title .title-line { display: block; }
.hero-title .accent { color: var(--gold); text-shadow: 0 0 40px rgba(245,166,35,0.5); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.5s both;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  padding: 0 24px;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-product-float {
  position: absolute;
  right: -60px;
  bottom: 0;
  width: min(50%, 600px);
  z-index: 1;
  animation: floatIn 1s ease 0.3s both;
}
.hero-product-img {
  width: 100%;
  object-fit: cover;
  opacity: 0.75;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 50%, transparent 100%);
}
.hero-product-glow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(245,166,35,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  font-family: var(--font-cond);
  letter-spacing: 0.1em;
  animation: fadeIn 1s ease 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245,166,35,0.6), transparent);
  animation: scrollLine 2s ease infinite;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-book-hero {
  background: rgba(245,166,35,0.2) !important;
  color: #fff !important;
  border: 2px solid var(--gold) !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  box-shadow: 0 0 0 1px rgba(245,166,35,0.3);
}
.btn-book-hero i { color: var(--gold) !important; }
.btn-book-hero:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,166,35,0.5) !important;
  text-shadow: none;
}
.btn-book-hero:hover i { color: var(--navy) !important; }
.btn-danger {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-danger:hover { background: var(--red-dark); }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* ===================== TECH STRIP ===================== */
.tech-strip {
  background: var(--navy);
  padding: 20px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.tech-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tech-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.tech-badge-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.tech-icon-circle {
  width: 52px;
  height: 52px;
  background: rgba(245,166,35,0.2);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}
.tech-item strong { display: block; font-size: 0.9rem; font-family: var(--font-cond); font-weight: 700; }
.tech-item span { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ===================== SECTIONS COMMON ===================== */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}
.section-label::before,
.section-label::after {
  content: '—';
  margin: 0 8px;
  opacity: 0.5;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--gold); }
.section-desc {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}
.text-center { text-align: center; }

/* ===================== PRODUCTS SECTION ===================== */
.products-section {
  padding: 100px 0;
  background: var(--off-white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  z-index: 2;
}
.product-badge.sale { background: var(--red); color: var(--white); }
.product-badge.featured { background: var(--gold); color: var(--navy); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,62,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.overlay-btn {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 6px;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background var(--transition);
}
.overlay-btn:hover { background: var(--gold-light); }
.product-info { padding: 20px; }
.product-category {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  text-transform: uppercase;
}
.product-name {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 6px 0 8px;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price { display: flex; align-items: center; gap: 8px; }
.price-old {
  font-size: 0.85rem;
  color: var(--gray-500);
  text-decoration: line-through;
}
.price-current {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
}
.add-cart-btn {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--gold);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition);
}
.add-cart-btn:hover { background: var(--gold); color: var(--navy); }

/* ===================== BENEFITS SECTION ===================== */
.benefits-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.benefits-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(245,166,35,0.08) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f5a623' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
}
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.benefits-img-stack {
  position: relative;
  padding-bottom: 40px;
}
.bimg {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.bimg-main {
  width: 80%;
  margin-left: auto;
}
.bimg-float {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  border: 4px solid var(--navy);
}
.benefits-cert {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
}
.cert-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
}
.cert-label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 4px;
  line-height: 1.2;
}
.benefits-section .section-title { color: var(--white); }
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 32px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
  transition: background var(--transition);
}
.benefit-item:hover { background: rgba(255,255,255,0.08); }
.benefit-icon {
  width: 36px;
  height: 36px;
  background: rgba(245,166,35,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.benefit-text strong {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.benefit-text span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* ===================== COMPAT SECTION ===================== */
.compat-section {
  padding: 80px 0;
  background: var(--dark);
}
.compat-section .section-title { color: var(--white); }
.compat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.compat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.compat-card:hover {
  background: rgba(245,166,35,0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.compat-icon {
  width: 64px;
  height: 64px;
  background: rgba(245,166,35,0.15);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 auto 16px;
}
.compat-card h3 {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.compat-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ===================== ABOUT SECTION ===================== */
.about-section {
  padding: 100px 0;
  background: var(--white);
}
.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 32px;
}
.about-highlights {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
.highlight { text-align: center; }
.highlight-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}
.highlight-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 4px;
  line-height: 1.3;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13,27,62,0.06);
  border: 1px solid rgba(13,27,62,0.15);
  color: var(--navy);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}
.tag i { color: var(--gold); }
.about-images {
  position: relative;
  height: 480px;
}
.about-img {
  position: absolute;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.about-img-top {
  top: 0;
  right: 0;
  width: 80%;
}
.about-img-bottom {
  bottom: 0;
  left: 0;
  width: 65%;
  border: 6px solid var(--white);
}

/* ===================== INGREDIENTS SECTION ===================== */
.ingredients-section {
  padding: 80px 0;
  background: var(--gray-100);
}
.ingredients-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.donut-chart { display: flex; justify-content: center; }
.donut-svg { width: 220px; height: 220px; transform: rotate(-90deg); }
.donut-seg { transition: stroke-dasharray 0.8s ease; }
.donut-label-main {
  font-family: var(--font-display);
  font-size: 28px;
  fill: var(--navy);
  transform: rotate(90deg);
  transform-origin: 100px 100px;
}
.donut-label-sub {
  font-size: 11px;
  fill: var(--gray-500);
  transform: rotate(90deg);
  transform-origin: 100px 100px;
  font-family: var(--font-cond);
  letter-spacing: 1px;
}
.ingredient-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
}
.ing-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.ing-name { min-width: 160px; font-size: 0.88rem; font-weight: 600; color: var(--text); }
.ing-bar-wrap { flex: 1; height: 8px; background: var(--gray-200); border-radius: 4px; overflow: hidden; }
.ing-bar { height: 100%; border-radius: 4px; min-width: 4px; transition: width 1s ease; }
.ing-pct { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); min-width: 40px; text-align: right; }

/* ===================== CONTACT ===================== */
.contact-section {
  padding: 100px 0;
  background: var(--off-white);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-item span, .contact-item a { font-size: 0.9rem; color: var(--text-light); }
.contact-item a:hover { color: var(--gold-dark); }
.contact-social { display: flex; gap: 12px; margin-top: 32px; }
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  transition: transform var(--transition);
}
.social-btn:hover { transform: translateY(-3px); }
.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.youtube { background: #ff0000; }

.contact-form { background: var(--white); padding: 40px; border-radius: 20px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-cond); font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.05em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-message { margin-top: 12px; padding: 10px 16px; border-radius: 6px; font-size: 0.9rem; display: none; }
.form-message.success { background: #d4edda; color: #155724; display: block; }
.form-message.error { background: #f8d7da; color: #721c24; display: block; }

/* ===================== FOOTER ===================== */
.footer { background: var(--dark); color: var(--white); }
.footer-top { padding: 60px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.footer-brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
}
.footer-brand-sub {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}
.footer-about { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 16px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
}
.footer-links-col h4 {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links-col a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.footer-bottom a { color: var(--gold); }

/* ===================== TOAST ===================== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 600;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 9999;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { color: var(--gold); font-size: 1.1rem; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes floatIn {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 0.75; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== STORE / PRODUCT / CART PAGES ===================== */
.page-hero {
  background: var(--navy);
  padding: 120px 0 48px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  letter-spacing: 0.02em;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.6); margin-top: 8px; font-size: 1rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; }
.breadcrumb a, .breadcrumb span { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }

.store-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
.store-sidebar {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}
.sidebar-title {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-cats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  transition: all var(--transition);
  margin-bottom: 4px;
}
.sidebar-cats a:hover, .sidebar-cats a.active { background: var(--navy); color: var(--white); }
.sidebar-cats a .cat-count { font-size: 0.75rem; opacity: 0.6; }
.store-main {}
.store-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.store-count { font-size: 0.9rem; color: var(--text-light); }
.store-search input {
  padding: 10px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.9rem;
  width: 240px;
  outline: none;
  transition: border-color var(--transition);
}
.store-search input:focus { border-color: var(--gold); }

.cart-table-wrap { overflow-x: auto; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.cart-table td { padding: 16px; border-bottom: 1px solid var(--gray-200); vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: none; }
.cart-item-info { display: flex; align-items: center; gap: 14px; }
.cart-item-img { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; }
.cart-item-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 30px;
  height: 30px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--gold); color: var(--navy); }
.qty-input {
  width: 50px;
  text-align: center;
  padding: 6px;
  border: 2px solid var(--gray-200);
  border-radius: 6px;
  font-size: 0.9rem;
}
.remove-btn { background: none; border: none; color: var(--red); cursor: pointer; font-size: 1rem; padding: 4px; }

.cart-summary {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--gray-200); font-size: 0.95rem; }
.summary-row.total { font-family: var(--font-cond); font-size: 1.2rem; font-weight: 700; color: var(--navy); border-bottom: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .tech-container { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .compat-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-layout { grid-template-columns: 1fr; gap: 40px; }
  .benefits-image-col { display: none; }
  .about-layout { grid-template-columns: 1fr; }
  .about-images { display: none; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
  .store-layout { grid-template-columns: 1fr; }
  .store-sidebar { position: static; }
}

@media (max-width: 768px) {
  .announcement-bar { font-size: 0.72rem; gap: 8px; }
  .announcement-bar .sep { display: none; }
  .nav-links { 
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.5rem; }
  .hamburger { display: flex; z-index: 1001; }
  .hero-product-float { display: none; }
  .hero-content { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .stat { padding: 0 12px; }
  .tech-container { grid-template-columns: 1fr 1fr; gap: 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .compat-grid { grid-template-columns: 1fr 1fr; }
  .ingredients-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .about-highlights { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
  .tech-container { grid-template-columns: 1fr; }
  .compat-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
  .hero-stats { gap: 0; }
  .stat-divider { display: none; }
  .stat { padding: 8px 12px; }
}

/* Hide text labels on mobile, keep icons */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .booking-nav-btn { padding: 0 8px; }
}
@media (min-width: 769px) {
  .hide-mobile { display: inline !important; }
}
