/** Shopify CDN: Minification failed

Line 425:0 Unexpected "}"

**/
/* =========================
   L2 CATEGORY GRID – PREMIUM
========================= */
/* COLLECTION PAGES ONLY */
.l2-category-carousel {
  padding: 80px 0 40px;
  background: #ffffff;
}

.l2-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}

/* CARD */
.l2-category-card {
  position: relative;
  background: #f3f9fb;
  border-radius: 22px;
  padding: 28px 20px 24px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
/* =========================
   PRODUCT CARD – HARD RESET
========================= */

/* Hover = confident lift */
.l2-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* IMAGE HOLDER */
.l2-image-wrap {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.l2-image-wrap img {
  max-height: 120px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.l2-category-card:hover img {
  transform: scale(1.06);
}

/* LABEL */
.l2-category-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  position: relative;
  padding-bottom: 8px;
}

/* subtle underline */
.l2-category-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-yellow);
  transform: translateX(-50%);
  opacity: 0.8;
}

/* EV BADGE */
.l2-ev-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #0bb0d3;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
}
@media (max-width: 1024px) {
  .l2-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================
   L2 CATEGORY GRID
========================= */

.l2-category-grid {
  padding: 64px 0 48px;
  background: #ffffff;
}

.l2-grid-heading {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 32px;
}

/* Grid */
.l2-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}


/* Card */
.l2-card {
  background: #f4f9fb;
  border-radius: 20px;
  padding: 28px 20px 22px;
  text-align: center;
  text-decoration: none;
  color: var(--primary-blue);
  transition: all 0.25s ease;
}

/* Icon */
.l2-icon {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l2-icon img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Label */
.l2-card span {
  display: block;
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
}

/* Hover */
.l2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  background: #ffffff;
}
/* =========================
   L2 CATEGORY SECTION
========================= */

.l2-category-section {
  padding: 64px 0;
  background: #ffffff;
}

/* Header */
.l2-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.l2-carousel-header h2 {
  font-size: 32px;
  color: var(--primary-blue);
}

.view-all {
  font-weight: 600;
  color: var(--accent-blue);
  text-decoration: none;
}

/* Carousel */
.l2-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.l2-carousel::-webkit-scrollbar {
  display: none;
}

/* Product card */
/* ================================
   L2 CATEGORY STRIP
================================ */

.l2-category-strip {
  padding: 48px 0 32px;
  background: #ffffff;
}

.l2-strip-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 24px;
}

/* Scroll container */
.l2-strip-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar (optional but premium) */
.l2-strip-scroll::-webkit-scrollbar {
  height: 6px;
}
.l2-strip-scroll::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
  border-radius: 4px;
}

/* Track */
.l2-strip-track {
  display: flex;
  gap: 28px;
  padding-bottom: 12px;
  min-width: max-content; /* 🔑 forces single row */
}

/* Card */
.l2-strip-card {
  flex: 0 0 auto;
  width: 160px;
  text-align: center;
  text-decoration: none;
  color: var(--primary-blue);
  transition: transform 0.25s ease;
}

.l2-strip-card:hover {
  transform: translateY(-4px);
}

/* Icon container */
.l2-strip-icon {
  width: 160px;
  height: 160px;
  border-radius: 20px;
  background: #f3f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.l2-strip-card:hover .l2-strip-icon {
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* Icon image */
.l2-strip-icon img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  display: block;
}

/* Title */
.l2-strip-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}
/* ===== L2 CAROUSEL ===== */

.l2-carousel-wrapper {
  position: relative;
}

.l2-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 4px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.l2-carousel-track::-webkit-scrollbar {
  display: none;
}

/* ARROWS */
.carousel-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #dbe7ef;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  cursor: pointer;
  z-index: 5;
}

.carousel-arrow.prev { left: -12px; }
.carousel-arrow.next { right: -12px; }


/* =========================
   L2 COLLECTION – PRODUCT GRID
========================= */

.l2-product-grid {
  display: grid;
  gap: 32px;
  margin-top: 32px;
}

/* Desktop → 6 products */
@media (min-width: 1025px) {
  .l2-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet → 4 products */
@media (max-width: 1024px) and (min-width: 769px) {
  .l2-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Product card polish */
.l2-product-grid {
  background: #ffffff;
  border-radius: 14px;
  padding: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.l2-product-grid {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.l2-product-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: 10px;
}

.l2-product-grid h4 {
  font-size: 14px;
  font-weight: 600;
  color: #163a6b;
  text-align: center;
}

/* =========================
   PRODUCT CARD – FINAL
========================= */


/* IMAGE */
.product-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f6f8fa;
}

.product-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
}

/* DISCOUNT BADGE */
.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ef4444;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
}

/* INFO */
.product-info {
  padding: 12px 4px 0;
  flex-grow: 1;
}
.l2-collection-title {
  font-size: 32px;
  color: var(--primary-blue);
}

}
.product-title {
  font-size: 14px;
  font-weight: 600;
  color: #163a6b;
  line-height: 1.3;
  margin-bottom: 4px;
}

.product-sku {
  font-size: 11px;
  color: #64748b;
  margin-bottom: 6px;
}

/* INVENTORY */
.inventory {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}

.inventory.in-stock {
  color: #16a34a;
}

.inventory.out-of-stock {
  color: #dc2626;
}

/* PRICE */
.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.selling-price {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.mrp {
  font-size: 12px;
  color: #94a3b8;
  text-decoration: line-through;
}

/* ADD TO CART */
.add-to-cart-form {
  margin-top: 12px;
}

.add-to-cart-btn {
  width: 100%;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: var(--accent-yellow);
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.add-to-cart-btn:hover {
  background: #facc15;
}

.add-to-cart-btn:disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
}

.product-image img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.product-title {
  font-size: 14px;
  font-weight: 600;
  color: #163a6b;
  margin: 8px 0 4px;
  text-align: left;
}

.product-sku {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 6px;
}

/* PRICE */
.product-price {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 6px;
}

.price-mrp {
  text-decoration: line-through;
  font-size: 12px;
  color: #94a3b8;
}

.price-sale {
  font-size: 15px;
  font-weight: 700;
  color: #0bb0d3;
}

.price-discount {
  font-size: 11px;
  font-weight: 600;
  color: #16a34a;
}

/* INVENTORY */
.product-stock {
  font-size: 12px;
  margin-bottom: 8px;
  color: #16a34a;
}

.product-stock.low {
  color: #ea580c;
}

/* ADD TO CART */
.btn-add-cart {
  width: 100%;
  height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;                 /* pill */
  background: var(--accent-yellow);     /* brand yellow */
  color: var(--primary-blue);           

  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;

  border: none;
  cursor: pointer;

  transition: all 0.25s ease;
}
.btn-add-cart:hover {
  background: #ffd633;                  /* slightly brighter yellow */
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245, 196, 0, 0.35);
}
.btn-add-cart:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(245, 196, 0, 0.25);
}
.btn-add-cart:disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  box-shadow: none;
}
.btn-add-cart.outline {
  background: #ffffff;
  border: 2px solid var(--accent-yellow);
  color: var(--primary-blue);
}

.btn-add-cart.outline:hover {
  background: var(--accent-yellow);
}

/* =========================
   PRODUCT CARD
========================= */
.product-card {
  height: 100%;
  min-width: 0;              /* 🔑 CRITICAL */
  box-sizing: border-box;
  background: #f7f9fc;
  border-radius: 16px;
  padding: 14px;
  width: 100%;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  box-shadow: 10px 10px 0px rgb(237 114 114 / 16%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  flex: 0 0 220px;
  scroll-snap-align: start;
}
.product-card:hover {
  box-shadow: 10px 10px 0px rgba(51, 114, 129, 0.12);
  transform: translateY(-4px);
}

.product-card a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
.product-card a:hover {
  text-decoration: none;
  color: inherit;
}


.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 12px;
}

.product-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary-blue);
}

.product-card .price {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-blue);
}
