* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: darkgray;
  border-radius: 8px;
}

::-webkit-scrollbar-track-piece {
  background-color: '#f0f0f0';
}

body {
  margin: 0px;
  padding: 0px;
  background-color: #f3f2f4;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  color: #000;
}

/* Form controls use UA fonts and do not inherit from body by default */
button,
input,
select,
textarea,
optgroup,
option {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Keep mobile layout on all screen sizes */
.largeScreenWidth {
  width: 100%;
  max-width: 480px;
}

button.make-payment,
div.make-payment {
  background-color: #298e4d;
  color: #fff;
  border: none;
}

.checkout-payment-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-top: 1px solid #e9e8ee;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.04);
  z-index: 20;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.checkout-payment-price {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.checkout-payment-action {
  flex: 1.2;
  min-width: 0;
}

.checkout-payment-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  line-height: 1.25;
  overflow-wrap: break-word;
  word-break: break-word;
}

.checkout-payment-price .netPrice {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.checkout-payment-price #netPriceToPayText {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.checkout-payment-price p {
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.3;
}

.checkout-payment-btn.hidden {
  display: none;
}

.payment-btn-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.25;
  opacity: 0.95;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
}

.payment-btn-secure-icon {
  width: 10px;
  height: 10px;
  object-fit: contain;
}

.checkout-payment-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 12px;
  border-radius: 8px;
}

.checkout-payment-loader.hidden {
  display: none;
}

.checkout-payment-loader-icon {
  width: 32px;
  height: 32px;
}

button.select-payment {
  background-color: #fff;
  border: 1px solid #298e4d;
}

button.select-payment:hover {
  background-color: #fff;
  border: 1px solid #298e4d;
}

.bg-white {
  background-color: #fff;
}

.bg-sfPrimaryColor {
  background-color: #298e4d;
}

.text-sfPrimaryColor {
  color: #298e4d;
}

.bg-sfSecondaryColor {
  background-color: #fa9527;
}

.bg-mainContainerColor {
  background-color: #f5f4ff;
}

.bg-sectionColor {
  background-color: #f3f2f4;
}

.bg-disableColor {
  background-color: #ebecf1;
}

.bg-disableText {
  background-color: #908d9d;
}

.bg-you-saved {
  background-color: #e9fff1;
}

.circleRadioStyle {
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  vertical-align: middle;
  border: 2px solid #ddd;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
}

.circleRadioStyle:checked {
  border: 2px solid #298e4d;
  background-color: #fff;
  background-image: radial-gradient(
    circle,
    #298e4d 0%,
    #298e4d 45%,
    transparent 50%
  );
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.space-between {
  justify-content: space-between;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.self-center {
  align-self: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb05 {
  margin-bottom: 2px;
}

.mt2 {
  margin-top: 2px;
}

.m1t {
  margin-top: 4px;
}

.mr-15 {
  margin-right: 6px;
}

.mr1 {
  margin-right: 4px;
}

.my1 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.my2 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.my3 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.mr2 {
  margin-right: 8px;
}

.mt1 {
  margin-top: 4px;
}

.mt15 {
  margin-top: 6px;
}

.mt2 {
  margin-top: 8px;
}

.mt25 {
  margin-top: 10px;
}

.mt3 {
  margin-top: 12px;
}

.mt4 {
  margin-top: 16px;
}

.mt5 {
  margin-top: 20px;
}

.mb1 {
  margin-bottom: 4px;
}

.mb3 {
  margin-bottom: 12px;
}

.mb4 {
  margin-bottom: 16px;
}

.mb5 {
  margin-bottom: 20px;
}

.ml1 {
  margin-left: 4px;
}

.ml15 {
  margin-left: 6px;
}

.ml2 {
  margin-left: 8px;
}

.px0 {
  padding-left: 0px;
  padding-right: 0px;
}

.px1 {
  padding-left: 4px;
  padding-right: 4px;
}

.px15 {
  padding-left: 6px;
  padding-right: 6px;
}

.px25 {
  padding-left: 10px;
  padding-right: 10px;
}

.p0 {
  padding: 0px;
}

.p05 {
  padding: 2px;
}

.p1 {
  padding: 4px;
}

.p25 {
  padding: 10px;
}

.py05 {
  padding-top: 2px;
  padding-bottom: 2px;
}

.py1 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.py15 {
  padding-top: 6px;
  padding-bottom: 6px;
}

.pb15 {
  padding-bottom: 6px;
}

.pb25 {
  padding-bottom: 10px;
}

.py2 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.py25 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.px2 {
  padding-left: 8px;
  padding-right: 8px;
}

.px3 {
  padding-left: 12px;
  padding-right: 12px;
}

.py3 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.pl3 {
  padding-left: 12px;
}

.py35 {
  padding-top: 14px;
  padding-bottom: 14px;
}

.px4 {
  padding-left: 16px;
  padding-right: 16px;
}

.py4 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.pt15 {
  padding-top: 6px;
}

.pt8 {
  padding-top: 8px;
}

.pt25 {
  padding-top: 10px;
}

.pt3 {
  padding-top: 12px;
}

.pt4 {
  padding-top: 16px;
}

.pb8 {
  padding-bottom: 8px;
}

.pb180 {
  padding-bottom: 180px;
}

.pb100 {
  padding-bottom: 100px;
}

.pb120 {
  padding-bottom: 120px;
}

.overflowyScroll {
  overflow-y: scroll;
}

.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.h-screen {
  height: 100vh;
}

.h-svh {
  height: 100svh;
}

.h-auto {
  height: auto;
}

.h-12 {
  height: 48px;
}

.h-50 {
  height: 50px;
}

.icon16 {
  width: 16px;
  height: 16px;
}

.icon20 {
  width: 20px;
  height: 20px;
}

.icon24 {
  width: 24px;
  height: 24px;
}

.icon24h {
  height: 24px;
}

.icon36w {
  width: 36px;
}

.icon50 {
  width: 50px;
  height: 50px;
}

.icon80 {
  width: 80px;
  height: 80px;
}

.icon60x40 {
  width: 60px;
  height: 40px;
}

.border0 {
  border: 0px;
}

.borderl0 {
  border-left: 0px;
}

.borderr0 {
  border-right: 0px;
}

.border1 {
  border: 1px;
}

.border2 {
  border: 2px;
}

.bordert1 {
  border-top: 1px;
}

.bordert6 {
  border-top: 6px;
}

.borderb1 {
  border-bottom: 1px;
}

.borderl1 {
  border-left: 1px;
}

.bordert5 {
  border-top: 5px;
}

.border-style {
  border-style: solid;
}

.bordert-style {
  border-top-style: solid;
}

.borderb-style {
  border-bottom-style: solid;
}

.borderl-style {
  border-left-style: solid;
}

.border-dashed {
  border-style: dashed;
}

.bordert-dashed {
  border-top-style: dashed;
}

.border-borderColor {
  border-color: #ddd;
}

.borderl-disableColor {
  border-left-color: #ebecf1;
}

.borderl-disableColor2 {
  border-left-color: #908d9d;
}

.border-sfPrimaryColor {
  border-color: #298e4d;
}

.border-disableColor {
  border-color: #ebecf1;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.bottom0 {
  bottom: 0px;
}

.top4 {
  top: 4px;
}

.top3 {
  top: 12px;
}

.top0 {
  top: 0px;
}

.right4 {
  right: 4px;
}

.right3 {
  right: 12px;
}

.z1 {
  z-index: 1;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-b-md {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.shadow-md {
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.shadow-xl {
  box-shadow:
    0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.cursor-pointer {
  cursor: pointer;
}

.height5 {
  height: 5px;
}

.height10 {
  height: 10px;
}

.text-xs {
  font-size: 12px;
}

.text-sm {
  font-size: 14px;
}

.text-base {
  font-size: 16px;
}

.text-lg {
  font-size: 18px;
}

.text-xl {
  font-size: 20px;
}

.text-2xl {
  font-size: 24px;
}

.text-28 {
  font-size: 28px;
}

.max-h-100 {
  max-height: 100px;
}

.min-h-100 {
  min-height: 100px;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.underline {
  text-decoration-line: underline;
}

.text-black {
  color: #000;
}

.text-white {
  color: #fff;
}

.text-sfSecondaryColor {
  color: #fa9527;
}

.text-disableText {
  color: #908d9d;
}
.text-disableText-bold {
  color: #878787;
}

.text-redColorLine {
  color: #d53737;
}

.text-advance-payment {
  color: #0b4283;
}

.advance-payment-badge {
  background-color: #ddecf8;
  border: 1px solid #d6e5f1;
  border-radius: 4px;
  padding: 2px 6px;
}

.text-charcoalBlack {
  color: #364153;
}

.text-slateCool {
  color: #64748b;
}

.border-slateCool {
  border-color: #94a3b8;
}

.bg-paleMint {
  background-color: #e8f6ee;
}

@keyframes btnHeartBeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

.animatedBtn {
  animation: btnHeartBeat 1s infinite;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.w912 {
  width: 75%;
}

.w312 {
  width: 25%;
}

.confetti-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('https://bighaatprodblobv2.blob.core.windows.net/animations/coupon_applied_confetti_checkoutlite.gif')
    no-repeat center center;
  background-size: cover;
  z-index: 2000;
}

.dashed-vertical-line {
  color: #00a764;
  border-left: 2px dashed #908d9d;
  height: 40px;
  width: 0;
  margin: 0 20px;
}

.emi-option-card {
  background-color: #fff;
  border-color: #ddd;
  border-width: 1px;
  border-radius: 0.5rem;
}

.emi-option-card #emiBadgeText {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.emi-option-card #emiTitle {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.emi-option-card #emiAmountNow {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.emi-option-card #emiRestLater {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

button.emi-option-card.select-payment,
button.emi-option-card.select-payment:hover {
  background-color: #e4f1ea;
  border-color: #239a5b;
  border-width: 2px;
}

.emi-option-divider {
  border-left-color: #8db59e;
  height: 46px;
  margin: 0 10px;
}

.pointer-events-none {
  pointer-events: none;
}

input[type='radio'][disabled] {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.truncate-2-lines {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp-2 {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.address-delivering-row {
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

#addressName {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 2px;
}

.address-delivering-label {
  display: inline;
  margin: 0;
  margin-right: 4px;
  font-size: inherit;
  line-height: inherit;
}

.address-details-truncate {
  display: inline;
  font-size: inherit;
  line-height: inherit;
}

.address-details-truncate p {
  display: inline;
  margin: 0;
}

.address-change-arrow {
  flex-shrink: 0;
  width: 10px;
  height: 18px;
  margin-left: 8px;
}
.prepaid-saved-ammount {
  background-color: #d8f5e4;
  color: #298e4d;
  border-radius: 9999px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  margin: 0;
  max-width: 110px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.strike-text {
  text-decoration: line-through;
}

.online-payment-card {
  border-color: #e5e5e5;
  /* Keep visible so the recommended ribbon can sit on the top edge */
  overflow: visible;
}

.online-payment-card.select-payment,
.online-payment-card.select-payment:hover {
  border-color: #298e4d;
}

.recommended-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  white-space: nowrap;
  overflow: visible;
  line-height: 1;
  max-width: calc(100% - 24px);
}

.recommended-badge-inner {
  position: relative;
  background-color: #ff9900;
  padding: 5px 16px 6px;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  max-width: 100%;
}

/* Ribbon folds: tip at top corners, widening outward (~10px). */
.recommended-badge::before,
.recommended-badge::after {
  content: '';
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  background-color: #995c00;
  pointer-events: none;
}

.recommended-badge::before {
  left: -10px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.recommended-badge::after {
  right: -10px;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.recommended-badge-text {
  margin: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.2;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.online-payment-main {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  padding: 22px 12px 12px;
  box-sizing: border-box;
  gap: 8px;
}

.online-payment-radio {
  flex-shrink: 0;
  margin: 4px 0 0;
}

.online-payment-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 8px;
}

.online-payment-labels {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  min-width: 0;
}

.online-payment-title {
  margin: 0;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  text-align: left;
}

.online-method-subtitle {
  margin: 2px 0 0;
  color: #908d9d;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

.online-payment-logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}

.online-payment-divider {
  flex-shrink: 0;
  width: 0;
  align-self: stretch;
  min-height: 52px;
  height: auto;
  border-left: 1.5px dashed #c4c2cc;
  margin: 0 4px;
}

.online-payment-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  text-align: right;
  gap: 2px;
  max-width: 42%;
}

.online-payment-strike {
  margin: 0;
  color: #908d9d;
  font-size: 12px;
  line-height: 1.2;
  text-decoration: line-through;
}

.online-payment-amount {
  margin: 0;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.online-promo-banner {
  background: linear-gradient(90deg, #c1d8ff, #ffffff);
  border-radius: 8px;
  margin: 0 10px 10px;
  padding: 4px 6px;
  gap: 4px;
}

.online-promo-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
}

.online-promo-text {
  color: #0762f9;
  font-style: italic;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  line-height: 1.4;
  margin: 0;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.recommended-badge .shimmer {
  background: linear-gradient(
    110deg,
    transparent 30%,
    #fbbf2459 45%,
    #fde68ae6 50%,
    #fbbf2459 55%,
    transparent 70%
  );
}

.combo-section {
  border: 2px solid #298e4d;
  margin-bottom: 5px;
  padding-bottom: 10px;
}

.combo-section-header {
  background: linear-gradient(90deg, #ffffff, #aee1c0);
  margin-bottom: 8px;
}

.combo-plus-badge {
  width: 20px;
  height: 20px;
  border: 1px solid #dcdce1;
  border-radius: 50%;
  background: #fff;
  color: #908d9d;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.trustmarker-on-cod-mode {
  background-color: #f3f2f4;
  border-top: none;
}

.online-promo-banner.trustmarker-on-cod-mode {
  background-color: #f3f2f4;
}

.online-promo-banner.trustmarker-on-cod-mode {
  color: #908d9d;
}

@keyframes shimmerMove {
  0% {
    transform: translateX(0%);
  }
  45% {
    transform: translateX(0%);
  }
  85% {
    transform: translateX(250%);
  }
  100% {
    transform: translateX(250%);
  }
}

.shimmer {
  position: absolute;
  top: 0;
  left: -50%;
  height: 100%;
  width: 60%;
  pointer-events: none;

  background: linear-gradient(
    110deg,
    transparent 30%,
    #4ade8059 45%,
    #86eface6 50%,
    #4ade8059 55%,
    transparent 70%
  );

  animation: shimmerMove 3.2s ease-in-out infinite;
}

/* Checkout user message banner */
.checkout-user-msg-wrap:empty {
  display: none;
}

.checkout-user-msg {
  margin: 8px 12px 0px 12px;
  padding: 12px 8px 12px 22px;
  border-radius: 12px;
  background-color: #f8d7da;
  border: 1px solid #f5c2c7;
  flex-shrink: 0;
  word-break: break-word;
  text-align: left;
}

.checkout-user-msg-body {
  margin: 0;
  color: #212529;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-break: break-word;
}

.checkout-user-msg-body p {
  margin: 0;
  color: #212529;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.checkout-user-msg-body p + p {
  margin-top: 6px;
}

.emi-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 220ms ease;
}

.emi-modal-sheet {
  width: 100%;
  max-height: 80vh;
  background-color: #fff;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(24px);
  opacity: 0;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
  will-change: transform, opacity;
}

.emi-modal-plan-strip {
  padding: 10px 12px;
  background: linear-gradient(90deg, #bbecd2 0%, #eafff4 52%, #bbecd2 100%);
  border-top: 1px solid #d2ecdf;
  border-bottom: 1px solid #d2ecdf;
}

.emi-modal-tenure-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
}

.emi-modal-tenure-grid .emi-tenure-card {
  flex: 0 0 calc((100% - 16px) / 3.2);
}

.emi-tenure-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background-color: transparent;
}

.emi-tenure-selected .emi-tenure-radio {
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.14);
}

.emi-tenure-selected .emi-tenure-radio::after {
  background-color: #298e4d;
}

.emi-breakdown-row {
  border: 1px solid #e1e3e8;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  background-color: #f6f7f8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.emi-breakdown-row.highlighted {
  border-color: #52ab73;
  background-color: #e7f4eb;
}

.emi-modal-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border-top: 1px solid #ececf0;
  background-color: #f5f5f7;
  padding: 12px;
}

.emi-modal-trust-row p,
.emi-modal-plan-strip p {
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.35;
}

.gap4 {
  gap: 4px;
}

/* BigCoins loyalty banner */
.loyalty-banner {
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin: 10px 12px 6px 12px;
  border-radius: 20px;
  padding: 12px 14px;
  min-height: 64px;
  gap: 8px;
  background: linear-gradient(90deg, #fff5d2, #fffdf3);
  flex-shrink: 0;
  border: 2px solid #ffffff;
}

.loyalty-banner.loyalty-applied {
  border-radius: 12px;
  min-height: 52px;
  padding: 10px 14px;
}

.loyalty-banner::before {
  content: '%';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  line-height: 1;
  font-size: 60px;
  font-weight: 700;
  color: rgba(250, 200, 80, 0.22);
  user-select: none;
}

.loyalty-banner-left {
  position: relative;
  z-index: 1;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.loyalty-banner-btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 9999px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.08),
    0 1px 2px rgba(0, 0, 0, 0.04);
}

.loyalty-banner-coin {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}

.loyalty-banner-text {
  min-width: 0;
  gap: 2px;
}

.loyalty-banner-title {
  gap: 4px;
  line-height: 1.35;
}

.loyalty-banner-primary-text {
  color: #1a1a1a;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: break-word;
  word-break: break-word;
}

.loyalty-banner-highlight-text {
  color: #298e4d;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: break-word;
  word-break: break-word;
}

.loyalty-banner.loyalty-applied .loyalty-banner-primary-text {
  color: #298e4d;
}

.loyalty-banner.loyalty-applied .loyalty-banner-highlight-text {
  color: #1a1a1a;
}

.loyalty-banner-subtitle {
  color: #8a8a8a;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  overflow-wrap: break-word;
  word-break: break-word;
}

.loyalty-banner.loyalty-applied .loyalty-banner-subtitle {
  display: none;
}

.loyalty-banner-btn:hover {
  background-color: #fff;
  border-color: #d8d8d8;
  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.05);
}

.loyalty-banner-btn:active {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Offers & Order Summary card */
.offers-order-card {
  margin: 6px 12px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e4e2ef;
  box-shadow: 0 2px 10px rgba(80, 70, 130, 0.06);
  overflow: hidden;
  flex-shrink: 0;
}

.offers-coupon-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  padding: 14px 14px 12px;
  background: #fff;
  border: 0;
  border-bottom: 1px dashed #d8d6e3;
  cursor: pointer;
  text-align: left;
}

.offers-coupon-row.hidden {
  display: none;
}

.offers-coupon-applied {
  padding: 14px 14px 12px;
  border-bottom: 1px dashed #d8d6e3;
  background: #fff;
}

#discountApplied:empty {
  display: none;
}

#discountApplied.hidden {
  display: none;
}

.offers-coupon-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.offers-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e8f5ec;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offers-icon-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.offers-coupon-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  overflow: visible;
}

.offers-coupon-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  overflow-wrap: break-word;
  word-break: break-word;
}

.offers-coupon-subtitle {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #8a8a8a;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-break: break-word;
}

.bill-details-accordion .offers-coupon-subtitle {
  color: #298e4d;
}

.offers-coupon-subtitle.hidden {
  display: none;
}

.offers-save-highlight {
  color: #298e4d;
  font-weight: 600;
}

.offers-applied-code {
  color: #298e4d;
  font-weight: 700;
}

.offers-applied-label {
  color: #1a1a1a;
  font-weight: 500;
}

.offers-invalid-discount {
  margin: 0;
  padding: 8px 14px 12px;
  border-bottom: 1px dashed #d8d6e3;
}

.offers-row-chevron {
  flex-shrink: 0;
  width: 1em;
  text-align: center;
  color: #908d9d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.offers-row-chevron::before {
  content: '\276F';
}

.offers-remove-btn {
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 9999px;
  padding: 7px 14px;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.08),
    0 1px 2px rgba(0, 0, 0, 0.04);
}

.offers-remove-btn:hover {
  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.05);
}

.offers-remove-btn:active {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.offers-remove-btn p,
.offers-remove-btn span {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fa9527;
  text-align: center;
}

.offers-order-accordion {
  margin: 0;
}

.offers-order-accordion .offers-summary-label {
  padding: 14px;
  align-items: flex-start;
  background: #fff;
  font-weight: 400;
  min-height: 64px;
  box-sizing: border-box;
}

.offers-order-accordion .offers-summary-label .offers-coupon-title {
  font-weight: 700;
}

.offers-order-accordion .offers-summary-label::after {
  color: #908d9d;
  font-weight: 400;
  align-self: center;
  flex-shrink: 0;
}

.offers-order-accordion .offers-summary-content {
  border-top: 0;
  overflow: visible;
}

.offers-order-accordion .tab {
  overflow: visible;
}

.offers-summary-items {
  flex: 1 1 auto;
  min-height: 0;
  overflow: visible;
}

.offers-summary-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  background: #fff;
}

.offers-summary-item + .offers-summary-item {
  padding-top: 4px;
}

.offers-summary-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4px;
  box-sizing: border-box;
}

.offers-summary-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offers-summary-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.offers-summary-item-title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.35;
}

.offers-summary-item-meta {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #8a8a8a;
}

.offers-summary-item-variant {
  text-transform: capitalize;
}

.offers-summary-item-pricing {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
}

.offers-summary-item-price {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.offers-summary-item-mrp {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #908d9d;
}

.offers-summary-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  margin: 8px 10px 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #eceaf8;
}

.offers-summary-items-count {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}

.offers-summary-total {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.checkout-payment-panel {
  flex: 0 0 auto;
  height: auto;
  overflow: visible;
}

/* Bill Details accordion */
.bill-details-accordion {
  margin: 8px 12px;
}

.bill-details-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eceaf8;
  box-shadow: 0 2px 8px rgba(80, 70, 120, 0.06);
  overflow: hidden;
}

.bill-details-accordion .bill-details-label {
  padding: 14px;
  align-items: flex-start;
  background: #fff;
  font-weight: 400;
  min-height: 64px;
  box-sizing: border-box;
}

.bill-details-accordion .bill-details-label::after {
  color: #908d9d;
  font-weight: 400;
  align-self: center;
  flex-shrink: 0;
}

.bill-details-content {
  border-top: 1px solid #eceaf8;
}

.bill-details-body {
  padding: 4px 14px 14px;
}

.bill-details-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.bill-details-row + .bill-details-row {
  border-top: 1px dotted #d0cddb;
}

.bill-details-row.hidden,
.bill-advance-breakdown-item.hidden,
.bill-details-savings.hidden {
  display: none;
}

.bill-details-row-label {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #5c5c5c;
  line-height: 1.35;
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.bill-details-row-value {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}

.bill-details-value-green {
  color: #2f9e5b;
}

.bill-details-dashed-divider {
  border-top: 1.5px dashed #000000;
  margin: 4px 0 8px;
}

.bill-details-total-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0 12px;
}

.bill-details-total-label-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.bill-details-total-label {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.bill-details-total-subtext {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  color: #8a8a8a;
  line-height: 1.35;
  overflow-wrap: break-word;
  word-break: break-word;
}

.bill-details-total-value {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
}

.bill-advance-breakdown,
.cod-advance-breakdown {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  padding: 12px 8px;
  border-radius: 12px;
  background: #f3f1fb;
}

.bill-advance-breakdown {
  margin-top: 4px;
}

.bill-advance-breakdown.hidden {
  display: none;
}

.bill-advance-breakdown-item,
.cod-advance-breakdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.bill-advance-breakdown-label,
.cod-advance-breakdown-label {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  color: #8a8a8a;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

.bill-advance-breakdown-value,
.cod-advance-breakdown-value {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}

.bill-advance-breakdown-value.bill-details-value-green,
.cod-advance-breakdown-value.cod-advance-value-green {
  color: #2f9e5b;
}

.bill-advance-breakdown-op,
.cod-advance-breakdown-op {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: #908d9d;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.bill-details-savings {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #22f90f3d, #22f90f00);
}

.bill-details-savings-text {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #1b5e3a;
  text-align: center;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Cash on Delivery payment card */
.cod-payment-card {
  width: 100%;
  overflow: hidden;
  text-align: left;
}

.cod-payment-card.select-payment,
.cod-payment-card.select-payment:hover {
  border-color: #298e4d;
}

.cod-payment-main {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
  gap: 12px;
}

.cod-payment-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 8px;
}

.cod-payment-radio {
  flex-shrink: 0;
  margin: 0;
}

.cod-payment-title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  overflow-wrap: break-word;
  word-break: break-word;
}

.cod-payment-amount {
  flex-shrink: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  white-space: nowrap;
}

.cod-advance-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
}

.cod-advance-section.hidden {
  display: none;
}

.cod-advance-divider {
  width: 100%;
  border-top: 1.5px dotted #c8c6d0;
}

.cod-advance-footer {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 10px;
  width: 100%;
}

.cod-advance-info-text {
  flex: 1 1 160px;
  min-width: 0;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #8a8a8a;
  line-height: 1.45;
  text-align: left;
  overflow-wrap: break-word;
  word-break: break-word;
}

.cod-why-link {
  flex: 0 1 auto;
  max-width: 100%;
  color: #298e4d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  cursor: pointer;
}

.cod-unavailable-message {
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-break: break-word;
}

.cod-unavailable-message.hidden {
  display: none;
}

/* COD Confirm Order Modal */
.cod-confirm-modal-sheet {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 60vh;
  margin: 0;
  background: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cod-confirm-modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 12px;
  border-bottom: 1px solid #ececef;
  flex-shrink: 0;
  gap: 12px;
}

.cod-confirm-modal-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.cod-confirm-modal-close {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #ececef;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.cod-confirm-modal-close img {
  width: 10px;
  height: 10px;
  display: block;
  opacity: 0.7;
}

.cod-confirm-modal-body {
  /* flex-grow: 0 — avoid empty gap when content is short (app WebView) */
  flex: 0 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.cod-confirm-address {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid #ececef;
}

.cod-confirm-address-pin {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cod-confirm-address-pin img {
  width: 100%;
  height: 100%;
  display: block;
}

.cod-confirm-address-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cod-confirm-address-name {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.35;
}

.cod-confirm-address-name strong {
  font-weight: 700;
}

.cod-confirm-address-lines {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.4;
  word-break: break-word;
}

.cod-confirm-address-phone {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.35;
}

.cod-confirm-address-edit {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #ececef;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.cod-confirm-address-edit img {
  width: 14px;
  height: 14px;
  display: block;
}

.cod-confirm-address-edit.hidden {
  display: none;
}

.cod-confirm-items {
  padding: 4px 0 8px;
}

.cod-confirm-modal-footer {
  flex-shrink: 0;
  padding: 12px 16px 14px;
  background: #fff;
  border-top: 1px solid #f0f0f2;
}

.cod-confirm-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 8px;
  background: #298e4d;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  line-height: 1.3;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* COD Why Advance Modal */
.cod-why-modal-sheet {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 85vh;
  margin: 0;
  background: #f7faf7;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cod-why-modal-close {
  position: relative;
  align-self: flex-end;
  flex-shrink: 0;
  margin: 8px 10px 0;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: #e6e6e8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}

.cod-why-modal-close img {
  width: 9px;
  height: 9px;
  display: block;
  opacity: 0.65;
}

.cod-why-modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 0px 14px 2px;
  -webkit-overflow-scrolling: touch;
}

.cod-why-modal-hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 2px 2px 12px;
}

.cod-why-modal-hero-img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  flex-shrink: 0;
}

.cod-why-modal-hero-text {
  flex: 1 1 auto;
  min-width: 0;
}

.cod-why-modal-title {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  overflow-wrap: break-word;
  word-break: break-word;
}

.cod-why-modal-amount {
  color: #298e4d;
}

.cod-why-modal-subtitle {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: #7a7a7a;
  line-height: 1.4;
}

.cod-why-modal-benefits {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border: 1px solid #eceef0;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  padding: 2px 10px;
  margin-bottom: 12px;
}

.cod-why-modal-benefit-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
}

.cod-why-modal-benefit-row + .cod-why-modal-benefit-row {
  border-top: 1px solid #f1f1f3;
}

.cod-why-modal-benefit-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.cod-why-modal-benefit-text {
  flex: 1 1 auto;
  min-width: 0;
}

.cod-why-modal-benefit-title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  overflow-wrap: break-word;
  word-break: break-word;
}

.cod-why-modal-benefit-desc {
  margin: 2px 0 0;
  font-size: 11px;
  font-weight: 400;
  color: #8a8a8a;
  line-height: 1.35;
  overflow-wrap: break-word;
  word-break: break-word;
}

.cod-why-modal-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #298e4d;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.cod-why-modal-check img {
  display: block;
  flex-shrink: 0;
}

.cod-why-modal-breakdown {
  margin-bottom: 4px;
}

.cod-why-modal-footer {
  flex-shrink: 0;
  padding: 10px 14px 14px;
  background: #f7faf7;
}

.cod-why-modal-got-it {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  text-align: center;
}

.cod-why-modal-trust {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.cod-why-modal-trust-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 4px;
  font-size: 10px;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.3;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.cod-why-modal-trust-item img {
  width: 12px;
  height: 12px;
  object-fit: contain;
  flex-shrink: 0;
}

.cod-why-modal-trust-divider {
  width: 1px;
  height: 12px;
  background: #d4d4d8;
  flex-shrink: 0;
  align-self: center;
}

/* Indic / regional language layout safety (hi, te, ta, kn) */
html:lang(hi),
html:lang(te),
html:lang(ta),
html:lang(kn) {
  line-height: 1.45;
}

html:lang(hi) .recommended-badge-text,
html:lang(te) .recommended-badge-text,
html:lang(ta) .recommended-badge-text,
html:lang(kn) .recommended-badge-text {
  letter-spacing: 0;
  text-transform: none;
  font-size: 10px;
}

html:lang(hi) .online-payment-title,
html:lang(te) .online-payment-title,
html:lang(ta) .online-payment-title,
html:lang(kn) .online-payment-title {
  font-size: 14px;
  line-height: 1.4;
}

html:lang(hi) .online-method-subtitle,
html:lang(te) .online-method-subtitle,
html:lang(ta) .online-method-subtitle,
html:lang(kn) .online-method-subtitle {
  font-size: 10px;
  line-height: 1.4;
}

html:lang(hi) .cod-advance-breakdown-label,
html:lang(te) .cod-advance-breakdown-label,
html:lang(ta) .cod-advance-breakdown-label,
html:lang(kn) .cod-advance-breakdown-label,
html:lang(hi) .bill-advance-breakdown-label,
html:lang(te) .bill-advance-breakdown-label,
html:lang(ta) .bill-advance-breakdown-label,
html:lang(kn) .bill-advance-breakdown-label {
  font-size: 10px;
  line-height: 1.4;
}

html:lang(hi) .checkout-payment-btn,
html:lang(te) .checkout-payment-btn,
html:lang(ta) .checkout-payment-btn,
html:lang(kn) .checkout-payment-btn {
  font-size: 14px;
  padding: 9px 10px;
}

html:lang(hi) .prepaid-saved-ammount,
html:lang(te) .prepaid-saved-ammount,
html:lang(ta) .prepaid-saved-ammount,
html:lang(kn) .prepaid-saved-ammount {
  font-size: 10px;
  max-width: 120px;
}

html:lang(hi) .loyalty-banner-btn,
html:lang(te) .loyalty-banner-btn,
html:lang(ta) .loyalty-banner-btn,
html:lang(kn) .loyalty-banner-btn,
html:lang(hi) .offers-remove-btn,
html:lang(te) .offers-remove-btn,
html:lang(ta) .offers-remove-btn,
html:lang(kn) .offers-remove-btn {
  padding: 8px 12px;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

html:lang(hi) .discount-manual-apply,
html:lang(te) .discount-manual-apply,
html:lang(ta) .discount-manual-apply,
html:lang(kn) .discount-manual-apply,
html:lang(hi) .discount-offer-apply,
html:lang(te) .discount-offer-apply,
html:lang(ta) .discount-offer-apply,
html:lang(kn) .discount-offer-apply {
  min-width: 88px;
  white-space: normal;
  line-height: 1.25;
  height: auto;
  min-height: 36px;
  padding-top: 8px;
  padding-bottom: 8px;
}

html:lang(hi) .cod-why-modal-trust,
html:lang(te) .cod-why-modal-trust,
html:lang(ta) .cod-why-modal-trust,
html:lang(kn) .cod-why-modal-trust {
  flex-direction: column;
  align-items: center;
}

html:lang(hi) .emi-modal-trust-row p,
html:lang(te) .emi-modal-trust-row p,
html:lang(ta) .emi-modal-trust-row p,
html:lang(kn) .emi-modal-trust-row p {
  font-size: 10px;
  line-height: 1.35;
}

html:lang(hi) .cod-why-modal-trust-divider,
html:lang(te) .cod-why-modal-trust-divider,
html:lang(ta) .cod-why-modal-trust-divider,
html:lang(kn) .cod-why-modal-trust-divider {
  display: none;
}
