@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');
@import url('https://fonts.googleapis.com/css2?family=MuseoModerno:ital,wght@0,100..900;1,100..900&display=swap');

*{
  margin: 0;
  padding: 0;
}

body{
  font-family: "Poppins", sans-serif;
  /* background-color: #fdf7e8; */
  background-color: #fff;
  color: #111;
  overflow-x: hidden;
}

body a{
  text-decoration: none;
}


/* Navbar start */


.navbar {
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
}

/* --- TOP BAR --- */
.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 3%;
  flex-wrap: wrap;
  position: relative;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: "MuseoModerno", sans-serif;
}

.logo a{
  color: #000;
}

.logo .yellow { color: #f5c518; }

.search-bar {
  flex: 1;
  display: flex;
  align-items: center;
  border: 1.5px solid #f5c518;
  border-radius: 6px;
  display: none;
  margin: 0 20px;
  padding: 6px 10px;
  max-width: 700px;
}
.search-bar i {
  margin-right: 10px;
  color: #555;
}
.search-bar input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.install-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
}

.install-btn img {
  width: 18px;
  height: 18px;
}

.country-select {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.country-select img {
  width: 20px;
  border-radius: 2px;
}

.login-btn, .join-btn {
  padding: 5px 16px;
  font-size: 14px !important;
  border-radius: 6px;
  /* border: 1px solid #ddd; */
  font-weight: 400;
}
.login-btn {
  background: #f8f8f8;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.login-btn:hover{
  background: #f5c518;
  border: none;
}
.join-btn {
  background: #ffcc00;
  border: none;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.join-btn:hover{
  background: #fff01f;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

/* --- CATEGORY BAR --- */
.nav-bottom {
  background: #fff;
  border-top: 1px solid #eee;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
  max-height: none;
  opacity: 1;
}

.nav-bottom ul {
  display: flex;
  align-items: center;
  list-style: none;
  overflow-x: auto;
  padding: 10px 3%;
  gap: 30px;
  white-space: nowrap;
}

.nav-bottom ul li {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-bottom ul a{
  color: #000;
  position: relative;
  display: inline-block;
  overflow: hidden; /* keep the pseudo-element inside */
}

.nav-bottom ul a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  border-radius: 2px;
  width: 0;               /* start collapsed */
  background: #f5c518;
  transition: width 300ms ease;
}

.nav-bottom ul a:hover::after{
  width: 100%;
}


.hot {
  background: #ff4d4f;
  color: #fff;
  font-size: 11px;
  border-radius: 8px;
  padding: 1px 5px;
}

.refer-btn {
  background: #e6f3ff;
  color: #00a8ff;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  cursor: pointer;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .search-bar {
    display: none; /* Hides search bar on mobile */
  }
}

@media (max-width: 768px) {
  .nav-actions {
    display: none; /* Hide right buttons on mobile */
  }

  .menu-toggle {
    display: block; /* Show hamburger on mobile */
  }

  .nav-bottom {
    max-height: 0;
    opacity: 0;
  }

  .nav-bottom.active {
    max-height: 500px; /* opens smoothly */
    opacity: 1;
  }

  .nav-bottom ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 5%;
  }
}



/* Navbar ends */


.slider {
  position: relative;
  /* height: 480px; */
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
}

.slides {
  display: flex;
  transition: transform 0.8s ease-in-out;
  width: 100%;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Buttons */
.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.75);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  font-weight: bold;
  color: #222;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-50%) scale(1.1);
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background: #fff;
  width: 22px;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .slider {
    height: 300px;
  }

  .btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}


.top-stores {
  padding-top: 60px;
  padding-bottom: 30px;
  padding-right: 6%;
  padding-left: 6%;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #111;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.store-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 20px;
  height: auto;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease;
}

.store-card:hover {
  transform: translateY(-5px);
  border: 1px solid #f5c518;
}

.store-logo {
  width: 80px;
  height: auto;
  margin-bottom: 5px;
}

.ajio{
  width: 50px;
}

.croma{
  width: 60px;
}

.titan{
  /* width: 60px; */
}

.store-rate {
  font-size: 15px;
  margin-bottom: 3px;
  color: #222;
}

.store-rate .old {
  text-decoration: line-through;
  color: #999;
  margin-right: 4px;
}

.store-rate .new {
  color: #e63946;
  font-weight: 600;
}

.puma{
  height: 25px;
  width: 50px;
}

.category {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.badge.red {
  background: #e63946;
}

.badge.yellow {
  background: #f5c518;
  color: #000;
}

.popular {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #e63946;
  font-weight: 600;
}


.store-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}



.deals_section_category{
  padding: 30px 6% !important;
}


.deals-section {
  padding: 60px 6%;
}

.deals-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.deals-header h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #111;
}

.deals-header a {
  text-decoration: none;
  color: #f5c518;
  font-weight: 600;
  transition: color 0.3s ease;
}

/* .deals-header a:hover {
  color: #ff6b00;
} */

.deals-container {
  position: relative;
}

.deals-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 50px;
  padding-bottom: 10px;
}

.deals-slider::-webkit-scrollbar {
  display: none;
}

.deal-card {
  flex: 0 0 300px;
  background: #fff;
  width: 350px;
  height: 350px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.142);
  overflow: hidden;
  transition: all 0.3s ease;
}

.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.deal-image {
  position: relative;
  background: #fff;
}

.deal-image img {
  width: 100px;
  height: 50px;
  object-fit: cover;
}

.empty{
  width: 350px;
  height: 150px;
  background: linear-gradient(to left, #f5c518, #fff01f);
}

.brand-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  color: #1f3a56;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-badge img {
  height: 20px;
}

.deal-content {
  padding: 40px 20px 25px;
  text-align: left;
}

.deal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e2d3d;
  margin: 0 0 10px;
}

.deal-content p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin: 0 0 15px;
}

.deal-content .highlight {
  color: #000;
  font-weight: 600;
  font-size: 1rem;
}

.deal-content .highlight span{
  color: #f5c518;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  font-size: 1.4rem;
  color: #1f3a56;
  transition: all 0.3s ease;
  z-index: 10;
}

.nav-btn:hover {
  background: #f5c518;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: -20px;
}

.next-btn {
  right: -20px;
}

/* Responsive */
@media (max-width: 768px) {
  .deal-card {
    flex: 0 0 260px;
  }

  .deals-header h2 {
    font-size: 1.4rem;
  }

  .brand-badge {
    font-size: 0.85rem;
    padding: 8px 15px;
  }

  .nav-btn {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .deals-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .deals-slider {
    gap: 12px;
  }
}





 /* ===== Category Section ===== */
 .category-showcase-section {
  width: 95%;
  max-width: 1300px;
  margin: 30px auto;
  text-align: center;
}

.category-showcase-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 30px;
}

/* ===== Category Grid ===== */
.category-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 35px 25px;
  justify-content: center;
}

/* ===== Each Category Card ===== */
.category-showcase-item {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-showcase-item:hover {
  transform: translateY(-5px);
}

.category-showcase-image {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #f8f8f8;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-showcase-item:hover .category-showcase-image {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.category-showcase-title {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .category-showcase-image {
    width: 95px;
    height: 95px;
  }
  .category-showcase-title {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .category-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
  }
  .category-showcase-image {
    width: 85px;
    height: 85px;
  }
  .category-showcase-title {
    font-size: 0.85rem;
  }
}










/* Footer Starts */

footer {
  background: #111;
  color: #ccc;
  font-family: "Inter", sans-serif;
  padding: 50px 5% 30px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f5c518;
}

.flag {
  display: inline-block;
  width: 18px;
  height: 12px;
  background: linear-gradient(to right, #0057b7 50%, #ffce00 50%);
  border-radius: 2px;
  vertical-align: middle;
}

.footer-separator {
  border: none;
  border-top: 1px dashed #f5c518;
  margin: 30px 0;
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 20px;
}

.social-review {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #ccc;
}

.facebook-icon {
  width: 32px;
  height: 32px;
}

.trustpilot {
  color: #00b67a;
  font-weight: 600;
}

.payment-icons img {
  height: 28px;
  margin: 0 10px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.app-buttons a img {
  height: 45px;
  margin-left: 10px;
}

.app-buttons p{
  font-size: 13px;
  margin-bottom: 10px;
  color: #939393;
}

.footer-bottom {
  text-align: left;
  color: #aaa;
  font-size: 13px;
  border-top: 1px dashed #333;
  padding-top: 25px;
}

.footer-bottom p {
  margin-bottom: 10px;
}

.legal-links {
  margin-top: 10px;
}

.legal-links a {
  color: #ccc;
  text-decoration: none;
  margin-right: 20px;
  font-size: 13px;
}

.legal-links a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .footer-links {
    flex-direction: column;
    gap: 25px;
  }

  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-buttons a img {
    height: 40px;
  }
}







.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 8%;
  flex-wrap: wrap;
  gap: 60px;
  position: relative;
}

.hero-content {
  flex: 1;
  min-width: 320px;
  z-index: 2;
  animation: fadeInUp 1s ease forwards;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
  width: 600px;
}

.hero h1 span {
  background: linear-gradient(135deg, #f5c518, #fff01f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.15rem;
  color: #555;
  margin-top: 18px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #f5c518, #fff01f);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #f5c518;
  color: #f5c518;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #f5c518;
  color: #fff;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.hero-image img{
  width: 600px;
  height: 400px;
  border-radius: 20px;
}

.floating-logos img {
  position: absolute;
  width: 70px;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.1));
}

.floating-logos img:nth-child(1) { top: 10%; left: 15%; animation-delay: 1s; }
.floating-logos img:nth-child(2) { top: 20%; left: 70%; animation-delay: 2s; }
.floating-logos img:nth-child(3) { top: 55%; left: 20%; animation-delay: 3s; }
.floating-logos img:nth-child(4) { top: 65%; left: 65%; animation-delay: 4s; }
.floating-logos img:nth-child(5) { top: 35%; left: 40%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

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

/* Background gradient circle for depth */
.bg-circle {
  position: absolute;
  right: -50px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at center, #fff01f49, transparent 70%);
  z-index: 0;
}


/* Responsive Design */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 6%;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    margin: 15px auto;
    max-width: 90%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    margin-top: 40px;
    min-height: 300px;
  }

  .floating-logos img {
    width: 55px;
  }
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 2rem;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
}