/* ============================================================
   EAGLE EYE — HOMEPAGE STYLES (Clean Redesign 2026)
   Colors: Primary #2563EB | Accent #F59E0B
   ============================================================ */

/* HERO */
.home-hero { margin-top: 24px; margin-bottom: 32px; }
.hero-banner {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 50%, #2563EB 100%);
  border-radius: 20px;
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.25);
  min-height: 440px;
}
.hero-banner--image {
  display: block;
  padding: 0;
  background: none;
  min-height: auto;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.hero-banner--image:hover {
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.18);
}
.hero-banner__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/* Hero overlay & animations */
.hero-shimmer { display: none; }

.hero-float-badges {
  display: none;
}
.hero-float-badge {
  position: absolute;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 99px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  white-space: nowrap;
}
.hero-float-badge--1 {
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #EF4444, #F97316);
  animation: heroFloat 3s ease-in-out infinite, heroPulse 2s ease-in-out infinite;
}
.hero-float-badge--2 {
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  animation: heroFloat 3.5s ease-in-out infinite 0.5s;
}
.hero-float-badge--3 {
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #0F172A;
  animation: heroFloat 2.8s ease-in-out infinite 1s;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-float-badge--3 {
  animation-name: heroFloatSide;
}
@keyframes heroFloatSide {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 8px)); }
}
@keyframes heroPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(239,68,68,0.4); }
  50% { box-shadow: 0 8px 32px rgba(239,68,68,0.7), 0 0 0 8px rgba(239,68,68,0.15); }
}

.hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  z-index: 4;
  pointer-events: none;
}
.hero-overlay a { pointer-events: auto; }

.hero-overlay__top {
  display: none;
}
.hero-rotate-box {
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: heroSlideIn 0.8s ease-out;
}
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-rotate-label {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
}
.hero-rotate-words {
  position: relative;
  height: 1.4em;
  overflow: hidden;
  min-width: 110px;
}
.hero-rotate-words span {
  display: block;
  color: #FCD34D;
  font-size: 16px;
  font-weight: 900;
  animation: heroWordCycle 8s ease-in-out infinite;
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
}
.hero-rotate-words span:nth-child(1) { animation-delay: 0s; }
.hero-rotate-words span:nth-child(2) { animation-delay: 2s; }
.hero-rotate-words span:nth-child(3) { animation-delay: 4s; }
.hero-rotate-words span:nth-child(4) { animation-delay: 6s; }
@keyframes heroWordCycle {
  0%, 22% { opacity: 0; transform: translateY(100%); }
  25%, 47% { opacity: 1; transform: translateY(0); }
  50%, 100% { opacity: 0; transform: translateY(-100%); }
}

.hero-overlay__bottom {
  background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.45) 65%, transparent 100%);
  padding: 16px 20px 20px;
}
.hero-ticker {
  overflow: hidden;
  margin-bottom: 14px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hero-ticker__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: heroMarquee 22s linear infinite;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
@keyframes heroMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.hero-cta:hover { transform: translateY(-2px) scale(1.03); }
.hero-cta--primary {
  background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(245,158,11,0.45);
  animation: heroCtaGlow 2s ease-in-out infinite;
}
@keyframes heroCtaGlow {
  0%, 100% { box-shadow: 0 8px 28px rgba(245,158,11,0.45); }
  50% { box-shadow: 0 8px 36px rgba(239,68,68,0.6), 0 0 0 4px rgba(245,158,11,0.2); }
}
.hero-cta__pulse {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  animation: heroCtaPulse 2s ease-out infinite;
}
@keyframes heroCtaPulse {
  0% { transform: scale(0); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}
.hero-cta__text { position: relative; z-index: 1; }
.hero-cta--ghost {
  background: rgba(15, 23, 42, 0.75);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}
.hero-cta--ghost:hover { background: rgba(255,255,255,0.22); }
.hero-cta--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
.hero-cta--whatsapp:hover { box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
.hero-banner__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(37,99,235,0.3) 0%, transparent 60%),
                    radial-gradient(#fff 1px, transparent 1px);
  background-size: 100% 100%, 30px 30px;
  opacity: 0.06;
  pointer-events: none;
}
.hero-banner__content { position: relative; z-index: 10; color: #fff; max-width: 55%; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(245,158,11,0.2);
  color: #FCD34D;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
  border: 1px solid rgba(245,158,11,0.3);
}
.hero-banner__title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 20px;
}
.hero-banner__title span { color: #FCD34D; }
.hero-banner__desc {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 800;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
}
.hero-btn--primary { background: #F59E0B; color: #0F172A; }
.hero-btn--primary:hover { background: #D97706; transform: translateY(-2px); }
.hero-btn--ghost {
  background: rgba(15, 23, 42, 0.75);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.hero-btn--ghost:hover { background: rgba(255,255,255,0.2); }
.hero-banner__image {
  position: relative;
  z-index: 10;
  width: 42%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.hero-banner__image img {
  width: 100%;
  max-width: 460px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.1);
}

/* TRUST BAR */
.trust-bar {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #E2E8F0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.trust-item { display: flex; align-items: center; gap: 14px; padding: 10px; transition: transform 0.3s; }
.trust-item:hover { transform: translateY(-3px); }
.trust-item:not(:last-child) { border-left: 1px solid #E2E8F0; }
.trust-icon {
  width: 48px; height: 48px;
  background: #EFF6FF;
  color: var(--color-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.trust-item:hover .trust-icon { background: var(--color-primary); color: #fff; }
.trust-text h4 { font-size: 15px; font-weight: 800; color: #1E293B; margin-bottom: 3px; }
.trust-text p { font-size: 12px; color: #64748B; }

/* BRANDS SECTION */
.brands-section { margin-bottom: 56px; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.brand-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.brand-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(37,99,235,0.12); border-color: #BFDBFE; }
.brand-card__img-wrap {
  background: #F8FAFC;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brand-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.brand-card:hover .brand-product-img { transform: scale(1.05); }
.brand-card__info { padding: 20px; flex: 1; }
.brand-name { font-size: 18px; font-weight: 800; color: #1E293B; margin-bottom: 8px; }
.brand-desc { font-size: 13px; color: #64748B; line-height: 1.6; margin-bottom: 14px; }
.brand-link { color: var(--color-primary); font-weight: 700; font-size: 13px; text-decoration: none; }
.brand-link:hover { text-decoration: underline; }

/* CATEGORIES */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.cat-card {
  background: #EFF6FF;
  border: 1px solid rgba(37,99,235,0.08);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  display: flex; flex-direction: column; align-items: center;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(37,99,235,0.12); background: #fff; border-color: #BFDBFE; }
.cat-card__img { width: 90px; height: 90px; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; mix-blend-mode: multiply; }
.cat-card__img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cat-card h3 { font-size: 15px; font-weight: 800; color: #1D4ED8; margin-bottom: 4px; }
.cat-card p { font-size: 12px; color: #64748B; }

/* SECTION HEADERS */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; border-bottom: 2px solid #E2E8F0; padding-bottom: 12px; position: relative; }
.section-title { font-size: 22px; font-weight: 800; color: #1E293B; }
.section-header::after { content: ''; position: absolute; right: 0; bottom: -2px; width: 120px; height: 2px; background: var(--color-primary); }
.section-more { color: var(--color-primary); font-weight: 700; text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 4px; }
.section-more:hover { text-decoration: underline; }

.section-title-wrap { text-align: center; margin-bottom: 36px; }
.section-eyebrow {
  display: inline-block;
  background: #EFF6FF;
  color: var(--color-primary);
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 99px; margin-bottom: 10px;
}
.section-title-xl { font-size: 26px; font-weight: 900; color: #1E293B; margin-bottom: 10px; }
.section-title-xl span { color: var(--color-primary); }
.section-sub { font-size: 14px; color: #64748B; max-width: 460px; margin: 0 auto; line-height: 1.7; }

/* PRODUCTS CLEAN GRID */
.products-grid-clean {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.prod-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 16px;
  text-decoration: none;
  display: flex; flex-direction: column;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(37,99,235,0.12); border-color: #BFDBFE; }
.prod-card__badge { position: absolute; top: 12px; right: 12px; background: #EF4444; color: #fff; font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 99px; z-index: 10; }
.prod-card__img { width: 100%; height: 160px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; margin-top: 6px; }
.prod-card__img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.prod-card__title { font-size: 13px; font-weight: 700; color: #1E293B; margin-bottom: 10px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.prod-card__price { font-size: 18px; font-weight: 900; color: var(--color-primary); display: flex; align-items: center; gap: 8px; }
.prod-card__old { font-size: 12px; font-weight: 500; color: #94A3B8; text-decoration: line-through; }
.prod-card__quick-view {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, var(--color-primary-dark), var(--color-primary));
  color: #fff; text-align: center; padding: 9px;
  font-size: 12px; font-weight: 700;
  border-radius: 0 0 12px 12px;
  opacity: 0; transform: translateY(4px);
  transition: all 0.3s;
}
.prod-card:hover .prod-card__quick-view { opacity: 1; transform: translateY(0); }

/* WHY SECTION */
.why-section { margin-bottom: 60px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: all 0.3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(37,99,235,0.1); border-color: #BFDBFE; }
.why-card__icon {
  width: 56px; height: 56px;
  background: #EFF6FF; color: var(--color-primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s;
}
.why-card:hover .why-card__icon { background: var(--color-primary); color: #fff; }
.why-card__title { font-size: 17px; font-weight: 800; color: #1E293B; margin-bottom: 8px; }
.why-card__desc { font-size: 13px; color: #64748B; line-height: 1.7; }
.why-card__num { position: absolute; bottom: 16px; left: 20px; font-size: 4rem; font-weight: 900; color: #EFF6FF; line-height: 1; user-select: none; transition: all 0.3s; }
.why-card:hover .why-card__num { color: #DBEAFE; }

/* RESPONSIVE */
@media (max-width: 1199px) { .products-grid-clean { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 991px) {
  .hero-banner:not(.hero-banner--image) { flex-direction: column; text-align: center; padding: 40px 24px; }
  .hero-banner__content { max-width: 100%; }
  .hero-banner__image { width: 100%; }
  .hero-banner__image img { max-width: 400px; height: 220px; }
  .hero-actions { justify-content: center; }
  .hero-banner--image { border-radius: 14px; }
  .hero-banner__img { border-radius: 14px; }
  .hero-shimmer { border-radius: 14px; }
  .hero-float-badge { font-size: 11px; padding: 6px 12px; }
  .hero-float-badge--3 { display: none; }
  .hero-overlay__top { padding: 12px 14px; }
  .hero-rotate-box { padding: 8px 14px; }
  .hero-rotate-label { font-size: 12px; }
  .hero-rotate-words span { font-size: 14px; }
  .hero-cta-row { gap: 8px; }
  .hero-cta { padding: 10px 16px; font-size: 12px; flex: 1 1 auto; min-width: calc(50% - 4px); }
  .hero-cta--whatsapp { min-width: 100%; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid-clean { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .hero-banner__title { font-size: 2rem !important; }
  .brands-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}