/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Header */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px 40px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* UPDATED: logo container as flex */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;               /* image aur text ke beech ka space */
  font-size: 30px;
  font-weight: 900;
  color: #e91e63;
}

/* NEW: logo image */
.logo img {
  height: 85px;            /* zarurat ke hisaab se 36–48px */
  width: auto;
  display: block;
  object-fit: contain;
}

/* text colors */
.logo span { color: #e91e63; }
.logo span strong { color: #000; }  /* “Bazaar” ko black rakhna ho to */

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: .3s;
}
.navbar a:hover { color: #e91e63; }

.icons img {
  width: 25px;
  margin-left: 15px;
}

/* Optional: chhote screens par logo chhota */
@media (max-width: 600px) {
  .logo { font-size: 22px; }
  .logo img { height: 36px; }
}


/* Hero */
.hero {
  background: url("images/banner.jpg") no-repeat center center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.hero-text {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}
.hero p {
  font-size: 20px;
  margin-bottom: 20px;
}
.btn {
  background: #e91e63;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}
.btn:hover {
  background: #d81b60;
}

.top-offer-bar {
  font-family: 'Poppins', sans-serif;
}

/* Categories */
.categories {
  padding: 60px 40px;
  text-align: center;
}
.cat-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.cat-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.cat-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cat-card h3 {
  padding: 15px 0;
  font-weight: 600;
}
.cat-card:hover {
  transform: translateY(-5px);
}

/* Products */
.products {
  padding: 60px 40px;
  text-align: center;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.product-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  transition: 0.3s;
}
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 5px;
}
.product-card h3 {
  margin: 10px 0;
  font-size: 18px;
}
.product-card p {
  color: #e91e63;
  font-weight: 600;
}
.product-card button {
  margin-top: 10px;
  background: #e91e63;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}
.product-card button:hover {
  background: #d81b60;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
}
footer p {
  font-size: 14px;
}
.cat-container.vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.cat-container.vertical .cat-card {
  width: 80%;
  max-width: 400px;
  text-align: center;
}
.categories {
  padding: 50px 30px;
  background: #fafafa;
  text-align: center;
}

.categories h2 {
  font-size: 26px;
  color: #e91e63;
  margin-bottom: 28px;
  font-weight: 700;
}

.cat-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-items: center;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,.08);
  overflow: hidden;
  text-decoration: none;
  color: #333;
  width: 100%;
  max-width: 250px;
  transition: all 0.3s ease;
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
}

.cat-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #f8f8f8;
}

.cat-card h3 {
  margin: 12px 0 16px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
/* PROMO SLIDER (fixed height + auto-fade) */
.promo-slider{
  position:relative;
  width:100%;
  height:520px;          /* adjust (e.g., 480px/520px/560px) */
  overflow:hidden;
  background:#000;
}

/* slides */
.promo-slider .slide{
  position:absolute; inset:0;
  background-size:cover;             /* fills area; switch to 'contain' if you never want crop */
  background-position:center;
  opacity:0;
  animation:fadeSlide 15s infinite;
}
.promo-slider .slide:nth-child(1){ animation-delay:0s;  }
.promo-slider .slide:nth-child(2){ animation-delay:5s;  }
.promo-slider .slide:nth-child(3){ animation-delay:10s; }

/* each slide shows ~5s, then fades */
@keyframes fadeSlide{
  0%{opacity:0}
  5%{opacity:1}
  30%{opacity:1}
  35%{opacity:0}
  100%{opacity:0}
}

/* running sale strip */
.promo-overlay{
  position:absolute; left:0; right:0; bottom:0;
  background:rgba(255,255,255,.95);
  border-top:1px solid #eee;
  padding:10px 0;
  overflow:hidden;
}
.marquee{
  white-space:nowrap; display:inline-block;
  animation:marqueeMove 12s linear infinite;
}
.marquee span{
  display:inline-block;
  padding-left:100%;
  font-size:22px; font-weight:700; color:#111; letter-spacing:.5px;
}
@keyframes marqueeMove{
  from{ transform:translateX(0); }
  to{   transform:translateX(-100%); }
}

/* responsive height + smaller text on mobile */
@media (max-width: 768px){
  .promo-slider{ height:380px; }
  .marquee span{ font-size:16px; }
}
@media (max-width: 480px){
  .promo-slider{ height:300px; }
}
/* 🔥 Top blinking offer bar */
.top-offer-bar {
  width: 100%;
  background: #ff0066;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

/* ✨ Only text will blink, not the bar */
.top-offer-bar span {
  animation: blinkText 2s infinite;
}

.top-offer-bar a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
}
/* Blink effect with 10 sec gap */
@keyframes blinkText {
  0%, 90% { opacity: 1; }
  95% { opacity: 0.2; }
  100% { opacity: 1; }
}

/* Adjust header position below blinking bar */
header.navbar {
  margin-top: 40px; /* adjust as per bar height */
}
/* Horizontal Category Strip */
.cat-strip {
  position: sticky;
  top: 60px;
  z-index: 90;
  background: #fff;
  padding: 10px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
}

.cat-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 160px;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.cat-track::-webkit-scrollbar { display: none; }

.cat-item {
  scroll-snap-align: start;
  text-decoration: none;
  color: #222;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}
.cat-item img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  border-radius: 12px;
  background: #f7f7f7;
}
.cat-item span {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.cat-nav {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  font-size: 22px;
  cursor: pointer;
}
.cat-nav:disabled {
  opacity: .4;
  cursor: default;
}
/* ---------- MOBILE FIX PATCH (place at end of style.css) ---------- */

/* prevent sideways scroll everywhere */
html, body { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }

/* small phones */
@media (max-width: 480px) {
  /* top bar + header spacing */
  .top-offer-bar { font-size: 14px; padding: 6px 8px; }
  header.navbar { margin-top: 36px; }

  /* navbar compact */
  .navbar { padding: 10px 12px; }
  .logo { font-size: 20px; }
  .navbar ul { gap: 12px; }
  .navbar a { font-size: 14px; }

  /* hero not too tall */
  .hero { height: 42vh; min-height: 240px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 14px; }

  /* promo slider responsive height */
  .promo-slider { height: 46vw; min-height: 220px; }

  /* horizontal category strip: show ~1.5 cards */
  .cat-strip { grid-template-columns: 32px 1fr 32px; top: 56px; }
  .cat-track { grid-auto-columns: 68vw; gap: 10px; }
  .cat-item img { height: 96px; }

  /* categories grid → 2 columns, full-width cards */
  .categories { padding: 24px 12px; }
  .cat-container { grid-template-columns: repeat(2, 1fr); gap: 12px; justify-items: stretch; }
  .cat-card { max-width: none; border-radius: 12px; }
  /* square thumbs so heights equal */
  .cat-card img { aspect-ratio: 1 / 1; object-fit: cover; height: auto; }

  /* products grid → 2 columns equal heights */
  .products { padding: 24px 12px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card img { aspect-ratio: 1 / 1; object-fit: cover; height: auto; }
}

/* tablets */
@media (min-width: 481px) and (max-width: 768px) {
  .navbar { padding: 10px 20px; }
  .promo-slider { height: 380px; }
  .cat-container { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
/* ===== Top Utility Bar (black) ===== */
.utility-bar{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  border-bottom: 1px solid #6c4bd6; /* optional accent */
  font: 500 14px/1 "Poppins", sans-serif;
}

/* centered offer text */
.util-center{
  flex: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* right items (location / wishlist / bag) */
.util-right{
  display: flex;
  align-items: center;
  gap: 18px;
}
.utility-bar a{
  color: #fff;
  text-decoration: none;
  opacity: .9;
  transition: .25s;
}
.utility-bar a:hover{ opacity: 1; }
.utility-bar .i{ margin-right: 6px; }

/* header ko utility bar se niche push */
header.navbar{ margin-top: 40px; }

/* mobile tweaks: text compact, right side pe sirf icons */
@media (max-width: 768px){
  .util-center{ font-size: 13px; }
  .util-right a span:not(.i){ display: none; }
  header.navbar{ margin-top: 38px; }
}
/* Hide old user/cart icons on the right */
.icons { display: none; }

/* ===== Search strip under header ===== */
.search-strip{
  width: 100%;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid #eee;
  background: #fff;
}

/* big left search */
.search-form{
  display: grid;
  grid-template-columns: 1fr 54px;
  max-width: 800px;      /* search width */
  width: 100%;
}
.search-form input{
  height: 48px;
  border: 1px solid #ddd;
  border-right: 0;
  border-radius: 28px 0 0 28px;
  padding: 0 18px;
  font-size: 15px;
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.search-form input:focus{
  border-color: #e91e63;
  box-shadow: 0 0 0 3px rgba(233,30,99,.12);
}
.search-form button{
  height: 48px;
  border: 0;
  border-radius: 0 28px 28px 0;
  background: #111;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* right badges (with animated shine) */
.search-perks{
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.perk-badge{
  --bg: #111;              /* base color */
  --fg: #fff;              /* text color */
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
  background:
    linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,0) 30%, rgba(255,255,255,.12)),
    var(--bg);
  background-size: 200% 100%;
  animation: shine 2.6s linear infinite;
  border: 1px solid rgba(255,255,255,.25);
}
.perk-badge b{ letter-spacing: .2px; }

.perk-badge.alt{
  --bg: #e91e63;           /* pink variant */
}

/* subtle moving highlight */
@keyframes shine{
  0%   { background-position: -120% 0; }
  50%  { background-position: 0 0; }
  100% { background-position: 120% 0; }
}

/* Responsive */
@media (max-width: 900px){
  .search-strip{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .search-perks{
    justify-content: flex-start; /* keep to left under search */
    flex-wrap: wrap;
  }
}
/* === Full-badge bling (zoom + sweep shine) === */
.perk-badge.bling{
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
  animation: badgePulse 2.2s ease-in-out infinite;
}

/* moving light streak across the whole pill */
.perk-badge.bling::after{
  content:"";
  position:absolute;
  top:-160%; left:-60%;
  width:70%; height:420%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.18) 44%,
    rgba(255,255,255,.75) 50%,
    rgba(255,255,255,.18) 56%,
    transparent 100%
  );
  transform: rotate(18deg);
  animation: sweep 2.2s linear infinite;
  pointer-events: none;
}

/* gentle zoom + glow */
@keyframes badgePulse{
  0%,100%{
    transform: scale(1);
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
  }
  50%{
    transform: scale(1.045);
    box-shadow: 0 10px 22px rgba(0,0,0,.18);
  }
}

/* shiny streak travels left -> right */
@keyframes sweep{
  0%   { transform: translateX(-220%) rotate(18deg); }
  100% { transform: translateX(320%)  rotate(18deg); }
}

/* users who prefer reduced motion */
@media (prefers-reduced-motion: reduce){
  .perk-badge.bling{ animation: none; }
  .perk-badge.bling::after{ display:none; }
}
/* --- Navbar layout safety --- */
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;                 /* allow second row on small screens */
}

/* Logo one-line & smaller on mobile */
.logo{ display:flex; align-items:center; gap:10px; white-space:nowrap; }
.logo img{ height:60px; width:auto; }
.logo span{ font-size:28px; font-weight:900; line-height:1; }
@media (max-width:768px){
  .logo img{ height:42px; }
  .logo span{ font-size:22px; }
}

/* Nav list can wrap neatly & center on small screens */
.navbar nav{ flex:1 1 auto; }
.navbar ul{
  display:flex; flex-wrap:wrap; justify-content:center; align-items:center;
  gap:22px;
}
@media (max-width:768px){
  .navbar ul{ gap:14px; }
  .navbar a{ font-size:14px; }
}

/* ---- OFFERS chip (not inside nav) ---- */
.offer-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  font:700 16px/1 "Poppins", sans-serif;
  color:#111;
  text-decoration:none;
  background:#fff;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
  transition:transform .25s ease, box-shadow .25s ease;
}
.offer-chip:hover{ transform:scale(1.04); box-shadow:0 8px 16px rgba(0,0,0,.14); }
.offer-chip .g{ font-size:20px; }

/* Mobile: chip ko dusri row me center dikhao */
@media (max-width:768px){
  .offer-chip{
    order:3;               /* aati hai next row me */
    width:100%;
    justify-content:center;
    margin-top:6px;
    font-size:15px;
  }
}

/* Prevent weird wrapping of 'Anand Bazaar' */
.logo strong{ color:#000; }
/* ===== Mobile polish (<=480px) ===== */
@media (max-width: 480px){

  /* utility bar & header spacing */
  .utility-bar{ padding: 7px 10px; }
  header.navbar{ margin-top: 38px; padding: 10px 12px; }

  /* logo thoda compact */
  .logo{ font-size: 22px; gap: 8px; }
  .logo img{ height: 42px; }

  /* nav: thoda chhota & horizontally scrollable so overflow na ho */
  .navbar ul{
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
  }
  .navbar ul::-webkit-scrollbar{ display:none; }
  .navbar a{ font-size: 15px; }

  /* "OFFERS" chip center & proper shadow */
  .offer-chip{
    margin: 10px 16px 4px;
    padding: 12px 16px;
    border-radius: 28px;
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
  }

  /* search bar full-width & button neatly inside */
  .search-strip{
    grid-template-columns: 1fr;
    padding: 12px 12px;
    gap: 12px;
  }
  .search-form{
    grid-template-columns: 1fr 52px;
    max-width: 100%;
  }
  .search-form input{
    height: 46px;
    border-radius: 26px 0 0 26px;
    font-size: 14px;
  }
  .search-form button{
    height: 46px;
    border-radius: 0 26px 26px 0;
    font-size: 18px;
  }

  /* badges: stack + full width + center */
  .search-perks{
    flex-wrap: wrap;
    gap: 12px;
  }
  .perk-badge{
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    font-size: 13px;
  }

  /* category scroller: arrows chhote & inside, cards wider */
  .cat-strip{
    grid-template-columns: 32px 1fr 32px;   /* chhote arrows */
    padding: 6px 6px;
    top: 56px;                               /* utility bar ke hisaab se */
  }
  .cat-nav{
    width: 28px; height: 28px; font-size: 18px;
  }
  .cat-track{
    grid-auto-columns: 72vw;                 /* ~1.4 card visible */
    gap: 10px;
  }
  .cat-item img{ height: 96px; }

  /* promo slider height safe on phones */
  .promo-slider{ height: 46vw; min-height: 220px; }

  /* cards & products spacing */
  .categories{ padding: 22px 12px; }
  .cat-container{ grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-card{ border-radius: 12px; }
  .cat-card img{ aspect-ratio: 1/1; height: auto; object-fit: cover; }

  .products{ padding: 24px 12px; }
  .product-grid{ grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card img{ aspect-ratio: 1/1; height: auto; }

}
/* ===== Creator Reel Strip (full width, up to 5 cards) ===== */

.reel-strip {
  width: 100%;
  margin: 30px 0;
  padding: 0 40px;
  box-sizing: border-box;
}

.reel-heading {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 18px;
  text-align: center;
  color: #ff006e;
}

.reel-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reel-window {
  overflow: hidden;
  width: 100%;
}

.reel-track {
  display: flex;
  gap: 16px;                 /* GAP = 16 (JS me bhi ye hi) */
  transition: transform 0.4s ease;
}

/* card – desktop pe approx 5 cards fit honge */
.reel-card {
  flex: 0 0 220px;           /* base width */
  max-width: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.16);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Instagram-style reel */
.reel-video video {
  width: 100%;
  height: 340px;
  object-fit: cover;
  background: #000;
  display: block;
}

/* product area */
.reel-product {
  display: flex;
  padding: 12px;
  gap: 10px;
  align-items: center;
}

.reel-product img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
}

.reel-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.3;
}

.reel-price-row {
  font-size: 13px;
}

.reel-price {
  font-weight: 700;
  margin-right: 6px;
}

.reel-old-price {
  text-decoration: line-through;
  color: #999;
}

/* arrows */
.reel-nav {
  border: none;
  background: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* responsive tweaks */
@media (max-width: 1024px) {
  .reel-strip {
    padding: 0 20px;
  }
  .reel-card {
    flex: 0 0 200px;
    max-width: 200px;
  }
  .reel-video video {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .reel-strip {
    padding: 0 10px;
  }
  .reel-card {
    flex: 0 0 180px;
    max-width: 180px;
  }
  .reel-video video {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .reel-card {
    flex: 0 0 160px;
    max-width: 160px;
  }
  .reel-video video {
    height: 230px;
  }
}

/* ================= FEATURED PRODUCTS (NEW, ISOLATED) ================= */

.fp-section {
  width: 100%;
  padding: 40px 40px 10px;
  box-sizing: border-box;
}

.fp-title {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 24px;
  text-align: center;             /* agar center chahiye to center kar lena */
  color: #e91e63;         
}

/* Slider main wrapper */
.fp-slider {
  position: relative;
  display: flex;
  align-items: center;
}

/* Visible area */
.fp-window {
  overflow: hidden;
  width: 100%;
}

/* Horizontal track */
.fp-track {
  display: flex;
  gap: 24px;
}

/* Card */
.fp-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
  padding: 16px 16px 18px;
  min-width: 280px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
}

/* Badge – sirf discount, koi text cut nahi */
.fp-badge {
  position: absolute;
  top: 18px;
  left: 20px;
  background: #ff006e;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
}

/* Image box */
.fp-img-wrap {
  margin-top: 10px;
  border-radius: 14px;
  overflow: hidden;
  background: #f7f7f7;
  height: 260px;
}

.fp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text area */
.fp-body {
  padding-top: 12px;
}

.fp-brand {
  font-size: 13px;
  color: #777;
  margin: 0 0 4px;
}

.fp-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
}

/* Price row – saaf, kuch cut nahi hoga */
.fp-price-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}

.fp-mrp span {
  text-decoration: line-through;
  color: #999;
}

.fp-price {
  font-size: 17px;
  font-weight: 700;
  color: #ff006e;
}

.fp-off {
  color: #00b34a;
  font-weight: 600;
}

/* Arrows both sides */
.fp-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.fp-prev { left: 10px; }
.fp-next { right: 10px; }

.fp-nav:hover {
  background: #ff006e;
  color: #fff;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .fp-section {
    padding: 30px 16px 10px;
  }
  .fp-card {
    min-width: 240px;
    max-width: 240px;
  }
  .fp-img-wrap {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .fp-card {
    min-width: 210px;
    max-width: 210px;
  }
  .fp-img-wrap {
    height: 200px;
  }
}
/* ============ ANANDBAZAAR FOOTER ============ */

.ab-footer {
  background: #fafafa;
  padding: 40px 70px 30px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* TOP ROW ------------------------------------------------ */

.ab-footer-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 30px;
}

.ab-footer-left {
  flex: 1;
}

.ab-logo {
  width: 160px;
  margin-bottom: 18px;
}

.ab-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  max-width: 680px;
}

.ab-footer-right {
  flex: 1;
}

/* CTA Heading (icon + text) */

.ab-cta-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.ab-cta-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #ff0080;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
}

.ab-cta-title {
  font-size: 22px;
  font-weight: 700;
}

/* Input + button row */

.ab-cta-form {
  display: flex;
  gap: 12px;
}

.ab-cta-form input {
  flex: 1;
  padding: 13px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
}

.ab-cta-form button {
  padding: 13px 26px;
  border-radius: 4px;
  border: none;
  background: #ff0080;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

/* MIDDLE ROW ------------------------------------------------ */

.ab-footer-middle {
  display: flex;
  justify-content: space-between;
  padding: 22px 0 18px;
  border-bottom: 1px solid #ececec;
}

.ab-feature {
  flex: 1;
  text-align: center;
  padding: 0 10px;
}

.ab-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ff0080;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  margin: 0 auto 8px;
}

.ab-feature-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.ab-feature-sub {
  font-size: 14px;
  color: #444;
}

/* Social column special */

.ab-social-icons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.ab-social-icons img {
  width: 26px;
  cursor: pointer;
}

/* BOTTOM ROW ------------------------------------------------ */

.ab-footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
}

.ab-bottom-item {
  font-size: 14px;
  text-align: center;
  flex: 1;
}

.ab-highlight {
  color: #ff0080;
  font-weight: 700;
}

/* RESPONSIVE ------------------------------------------------ */

@media (max-width: 900px) {
  .ab-footer {
    padding: 30px 20px;
  }

  .ab-footer-main {
    flex-direction: column;
  }

  .ab-footer-middle,
  .ab-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
