/* TOP HEADER Neon Purple */
#app-header,
#app-header .app-bar-main,
#app-header.MuiAppBar-root,
header.app-bar,
.app-bar.mobile-app-bar.sh-header-main {
    background: linear-gradient(90deg, #9c27ff, #6a00ff) !important;
    color: #ffffff !important;
    border: none !important;
}
/* Remove extra gap below image but KEEP the category title */
.cat-card-img-container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.cat-card-img-root {
    margin-bottom: 0 !important;
}

/* Make title closer to image */
.cat-card-title {
    margin-top: 6px !important;
    display: block !important; /* ensure title is visible */
}

/* Remove any background from toolbar inside header */
#app-header .MuiToolbar-root {
    background: transparent !important;
    color: #ffffff !important;
}

/* Remove spacing below header */
#app-header {
    margin-bottom: 0 !important;
}
#app-header + * {
    margin-top: 0 !important;
}

/* Remove the text and show your own */
.MuiTypography-root.MuiTypography-body1.shipping-options-mobile-time.mui-9l3uo3 {
    font-size: 0 !important; /* Hide original text */
}

.MuiTypography-root.MuiTypography-body1.shipping-options-mobile-time.mui-9l3uo3::after {
    content: "Delivery in 30 Minutes"; /* Your new text */
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #111827;
}
/* Replace "Tomorrow, 12:30 AM" with "30 Minutes Delivery" */
.MuiTypography-root.MuiTypography-body1.shipping-details-subheading.mui-9l3uo3 {
    font-size: 0 !important; /* hide original text */
}

.MuiTypography-root.MuiTypography-body1.shipping-details-subheading.mui-9l3uo3::after {
    content: "30 Minutes Delivery";
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #111827; /* dark black text */
}

/* ðŸ”¹ TODAY DEAL'S â€“ compact Zepto-style segment */
.prod-collection-container.sh-prod-grid-collection-card {
  padding: 6px 10px 10px;          /* smaller section height */
}

/* Heading spacing */
.prod-collection-container.sh-prod-grid-collection-card .section-heading-container {
  margin-bottom: 6px;
}

.prod-collection-container.sh-prod-grid-collection-card .section-heading {
  font-size: 16px;
  font-weight: 600;
}

.prod-collection-container.sh-prod-grid-collection-card .section-heading-viewall,
.prod-collection-container.sh-prod-grid-collection-card .view-all a {
  font-size: 12px;
}

/* Swiper area â€“ reduce height & make cards smaller */
.prod-collection-container.sh-prod-grid-collection-card .swiper {
  padding: 4px 0 !important;      /* less top/bottom space */
}

/* Card width (desktop: 3 per row; compact feel) */
.prod-collection-container.sh-prod-grid-collection-card .swiper-slide {
  width: calc(33.33% - 10px) !important;
  margin-right: 10px !important;
}

/* Card style â€“ like Zepto mini cards */
.prod-collection-container.sh-prod-grid-collection-card .sh-product-card {
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* Image smaller */
.prod-collection-container.sh-prod-grid-collection-card .sh-product-img {
  height: 120px;                  /* control height */
  border-radius: 8px;
  overflow: hidden;
}

.prod-collection-container.sh-prod-grid-collection-card .sh-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Discount badge smaller */
.prod-collection-container.sh-prod-grid-collection-card .sh-product-card-discount-tag {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 6px;
}

/* Text & price compact */
.prod-collection-container.sh-prod-grid-collection-card .pr-card-content {
  padding: 6px 0 0;
}

.prod-collection-container.sh-prod-grid-collection-card .pr-title {
  font-size: 12px;
  line-height: 1.3;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prod-collection-container.sh-prod-grid-collection-card .pr-sale-price {
  font-size: 14px;
  font-weight: 600;
}

.prod-collection-container.sh-prod-grid-collection-card .pr-mrp-price {
  font-size: 11px;
}

/* ADD button smaller */
.prod-collection-container.sh-prod-grid-collection-card .sh-product-plus-minus-button {
  font-size: 11px;
  padding: 4px 0;
  min-height: 26px;
  margin-top: 4px !important;
}

/* ðŸ”» Responsive like Zepto */
@media (max-width: 1024px) {
  .prod-collection-container.sh-prod-grid-collection-card .swiper-slide {
    width: calc(33.33% - 8px) !important;
  }
}

@media (max-width: 768px) {
  .prod-collection-container.sh-prod-grid-collection-card .swiper-slide {
    width: calc(50% - 8px) !important;   /* 2 per row on mobile */
  }
}

@media (max-width: 480px) {
  .prod-collection-container.sh-prod-grid-collection-card .swiper-slide {
    width: calc(50% - 6px) !important;   /* 2 compact columns */
    margin-right: 6px !important;
  }

  .prod-collection-container.sh-prod-grid-collection-card .sh-product-img {
    height: 100px;
  }
}

/* Desktop / Large screens: 4 grid columns */
.prod-collection-container.sh-prod-grid-collection-card .grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 10px !important;
}

/* Mobile view: horizontal scroll with 3-4 items visible */
@media (max-width: 600px) {
  .prod-collection-container.sh-prod-grid-collection-card .grid {
    display: flex !important;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  /* Each product smaller width */
  .prod-collection-container.sh-prod-grid-collection-card .grid .product-card {
    min-width: 28% !important; /* 3-4 visible */
    scroll-snap-align: start;
  }

  /* Hide scrollbar */
  .prod-collection-container.sh-prod-grid-collection-card .grid::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 480px) {
    .swiper-pagination-bullet {
        margin: 0 6px !important;
    }
}
.category-segment img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.section-heading-container.section-large-coll-heading.sh-section-heading {
    display: none !important;
}

.prod-collection-container.sh-prod-grid-collection-card {
    padding: 8px 6px !important;
    margin-bottom: 10px !important;
}
/* Outer scrolling container (same spacing & layout) */
.offer-strip {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 20px 12px;
    scrollbar-width: none;
}

.offer-strip::-webkit-scrollbar {
    display: none;
}

/* THE BOX â€“ 100% matched style */
.offer-box {
    width: 230px;
    min-width: 230px;
    background: linear-gradient(180deg, #371358 0%, #210838 100%);
    border-radius: 22px;
    padding: 20px 18px;
    border: 2px solid rgba(255, 153, 255, 0.35);
    box-shadow: 
        0 0 14px rgba(255, 0, 255, 0.35), 
        inset 0 0 10px rgba(255, 0, 255, 0.25);
    transition: 0.28s ease;
    color: #fff;
}

/* Hover effect â€“ same float effect */
.offer-box:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 22px rgba(255, 0, 255, 0.6),
        inset 0 0 12px rgba(255, 0, 255, 0.4);
}

/* Title text (same font size + style) */
.offer-box .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 4px;
}

/* Subtext (like & More, Up to â‚¹500 off) */
.offer-box .subtext {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 15px;
}

/* Image inside box (same rounded + shadow) */
.offer-box img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.22);
}
.header-tagline a {
    font-size: 20px;
    font-weight: 900;
    color: #c77dff;
    letter-spacing: 1px;
    text-decoration: none;

    /* neon glow */
    text-shadow: 
        0 0 6px rgba(199, 125, 255, 0.7),
        0 0 12px rgba(199, 125, 255, 0.5);
}
/* OFFER BOX UI STYLE */
.offer-box {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;

    /* Clean white background */
    background: #ffffff;

    /* Orange rounded border (Swiggy style) */
    border: 3px solid #ff6d00;
    border-radius: 16px;

    /* Padding around text */
    padding: 14px 20px;

    /* Center alignment */
    text-align: center;

    /* Soft shadow for premium UI */
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);

    /* Spacing */
    margin: 15px 0;
}

/* Fix for <h2> margins inside box */
.offer-box h2,
h2.offer-box {
    margin: 0 !important;
}
