/* 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 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;
}

/* ======= MaaFlash Grid (Desktop 6 / Mobile 4) ======= */

/* Force grid layout inside Shoopy’s wrapper */
.cat-section .grid,
.cat-section .sh-grid,
.cat-section .sh-banner-collection-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 0 !important;
  border-left: 1px solid rgba(130, 12, 240, 0.914);
  border-top: 1px solid rgba(131, 16, 238, 0.949);
  box-sizing: border-box;
}

/* Each card (restaurant item) */
.cat-section .cat-card,
.sh-banner-collection-card {
  border-right: 1px solid rgba(125, 26, 219, 0.903);
  border-bottom: 1px solid rgba(123, 28, 213, 0.951);
  background: #ffffff;
  transition: all 0.3s ease;
  text-align: center;
  padding: 6px;
  box-sizing: border-box;
}

/* Hover animation */
.cat-section .cat-card:hover,
.sh-banner-collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(155, 48, 255, 0.25);
}

/* Logo / Image styling */
.cat-section .cat-card img,
.sh-banner-collection-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.cat-section .cat-card:hover img,
.sh-banner-collection-card:hover img {
  transform: scale(1.05);
}

/* Text styling */
.cat-section .cat-card h3,
.sh-banner-collection-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: #6a0dad;
  margin: 8px 0;
  text-transform: capitalize;
}

/* ✅ Mobile: 4 per row */
@media (max-width: 768px) {
  .cat-section .grid,
  .cat-section .sh-grid,
  .cat-section .sh-banner-collection-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .cat-section .cat-card,
  .sh-banner-collection-card {
    padding: 4px;
  }

  .cat-section .cat-card img,
  .sh-banner-collection-card img {
    border-radius: 8px;
  }

  .cat-section .cat-card h3,
  .sh-banner-collection-card h3 {
    font-size: 12px;
  }
}

.sh-header-main {
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3) !important;
}

.sh-categories-container>div>h2 {
  display: none !important;
}

.sh-categories-container>div>hr {
  display: none !important;
}

.sh-banner-collection-card>a>div>div>p {
  display: none;
}

.sh-banner-collection-card>a>div>div>p>svg {
  display: none;
}

.sh-product-card:hover {
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.sh-product-card-discount-tag {
  font-weight: 400 !important;
  border-radius: 0px !important;
}

.sh-product-discount-tag {
  font-weight: 400 !important;
  border-radius: 0px !important;
}

.sh-try {
  display: none;
}

/* 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 */
}
