@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* =========================================================
   1. ROOT VARIABLES & GLOBAL STYLES
========================================================= */
:root {
  --brand: #f58212;
  --brand-dark: #d96600;
  --ink: #241d17;
  --cream: #fff5e9;
  --line: #eadfd4;
  --muted: #766b62;
  --green: #1f9d55;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--ink);
  background: #fffdf9;
}

h1, h2, h3, h4, h5 {
  font-family: "Roboto", sans-serif;
}

/* =========================================================
   2. NAVBAR & HEADER
========================================================= */
.store-nav {
  background: rgba(255, 253, 249, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-logo {
  width: 118px;
  height: 80px;
  object-fit: contain;
  display: block;
}

.footer-logo {
  width: 110px;
  height: 72px;
  object-fit: contain;
}

.icon-btn {
  position: relative;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--ink);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}

.icon-btn:hover {
  background: var(--cream);
}

.badge-count {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--brand);
  color: #fff;
  border-radius: 20px;
  font-size: 0.65rem;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   3. HERO CAROUSEL
========================================================= */
.hero-shell {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 45px #241d1712;
}

.hero-img {
  height: 440px;
  width: 100%;
  object-fit: cover;
  background: #eee;
}

.hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8%;
  background: linear-gradient(90deg, #000b, transparent 75%);
  color: #fff;
}

.hero-caption h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  max-width: 700px;
}

.hero-caption p {
  font-size: 1.1rem;
  max-width: 540px;
}

.eyebrow {
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
}

/* =========================================================
   4. CATEGORY TABS
========================================================= */
.category-tab {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.category-tab.active,
.category-tab:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* =========================================================
   5. 2-CARD DELIVERY LOCATION & STATUS
========================================================= */
.delivery-location-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* CARD 1: LOCATION + STATUS */
.delivery-location-card {
  min-width: 220px;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 8px 14px;
  background: #ffffff;
  border: 1px solid #e7e1d8;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.delivery-location-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9800, #ffc107);
  color: #ffffff;
  font-size: 19px;
}

.delivery-location-info {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}

.delivery-location-info strong {
  font-size: 13px;
  font-weight: 800;
  color: #1a1a1a;
  white-space: nowrap;
}

.delivery-status-text {
  font-size: 11.5px;
  font-weight: 700;
  margin-top: 1px;
}

.delivery-status-text.delivery-available {
  color: #149447;
}

.delivery-status-text.delivery-unavailable {
  color: #dc3545;
}

/* CARD 2: CHANGE PINCODE CARD */
.change-pincode-card {
  min-width: 145px;
  min-height: 64px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid #ff9800;
  border-radius: 12px;
  background: #ffffff;
  color: #e67e00;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 3px 12px rgba(255, 152, 0, 0.08);
}

.change-pincode-card:hover {
  background: #ff9800;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 152, 0, 0.25);
}

.change-pincode-card i {
  font-size: 15px;
}

/* =========================================================
   6. PRODUCT CARD & IMAGES
========================================================= */
.product-card-container {
  position: relative;
}

.product-card-container.dropdown-open {
  z-index: 1050 !important;
}

.product-card {
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 18px;
  overflow: visible !important;
  height: 100%;
  transition: 0.2s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px #241d1710;
}

.product-image-wrap {
  height: 250px;
  position: relative;
  background: var(--cream);
  border-radius: 17px 17px 0 0;
  overflow: hidden;
}

.product-carousel,
.product-carousel .carousel-inner,
.product-carousel .carousel-item {
  height: 100%;
}

.product-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wishlist-btn {
  position: absolute;
  z-index: 5;
  left: 10px;
  top: 10px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: #ffffff;
  box-shadow: 0 5px 15px #0002;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wish-active {
  color: #e04444;
}

.product-info-btn {
  position: absolute;
  z-index: 5;
  right: 10px;
  bottom: 10px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9800, #ffc107);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.45), 0 0 12px rgba(255, 193, 7, 0.35);
  transition: all 0.25s ease;
}

.product-info-btn:hover {
  background: linear-gradient(135deg, #ff7a00, #ffd000);
  transform: scale(1.12);
  box-shadow: 0 8px 22px rgba(255, 152, 0, 0.65), 0 0 18px rgba(255, 193, 7, 0.5);
}

.product-body {
  padding: 1rem;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

/* =========================================================
   7. CUSTOM VARIATION DROPDOWN
========================================================= */
.custom-variation-dropdown {
  width: 100%;
  position: relative;
}

.variation-toggle-btn {
  width: 100%;
  min-height: 40px;
  padding: 7px 12px;
  background: #ffffff;
  border: 1.5px solid #ff9800;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  color: #212529;
  box-shadow: 0 2px 6px rgba(255, 152, 0, 0.1);
  transition: all 0.2s ease;
  text-align: left;
}

.variation-toggle-btn:hover,
.variation-toggle-btn.active {
  border-color: #f57c00;
  background: #fff8ed;
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.22);
}

.variation-arrow {
  color: #ff9800;
  font-size: 12px;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.variation-toggle-btn.active .variation-arrow {
  transform: rotate(180deg);
}

.variation-menu {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  width: 100%;
  max-height: 190px !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  border: 2px solid #ff9800;
  border-radius: 10px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25) !important;
  z-index: 1060 !important;
}

.variation-menu::-webkit-scrollbar {
  width: 5px;
}
.variation-menu::-webkit-scrollbar-thumb {
  background: #ff9800;
  border-radius: 10px;
}

.variation-menu.show {
  display: block;
  animation: dropFadeIn 0.15s ease-out;
}

@keyframes dropFadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.variation-menu-item {
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #212529;
  background: #ffffff;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.15s ease;
}

.variation-menu-item:last-child {
  border-bottom: none;
}

.variation-menu-item .var-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 8px;
}

.variation-menu-item .var-price {
  color: #e65100;
  font-weight: 700;
  white-space: nowrap;
}

.variation-menu-item:hover {
  background: #fff3e0;
  color: #e65100;
}

.variation-menu-item.active {
  background: linear-gradient(135deg, #ff9800, #ffb300);
  color: #ffffff !important;
  font-weight: 700;
}

.variation-menu-item.active .var-price {
  color: #ffffff !important;
}

/* =========================================================
   8. COMPACT PRODUCT CART ACTIONS (Add to Cart -> - 1 + 🗑)
========================================================= */
.cart-action {
  margin-top: 8px;
  width: 100%;
}

.product-cart-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* Compact Add to Cart Button */
.add-cart-btn,
.product-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto !important;
  min-width: 115px;
  height: 36px;
  padding: 0 14px !important;
  border: 0;
  border-radius: 8px;
  background: #ff8500;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.add-cart-btn:hover:not(:disabled),
.product-add-btn:hover:not(:disabled) {
  background: #e87500;
  transform: translateY(-1px);
}

.add-cart-btn i,
.product-add-btn i {
  font-size: 14px;
}

.add-cart-btn.disabled,
.add-cart-btn:disabled,
.product-add-btn:disabled {
  background: #bdbdbd;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Compact − 1 + Quantity Control */
.quantity-control,
.product-qty-control {
  display: inline-flex;
  align-items: center;
  height: 36px;
  border: 1.5px solid #ff9800;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.quantity-btn,
.product-qty-btn {
  width: 34px;
  height: 36px;
  border: 0;
  background: #ff9800;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.quantity-btn:hover,
.product-qty-btn:hover {
  background: #e87500;
}

.quantity-value,
.product-qty-value {
  min-width: 38px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #222222;
  font-size: 13.5px;
  font-weight: 700;
}

/* Clean Delete Trash Button Beside Quantity */
.product-delete-btn {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #ffffff;
  color: #777777;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-delete-btn:hover {
  border-color: #dc3545;
  color: #dc3545;
  background: #fff5f5;
}

/* =========================================================
   9. CART POPUP MODAL & CLEAN (X) CLOSE BUTTON
========================================================= */
.cart-modal-content {
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.cart-modal-header {
  padding: 18px 24px;
  background: linear-gradient(135deg, #fff8ed, #ffffff);
  border-bottom: 1px solid #eeeeee;
}

.cart-modal-header h4 {
  margin: 0;
}

/* CLEAN STANDARD (X) CLOSE BUTTON - NO ORANGE BACKGROUND */
.cart-modal-close-btn {
  width: 32px !important;
  height: 32px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background-color: transparent !important;
  background-image: var(--bs-btn-close-bg) !important;
  opacity: 0.65 !important;
  box-shadow: none !important;
  filter: none !important;
  transition: all 0.2s ease !important;
}

.cart-modal-close-btn:hover {
  opacity: 1 !important;
  background-color: #f0f0f0 !important;
  transform: none !important;
}

.cart-modal-close-btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

.cart-modal-items {
  max-height: 55vh;
  overflow-y: auto;
}

.cart-modal-items .cart-item {
  min-height: 82px;
  padding: 12px 4px;
  border-bottom: 1px solid #eeeeee;
}

.cart-modal-items .cart-item:last-child {
  border-bottom: 0;
}

.cart-modal-qty-control {
  display: inline-flex;
  align-items: center;
  height: 32px;
  border: 1px solid #ff9800;
  border-radius: 7px;
  overflow: hidden;
  background: #ffffff;
}

.modal-qty-btn {
  width: 30px;
  height: 30px;
  border: 0;
  background: #ffffff;
  color: #333333;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.modal-qty-btn:hover {
  background: #fff3e0;
}

.modal-qty-val {
  min-width: 32px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
  background: #ffffff;
  color: #222222;
  font-size: 13px;
  font-weight: 700;
}

/* CLEAN RED TRASH BUTTON (NO ORANGE BACKGROUND) */
.cart-delete-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.cart-delete-btn:hover {
  color: #b02a37;
  background: #ffebee;
}

.cart-modal-total {
  font-size: 22px;
  font-weight: 800;
  color: #ff9800;
}

.cart-modal-footer {
  padding: 18px 24px;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
}

/* =========================================================
   10. BUTTONS & GENERAL UTILITIES
========================================================= */
.card-soft {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 30px #241d1708;
}

.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
}

.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #ffffff;
}

.btn-whatsapp {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
}

.btn-whatsapp:hover {
  background: #188747;
  color: #ffffff;
}

.text-brand {
  color: var(--brand);
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--cream);
}

.policy-page {
  line-height: 1.8;
}

.policy-page h5 {
  margin-top: 1.5rem;
}

/* Bright Continue Shopping Button */
.continue-shopping-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 10px;
  border: 0;
  background: linear-gradient(135deg, #ff9800, #ffc107);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 152, 0, 0.3);
  transition: all 0.2s ease;
}

.continue-shopping-btn:hover {
  color: #ffffff !important;
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ff7a00, #ffd000);
  box-shadow: 0 6px 18px rgba(255, 152, 0, 0.45);
}

/* =========================================================
   11. CUSTOM COUPON DROPDOWN
========================================================= */
.coupon-dropdown {
  position: relative;
  width: 100%;
}

.coupon-dropdown-btn {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  background: #ffffff;
  border: 1.5px solid #dee2e6;
  border-radius: 8px;
  color: #212529;
  font-size: 13.5px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.coupon-dropdown-btn:hover,
.coupon-dropdown.open .coupon-dropdown-btn {
  border-color: #ff9800;
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.15);
}

.coupon-dropdown-btn i {
  color: #ff9800;
  transition: transform 0.2s ease;
}

.coupon-dropdown.open .coupon-dropdown-btn i {
  transform: rotate(180deg);
}

.coupon-dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 5px);
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  border: 1.5px solid #ff9800;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  z-index: 100;
}

.coupon-dropdown-menu::-webkit-scrollbar {
  width: 5px;
}
.coupon-dropdown-menu::-webkit-scrollbar-thumb {
  background: #ff9800;
  border-radius: 10px;
}

.coupon-dropdown.open .coupon-dropdown-menu {
  display: block;
  animation: dropFadeIn 0.15s ease-out;
}

.coupon-option {
  width: 100%;
  padding: 10px 12px;
  background: #ffffff;
  border: 0;
  border-bottom: 1px solid #f2f2f2;
  text-align: left;
  font-size: 13px;
  line-height: 1.35;
  cursor: pointer;
  transition: all 0.15s ease;
}

.coupon-option:last-child {
  border-bottom: none;
}

.coupon-option:hover {
  background: #fff3df;
  color: #d84315;
}

.coupon-option.selected {
  background: #fff0d5;
  color: #e66f00;
  font-weight: 700;
}

.coupon-option-title {
  font-weight: 700;
  color: #212529;
}

.coupon-option.selected .coupon-option-title {
  color: #e66f00;
}

.coupon-option-info {
  display: block;
  margin-top: 2px;
  color: #666666;
  font-size: 11.5px;
}

/* =========================================================
   12. ADMIN PANEL STYLES
========================================================= */
.admin-body {
  background: #f6f7f9;
}

.admin-sidebar {
  width: 250px;
  min-height: 100vh;
  background: #241d17;
  color: #ffffff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1040;
}

.admin-main {
  margin-left: 250px;
  min-height: 100vh;
}

.admin-sidebar a {
  color: #dddddd;
  text-decoration: none;
  display: block;
  padding: 0.75rem 1.25rem;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
  background: #382e27;
  color: #ffffff;
}

.admin-content {
  padding: 1.5rem;
}

.admin-top {
  height: 72px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 1.25rem;
}

.thumb-sm {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
}

.image-preview {
  position: relative;
  width: 86px;
  height: 86px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dddddd;
}

.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-preview .remove-image {
  position: absolute;
  right: 3px;
  top: 3px;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #cc0000;
  line-height: 1;
}

.table td,
.table th {
  vertical-align: middle;
}

/* =========================================================
   13. MOBILE & RESPONSIVE MEDIA QUERIES
========================================================= */
@media (max-width: 991px) {
  .admin-sidebar {
    transform: translateX(-100%);
    transition: 0.2s;
  }
  .admin-sidebar.show {
    transform: translateX(0);
  }
  .admin-main {
    margin-left: 0;
  }
  .hero-img {
    height: 340px;
  }
  .site-logo {
    width: 105px;
    height: 70px;
  }
}

@media (max-width: 576px) {
  .delivery-location-wrap {
    width: 100%;
    gap: 8px;
  }

  .delivery-location-card {
    flex: 1;
    min-width: 0;
    min-height: 56px;
    padding: 6px 10px;
  }

  .delivery-location-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .delivery-location-info strong {
    font-size: 12px;
  }

  .delivery-status-text {
    font-size: 10.5px;
  }

  .change-pincode-card {
    flex: 0 0 auto;
    min-width: 115px;
    min-height: 56px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .product-info-btn {
    width: 42px;
    height: 42px;
    right: 8px;
    bottom: 8px;
    font-size: 18px;
  }

  .variation-toggle-btn {
    min-height: 36px;
    font-size: 12px;
    padding: 5px 8px;
  }

  .variation-menu-item {
    padding: 9px 10px;
    font-size: 12px;
  }

  .cart-modal-content {
    margin: 10px;
    border-radius: 18px;
  }

  .cart-modal-header {
    padding: 16px;
  }

  .cart-modal-items {
    max-height: 60vh;
  }

  .cart-modal-footer {
    padding: 14px;
  }

  .cart-modal-items .cart-item {
    min-height: 75px;
  }

  .cart-modal-items .cart-item img {
    width: 48px !important;
    height: 48px !important;
  }

  .modal-qty-btn {
    width: 29px;
    height: 30px;
  }

  .modal-qty-val {
    width: 28px;
  }

  .cart-modal-footer .btn {
    min-height: 44px;
    font-size: 13px;
  }

  .continue-shopping-btn {
    padding: 7px 12px;
    font-size: 12px;
  }

  .coupon-dropdown-btn {
    min-height: 40px;
    font-size: 12.5px;
    padding: 7px 10px;
  }

  .coupon-option {
    padding: 8px 10px;
    font-size: 12px;
  }

  .coupon-option-info {
    font-size: 11px;
  }
}
/* =========================================================
   MOBILE - ONE PRODUCT PER ROW
========================================================= */

@media (max-width: 767.98px) {

    #productsSection .row {
        margin-left: 0;
        margin-right: 0;
    }

    #productGrid > * {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    #productGrid {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    /* Product card full mobile width */
    #productGrid .product-card {
        width: 100%;
        max-width: 100%;
    }
}