/* Design tokens extracted verbatim from live site CSS */
body { background-color: #f1f2f4; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; font-size: 14px; }
.main-container { max-width: 1248px; margin: 0 auto; background-color: #fff; }

/* ---- HEADER (home) ---- */
.page-header { background-color: #FFFFFF; padding: 8px 16px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1); }
.top-bar { display: flex; justify-content: space-between; align-items: center; }
.logo-container .logo-img { height: 38px; vertical-align: middle; }
.cart-link a { color: #212121; text-decoration: none; display: flex; align-items: center; position: relative; }
.cart-icon { width: 24px; height: 24px; }
.cart-link .badge { position: absolute; top: -8px; right: -10px; }
.location-and-search { margin-top: 12px; }
.search-bar { display: flex; align-items: center; background-color: #f0f2f5; border-radius: 8px; padding: 10px 16px; }
.search-icon { width: 20px; height: 20px; margin-right: 12px; opacity: 0.6; }
.search-bar input { border: none; outline: none; width: 100%; font-size: 14px; background-color: transparent; }

/* ---- CATEGORIES ---- */
.categories-container { padding: 5px; background-color: #ffffff; }
.categories-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.category-item a { text-decoration: none; color: #333333; display: flex; flex-direction: column; align-items: center; }
.category-item img { width: 42px; height: 42px; margin-bottom: 6px; object-fit: contain; }
.category-label { font-size: 12px; font-weight: 500; text-align: center; line-height: 1.2; }

/* ---- DEAL BANNER ---- */
.deal-banner { display: flex; justify-content: space-between; align-items: center; background: #ffffff; border-radius: 12px; padding: 20px; margin: 8px; border: 0.5px solid #e2e8f0; gap: 10px; }
.deal-left { display: flex; flex-direction: column; align-items: flex-start; flex: 1; position: relative; }
.deal-title { font-size: 18px; color: #1a73e8; font-weight: 600; margin-bottom: 6px; }
.deal-timer { display: flex; align-items: center; font-size: 15px; color: #1a73e8; gap: 6px; }
.deal-timer .material-icons { font-size: 20px; color: #666; }
.sale-badge { background: linear-gradient(135deg, #0d6efd, #ff4081); color: white; padding: 8px 18px; border-radius: 25px; font-size: 13px; font-weight: bold; border: none; position: relative; overflow: hidden; box-shadow: 0 0 10px rgba(255, 64, 129, 0.5); white-space: nowrap; }
.sale-badge::before { content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%; background: rgba(255, 255, 255, 0.3); transform: skewX(-25deg); animation: shine 2.2s infinite; }
@keyframes shine { from { left: -75%; } to { left: 125%; } }
@media (max-width: 480px) { .deal-banner { flex-direction: row; align-items: center; padding: 10px; gap: 12px; } .deal-title { font-size: 16px; } .deal-timer { font-size: 14px; margin-left: 10%; } .sale-badge { font-size: 12px; padding: 6px 14px; } }

/* ---- PRODUCT GRID ---- */
.products-section { background-color: #f1f2f4; padding-top: 1px; }
.mainbody { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background-color: #e0e0e0; }
.products { background: white; text-decoration: none; color: black; }
.productcard { padding: 10px; display: flex; flex-direction: column; height: 100%; }
.imagecontainer { text-align: center; }
.productimage { width: 100%; height: 200px; object-fit: contain; }
.product-info { padding-top: 10px; }
.product-name { font-size: 14px; color: #212121; line-height: 1.4; height: 40px; overflow: hidden; margin-bottom: 8px; }
.price-line { display: flex; align-items: center; flex-wrap: wrap; }
.selling-price { font-size: 16px; font-weight: 500; color: #212121; }
.mrp { text-decoration: line-through; color: #878787; font-size: 12px; margin: 0 8px; }
.discount { font-size: 13px; color: #388e3c; font-weight: 500; }
.wow-offer { margin-top: 4px; display: flex; align-items: center; }
.wow-badge { height: 18px; margin-right: 6px; }
.wow-price { font-size: 14px; font-weight: 500; color: #212121; }
.offer-text { font-size: 12px; color: #878787; margin-left: 6px; }
.rating-line { display: flex; align-items: center; margin-top: 6px; }
.rating-stars { font-size: 14px; color: #26a541; }
.rating-stars .bi-star { color: #e0e0e0; }
.fassured-logo-small { height: 16px; margin-left: 10px; }

/* ---- PRODUCT DETAIL ---- */
.singleproductview .page-header { padding: 10px 16px; display: flex; align-items: center; }
.back-arrow { color: #212121; text-decoration: none; font-size: 24px; margin-right: 16px; }
.header-cart { margin-left: auto; }
.header-cart a { color: #212121; text-decoration: none; position: relative; }
.carousel-item img { width: 100%; height: 350px; object-fit: contain; padding: 10px; }
.product-details-container { padding: 16px; }
.urgency-banner { font-size: 14px; color: #388e3c; font-weight: 500; margin-bottom: 8px; }
.stock-alert { font-weight: bold; font-size: 16px; margin-bottom: 16px; text-align: center; }
.product-title { font-size: 18px; font-weight: 500; }
.rating-box { background-color: #388e3c; color: white; padding: 2px 8px; font-size: 14px; border-radius: 4px; display: inline-flex; align-items: center; }
.ratings-count { margin-left: 10px; color: #878787; }
.fassured-logo { height: 20px; margin-top: 8px; }
.final-price { font-size: 28px; font-weight: bold; }
.singleproductview .mrp { font-size: 16px; }
.singleproductview .discount { font-size: 16px; }
.footerbuttonbuy { position: fixed; bottom: 0; left: 0; right: 0; max-width: 1248px; margin: 0 auto; z-index: 100; box-shadow: 0 -2px 5px rgba(0,0,0,0.1); display: flex; }
.btn1 { height: 50px; border: none; font-size: 16px; font-weight: 500; flex: 1; }
.btncart { background-color: #fff; color: #212121; }
.btnbuy { background-color: #FB641B; color: #fff; }
.compact-showcase-section { background-color: #fff; padding: 24px 16px; border-top: 6px solid #f1f2f4; }
.compact-carousel { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 10px; scrollbar-width: none; }
.compact-carousel::-webkit-scrollbar { display: none; }
.compact-product-card { flex: 0 0 160px; border: 1px solid #e0e0e0; border-radius: 8px; }
.compact-product-card .product-link { text-decoration: none; color: #212121; }
.compact-image-wrapper { height: 140px; padding: 10px; text-align: center; }
.compact-image-wrapper img { max-width: 100%; max-height: 100%; object-fit: contain; }
.compact-info-wrapper { padding: 0 12px 12px; }
.compact-info-wrapper .product-name { font-size: 14px; height: 40px; overflow: hidden; }
.compact-add-to-cart-btn { display: block; background-color: #f0f5ff; color: #2874f0; text-align: center; text-decoration: none; padding: 8px; margin: 0 12px 12px; border-radius: 4px; font-weight: 500; }
.delivery-info { display: flex; align-items: center; padding: 16px 0; border-top: 1px solid #f0f0f0; margin-top: 2px; margin-left: 16px; }
.delivery-text .free { color: #388e3c; font-weight: bold; }
.delivery-text .old-fee { text-decoration: line-through; }
.offers-container { margin-top: 24px; border-top: 1px solid #f0f0f0; padding-top: 16px; padding-left: 16px; padding-right: 16px; }
.offer-item { display: flex; align-items: flex-start; margin-bottom: 12px; font-size: 14px; }
.offer-icon { color: #388e3c; margin-right: 5px; margin-top: 5px; font-size: 18px; }
.offer-text .offer-title { font-weight: 500; margin-right: 5px; }
.offer-text .offer-link { color: #2874f0; text-decoration: none; font-weight: 500; margin-left: 4px; }

/* ---- CART ---- */
.cart-tabs { display: flex; background-color: #fff; border-bottom: 1px solid #f0f0f0; position: sticky; top: 57px; z-index: 100; }
.cart-tabs .nav-link { flex-grow: 1; text-align: center; color: #878787; font-weight: 500; padding: 12px; border: none; border-bottom: 2px solid transparent; border-radius: 0; }
.cart-tabs .nav-link.active { color: #2874f0; border-bottom-color: #2874f0; }
.empty-cart-container { text-align: center; padding: 60px 20px; background-color: #fff; }
.empty-cart-container img { height: 120px; opacity: 0.6; }
.empty-cart-container h4 { margin-top: 20px; font-size: 18px; color: #212121; }
.shop-now-btn { background-color: #2874f0; color: white; font-weight: 500; padding: 10px 40px; border-radius: 4px; text-decoration: none; margin-top: 20px; display: inline-block; }
.suggestions-section { padding: 16px; background-color: #fff; }
.suggestions-title { font-size: 16px; font-weight: 500; color: #212121; }
.suggestions-subtitle { font-size: 13px; color: #878787; margin-bottom: 16px; }
.suggestions-scroll { display: flex; overflow-x: auto; gap: 12px; padding-bottom: 10px; -ms-overflow-style: none; scrollbar-width: none; }
.suggestions-scroll::-webkit-scrollbar { display: none; }
.suggested-product-card { min-width: 150px; width: 150px; border: 1px solid #e0e0e0; border-radius: 8px; padding: 10px; background-color: #fff; }
.suggested-product-card img { width: 100%; height: 120px; object-fit: contain; margin-bottom: 8px; }
.suggested-product-card .product-name { font-size: 13px; height: 36px; overflow: hidden; line-height: 1.3; color: #212121; }
.suggested-product-card .add-to-cart-btn { width: 100%; border: 1px solid #e0e0e0; background-color: #fff; color: #2874f0; font-weight: 500; padding: 8px; border-radius: 4px; margin-top: 10px; font-size: 14px; text-decoration: none; display: block; text-align: center; }
.cart-container { background-color: #fff; margin: 8px 0; }
.cart-item-card-inner { border-bottom: 1px solid #f0f0f0; padding: 12px 16px; }
.cart-item-row { display: flex; gap: 12px; }
.cart-item-image { width: 110px; height: 110px; object-fit: contain; }
.qty-select { border: 1px solid #ddd; border-radius: 4px; padding: 4px 8px; font-size: 14px; }
.action-buttons { display: flex; border-top: 1px solid #f0f0f0; margin-top: 12px; }
.action-buttons button { flex-grow: 1; border: none; border-right: 1px solid #f0f0f0; padding: 12px; font-size: 14px; color: #565656; font-weight: 500; background: #fff; }
.action-buttons button:last-child { border-right: none; }
.price-details-card { padding: 16px; background:#fff; }
.price-details-row { display: flex; justify-content: space-between; margin-bottom: 12px; }
.total-amount-row { font-weight: bold; border-top: 1px solid #f0f0f0; padding-top: 16px; margin-top: 4px; }
.savings-banner { color: #388e3c; font-weight: 500; padding: 12px 16px; background:#fff; }
.page-footer { background: #fff; border-top: 1px solid #e0e0e0; position: fixed; bottom: 0; width: 100%; max-width:1248px; left: 50%; transform: translateX(-50%); padding: 10px 16px; box-shadow: 0 -2px 5px rgba(0,0,0,0.1); display:flex; justify-content:space-between; align-items:center; }
.footer-price-info { font-size: 12px; color: #878787; }
.footer-price { font-size: 18px; font-weight: bold; }
.place-order-btn { width: 45%; background-color: #fb641b; color: white; border: none; padding: 12px; font-size: 16px; font-weight: 500; border-radius: 4px; }

/* ---- FOOTER ---- */
footer.site-footer { background:#212529; color:#fff; margin-top:48px; padding:24px 0; }
footer.site-footer a { color: rgba(255,255,255,0.5); text-decoration:none; }
footer.site-footer a:hover { color:#fff; }

/* ---- PRODUCT DESCRIPTION (rich HTML rendered into description block) ---- */
.product-description-section { padding: 16px; border-top: 6px solid #f1f2f4; background: #fff; }
.product-description-section h4 { font-size: 16px; margin-bottom: 12px; }
.product-description-section > .text-muted { color: #212121 !important; font-size: 14px; line-height: 1.5; }
.product-description-section .product-body,
.product-description-section .product-card,
.product-description-section .product-container,
.product-description-section .product-description-container,
.product-description-section .product-details-container,
.product-description-section .specifications-container { padding: 0; }
.product-description-section .product-header { margin-bottom: 12px; }
.product-description-section .product-title { font-size: 18px !important; font-weight: 600; margin: 0 0 6px; }
.product-description-section .product-subtitle { font-size: 14px; color: #555; margin: 0 0 6px; }
.product-description-section .product-brand,
.product-description-section .product-config { font-size: 13px; color: #555; margin: 0 0 4px; }
.product-description-section .section-title { font-size: 15px; font-weight: 600; color: #212121; margin: 16px 0 8px; padding-bottom: 6px; border-bottom: 1px solid #f0f0f0; }
.product-description-section .features-section,
.product-description-section .key-features,
.product-description-section .specifications,
.product-description-section .policy-section,
.product-description-section .in-the-box,
.product-description-section .details-section,
.product-description-section .product-specs,
.product-description-section .product-specifications,
.product-description-section .boat-product-description,
.product-description-section .oneplus-product-description,
.product-description-section .jbl-product-description { margin-top: 16px; }
.product-description-section .features-list { padding-left: 20px; margin: 0; }
.product-description-section .features-list li { margin-bottom: 6px; font-size: 14px; color: #333; }
.product-description-section .spec-row,
.product-description-section .spec-item,
.product-description-section .details-table > div,
.product-description-section .spec-table > div { display: flex; padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 13px; align-items: flex-start; }
.product-description-section .spec-label,
.product-description-section .attribute-name { flex: 0 0 35%; color: #878787; padding-right: 10px; }
.product-description-section .spec-value,
.product-description-section .attribute-value { flex: 1; color: #212121; }
.product-description-section .crop-wrapper { overflow: hidden; }
.product-description-section .crop-wrapper img,
.product-description-section img { max-width: 100%; height: auto; display: block; margin: 8px 0; }
.product-description-section .disclaimer,
.product-description-section .styling-suggestion { font-size: 12px; color: #878787; margin-top: 12px; font-style: italic; }
.product-description-section h1,
.product-description-section h2,
.product-description-section h3 { font-size: 15px; font-weight: 600; color: #212121; margin: 12px 0 8px; }
.product-description-section p { margin: 0 0 8px; font-size: 14px; line-height: 1.5; }
.product-description-section ul { padding-left: 20px; margin: 8px 0; }
.product-description-section li { margin-bottom: 6px; font-size: 14px; }
.product-description-section table { width: 100%; border-collapse: collapse; margin: 8px 0; font-size: 13px; }
.product-description-section table td { padding: 6px 8px; border-bottom: 1px solid #f0f0f0; vertical-align: top; }
.product-description-section table td:first-child { color: #878787; width: 35%; }

/* ---- RATINGS & REVIEWS LAYOUT ---- */
.reviews-container { padding: 16px; border-top: 6px solid #f1f2f4; background: #fff; }
.rating-summary-section { display: flex; gap: 20px; margin-bottom: 24px; align-items: flex-start; }
.overall-rating { min-width: 100px; flex-shrink: 0; }
.overall-rating .rating-value { font-size: 36px; font-weight: 600; line-height: 1; }
.rating-breakdown { flex: 1; max-width: 400px; }
.rating-breakdown > div { margin-bottom: 6px; }
.rating-breakdown .progress { height: 6px; background: #f0f0f0; border-radius: 3px; overflow: hidden; }
.rating-breakdown .progress-bar { background: #26a541; height: 100%; }
.review-card { padding: 16px 0; border-top: 1px solid #f0f0f0; }
.review-card .rating-box { background: #26a541; color: #fff; padding: 2px 6px; border-radius: 3px; font-size: 12px; }
.review-card p { margin: 4px 0; font-size: 13px; line-height: 1.5; }

/* ---- PAYMENT / CHECKOUT (ported from Y24) ---- */
.header-container { background: #fff; border-bottom: 1px solid #f0f0f0; }
.row.header { align-items: center; }
.menu-icon { cursor: pointer; }
.menu-logo h4 { font-size: 18px; font-weight: 600; color: #212121; }
.offerend-container { text-align: center; font-weight: bold; padding: 14px; }
.offerend-container h4 { font-size: 14px; margin: 0; }
.offer-timer { color: rgb(251, 100, 27) !important; }
.form-check.available-method { font-size: 16px; border: 1px solid #ccc; margin-bottom: 11px; border-radius: 10px; padding: 0; cursor: pointer; }
.form-check.available-method.active { border-color: #367dfb; box-shadow: 0 0 0 1px #367dfb; }
.form-check.available-method .form-check-label { display: flex; align-items: center; padding: 15px; margin: 0; width: 100%; cursor: pointer; }
.form-check.available-method span.unaviablee { font-size: 16px; margin-left: 13px; color: #212121; }
.pay-logo { max-width: 40px; padding: 0.25rem; }
#price-detail h3 { font-size: 16px; font-weight: 600; margin: 0; }
.price-detail-div { padding: 0; }
.product-price-list { display: flex; justify-content: space-between; }
.product-price-list .title, .product-price-list .data { font-size: 14px; }
.product-price-list .data { font-weight: 500; }
.product-price-list .text-success { color: #069e06 !important; }
.product-price-list.total { border-top: 1px dashed #eee; font-weight: 700; padding-top: 12px; }
.product-price-list.total .title, .product-price-list.total .data { font-size: 15px; }
.button-container {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1248px;
  background: #fff;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.12);
  z-index: 100;
  display: flex;
  align-items: stretch;
  padding: 12px 16px;
}
.button-container .footer-price {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 4px;
}
.button-container .footer-price .selling_price { font-size: 20px; font-weight: 700; color: #212121; }
.button-container .footer-price .strike { text-decoration: line-through; color: #878787; font-size: 12px; }
.button-container .buynow-button {
  flex: 1 1 60%;
  width: auto;
  min-height: 50px;
}
.buynow-button {
  background: #ffc200;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border-radius: 2px;
  border: 1px solid #ffc200;
  font-size: 16px;
  font-weight: 600;
  padding: 6px 9px;
  cursor: pointer;
}
.buynow-button.btn-continue { height: 50px; }
.buynow-button[disabled] { background: #f1f1f1; border-color: #e0e0e0; color: #878787; cursor: not-allowed; }
.buynow-button a { color: #000 !important; text-decoration: none; }

/* Mobile fallback — button-container full width edge-to-edge */
@media (max-width: 640px) {
  .button-container { max-width: 100%; padding: 10px 12px; }
  .button-container .footer-price { flex-basis: 38%; }
}

/* ---- STEPPER (checkout / order-summary) ---- */
.stepper { display: flex; justify-content: center; gap: 24px; padding: 20px 16px; background: #fff; border-bottom: 1px solid #f0f0f0; }
.stepper .step { display: flex; flex-direction: column; align-items: center; flex: 0 0 auto; min-width: 80px; }
.stepper .step-circle { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; border: 1.5px solid #ccc; color: #878787; background: #fff; }
.stepper .step.active .step-circle { border-color: #2874f0; color: #2874f0; }
.stepper .step.done .step-circle { background: #2874f0; border-color: #2874f0; color: #fff; }
.stepper .step-label { margin-top: 6px; font-size: 12px; color: #212121; text-align: center; }

/* ---- ORDER SUMMARY ---- */
.order-summary-item { padding: 16px; background: #fff; border-bottom: 1px solid #f0f0f0; display: flex; gap: 12px; align-items: flex-start; }
.order-summary-item img { width: 80px; height: 80px; object-fit: contain; flex-shrink: 0; }
.order-summary-item .info { flex: 1; min-width: 0; }
.order-summary-item .info p.title { font-size: 13px; color: #212121; margin: 0 0 6px; line-height: 1.4; }
.order-summary-item .price-line .selling-price { font-size: 16px; font-weight: 600; }
.order-summary-item .qty-row { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.deliver-to { padding: 16px; background: #fff; border-bottom: 6px solid #f1f2f4; }
.deliver-to .label { font-size: 13px; color: #878787; }
.deliver-to .home-badge { display: inline-block; background: #f0f0f0; color: #212121; font-size: 11px; padding: 2px 8px; border-radius: 3px; margin-left: 6px; }
.deliver-to .change-btn { background: transparent; color: #2874f0; border: 1px solid #2874f0; border-radius: 4px; padding: 4px 12px; font-size: 13px; font-weight: 500; cursor: pointer; }

/* ---- CART BOTTOM RECOMMENDATION RAIL ---- */
.cart-reco-section { background: #fff; padding: 16px; border-top: 6px solid #f1f2f4; margin-bottom: 80px; }
.cart-reco-section h5 { font-size: 16px; font-weight: 600; margin: 0 0 4px; }
.cart-reco-section .subtitle { font-size: 12px; color: #878787; margin: 0 0 12px; }
.cart-reco-grid { display: grid; grid-auto-flow: column; grid-auto-columns: 150px; gap: 12px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.cart-reco-grid::-webkit-scrollbar { display: none; }
.cart-reco-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.cart-reco-card img { width: 100%; height: 130px; object-fit: contain; padding: 8px; }
.cart-reco-card .body { padding: 8px 10px; }
.cart-reco-card .name { font-size: 12px; line-height: 1.3; color: #212121; height: 32px; overflow: hidden; margin: 0 0 6px; }
.cart-reco-card .price-row { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.cart-reco-card .price-row .price { font-size: 14px; font-weight: 600; }
.cart-reco-card .price-row .mrp { font-size: 11px; color: #878787; text-decoration: line-through; }

/* ---- Y24 ADDRESS / ORDER SUMMARY / PAYMENT shared classes ---- */
.max-height { min-height: calc(100vh - 70px); }
.mb-70 { margin-bottom: 70px; }
._1fhgRH { display: block; width: 100%; background: #fff; padding-bottom: 1px; }

/* Floating-label inputs (Bootstrap form-floating customisation, mirrors Y24) */
.card-body { width: 100% !important; }
.form-floating { width: 100%; }
.form-floating > .form-control,
.form-floating > .form-select { font-size: 14px !important; border: 1px solid rgba(0,0,0,0.24); height: 50px !important; min-height: auto; line-height: initial; padding: 10px 12px !important; width: 100% !important; }
.form-floating > .form-control:focus,
.form-floating > .form-select:focus { border: 1px solid #2874f0 !important; box-shadow: none !important; }
.form-floating > label { font-size: 14px; color: #878787; height: auto !important; padding: 14px; }
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label { transform: scale(0.85) translateY(-1rem) translateX(1.15rem) !important; background-color: #fff; padding: 0 0.75rem; }
.row .form-floating > label { left: 10px !important; }

/* Primary CTA — "Save and Deliver Here" */
.common-button { background: rgb(251, 100, 27); border-radius: 0.2rem; width: 100%; height: 50px; border: 1px solid #e88406; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; text-decoration: none; cursor: pointer; }
.common-button:hover { color: #fff; opacity: 0.95; }

/* 3-step indicator used on Address / Order Summary */
.checkout-stepper { display: flex; align-items: center; justify-content: center; gap: 0; padding: 16px 24px; background: #fff; }
.checkout-stepper .step { display: flex; flex-direction: column; align-items: center; flex: 0 0 auto; min-width: 80px; }
.checkout-stepper .circle { width: 28px; height: 28px; border-radius: 50%; border: 1px solid #2874f0; color: #2874f0; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; }
.checkout-stepper .step.active .circle { background: #2874f0; color: #fff; }
.checkout-stepper .step.done .circle { background: #2874f0; color: #fff; border-color: #2874f0; }
.checkout-stepper .step .lbl { margin-top: 6px; font-size: 11px; color: #666; }
.checkout-stepper .step.active .lbl, .checkout-stepper .step.done .lbl { color: #212121; font-weight: 500; }
.checkout-stepper .bar { flex: 1; max-width: 80px; height: 1px; background: #dbdbdb; align-self: flex-start; margin-top: 14px; }
.checkout-stepper .bar.done { background: #2874f0; }

/* Order Summary item rows + recommended-product layout (Y24) */
.recommended-product { display: flex; flex-direction: row; align-items: center; gap: 12px; }
.recommended-product img { width: 75px; height: auto; }
.recommended-product .description { padding-left: 20px; flex: 1; min-width: 0; }
.recommended-product .product-title { font-size: 14px; color: #212121; overflow: hidden; text-overflow: ellipsis; line-height: 1.4; max-width: calc(100vw - 120px); }
.recommended-product .product-detail { font-size: 12px; color: #878787; }
.recommended-product span { font-size: 14px; }
.recommended-product span.strike, .strike { text-decoration: line-through; }
.recommended-product span.mrp { color: #878787; }
.recommended-product span.discount { color: #008c00; font-weight: 500; }
.recommended-product span.selling_price { font-weight: 600; }
.recommended-product .qty { font-size: 13px; color: #555; }

/* Price Details (Y24) */
.product-price-list.saved-div { border-top: 1px solid #eee; font-size: 13px; padding-top: 12px; margin-top: 8px; }

/* Safety banner (used on order summary + payment) */
.sefty-banner { display: flex; align-items: center; justify-content: center; background: rgb(241, 243, 246); padding: 15px; gap: 12px; }
.sefty-banner .sefty-img { object-fit: contain; width: 45px; height: 35px; }
.sefty-banner .sefty-txt { color: rgb(113, 116, 120); font-weight: 600; font-size: 13px; max-width: 230px; line-height: 1.4; }
