/* ========================================
   ESTELER ABAH – Modern 2026 Design
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Syne:wght@700;800&display=swap');

/* ===== VARIABLES ===== */
:root {
  --green: #00c896;
  --green-dark: #00a87d;
  --green-light: #e0fff5;
  --teal: #00e5c3;
  --yellow: #ffde59;
  --orange: #ff6b35;
  --dark: #0d1117;
  --dark2: #161b22;
  --dark3: #1e2530;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 20px 60px rgba(0,200,150,0.15);
  --shadow-dark: 0 20px 60px rgba(0,0,0,0.3);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: #f0fdf9;
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none) {
  body { cursor: auto; }
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
  color: white;
}

.loader-logo {
  font-size: 4rem;
  animation: loaderBounce 0.8s ease infinite alternate;
  display: block;
  margin-bottom: 20px;
}

@keyframes loaderBounce {
  from { transform: translateY(0); }
  to { transform: translateY(-15px); }
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 12px;
}

.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--teal));
  border-radius: 10px;
  animation: loaderFill 1.5s ease forwards;
}

@keyframes loaderFill {
  from { width: 0%; }
  to { width: 100%; }
}

.loader-inner p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,150,0.12), transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear;
  mix-blend-mode: screen;
}

/* ===== MUSIC PLAYER ===== */
.music-player {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.music-player button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 17, 23, 0.75);
  border: 1px solid rgba(0,200,150,0.3);
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0,200,150,0.2);
}

.music-player button:hover {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.05);
}

.music-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}

.music-wave.active {
  opacity: 1;
}

.music-wave span {
  display: block;
  width: 3px;
  background: var(--green);
  border-radius: 3px;
  animation: wave 1s ease-in-out infinite;
}

.music-wave span:nth-child(1) { height: 6px; animation-delay: 0s; }
.music-wave span:nth-child(2) { height: 12px; animation-delay: 0.15s; }
.music-wave span:nth-child(3) { height: 8px; animation-delay: 0.3s; }
.music-wave span:nth-child(4) { height: 14px; animation-delay: 0.45s; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  animation: heroZoom 15s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,20,15,0.85) 0%,
    rgba(0,100,70,0.6) 40%,
    rgba(0,0,0,0.75) 100%
  );
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  max-width: 700px;
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.8s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,200,150,0.15);
  border: 1px solid rgba(0,200,150,0.4);
  color: var(--teal);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
  color: white;
}

.title-main {
  display: block;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-accent {
  display: block;
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-sub {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,200,150,0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal), var(--green));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0,200,150,0.5);
}

.btn-primary span, .btn-primary i { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

/* HERO STATS */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  flex-wrap: wrap;
  gap: 20px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.stat span:last-of-type {
  font-size: 1.5rem;
  color: var(--green);
  font-weight: 800;
}

.stat p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* HERO SCROLL INDICATOR */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: linear-gradient(90deg, var(--dark), var(--dark2));
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,200,150,0.2);
  border-bottom: 1px solid rgba(0,200,150,0.2);
}

.marquee-track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
}

.marquee-track span {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.marquee-track span:nth-child(even) {
  color: var(--green);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== MAIN CONTENT ===== */
.main-content {
  padding: 0;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0,200,150,0.1), rgba(0,229,195,0.1));
  border: 1px solid rgba(0,200,150,0.3);
  color: var(--green-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.15;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 450px;
  margin: 0 auto;
}

.highlight {
  background: linear-gradient(135deg, var(--green), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== PROMO SECTION ===== */
.promo-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.promo-card {
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  border-radius: 28px;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  border: 1px solid rgba(0,200,150,0.2);
  box-shadow: 0 40px 80px rgba(0,0,0,0.2);
}

.promo-deco {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,150,0.15), transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.promo-left {
  flex: 1;
  max-width: 500px;
}

.promo-tag {
  display: inline-block;
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.3);
  color: #ff9060;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.promo-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  line-height: 1.2;
}

.promo-left p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.promo-right {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}

.promo-emoji-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.pe {
  position: absolute;
  font-size: 3rem;
  animation: peFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.pe1 { top: 0; left: 20px; animation-delay: 0s; }
.pe2 { top: 60px; right: 0; animation-delay: 0.8s; font-size: 2.5rem; }
.pe3 { bottom: 20px; left: 10px; animation-delay: 1.5s; font-size: 2rem; }
.pe4 { top: 30px; left: 60px; animation-delay: 2.2s; font-size: 2.2rem; }

@keyframes peFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(10deg); }
}

/* ===== PRODUCTS ===== */
.products-section {
  padding: 60px 20px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

/* PRODUCT CARD */
.product-card {
  position: relative;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  border: 1px solid rgba(0,200,150,0.1);
}

.product-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0,200,150,0.2);
}

/* Card Glow */
.card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,107,53,0.3), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}

.card-glow.green {
  background: linear-gradient(135deg, rgba(0,200,150,0.3), transparent 50%);
}

.product-card:hover .card-glow {
  opacity: 1;
}

/* Image Wrap */
.card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #ff6b35, #ff9060);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

.card-badge.new {
  background: linear-gradient(135deg, var(--green), var(--teal));
  box-shadow: 0 4px 15px rgba(0,200,150,0.4);
}

/* Card Overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.product-card:hover .card-overlay {
  opacity: 1;
}

.quick-order {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37,211,102,0.5);
}

.product-card:hover .quick-order {
  transform: translateY(0);
}

.quick-order:hover {
  background: #1ebe5d;
  transform: scale(1.05) translateY(0) !important;
}

/* Card Info */
.card-info {
  padding: 22px;
  position: relative;
  z-index: 1;
  background: white;
}

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.tag {
  background: var(--green-light);
  color: var(--green-dark);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}

.card-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.card-info p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.card-rating span:first-child { font-size: 13px; }

.rating-num {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-tag {
  background: linear-gradient(135deg, rgba(0,200,150,0.1), rgba(0,229,195,0.1));
  color: var(--green-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(0,200,150,0.2);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-wa::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50px;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}

.btn-wa:hover {
  background: #1ebe5d;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(37,211,102,0.5);
}

/* ===== WHY US ===== */
.whyus-section {
  background: linear-gradient(180deg, #f0fdf9, #e8faf4);
  padding: 80px 20px;
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.whyus-card {
  background: white;
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid rgba(0,200,150,0.1);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.whyus-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.4s ease;
}

.whyus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,200,150,0.15);
  border-color: rgba(0,200,150,0.3);
}

.whyus-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
  transition: transform 0.3s ease;
}

.whyus-card:hover .whyus-icon {
  transform: scale(1.2) rotate(5deg);
}

.whyus-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.whyus-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: white;
  position: relative;
}

.footer-wave {
  line-height: 0;
  margin-bottom: -2px;
}

.footer-wave svg {
  width: 100%;
  height: 80px;
}

.footer-body {
  padding: 20px 20px 0;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #25D366;
  border-color: #25D366;
  transform: translateY(-3px);
}

.footer-contact h4,
.footer-app h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 14px;
  color: white;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  box-shadow: 0 8px 25px rgba(37,211,102,0.35);
}

.footer-wa:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(37,211,102,0.5);
}

.footer-hint {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  margin-top: 10px;
}

.playstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 20px;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.playstore-btn img {
  height: 28px;
}

.playstore-btn:hover {
  background: rgba(0,200,150,0.15);
  border-color: rgba(0,200,150,0.4);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 13px;
}

.credit a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}

.credit a:hover {
  text-decoration: underline;
}

/* ===== WA FLOAT ===== */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 80px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 998;
  box-shadow: 0 8px 25px rgba(37,211,102,0.5);
  transition: all 0.3s ease;
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: waPulse 2s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37,211,102,0.6);
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: white;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(5px);
  transition: all 0.3s ease;
  pointer-events: none;
  font-family: var(--font-body);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
  border-right: none;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  background: rgba(13,17,23,0.8);
  color: white;
  border: 1px solid rgba(0,200,150,0.3);
  border-radius: 14px;
  cursor: pointer;
  z-index: 997;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-content { padding: 20px 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { gap: 16px; padding: 16px; }
  .stat-divider { display: none; }
  .promo-card { flex-direction: column; text-align: center; padding: 30px 20px; }
  .promo-right { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-float { bottom: 76px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .promo-card { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
}

/* ===== REVEAL ANIMATION ===== */
.whyus-card:nth-child(1) { transition-delay: 0.1s; }
.whyus-card:nth-child(2) { transition-delay: 0.2s; }
.whyus-card:nth-child(3) { transition-delay: 0.3s; }
.whyus-card:nth-child(4) { transition-delay: 0.4s; }

.product-card:nth-child(1) { transition-delay: 0.1s; }
.product-card:nth-child(2) { transition-delay: 0.25s; }