/* Landing homepage — AVANIA-style layout */
:root {
  --landing-primary: #2563eb;
  --landing-primary-dark: #1d4ed8;
  --landing-dark: #0f172a;
  --landing-text: #1e293b;
  --landing-muted: #64748b;
  --landing-light: #f8fbff;
  --landing-border: #dbeafe;
  --landing-star: #fbbf24;
}

body.landing-home {
  background: linear-gradient(180deg, #eff6ff 0%, #f8fbff 30%, #ffffff 60%, #eff6ff 100%);
  overflow-x: hidden;
}

body.landing-home .main.landing-main {
  margin-top: 0;
  padding-top: 0;
  font-size: 1.0625rem;
}

body.landing-home .landing-hero-wrap {
  margin-top: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
  color: #fff;
  position: relative;
  overflow: visible;
}

body.landing-home .landing-hero-wrap::before,
body.landing-home .landing-hero-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

body.landing-home .landing-hero-wrap::before {
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  top: -300px;
  right: -150px;
}

body.landing-home .landing-hero-wrap::after {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.04);
  bottom: -180px;
  left: -100px;
}

body.landing-home .landing-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

body.landing-home .landing-hero {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 40px;
  align-items: center;
  padding: 50px 0 80px;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  body.landing-home .main.landing-main {
    padding-top: 12px;
  }

  body.landing-home .landing-hero-wrap .landing-container {
    width: min(1280px, 94%);
  }
}

body.landing-home .landing-hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
  color: #fff;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

body.landing-home .landing-hero-lead {
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  color: #fff;
  opacity: 0.95;
  max-width: 640px;
  margin-bottom: 28px;
  line-height: 1.65;
}

body.landing-home .landing-hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  padding: 18px 38px;
  border-radius: 60px;
  font-family: "Poppins", sans-serif;
  font-size: 1.61rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.landing-home .landing-hero-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.45);
}

body.landing-home .landing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

body.landing-home .landing-badges span {
  padding: 12px 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
}

body.landing-home .landing-hero-image {
  width: 100%;
  align-self: center;
}

body.landing-home .landing-hero-image img {
  width: 100%;
  min-height: 420px;
  height: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 25px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  display: block;
}

@media (min-width: 992px) {
  body.landing-home .landing-hero-image img {
    width: 112%;
    max-width: 112%;
    min-height: 480px;
    margin-left: -6%;
  }
}

body.landing-home .landing-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

body.landing-home .landing-section-title {
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: clamp(2.25rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--landing-dark);
  margin-bottom: 10px;
}

body.landing-home .landing-section-subtitle {
  font-family: "Poppins", sans-serif;
  text-align: center;
  color: var(--landing-muted);
  margin-bottom: 48px;
  font-size: 1.2rem;
}

body.landing-home #categories .landing-section-title {
  font-size: clamp(3.375rem, 6.75vw, 4.8rem);
}

body.landing-home #categories .landing-section-subtitle {
  font-size: 1.8rem;
}

body.landing-home .landing-section:not(#categories) .landing-section-title {
  font-size: clamp(3.13rem, 6.26vw, 4.45rem);
}

body.landing-home .landing-section:not(#categories) .landing-section-subtitle {
  font-size: 1.8rem;
}

body.landing-home .landing-product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 36px;
  border-radius: 28px;
  margin-bottom: 40px;
  border: 1px solid var(--landing-border);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.08);
  transition: transform 0.3s ease;
}

body.landing-home .landing-product-card:hover {
  transform: translateY(-4px);
}

body.landing-home .landing-product-card:nth-child(odd) {
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

body.landing-home .landing-product-card:nth-child(even) {
  direction: rtl;
  background: linear-gradient(135deg, #dcfce7, #ecfdf5);
}

body.landing-home .landing-product-card:nth-child(3) {
  background: linear-gradient(135deg, #fef3c7, #fff7ed);
}

body.landing-home .landing-product-card:nth-child(4) {
  background: linear-gradient(135deg, #ede9fe, #f5f3ff);
}

body.landing-home .landing-product-card:nth-child(even) > * {
  direction: ltr;
}

body.landing-home .landing-product-card img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

body.landing-home .landing-product-card:hover img {
  transform: scale(1.03);
}

body.landing-home .landing-product-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.775rem, 5.25vw, 3.525rem);
  font-weight: 800;
  color: var(--landing-dark);
  margin-bottom: 12px;
}

body.landing-home .landing-price-old {
  display: block;
  text-decoration: line-through;
  color: #dc2626;
  font-family: "Poppins", sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}

body.landing-home .landing-price {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.775rem, 5.25vw, 3.75rem);
  font-weight: 800;
  color: var(--landing-primary);
  margin-bottom: 14px;
}

body.landing-home .landing-product-desc {
  font-family: "Poppins", sans-serif;
  font-size: 1.725rem;
  color: var(--landing-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

body.landing-home .landing-product-btn {
  display: inline-block;
  color: #fff;
  padding: 20px 40px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 1.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.landing-home .landing-product-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
  animation: none;
}

body.landing-home .landing-product-btn--blue {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  box-shadow:
    0 0 0 0 rgba(59, 130, 246, 0.45),
    0 14px 34px rgba(37, 99, 235, 0.45);
  animation: landing-product-btn-glow-blue 2.2s ease-in-out infinite;
}

body.landing-home .landing-product-btn--blue:hover {
  box-shadow:
    0 0 22px rgba(59, 130, 246, 0.65),
    0 18px 42px rgba(37, 99, 235, 0.55);
}

body.landing-home .landing-product-btn--red {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  box-shadow:
    0 0 0 0 rgba(239, 68, 68, 0.45),
    0 14px 34px rgba(220, 38, 38, 0.45);
  animation: landing-product-btn-glow-red 2.2s ease-in-out infinite;
}

body.landing-home .landing-product-btn--red:hover {
  box-shadow:
    0 0 22px rgba(239, 68, 68, 0.65),
    0 18px 42px rgba(220, 38, 38, 0.55);
}

body.landing-home .landing-product-btn--black {
  background: linear-gradient(135deg, #0f172a, #334155);
  box-shadow:
    0 0 0 0 rgba(15, 23, 42, 0.45),
    0 14px 34px rgba(15, 23, 42, 0.5);
  animation: landing-product-btn-glow-black 2.2s ease-in-out infinite;
}

body.landing-home .landing-product-btn--black:hover {
  box-shadow:
    0 0 22px rgba(51, 65, 85, 0.7),
    0 18px 42px rgba(15, 23, 42, 0.6);
}

@keyframes landing-product-btn-glow-blue {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(59, 130, 246, 0.5),
      0 14px 34px rgba(37, 99, 235, 0.42);
  }

  50% {
    box-shadow:
      0 0 0 14px rgba(59, 130, 246, 0),
      0 18px 44px rgba(37, 99, 235, 0.58);
  }
}

@keyframes landing-product-btn-glow-red {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(239, 68, 68, 0.5),
      0 14px 34px rgba(220, 38, 38, 0.42);
  }

  50% {
    box-shadow:
      0 0 0 14px rgba(239, 68, 68, 0),
      0 18px 44px rgba(220, 38, 38, 0.58);
  }
}

@keyframes landing-product-btn-glow-black {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(51, 65, 85, 0.45),
      0 14px 34px rgba(15, 23, 42, 0.48);
  }

  50% {
    box-shadow:
      0 0 0 14px rgba(51, 65, 85, 0),
      0 18px 44px rgba(15, 23, 42, 0.62);
  }
}

body.landing-home .landing-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

body.landing-home .landing-feature {
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  border: 1px solid var(--landing-border);
  padding: 28px 20px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.06);
  transition: transform 0.3s ease;
}

body.landing-home .landing-feature:hover {
  transform: translateY(-5px);
}

body.landing-home .landing-feature-icon {
  font-size: 2.35rem;
  line-height: 1;
  margin-bottom: 12px;
}

body.landing-home .landing-feature h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--landing-dark);
  margin: 0;
}

body.landing-home .landing-reviews {
  position: relative;
}

body.landing-home .landing-reviews-carousel .owl-stage-outer {
  padding: 4px 0 12px;
}

body.landing-home .landing-reviews-carousel .owl-item {
  display: flex;
}

body.landing-home .landing-reviews-carousel .landing-review-card {
  height: 100%;
  width: 100%;
}

body.landing-home .landing-review-card {
  background: #fff;
  border: 1px solid var(--landing-border);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.landing-home .landing-review-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--landing-star);
  font-size: 1.45rem;
  letter-spacing: 1px;
}

body.landing-home .landing-review-score {
  margin-left: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--landing-dark);
}

body.landing-home .landing-review-text {
  font-family: "Poppins", sans-serif;
  color: var(--landing-text);
  line-height: 1.7;
  margin: 0;
  flex: 1;
  font-size: 1.25rem;
}

body.landing-home .landing-review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}

body.landing-home .landing-review-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--landing-dark);
  font-size: 1.15rem;
}

body.landing-home .landing-review-location {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: var(--landing-muted);
}

body.landing-home .landing-review-location::before {
  content: "·";
  margin-right: 8px;
}

body.landing-home .landing-review-badge {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #16a34a;
  background: #dcfce7;
  padding: 4px 12px;
  border-radius: 20px;
  margin-left: auto;
}

body.landing-home .landing-reviews-carousel .owl-nav button.owl-prev,
body.landing-home .landing-reviews-carousel .owl-nav button.owl-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff !important;
  border: 1px solid var(--landing-border);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
  color: var(--landing-primary) !important;
}

body.landing-home .landing-reviews-carousel .owl-nav button.owl-prev:hover,
body.landing-home .landing-reviews-carousel .owl-nav button.owl-next:hover {
  background: var(--landing-primary) !important;
  color: #fff !important;
}

body.landing-home .landing-reviews-carousel .owl-dots {
  margin-top: 18px;
}

body.landing-home .landing-reviews-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
}

body.landing-home .landing-reviews-carousel .owl-dot.active span,
body.landing-home .landing-reviews-carousel .owl-dot:hover span {
  background: var(--landing-primary);
}

body.landing-home .landing-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease;
  animation: landing-wa-pulse 2s ease-in-out infinite;
}

body.landing-home .landing-whatsapp:hover {
  color: #fff;
  text-decoration: none;
  transform: scale(1.08);
}

body.landing-home .landing-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes landing-wa-pulse {
  50% {
    transform: scale(1.06);
  }
}

body.landing-home .landing-sticky-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  body.landing-home .landing-hero-wrap .landing-container {
    width: 100%;
    max-width: 100%;
  }

  body.landing-home .landing-hero,
  body.landing-home .landing-product-card,
  body.landing-home .landing-features {
    grid-template-columns: 1fr;
  }

  body.landing-home .landing-product-card:nth-child(even) {
    direction: ltr;
  }

  body.landing-home .landing-hero {
    padding: 0 0 48px;
    gap: 28px;
  }

  body.landing-home .landing-hero-content {
    padding: 0 4%;
  }

  body.landing-home .landing-hero h1 {
    font-size: clamp(2.85rem, 9vw, 3.5rem);
    line-height: 1.1;
  }

  body.landing-home .landing-hero-image {
    order: -1;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  body.landing-home .landing-hero-image img {
    width: 100%;
    max-width: 100%;
    min-height: 340px;
    margin-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  body.landing-home .landing-badges {
    justify-content: center;
  }

  body.landing-home .landing-features {
    grid-template-columns: repeat(2, 1fr);
  }

  body.landing-home .landing-sticky-mobile {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    padding: 14px;
    text-align: center;
    z-index: 998;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.12);
  }

  body.landing-home .landing-sticky-mobile a {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
  }

  body.landing-home {
    padding-bottom: 60px;
  }

  body.landing-home .sticky-navbar {
    bottom: 56px;
  }
}

@media (max-width: 575.98px) {
  body.landing-home .landing-features {
    grid-template-columns: 1fr;
  }

  body.landing-home .landing-product-card {
    padding: 22px;
    gap: 24px;
  }

  body.landing-home .landing-section {
    padding: 56px 0;
  }
}

/* Simplified landing footer */
body.landing-home .landing-footer {
  background: linear-gradient(135deg, #020617, #0f172a) !important;
  border-top: none;
  margin-top: 0;
  width: 100%;
}

body.landing-home .landing-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 52px 5%;
}

body.landing-home .landing-footer-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.1rem, 4.8vw, 2.7rem);
  font-weight: 800;
  color: #facc15 !important;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  text-align: center;
  width: 100%;
}

body.landing-home .landing-footer-tagline {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 500;
  color: #ffffff !important;
  margin: 0;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  opacity: 0.95;
}
