@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background);
  overflow-x: hidden;
}

button {
  font-family: inherit;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Trust Banner */
.trust-banner {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 0.75rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeIn 0.6s ease-out;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.trust-icon {
  width: 20px;
  height: 20px;
}

.trust-link {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  color: inherit;
  text-decoration: none;
}

.trust-link:hover,
.trust-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Header */
.header {
  background: var(--background);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  animation: slideInFromLeft 0.5s ease-out;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 100px;
  /* height: 100px; */
  /* background: linear-gradient(135deg, var(--primary), var(--primary-dark)); */
  /* border-radius: 12px; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.5rem;
  /* box-shadow: 0 4px 12px rgba(2, 140, 126, 0.2); */
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payment-icon{
  width: 24px;
  height: 24px;
  background: transparent;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.brand-name img{
     position: absolute;
    bottom: 27px;
    left: 100px;
    width: 58px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #ecfdf5;
  color: var(--success);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

/* ———————— Nav with Dropdowns ———————— */
.cart-icon {
  width: 25px;
  height: 25px;
}

.header__nav {
  display: flex;
  gap: 2rem;
  position: relative;
}

.nav__item {
  position: relative;
}

.nav__btn {
  background: none;
  border: none;
  font-family: var(--font-base);
  font-weight: 500;
  color: var(--color-gray-600);
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.nav__btn:hover,
.nav__btn.active {
  color: var(--color-primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--background);
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
  list-style: none;
  padding: 0.5rem 0;
  min-width: 180px;
  display: none;
  z-index: 20;
}

.dropdown-menu li + li {
  margin-top: 0.25rem;
}

.dropdown__link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--color-gray-700);
  text-decoration: none;
  transition: background 0.2s;
  font-size: 0.95rem;
}

.dropdown__link:hover {
  background: var(--color-gray-100);
  color: var(--color-gray-900);
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.95rem;
  font-size: 0.95rem; /* 15.2px */
  font-weight: 500;
  transition: all 0.3s;
  /* padding: 0.5rem 0; */
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
  width: 100%; /* Underline on hover */
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.search-btn,
.cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border-radius: 8px;
}

.search-btn:hover,
.cart-btn:hover {
  color: var(--primary);
  background: var(--background-alt);
}

.cart-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  padding: 0.125rem 0.375rem;
  border-radius: 10px;
  font-weight: 600;
  animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  /* background: linear-gradient(135deg, #028c7e 0%, #017463 100%); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  /* padding: 5rem 2rem 6rem; */
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 60vh;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 8s infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  gap: 20px; /* Adds space between flex items */

  /* max-width: 800px; */
  /* margin: 0 auto; */
  /* height: 50vh; */
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
  margin-bottom: 200px;
}

.search-suggestions {
  max-height: 40vh;
  overflow-y: scroll;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.search-container {
  max-width: 600px;
  width: 60vw;
  /* margin: 0 auto; */
  position: relative;
}

.search-input {
  width: 100%;
  padding: 1rem 4rem 1rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  outline: none;
  transition: all 0.3s;
}

.search-input:focus {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.search-submit {
  position: absolute;
  right: 0.5rem;
  top: 25px;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
  background: var(--primary);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.search-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-50%) scale(1.05);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Features */
.features {
  padding: 5rem 2rem;
  background: var(--background);
}

.features-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.feature-card {
  text-align: center;
  animation: fadeInUp 0.6s ease-out backwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  /* background: linear-gradient(135deg, var(--background-alt), var(text-primary)); */
  background: linear-gradient(135deg, var(--background-alt), var(--background));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(2, 140, 126, 0.12);
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(2, 140, 126, 0.18);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Live Indicators */
.live-section {
  background: linear-gradient(to right, #ecfdf5, #f0fdf4);
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.live-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background: var(--success);
  border-radius: 50%;
  position: relative;
  animation: pulse 2s infinite;
}

.pulse-dot::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
  opacity: 0.6;
}

.live-text {
  flex: 1;
}

.live-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.live-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Categories */
.categories {
  padding: 5rem 2rem;
  background: var(--background-alt);
}

.section-header {
  /* border: var(--background-alt) 2px solid ;
  border-radius: 20px;
  background-color:var(--primary) ;
  max-width: 600px;
  color: var(--text-primary); */

  color: var(--primary);

  margin: 0 auto 3rem;
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  /* color: var(--text-secondary); */
  font-size: 1.1rem;
}

.categories-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s;
  border: 2px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(2, 140, 126, 0.05),
    transparent
  );
  transition: left 0.5s;
}

.category-card:hover::before {
  left: 100%;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(2, 140, 126, 0.15);
  border-color: var(--primary);
}

.UsaPremum-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(251, 191, 36, 0.15);
  border-color: #fbbf24;
}

/* .category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  background: var(--background-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
} */

.category-icon img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* .category-card:hover .category-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: rotate(10deg) scale(1.1);
}

.category-card:hover .category-icon svg {
  color: white;
} */

.category-name {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
}

.premium-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: shimmer 3s infinite;
  background-size: 200% 100%;
}

.UsaPremum-category {
  border: 2px solid #fbbf24;
}

/* Testimonials */
.testimonials {
  padding: 5rem 2rem;
  background: var(--background);
}

.testimonials-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: var(--background-alt);
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s;
  animation: fadeInUp 0.6s ease-out backwards;
}

.testimonial:nth-child(1) {
  animation-delay: 0.1s;
}
.testimonial:nth-child(2) {
  animation-delay: 0.2s;
}
.testimonial:nth-child(3) {
  animation-delay: 0.3s;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.verified-purchase {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--success);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.unverified-purchase {
  display: inline-block;
  width: 14px;
  height: 14px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background: var(--footer-background);
  color: var(--footer-text);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: white;
}

.footer-section p {
  color: var(--footer-text);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--footer-background);
  text-align: center;
  text-align: center; /* Center copyright */
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.payment-method {
  padding: 0.5rem 1rem;
  padding: 0.5rem 1rem; /* 8px 16px */
  background: var(--footer-background);
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.payment-method:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.copyright {
  color: var(--footer-text);
  color: var(--text-secondary); /* Softer color */
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

/* ─────────────────────────────────────────
   TABLET & MOBILE RESPONSIVE DESIGN
   ───────────────────────────────────────── */

/* Tablet (Large Mobile) */
@media (max-width: 768px) {
  .trust-banner {
    padding: 0.7rem 0.6rem;
    gap: 0.6rem;
    font-size: 0.8rem;
  }

  .trust-item {
    padding: 0.45rem 0.7rem;
    gap: 0.4rem;
    border-radius: 5px;
  }

  .trust-icon {
    width: 18px;
    height: 18px;
  }

  .trust-text {
    display: inline;
  }
}

/* Tablet (Optimized) */
@media (max-width: 600px) {
  .trust-banner {
    padding: 0.6rem 0.5rem;
    gap: 0.5rem;
    font-size: 0.72rem;
    row-gap: 0.5rem;
  }

  .trust-item {
    padding: 0.4rem 0.6rem;
    gap: 0.35rem;
  }

  .trust-item:nth-child(n + 3) {
    display: none;
  }

  .trust-icon {
    width: 17px;
    height: 17px;
  }

  .trust-text {
    display: inline;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .brand-name {
    display: none;
  }
  .header__nav {
    display: none;
  }
  .nav {
    display: none;
  }

  .hero {
    height: 40vh;
    align-items: flex-start;
    /* background-size: contain; */
    /* margin-top: 8px; */
  }

  .hero-container {
    margin-top: 10px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .header-container {
    padding: 0.5rem;
    gap: 0px;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
  }

  .category-card {
    padding: 1.5rem 1rem;
  }

  .trust-banner {
    padding: 0.6rem 0.5rem;
    font-size: 0.75rem;
    gap: 0.8rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 0.6rem;
  }

  .trust-item {
    gap: 0.4rem;
    flex: 0 0 auto;
    padding: 0.4rem 0.6rem;
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .trust-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }

  .trust-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .trust-link {
    display: flex;
    gap: 0.4rem;
  }

  .trust-link .trust-text {
    display: inline;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }
}

/* Very Small Mobile (360px and below) */
@media (max-width: 360px) {
  .trust-banner {
    padding: 0.5rem 0.4rem;
    gap: 0.4rem;
    font-size: 0.65rem;
  }

  .trust-item {
    padding: 0.35rem 0.5rem;
    gap: 0.3rem;
    border-radius: 4px;
  }

  .trust-icon {
    width: 16px;
    height: 16px;
  }

  .trust-item:nth-child(n + 4) {
    display: none;
  }

  .trust-banner::before {
    content: "";
  }
}

/* Icon styles */
svg:not([width]):not([height]) {
  width: 24px;
  height: 24px;
}

#hero-suggestions {
  position: absolute;
  width: 95%;
}

#hero-suggestions li {
  padding: 15px 25px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
  z-index: 1100;
  background-color: var(--background);
  color: var(--text-primary);
}

#hero-suggestions li:last-child {
  border-bottom: none;
}

#hero-suggestions li:hover {
  background-color: #f8f9ff;
  color: #111827;
}

#hero-suggestions li:first-child {
  border-radius: 20px 20px 0 0;
}

#hero-suggestions li:last-child {
  border-radius: 0 0 20px 20px;
}

#hero-suggestions li img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 8px;
  border: 1px solid #eee;
}

#hero-suggestions li span {
  font-size: 16px;
  font-weight: 500;
  /* color: #333; */
  font-family: var(--font);
}

.hero-banner-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Behind everything */
  cursor: pointer;
}

/* .SearchLogo svg{
  width: 20px;
  height: 20px;
  color: var(--text-primary);
} */

/* ===== REVIEW SECTION (INDEX ONLY) ===== */
.review-section {
  max-width: 500px;
  margin: 50px auto;
  padding: 25px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  font-family: Arial, sans-serif;
}

/* Title */
.review-section h4 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: #222;
}

/* Form layout */
#reviewForm {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Inputs */
.review-section input,
.review-section textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f7f7f7;
  font-size: 14px;
  transition: 0.3s;
}

.review-section input:focus,
.review-section textarea:focus {
  border-color: #028c7e;
  background: #fff;
  outline: none;
}

/* Textarea */
.review-section textarea {
  resize: none;
  height: 90px;
}

/* Button */
.review-section button {
  background: #028c7e;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.review-section button:hover {
  background: #026f63;
}

/* ===== STAR RATING ===== */
.star-rating {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 24px;
  cursor: pointer;
}

/* Default stars */
.star-rating span {
  color: #ccc;
  transition: 0.2s;
}

/* Hover effect */
.star-rating span:hover,
.star-rating span:hover ~ span {
  color: #ccc;
}

.star-rating span:hover {
  color: #ffc107;
}

/* Active selected stars */
.star-rating .active {
  color: #ffc107;
}

/* Smooth animation */
.star-rating span:hover {
  transform: scale(1.2);
}

/* ==== Star Rating ==== */
.star-rating {
  display: flex;
  gap: 8px;
  font-size: 28px;
  /* color: #ffbb00; */
  cursor: pointer;
  margin-bottom: 10px;
  user-select: none;
  transition: 0.3s ease;
}

.star-rating span {
  transition:
    transform 0.2s ease,
    color 0.3s ease;
}

.star-rating span:hover {
  transform: scale(1.2);
  color: #ffbb00;
}

.star-rating .selected,
.star-rating .hovered {
  color: #ffd700;
}

.hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new_icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.trust_bannerUpicon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    aspect-ratio: 20 / 9;
  }
}
@media (max-width: 480px) {
  .trust_bannerUpicon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .trust-banner {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .new_icons {
    margin-right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }

  .logo-icon{
    width: 50px;
    height: 50px;
  }
}

.review-section {
  max-width: 500px;
  margin: 50px auto;
  padding: 25px;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

.review-section h4 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--text-primary);
}

/* Inputs */
.review-section input,
.review-section textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--background-alt);
  color: var(--text-primary);
  font-size: 14px;
  transition: 0.3s;
}

.review-section input:focus,
.review-section textarea:focus {
  border-color: var(--primary);
  background: var(--background);
  outline: none;
}

/* Button */
.review-section button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.review-section button:hover {
  background: var(--primary-dark);
}

.dropdown__link {
  color: var(--color-gray-700);
}

.dropdown__link {
  color: var(--text-secondary);
}

.dropdown__link:hover {
  background: var(--background-alt);
  color: var(--text-primary);
}

.live-indicator {
  background: white;
}

.live-indicator {
  background: var(--card-bg);
}

#hero-suggestions li:hover {
  background-color: #f8f9ff;
  color: #111827;
}

#hero-suggestions li:hover {
  background-color: var(--background-alt);
  color: var(--text-primary);
}

.usa-flag{
  position: absolute;
  top: 5px;
  left: 5px;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  transform: rotate(-35deg);
}
