/** Shopify CDN: Minification failed

Line 1604:0 Unexpected "}"

**/
/* ============================================================
   metro-product.css
   Add to: assets/metro-product.css
   Load via: main-product.liquid (add {{ 'metro-product.css' | asset_url | stylesheet_tag }} at top)
   ============================================================ */

/* ── Reset & Base ── */
.metro-product-page *,
.metro-product-page *::before,
.metro-product-page *::after {
  box-sizing: border-box;
}

/* ── 2-Column Layout ── */
.metro-product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px;
  align-items: start;
  max-height:1250px;
  height:1250px;
}

@media (max-width: 768px) {
  .metro-product-page {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
}

/* ============================================================
   LEFT COLUMN — Image Gallery
   ============================================================ */
.metro-gallery {
  display: flex;
  flex-direction: row;
  gap: 10px;
  position: sticky;
  top: 80px;
}

@media (max-width: 768px) {
  .metro-gallery {
    flex-direction: column;
    position: static;
  }
}

/* Thumbnail Strip */
.metro-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 72px;
  flex-shrink: 0;
  max-height: 520px;
  overflow-y: auto;
  scrollbar-width: none;
}

.metro-gallery__thumbs::-webkit-scrollbar { display: none; }

@media (max-width: 768px) {
  .metro-gallery__thumbs {
    flex-direction: row;
    width: 100%;
    max-height: none;
    overflow-x: auto;
    padding: 8px 12px;
    order: 2;
  }
}

.metro-gallery__thumb {
  width: 68px;
  height: 68px;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, transform 0.15s ease;
  background: #f5f5f5;
}

.metro-gallery__thumb:hover {
  border-color: #999;
  transform: scale(1.03);
}

.metro-gallery__thumb.is-active {
  border-color: #c00;
}

.metro-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Main Image */
.metro-gallery__main {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f8f8f8;
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
}

@media (max-width: 768px) {
  .metro-gallery__main {
    border-radius: 0;
    order: 1;
    aspect-ratio: 1 / 1;
    cursor: default;
  }
}

.metro-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.metro-gallery__main-img.is-loading {
  opacity: 0;
}

/* Arrows */
.metro-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.2s;
}

.metro-gallery__arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.metro-gallery__arrow--prev { left: 10px; }
.metro-gallery__arrow--next { right: 10px; }

.metro-gallery__arrow svg {
  width: 16px;
  height: 16px;
  stroke: #333;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Zoom Lens (desktop) */
.metro-gallery__zoom-lens {
  position: absolute;
  border: 1px solid #ddd;
  background: rgba(255,255,255,0.3);
  pointer-events: none;
  display: none;
  z-index: 3;
}

.metro-gallery__zoom-result {
  position: absolute;
  left: calc(100% + 12px);
  top: 0;
  width: 400px;
  height: 400px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  display: none;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

@media (max-width: 1100px) {
  .metro-gallery__zoom-result { display: none !important; }
}

/* ============================================================
   RIGHT COLUMN — Product Info
   ============================================================ */
.metro-product-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 768px) {
  .metro-product-info {
    padding: 14px 14px 100px;
    gap: 12px;
  }
}

/* Brand Badge */
.metro-brand-badge {
  display: inline-block;
  background: #c00;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}

/* Title */
.metro-product-title {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
  margin: 0;
}

@media (max-width: 768px) {
  .metro-product-title { font-size: 18px; }
}

/* Ratings */
.metro-ratings {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
}

.metro-ratings__stars {
  display: flex;
  gap: 2px;
}

.metro-ratings__star {
  color: #f5a623;
  font-size: 14px;
}

.metro-ratings__count {
  color: #888;
  font-size: 12px;
}

/* SKU */
.metro-sku {
  font-size: 12px;
  color: #888;
}

.metro-sku span { color: #555; font-weight: 500; }

/* Price Row */
.metro-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.metro-price-row__current {
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.metro-price-row__mrp {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.metro-price-row__discount {
  font-size: 13px;
  font-weight: 600;
  color: #2a7a2a;
  background: #eaf5ea;
  padding: 2px 7px;
  border-radius: 3px;
}

.metro-price-row__tax {
  font-size: 11px;
  color: #888;
  width: 100%;
  margin-top: -4px;
}

/* Inventory */
.metro-inventory {
  font-size: 13px;
  font-weight: 500;
}

.metro-inventory.in-stock { color: #2a7a2a; }
.metro-inventory.low-stock { color: #e07b00; }
.metro-inventory.out-of-stock { color: #c00; }

/* ── Highlights Strip ── */
.metro-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.metro-highlight-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #444;
  white-space: nowrap;
}

.metro-highlight-item .icon { font-size: 14px; }

/* ── Variants ── */
.metro-variant-label {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}









/* Size Variants — Circular */
.metro-size-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.metro-size-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s ease;
  position: relative;
  flex-shrink: 0;
}

.metro-size-btn:hover:not(.is-unavailable) {
  border-color: #fff;
  background-color: #333;
  color:#fff;
}

.metro-size-btn.is-selected {
  background: #111;
  color: #fff;
  border-color: #111;
}

.metro-size-btn.is-unavailable {
  color: #ccc;
  cursor: not-allowed;
  background: #fafafa;
}

.metro-size-btn.is-unavailable::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 1.5px;
  background: #ddd;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.metro-size-guide-link {
  font-size: 12px;
  color: #c00;
  text-decoration: none;
  font-weight: 500;
  margin-left: auto;
  align-self: center;
}

.metro-size-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Quantity ── */
.metro-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid #ddd;
  border-radius: 24px;
  overflow: hidden;
  width: fit-content;
}

.metro-qty__btn {
  width: 38px;
  height: 38px;
  border: none;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}

.metro-qty__btn:hover { background: #f5f5f5; }

.metro-qty__input {
  width: 44px;
  height: 38px;
  border: none;
  border-left: 1.5px solid #ddd;
  border-right: 1.5px solid #ddd;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  background: #fff;
  -moz-appearance: textfield;
}

.metro-qty__input::-webkit-outer-spin-button,
.metro-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ── Buttons ── */
.metro-buttons {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.metro-btn-wishlist {
  width: 44px;
  height: 44px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
  color: #555;
}

.metro-btn-wishlist:hover,
.metro-btn-wishlist.is-wishlisted {
  border-color: #c00;
  color: #c00;
}

.metro-btn-wishlist svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.metro-btn-wishlist.is-wishlisted svg { fill: #c00; }

.metro-btn-cart {
  flex: 1;
  height: 44px;
  border: 1.5px solid #111;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}

.metro-btn-cart:hover {
  background: #111;
  color: #fff;
}

.metro-btn-buynow {
  flex: 1;
  height: 44px;
  border: none;
  border-radius: 8px;
  background: #c00;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}

.metro-btn-buynow:hover {
  background: #a00;
  transform: translateY(-1px);
}

/* ── Delivery Pincode ── */
.metro-delivery {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 14px;
  background: #fafafa;
}

.metro-delivery__title {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.metro-delivery__title svg {
  width: 16px;
  height: 16px;
  stroke: #555;
  fill: none;
  stroke-width: 2;
}

.metro-delivery__row {
  display: flex;
  gap: 8px;
}

.metro-delivery__input {
  flex: 1;
  height: 38px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 14px;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.metro-delivery__input:focus { border-color: #333; }

.metro-delivery__check-btn {
  height: 38px;
  padding: 0 16px;
  border: none;
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.metro-delivery__check-btn:hover { background: #333; }

.metro-delivery__result {
  margin-top: 12px;
  display: none;
  flex-direction: column;
  gap: 8px;
}

.metro-delivery__result.is-visible { display: flex; }

.metro-delivery__result-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #444;
}

.metro-delivery__result-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: #2a7a2a;
  fill: none;
  stroke-width: 2;
}

.metro-delivery__result-item strong { color: #111; }

/* ── Offers ── */
.metro-offers {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
}

.metro-offers__title {
  font-size: 12px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.metro-offer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}

.metro-offer-item:last-child { border-bottom: none; }

.metro-offer-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.metro-offer-item__text { flex: 1; }

.metro-offer-item__title {
  font-size: 12px;
  font-weight: 600;
  color: #111;
}

.metro-offer-item__desc {
  font-size: 11px;
  color: #777;
  margin-top: 1px;
}

/* ── Accordions ── */
.metro-accordions {
  border-top: 1px solid #eee;
  margin-top: 4px;
}

.metro-accordion {
  border-bottom: 1px solid #eee;
}

.metro-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  text-align: left;
  transition: color 0.2s;
}

.metro-accordion__trigger:hover { color: #c00; }

.metro-accordion__icon {
  width: 18px;
  height: 18px;
  border: 1.5px solid #c00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: #c00;
  font-size: 14px;
  line-height: 1;
}

.metro-accordion.is-open .metro-accordion__icon {
  transform: rotate(45deg);
}

.metro-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.metro-accordion.is-open .metro-accordion__body {
  max-height: 1000px;
}

.metro-accordion__content {
  padding: 0 0 16px;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

.metro-accordion__content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.metro-accordion__content table td,
.metro-accordion__content table th {
  padding: 8px 10px;
  border: 1px solid #eee;
  text-align: left;
}

.metro-accordion__content table tr:nth-child(even) td {
  background: #fafafa;
}

/* ── Sticky Bar (Desktop) ── */
.metro-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.metro-sticky-bar.is-visible { transform: translateY(0); }

.metro-sticky-bar__thumb {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f5;
}

.metro-sticky-bar__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metro-sticky-bar__info { flex: 1; min-width: 0; }

.metro-sticky-bar__name {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.metro-sticky-bar__meta {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.metro-sticky-bar__price {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  flex-shrink: 0;
}

.metro-sticky-bar__btn {
  height: 38px;
  padding: 0 20px;
  border: none;
  border-radius: 6px;
  background: #c00;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.metro-sticky-bar__btn:hover { background: #a00; }

/* ── Mobile Sticky Bottom Bar ── */
.metro-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 10px 14px;
  gap: 8px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .metro-mobile-bar { display: flex; }
  .metro-sticky-bar { display: none; }
}

.metro-mobile-bar .metro-btn-wishlist { flex-shrink: 0; }
.metro-mobile-bar .metro-btn-cart { flex: 1; }
.metro-mobile-bar .metro-btn-buynow { flex: 1; }

/* ── Animations ── */
@keyframes metro-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.metro-product-info > * {
  animation: metro-fade-in 0.3s ease both;
}

.metro-product-info > *:nth-child(1) { animation-delay: 0.02s; }
.metro-product-info > *:nth-child(2) { animation-delay: 0.04s; }
.metro-product-info > *:nth-child(3) { animation-delay: 0.06s; }
.metro-product-info > *:nth-child(4) { animation-delay: 0.08s; }
.metro-product-info > *:nth-child(5) { animation-delay: 0.10s; }

/* Hover lift on buttons */
.metro-btn-cart:active,
.metro-btn-buynow:active {
  transform: scale(0.98);
}

/* Size button animation */
.metro-size-btn {
  transition: all 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.metro-size-btn.is-selected {
  transform: scale(1.08);
}
/* Fix: ensure color variant image fills the circular button */
.metro-color-btn img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
}
.metro-color-variants{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.metro-color-btn{
    width:42px;
    height:42px;
    border:2px solid #ddd;
    border-radius:50%;
    background:#fff;
    padding:0;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    transition:.25s ease;
}

.metro-color-btn:hover{
    border-color:#111;
}

.metro-color-btn.is-selected{
    border:2px solid #111;
    transform:scale(1.08);
}

.metro-color-circle{
    width:28px;
    height:28px;
    border-radius:50%;
    border:1px solid rgba(0,0,0,.15);
}
.metro-variant-label-size{
  position:relative;
  bottom:-7px;
}
.metro-size-variants{
  position:relative;
  bottom:-11px;
}
.metro-variant-label-quantity{
  position:relative;
  bottom:-13px;
}
.metro-qty{
  position:relative;
  bottom:-17px;
}
.metro-delivery{
    position: relative;
    bottom: -24px;
}
.metro-offers{
  position: relative;
  bottom: -35px;
}
.metro-buttons{
   position: relative;
  bottom: -42px;
}
.metro-accordions{
  position:relative;
  bottom:-50px;
}

/* ============================================================
   MOBILE FIXES — 768px and below ONLY
   Add to the BOTTOM of: assets/metro-product.css
   ============================================================ */

@media (max-width: 768px) {

  /* ── Global Reset ── */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  body {
    overflow-x: hidden;
    width: 100%;
  }

  /* ── Page Layout ── */
  .metro-product-page {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* ── Gallery ── */
  .metro-gallery {
    flex-direction: column;
    position: static;
    width: 100%;
    gap: 0;
  }

  .metro-gallery__main {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

  .metro-gallery__main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .metro-gallery__thumbs {
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 12px;
    gap: 8px;
    scrollbar-width: none;
    order: 2;
  }

  .metro-gallery__thumbs::-webkit-scrollbar { display: none; }

  .metro-gallery__thumb {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
  }

  /* ── Product Info Column ── */
  .metro-product-info {
    padding: 16px 14px 120px;
    gap: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Consistent spacing between every section */
  .metro-product-info > * {
    margin-bottom: 18px;
    width: 100%;
    max-width: 100%;
  }

  .metro-product-info > *:last-child {
    margin-bottom: 0;
  }

  /* ── Brand Badge ── */
  .metro-brand-badge {
    display: inline-block;
    width: auto;
  }

  /* ── Title ── */
  .metro-product-title {
    font-size: 17px;
    line-height: 1.35;
    word-break: break-word;
  }

  /* ── Ratings ── */
  .metro-ratings {
    flex-wrap: wrap;
    gap: 6px;
  }

  /* ── Price Row ── */
  .metro-price-row {
    flex-wrap: wrap;
    gap: 6px;
    align-items: baseline;
  }

  .metro-price-row__current {
    font-size: 20px;
  }

  .metro-price-row__tax {
    width: 100%;
    font-size: 11px;
  }

  /* ── Highlights ── */
  .metro-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px 0;
  }

  .metro-highlight-item {
    font-size: 11px;
    white-space: normal;
  }

  /* ── Color Variants ── */
  .metro-color-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
  }

  .metro-color-btn {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
  }

  /* ── Size Variants ── */
  .metro-size-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
  }

  .metro-size-btn {
    width: 42px;
    height: 42px;
    font-size: 12px;
    flex-shrink: 0;
  }

  .metro-size-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 8px;
  }

  /* ── Quantity ── */
  .metro-qty {
    width: auto;
    min-width: 100px;
    max-width: 130px;
    border-radius: 24px;
  }

  .metro-qty__btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .metro-qty__input {
    width: 48px;
    height: 40px;
    font-size: 14px;
  }

  /* ── Delivery Section ── */
  .metro-delivery {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    padding: 14px;
  }

  .metro-delivery__row {
    display: flex;
    gap: 8px;
    width: 100%;
  }

  .metro-delivery__input {
    flex: 1;
    min-width: 0;
    height: 40px;
    font-size: 14px;
  }

  .metro-delivery__check-btn {
    height: 40px;
    padding: 0 14px;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .metro-delivery__result {
    width: 100%;
  }

  .metro-delivery__result-item {
    font-size: 12px;
    flex-wrap: wrap;
  }

  /* ── Offers ── */
  .metro-offers {
    width: 100%;
    max-width: 100%;
    padding: 12px;
  }

  .metro-offer-item {
    padding: 8px 0;
    gap: 10px;
  }

  .metro-offer-item__title {
    font-size: 12px;
    word-break: break-word;
  }

  .metro-offer-item__desc {
    font-size: 11px;
    word-break: break-word;
  }

  /* ── Desktop Buttons — hide on mobile ── */
  .metro-buttons {
    display: none;
  }

  /* ── Accordions ── */
  .metro-accordions {
    width: 100%;
  }

  .metro-accordion__trigger {
    font-size: 13px;
    padding: 13px 0;
  }

  .metro-accordion__content {
    font-size: 13px;
  }

  /* ── Mobile Sticky Bottom Bar ── */
  
  /* Show the in-page buttons */
  .metro-buttons{
      display:flex !important;
      flex-wrap:wrap;
      align-items:center;
      gap:12px;
      width:100%;
      margin:20px 0;
  }

  /* Wishlist */
  .metro-buttons .metro-btn-wishlist{
      width:52px;
      height:52px;
      flex:0 0 52px;
      border-radius:12px;
      display:flex;
      align-items:center;
      justify-content:center;
      border:1px solid #dcdcdc;
      background:#fff;
      padding:0;
  }

  /* Add to Cart */
  .metro-buttons .metro-btn-cart{
      flex:1;
      height:52px;
      border-radius:12px;
      font-size:16px;
      font-weight:600;
      min-width:0;
      display:flex;
      align-items:center;
      justify-content:center;
  }

  /* Buy Now */
  .metro-buttons .metro-btn-buynow{
      width:100%;
      height:52px;
      border-radius:12px;
      font-size:16px;
      font-weight:600;
      display:flex;
      align-items:center;
      justify-content:center;
  }

  /* Space before delivery section */
  .metro-delivery{
      margin-top:20px;
  }

  /* Hide sticky bottom bar on mobile */
  .metro-mobile-bar{
      display:none !important;
  }

  /* Hide desktop sticky top bar */
  .metro-sticky-bar{
      display:none !important;
  }

  /* Product form layout */
  .metro-product-info form{
      display:flex;
      flex-direction:column;
  }

  /* Ensure correct order */
  .metro-qty{
      order:1;
  }

  .metro-buttons{
      order:2;
  }

  .metro-delivery{
      order:3;
  }

  .metro-offers{
      order:4;
  }

}
  /* ============================================================
     RELATED PRODUCTS — Mobile Carousel Fix
     ============================================================ */

  /* Section spacing */
  .section-related-products,
  [class*="related"],
  .product-recommendations,
  section:has(.related) {
    margin-top: 32px !important;
    padding-top: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  /* Heading */
  .product-recommendations h2,
  .related-products__heading,
  [class*="related"] h2,
  [class*="related"] h3 {
    font-size: 18px !important;
    margin-bottom: 16px !important;
    padding: 0 14px !important;
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
  }

  /* Card grid → horizontal scroll carousel */
  .product-recommendations .products-grid,
  .product-recommendations .owl-carousel,
  .product-recommendations ul,
  [class*="related"] .products-grid,
  [class*="related"] ul,
  [class*="related"] .owl-carousel {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 12px !important;
    padding: 4px 14px 12px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .product-recommendations .products-grid::-webkit-scrollbar,
  .product-recommendations ul::-webkit-scrollbar,
  [class*="related"] ul::-webkit-scrollbar { display: none; }

  /* Individual product cards */
  .product-recommendations .product-item,
  .product-recommendations li,
  .product-recommendations .owl-item,
  [class*="related"] .product-item,
  [class*="related"] li,
  [class*="related"] .owl-item {
    min-width: 160px !important;
    max-width: 160px !important;
    width: 160px !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: #fff !important;
    border: 1px solid #eee !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Card images */
  .product-recommendations .product-item img,
  .product-recommendations li img,
  [class*="related"] .product-item img,
  [class*="related"] li img {
    width: 100% !important;
    height: 160px !important;
    object-fit: contain !important;
    display: block !important;
    background: #f8f8f8 !important;
    flex-shrink: 0 !important;
  }

  /* Card content */
  .product-recommendations .product-item .product-info,
  .product-recommendations .product-item .product-details,
  .product-recommendations li .product-info,
  [class*="related"] .product-item .product-info {
    padding: 8px 10px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
  }

  /* Product name — truncate 2 lines */
  .product-recommendations .product-item .product-title,
  .product-recommendations .product-item h3,
  .product-recommendations .product-item h4,
  .product-recommendations li h3,
  [class*="related"] .product-item h3,
  [class*="related"] .product-item .product-title {
    font-size: 12px !important;
    line-height: 1.4 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    color: #111 !important;
    margin: 0 !important;
  }

  /* Price */
  .product-recommendations .product-item .price,
  .product-recommendations li .price,
  [class*="related"] .product-item .price {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin: 0 !important;
  }

  /* View Product button */
  .product-recommendations .product-item a.button,
  .product-recommendations .product-item .btn,
  [class*="related"] .product-item a.button,
  [class*="related"] .product-item .btn {
    display: block !important;
    width: calc(100% - 20px) !important;
    margin: 0 10px 10px !important;
    height: 34px !important;
    line-height: 34px !important;
    text-align: center !important;
    font-size: 12px !important;
    border-radius: 6px !important;
    background: #111 !important;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 600 !important;
  }

  /* ============================================================
     CUSTOMER REVIEWS — Mobile Fix
     ============================================================ */
  .pr-section,
  .metro-reviews-section {
    padding: 32px 0 24px !important;
    margin-top: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .pr-container,
  .metro-reviews-container {
    padding: 0 14px !important;
  }

  .pr-summary,
  .metro-reviews-summary {
    flex-direction: column !important;
    gap: 16px !important;
    padding: 16px !important;
  }

  .pr-summary__left,
  .metro-reviews-score {
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .pr-filters,
  .metro-reviews-filters {
    gap: 6px !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    padding-bottom: 4px !important;
    scrollbar-width: none !important;
  }

  .pr-filters::-webkit-scrollbar,
  .metro-reviews-filters::-webkit-scrollbar { display: none; }

  .pr-filter-btn,
  .metro-filter-btn {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }

  .pr-card,
  .metro-review-card {
    padding: 14px !important;
    border-radius: 10px !important;
  }

  .pr-card__images,
  .metro-review-card__images {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
  }

  /* ============================================================
     BOTTOM PADDING — prevent sticky bar overlap
     ============================================================ */
  .pr-section:last-child,
  .metro-reviews-section:last-child,
  section:last-of-type {
    padding-bottom: 100px !important;
  }

  /* Universal bottom padding safety net */
  .shopify-section:last-child {
    padding-bottom: 100px !important;
  }

  /* ============================================================
     OVERFLOW SAFETY — prevent any horizontal scroll
     ============================================================ */
  .shopify-section,
  .page-width,
  .container,
  main,
  article {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Fix any absolute positioned elements causing overflow */
  .metro-gallery__zoom-lens,
  .metro-gallery__zoom-result {
    display: none !important;
  }

}
/* END @media (max-width: 768px) */
