html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

.border-b-3 {
  border-bottom-width: 3px;
}

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

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.menu-pop {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.96);
  transform-origin: top right;
  transition: 0.18s ease;
}

.menu-pop.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.banner-dot.is-active {
  background: #fff;
  width: 20px;
}

.product-card.is-search-hidden {
  display: none;
}

/* Keep active category chips readable if the Tailwind CDN is delayed. */
#productCategoryTabs .product-cat-btn.bg-brand-600,
.category-current-chip {
  background: #b51635 !important;
  color: #fff !important;
}

.etr-product-page {
  background: #e5e7eb;
  color: #0f172a;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
}

.etr-product-page *,
.etr-product-page *::before,
.etr-product-page *::after {
  box-sizing: border-box;
}

.etr-product-shell {
  background: #f8fafc;
  margin: 0 auto;
  max-width: 430px;
  min-height: 100vh;
  overflow: hidden;
  padding-bottom: 104px;
  position: relative;
  width: 100%;
}

.etr-product-topbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  gap: 8px;
  left: 50%;
  max-width: 430px;
  padding: 8px 12px;
  position: fixed;
  top: 0;
  transform: translateX(-50%);
  overflow: visible;
  width: 100%;
  z-index: 1200;
}

.etr-product-icon {
  align-items: center;
  background: #f1f5f9;
  border: 0;
  border-radius: 999px;
  color: #0f172a;
  display: inline-flex;
  flex: 0 0 40px;
  height: 40px;
  justify-content: center;
  min-width: 40px;
  text-decoration: none;
}

.etr-product-icon:hover,
.etr-product-icon:focus {
  background: #e2e8f0;
  color: #0f172a;
  text-decoration: none;
}

.etr-product-icon .fa-angle-left {
  font-size: 28px;
  line-height: 1;
}

.etr-product-search {
  align-items: center;
  background: #f1f5f9;
  border-radius: 13px;
  color: #64748b;
  display: flex;
  flex: 1 1 auto;
  gap: 8px;
  height: 40px;
  min-width: 0;
  padding: 0 12px;
}

.etr-product-search input[type="search"] {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #334155;
  flex: 1;
  font-size: 14px;
  min-width: 0;
  outline: 0;
}

.etr-product-menu {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 13px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
  min-width: 178px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 54px;
  transform: translateY(-6px) scale(0.96);
  transform-origin: top right;
  transition: 0.18s ease;
  z-index: 1201;
}

.etr-product-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.etr-product-menu a {
  align-items: center;
  color: #334155;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: space-between;
  padding: 12px 14px;
  text-decoration: none;
}

.etr-product-menu a:hover,
.etr-product-menu a:focus {
  background: #f8fafc;
  color: #be123c;
  text-decoration: none;
}

.etr-product-menu span {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.etr-product-alert {
  align-items: center;
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(22, 101, 52, 0.08);
  color: #166534;
  display: flex;
  font-size: 13px;
  font-weight: 600;
  gap: 9px;
  line-height: 1.45;
  left: 50%;
  margin: 0;
  max-width: 406px;
  padding: 12px 42px 12px 14px;
  position: fixed;
  top: 68px;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  z-index: 1100;
  animation: etr-product-alert-in .22s ease-out;
}

@keyframes etr-product-alert-in {
  from { opacity: 0; transform: translate(-50%, -10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.etr-product-alert::before {
  color: #16a34a;
  content: "\f058";
  font-family: FontAwesome;
  font-size: 17px;
}

.etr-product-alert .close {
  color: #166534;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.65;
  padding: 0;
  position: absolute;
  right: 13px;
  text-shadow: none;
  top: 50%;
  transform: translateY(-50%);
}

.etr-product-alert .close:hover,
.etr-product-alert .close:focus {
  color: #14532d;
  opacity: 1;
}

.etr-product-gallery {
  background: #fff;
  padding-top: 57px;
  position: relative;
}

.etr-product-gallery__track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.etr-product-gallery__track::-webkit-scrollbar {
  display: none;
}

.etr-product-gallery__slide {
  aspect-ratio: 1;
  background: #f1f5f9;
  flex: 0 0 100%;
  scroll-snap-align: center;
}

.etr-product-gallery__slide img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.etr-product-gallery__overlay {
  align-items: center;
  bottom: 12px;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 0 12px;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 2;
}

.etr-product-gallery__overlay > span {
  background: rgba(15, 23, 42, 0.55);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 7px 11px;
}

.etr-product-wishlist {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  color: #c5203f;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  pointer-events: auto;
  width: 38px;
}

.etr-product-wishlist.is-wishlisted {
  background: #c5203f;
  color: #fff;
}

.etr-product-wishlist.is-wishlist-loading {
  cursor: wait;
  opacity: 0.72;
}

.etr-product-section {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 13px;
}

.etr-product-section h2 {
  color: #0f172a;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
}

.etr-product-section__head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.etr-product-section__head > span {
  color: #c5203f;
  font-size: 13px;
  font-weight: 800;
}

.etr-product-summary {
  padding-top: 18px;
}

.etr-product-price {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.etr-product-price strong {
  color: #c5203f;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.15;
}

.etr-product-price del {
  color: #94a3b8;
  font-size: 13px;
  margin-bottom: 3px;
}

.etr-product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.etr-product-badges a,
.etr-product-badges span,
.etr-product-tags a {
  background: #fff1f3;
  border: 1px solid #ffe4e8;
  border-radius: 6px;
  color: #c5203f;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  padding: 7px 8px;
  text-decoration: none;
}

.etr-product-summary h1 {
  color: #0f172a;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  margin: 13px 0 0;
}

.etr-product-meta,
.etr-product-note {
  color: #64748b;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 9px;
  margin-top: 11px;
}

.etr-product-meta span,
.etr-product-note span {
  align-items: center;
  display: inline-flex;
  gap: 5px;
}

.etr-product-meta span:not(:last-child)::after {
  background: #cbd5e1;
  content: "";
  height: 14px;
  margin-left: 9px;
  width: 1px;
}

.etr-product-meta .fa-star,
.etr-product-review__card .fa-star {
  color: #f59e0b;
}

.etr-product-info-row {
  display: flex;
  gap: 12px;
  margin-top: 13px;
}

.etr-product-info-row > .fa {
  align-items: center;
  background: #ecfdf5;
  border-radius: 999px;
  color: #0f766e;
  display: inline-flex;
  flex: 0 0 32px;
  height: 32px;
  justify-content: center;
  margin-top: 1px;
}

.etr-product-info-row strong,
.etr-product-info-row span {
  display: block;
}

.etr-product-info-row strong {
  color: #0f172a;
  font-size: 14px;
  line-height: 1.35;
}

.etr-product-info-row span {
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 2px;
}

.etr-product-description {
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
  overflow-wrap: anywhere;
}

.etr-product-description img,
.etr-product-description iframe,
.etr-product-description table {
  height: auto;
  max-width: 100%;
}

.etr-product-spec {
  border-top: 1px solid #e2e8f0;
  margin-top: 14px;
  padding-top: 13px;
}

.etr-product-spec summary {
  color: #0f172a;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

.etr-product-spec h3 {
  font-size: 14px;
  margin: 14px 0 8px;
}

.etr-product-spec table {
  border-collapse: collapse;
  color: #475569;
  font-size: 13px;
  width: 100%;
}

.etr-product-spec td {
  border: 1px solid #e2e8f0;
  padding: 8px;
  vertical-align: top;
}

.etr-product-review__card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-top: 12px;
  padding: 13px;
}

.etr-product-review--hidden {
  display: none;
}

.etr-product-review__card strong,
.etr-product-review__card span {
  display: block;
}

.etr-product-review__card strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
}

.etr-product-review__card span {
  color: #64748b;
  font-size: 13px;
  margin-top: 5px;
}

.etr-product-related__grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}

.etr-product-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
  min-width: 0;
  overflow: hidden;
}

.etr-product-card__image {
  aspect-ratio: 1;
  background: #f1f5f9;
  display: block;
}

.etr-product-card__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.etr-product-card__body {
  padding: 10px;
}

.etr-product-card h3 {
  display: -webkit-box;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  min-height: 36px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.etr-product-card h3 a {
  color: #0f172a;
  text-decoration: none;
}

.etr-product-card p {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 9px 0 0;
}

.etr-product-card strong {
  color: #c5203f;
  font-size: 14px;
  font-weight: 900;
}

.etr-product-card del {
  color: #94a3b8;
  font-size: 11px;
}

.etr-product-tags > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.etr-product-options {
  background: #f8fafc;
  margin: 0 auto;
  max-width: 430px;
}

.etr-product-options > .etr-product-section {
  border-top: 1px solid #e2e8f0;
}

.etr-option {
  margin: 14px 0 0;
}

.etr-option .control-label {
  color: #475569;
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.etr-option .form-control {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  box-shadow: none;
  min-height: 42px;
}

.etr-option__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.etr-choice {
  align-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  color: #334155;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  margin: 0;
  min-height: 42px;
  padding: 8px 12px;
  transition: 0.16s ease;
}

.etr-choice input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.etr-choice img {
  border-radius: 7px;
  height: 28px;
  object-fit: cover;
  width: 28px;
}

.etr-choice span {
  font-size: 13px;
  font-weight: 800;
}

.etr-choice small {
  color: #64748b;
  display: block;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

.etr-choice:has(input:checked),
.etr-choice.is-selected {
  background: #fff1f3;
  border-color: #c5203f;
  color: #c5203f;
}

.etr-upload-button {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  color: #334155;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
}

.etr-product-options .text-danger {
  color: #dc2626;
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-top: 7px;
}

.etr-product-options .has-error .form-control,
.etr-product-options .has-error .etr-choice {
  border-color: #dc2626;
}

.etr-product-options > .alert {
  border-radius: 0;
  margin: 0 auto;
  max-width: 430px;
}

.etr-product-columns {
  display: none;
}

.etr-product-buybar {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  bottom: 0;
  left: 50%;
  max-width: 430px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  position: fixed;
  transform: translateX(-50%);
  width: 100%;
  z-index: 80;
}

.etr-product-buybar__inner {
  display: grid;
  gap: 8px;
  grid-template-columns: 48px 1fr 1fr;
}

.etr-product-icon--cart {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  flex-basis: 48px;
  height: 44px;
  min-width: 48px;
  position: relative;
}

.etr-product-icon--cart span {
  background: #c5203f;
  border-radius: 999px;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  max-width: 34px;
  overflow: hidden;
  padding: 2px 5px;
  position: absolute;
  right: -4px;
  text-overflow: ellipsis;
  top: -6px;
  white-space: nowrap;
}

.etr-product-buybar__outline,
.etr-product-buybar__primary {
  align-items: center;
  border-radius: 12px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 0 10px;
  white-space: normal;
}

.etr-product-buybar__outline {
  background: #fff;
  border: 1px solid #c5203f;
  color: #c5203f;
}

.etr-product-buybar__primary {
  background: #c5203f;
  border: 1px solid #c5203f;
  color: #fff;
}

.etr-product-buybar__outline:hover,
.etr-product-buybar__outline:focus {
  background: #fff1f3;
}

.etr-product-buybar__primary:hover,
.etr-product-buybar__primary:focus {
  background: #b51635;
  border-color: #b51635;
}

.product-sheet {
  align-items: flex-end;
  display: flex;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.2s ease;
  z-index: 80;
}

.product-sheet.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-sheet__backdrop {
  background: rgba(15, 23, 42, 0.5);
  border: 0;
  inset: 0;
  position: absolute;
  width: 100%;
}

.product-sheet__panel {
  background: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -18px 40px rgba(15, 23, 42, 0.2);
  margin: 0 auto;
  max-height: 92vh;
  max-width: 430px;
  overflow: hidden;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.24s ease;
  width: 100%;
}

.product-sheet.is-open .product-sheet__panel {
  transform: translateY(0);
}

.product-sheet__handle {
  background: #cbd5e1;
  border-radius: 999px;
  height: 4px;
  left: 50%;
  position: absolute;
  top: 10px;
  transform: translateX(-50%);
  width: 44px;
  z-index: 2;
}

.product-sheet__close {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 999px;
  color: #0f172a;
  display: flex;
  height: 36px;
  justify-content: center;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 36px;
  z-index: 3;
}

.product-sheet__media {
  background: #f1f5f9;
  overflow: hidden;
}

.product-sheet__gallery {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-sheet__gallery::-webkit-scrollbar {
  display: none;
}

.product-sheet__gallery img {
  aspect-ratio: 1;
  flex: 0 0 100%;
  object-fit: cover;
  scroll-snap-align: center;
  width: 100%;
}

.product-sheet__content {
  padding: 16px;
}

.product-sheet__content h2 {
  color: #0f172a;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}

.product-sheet__content p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  margin: 8px 0 0;
}

.product-sheet__price {
  align-items: baseline;
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.product-sheet__price del {
  color: #94a3b8;
  font-size: 13px;
}

.product-sheet__price strong {
  color: #c5203f;
  font-size: 20px;
  font-weight: 900;
}

.product-sheet__share {
  border-top: 1px solid #e2e8f0;
  display: flex;
  margin-top: 14px;
  padding-top: 12px;
}

.share-button {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #334155;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
}

.product-sheet__actions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 44px 1fr;
  margin-top: 14px;
}

.product-sheet__actions a,
.product-sheet__favorite,
.product-sheet__order {
  align-items: center;
  border: 0;
  border-radius: 12px;
  display: flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  text-decoration: none;
}

.product-sheet__actions a,
.product-sheet__favorite {
  background: #f1f5f9;
  color: #334155;
}

.product-sheet__favorite.is-wishlisted {
  background: #fff1f3;
  color: #c5203f;
}

.product-sheet__order {
  background: #c5203f;
  color: #fff;
}

.product-sheet-open {
  overflow: hidden;
}

.floating-cart {
  align-items: center;
  background: #0f766e;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  bottom: 16px;
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.28);
  color: #fff;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  left: 50%;
  max-width: 406px;
  min-height: 58px;
  padding: 12px 16px;
  position: fixed;
  text-decoration: none;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  z-index: 40;
}

.floating-cart:focus,
.floating-cart:hover {
  background: #115e59;
  color: #fff;
  text-decoration: none;
}

.floating-cart small,
.floating-cart strong {
  color: inherit;
  display: block;
}

.floating-cart small {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.82;
}

.floating-cart strong {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.cart-page {
  background: #e5e7eb;
  color: #0f172a;
  min-height: 100vh;
}

.cart-page *,
.cart-page *::before,
.cart-page *::after {
  box-sizing: border-box;
}

.cart-page__shell {
  background: #f1f5f9;
  margin: 0 auto;
  max-width: 430px;
  min-height: 100vh;
  padding-bottom: 108px;
  position: relative;
  width: 100%;
}

.cart-page__header {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  display: grid;
  gap: 12px;
  grid-template-columns: 40px 1fr 40px;
  min-height: 58px;
  padding: 8px 14px;
  position: sticky;
  top: 0;
  z-index: 30;
}

.cart-page__header h1 {
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

.cart-page__header span {
  color: #64748b;
  display: block;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
  text-align: center;
}

.cart-page__back,
.cart-page__home {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #0f172a;
  display: flex;
  height: 38px;
  justify-content: center;
  text-decoration: none;
  width: 38px;
}

.cart-page__home {
  justify-self: end;
}

.cart-page__content {
  padding: 10px 0 18px;
}

.cart-page__content > .alert {
  border-radius: 0;
  margin: 0 0 8px;
}

.cart-empty {
  align-items: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 8px 12px 0;
  min-height: calc(100vh - 126px);
  overflow: hidden;
  padding: 44px 24px;
  position: relative;
  text-align: center;
}

.cart-empty__visual {
  height: 116px;
  margin-bottom: 18px;
  position: relative;
  width: 136px;
}

.cart-empty__bag {
  align-items: center;
  background: #fff1f3;
  border: 1px solid #ffe4e8;
  border-radius: 28px;
  box-shadow: 0 18px 34px rgba(190, 18, 60, 0.12);
  color: #c5203f;
  display: flex;
  font-size: 44px;
  height: 92px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 14px;
  transform: translateX(-50%);
  width: 92px;
  z-index: 2;
}

.cart-empty__dot {
  border-radius: 999px;
  position: absolute;
}

.cart-empty__dot--one {
  background: #0f3d2e;
  height: 22px;
  left: 12px;
  opacity: 0.16;
  top: 24px;
  width: 22px;
}

.cart-empty__dot--two {
  background: #f59e0b;
  bottom: 18px;
  height: 16px;
  opacity: 0.26;
  right: 18px;
  width: 16px;
}

.cart-empty h2 {
  color: #0f172a;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
}

.cart-empty p {
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  margin: 10px 0 0;
  max-width: 280px;
}

.cart-empty__action {
  align-items: center;
  background: #c5203f;
  border-radius: 14px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 8px;
  justify-content: center;
  margin-top: 22px;
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
}

.cart-empty__action:hover,
.cart-empty__action:focus {
  background: #b51635;
  color: #fff;
  text-decoration: none;
}

.cart-store,
.cart-perks,
.cart-options,
.cart-summary {
  background: #fff;
  margin-top: 8px;
}

.cart-store__head {
  align-items: center;
  border-bottom: 1px solid #eef2f7;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr);
  min-height: 52px;
  padding: 12px 14px;
}

.cart-check {
  align-items: center;
  background: #e11d48;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 10px;
  height: 18px;
  justify-content: center;
  width: 18px;
}

.cart-store__title {
  min-width: 0;
}

.cart-store__title strong {
  color: #0f172a;
  display: block;
  font-size: 14px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-store__title span {
  color: #64748b;
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.cart-store__chat {
  align-items: center;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  color: #be123c;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  text-decoration: none;
}

.cart-store__form {
  margin: 0;
}

.cart-item {
  align-items: flex-start;
  border-bottom: 1px solid #eef2f7;
  display: grid;
  gap: 10px;
  grid-template-columns: 78px minmax(0, 1fr);
  margin: 0;
  padding: 14px;
}

.cart-item:last-child {
  border-bottom: 0;
}

.cart-item__check {
  margin-top: 28px;
}

.cart-item__image {
  align-items: center;
  background: #f8fafc;
  border: 0;
  border-radius: 8px;
  display: flex;
  height: 78px;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  width: 78px;
}

.cart-item__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cart-item__image--empty,
.cart-item__voucher-icon {
  color: #94a3b8;
  font-size: 24px;
}

.cart-item__body {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.cart-item__main {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.cart-item__name {
  color: #0f172a;
  display: -webkit-box;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  overflow: hidden;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cart-item__main small,
.cart-item__stock {
  color: #64748b;
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.cart-item__stock {
  color: #dc2626;
}

.cart-item__meta {
  align-items: end;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.cart-item__price {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.cart-item__price span {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
}

.cart-item__price strong,
.cart-item__voucher-price {
  color: #e11d48;
  display: block;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.cart-item__tools {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
}

.cart-item__remove {
  align-items: center;
  background: transparent;
  border: 0;
  color: #94a3b8;
  display: inline-flex;
  font-size: 18px;
  height: 30px;
  justify-content: center;
  padding: 0;
  width: 24px;
}

.cart-quantity {
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 auto;
  height: 30px;
  overflow: hidden;
}

.cart-quantity button {
  align-items: center;
  background: #fff;
  border: 0;
  color: #334155;
  display: flex;
  font-size: 10px;
  height: 28px;
  justify-content: center;
  padding: 0;
  width: 28px;
}

.cart-quantity input {
  -moz-appearance: textfield;
  border: 0;
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
  height: 28px;
  padding: 0;
  text-align: center;
  width: 34px;
}

.cart-quantity input::-webkit-outer-spin-button,
.cart-quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-perks {
  padding: 0 14px;
}

.cart-perks__row {
  align-items: center;
  border-bottom: 1px solid #eef2f7;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  min-height: 46px;
}

.cart-perks__row:last-child {
  border-bottom: 0;
}

.cart-perks__row > span {
  align-items: center;
  color: #0f172a;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
}

.cart-perks__row em {
  color: #94a3b8;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  text-align: right;
}

.cart-perks__module {
  color: #be123c;
  font-size: 12px;
  font-weight: 800;
  max-width: 68%;
  text-align: right;
}

.cart-perks__module .cart-coupon-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  color: #be123c;
  display: inline-flex;
  gap: 6px;
  justify-content: flex-end;
  min-height: 34px;
  padding: 0;
  text-align: right;
  width: 100%;
}

.cart-perks__module .cart-coupon-trigger:hover,
.cart-perks__module .cart-coupon-trigger:focus {
  color: #9f1239;
  outline: 0;
}

.cart-coupon-trigger__icon {
  display: none;
}

.cart-coupon-trigger > span:nth-child(2) {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.cart-coupon-trigger strong {
  color: inherit;
  display: block;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-coupon-trigger small {
  color: #94a3b8;
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-coupon-trigger > .fa {
  flex: 0 0 auto;
  font-size: 11px;
}

body.coupon-sheet-open {
  overflow: hidden;
}

.coupon-sheet {
  inset: 0;
  pointer-events: none;
  position: fixed;
  visibility: hidden;
  z-index: 120;
}

.coupon-sheet.is-open {
  pointer-events: auto;
  visibility: visible;
}

.coupon-sheet__backdrop {
  background: rgba(15, 23, 42, 0.58);
  border: 0;
  inset: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  transition: opacity 0.24s ease;
  width: 100%;
}

.coupon-sheet.is-open .coupon-sheet__backdrop {
  opacity: 1;
}

.coupon-sheet__panel {
  background: #fff;
  border-radius: 20px 20px 0 0;
  bottom: 0;
  box-shadow: 0 -16px 38px rgba(15, 23, 42, 0.22);
  left: 50%;
  max-height: 86vh;
  max-width: 430px;
  overflow-y: auto;
  padding: 0 16px 24px;
  position: absolute;
  transform: translate(-50%, 105%);
  transition: transform 0.28s ease;
  width: 100%;
}

.coupon-sheet.is-open .coupon-sheet__panel {
  transform: translate(-50%, 0);
}

.coupon-sheet__handle {
  background: #cbd5e1;
  border-radius: 999px;
  height: 4px;
  margin: 10px auto 14px;
  width: 44px;
}

.coupon-sheet__close {
  align-items: center;
  background: #f1f5f9;
  border: 0;
  border-radius: 999px;
  color: #0f172a;
  display: flex;
  height: 34px;
  justify-content: center;
  position: absolute;
  right: 14px;
  top: 16px;
  width: 34px;
}

.coupon-sheet__header {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding-right: 42px;
}

.cart-coupon__icon {
  align-items: center;
  background: #fff1f3;
  border-radius: 12px;
  color: #c5203f;
  display: flex;
  flex: 0 0 44px;
  font-size: 18px;
  height: 44px;
  justify-content: center;
}

.coupon-sheet__header h3 {
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 3px;
}

.coupon-sheet__header p {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.cart-coupon__form {
  display: flex;
  gap: 8px;
}

.cart-coupon__form input {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  height: 44px;
  min-width: 0;
  padding: 0 12px;
  width: 100%;
}

.cart-coupon__form input:focus {
  border-color: #c5203f;
  box-shadow: 0 0 0 3px #fff1f3;
  outline: 0;
}

.cart-coupon__form button {
  background: #c5203f;
  border: 0;
  border-radius: 12px;
  color: #fff;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 900;
  height: 44px;
  padding: 0 14px;
}

.coupon-sheet__alert .alert {
  border-radius: 12px;
  font-size: 12px;
  margin: 10px 0 0;
}

.coupon-list {
  border-top: 1px solid #e2e8f0;
  margin-top: 18px;
  padding-top: 16px;
}

.coupon-list__heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.coupon-list__heading strong {
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
}

.coupon-list__heading small {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.coupon-list__items {
  display: grid;
  gap: 10px;
}

.coupon-card {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 13px;
  display: grid;
  gap: 10px;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  overflow: hidden;
  padding: 10px;
}

.coupon-card.is-applied {
  background: #fff1f3;
  border-color: #fecdd3;
}

.coupon-card__discount {
  align-items: center;
  align-self: stretch;
  background: #c5203f;
  border-radius: 10px;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 58px;
  padding: 8px;
  text-align: center;
}

.coupon-card__body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.coupon-card__body > strong {
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coupon-card code {
  background: transparent;
  color: #be123c;
  font-size: 12px;
  font-weight: 900;
  padding: 0;
}

.coupon-card__meta {
  color: #64748b;
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  font-weight: 700;
  gap: 4px 8px;
}

.coupon-card__select {
  background: #fff;
  border: 1px solid #c5203f;
  border-radius: 9px;
  color: #be123c;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
}

.coupon-card__select:hover,
.coupon-card__select:focus,
.coupon-card__select.is-selected,
.coupon-card__select:disabled {
  background: #c5203f;
  color: #fff;
  outline: 0;
}

.coupon-card__select:disabled {
  cursor: default;
  opacity: 0.72;
}

.coupon-list__empty {
  color: #64748b;
  padding: 22px 12px 8px;
  text-align: center;
}

.coupon-list__empty .fa {
  color: #cbd5e1;
  font-size: 30px;
}

.coupon-list__empty p {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  margin: 8px 0 0;
}

.cart-options {
  padding: 12px 14px;
}

.cart-options .panel-group {
  margin-bottom: 0;
}

.cart-summary {
  padding: 14px;
}

.cart-summary h2 {
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
  margin: 0 0 10px;
}

.cart-summary__row {
  align-items: center;
  color: #64748b;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  justify-content: space-between;
  padding: 6px 0;
}

.cart-summary__row strong {
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
}

.cart-summary__row--grand {
  border-top: 1px solid #eef2f7;
  color: #0f172a;
  font-size: 14px;
  margin-top: 4px;
  padding-top: 12px;
}

.cart-summary__row--grand strong {
  color: #e11d48;
  font-size: 17px;
}

.cart-bottom-bar {
  align-items: center;
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -10px 28px rgba(15, 23, 42, 0.14);
  bottom: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
  left: 50%;
  max-width: 430px;
  min-height: 76px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  position: fixed;
  transform: translateX(-50%);
  width: 100%;
  z-index: 40;
}

.cart-bottom-bar__select {
  align-items: center;
  color: #334155;
  display: grid;
  font-size: 11px;
  font-weight: 800;
  gap: 4px;
  justify-items: center;
}

.cart-bottom-bar__total {
  min-width: 0;
}

.cart-bottom-bar__total span,
.cart-bottom-bar__total small {
  color: #64748b;
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.cart-bottom-bar__total strong {
  color: #e11d48;
  display: block;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-bottom-bar__checkout {
  align-items: center;
  background: #e11d48;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  min-width: 116px;
  padding: 0 16px;
  text-decoration: none;
  white-space: nowrap;
}

.cart-bottom-bar__checkout:focus,
.cart-bottom-bar__checkout:hover {
  color: #fff;
  text-decoration: none;
}

.cart-bottom-bar--inactive {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 116px;
}

.cart-bottom-bar--inactive .cart-bottom-bar__select {
  display: none;
}

.cart-bottom-bar--inactive .cart-bottom-bar__total,
.cart-bottom-bar--inactive .cart-bottom-bar__checkout {
  grid-row: 2;
}

.cart-store-inactive {
  align-items: center;
  background: #fff4f2;
  border: 1px solid #fecdd3;
  border-radius: 10px;
  color: #be123c;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 7px;
  grid-column: 1 / -1;
  grid-row: 1;
  justify-content: center;
  min-height: 32px;
  padding: 6px 10px;
  text-align: center;
}

.cart-bottom-bar__checkout--disabled,
.cart-bottom-bar__checkout--disabled:hover,
.cart-bottom-bar__checkout--disabled:focus {
  background: #cbd5e1;
  border: 0;
  color: #64748b;
  cursor: not-allowed;
}

.cart-product-sheet__actions {
  display: block;
  margin-top: 14px;
}

.cart-product-sheet__actions a {
  align-items: center;
  background: #e11d48;
  border-radius: 12px;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  text-decoration: none;
}

.checkout-page {
  background: #e5e7eb;
  color: #0f172a;
  min-height: 100vh;
}

.checkout-page *,
.checkout-page *::before,
.checkout-page *::after {
  box-sizing: border-box;
}

.checkout-page__shell {
  background: #f1f5f9;
  margin: 0 auto;
  max-width: 430px;
  min-height: 100vh;
  padding-bottom: 126px;
  width: 100%;
}

.checkout-page__header {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  display: grid;
  gap: 10px;
  grid-template-columns: 40px 1fr 40px;
  min-height: 58px;
  padding: 8px 14px;
  position: sticky;
  top: 0;
  z-index: 30;
}

.checkout-page__header h1 {
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}

.checkout-page__back,
.checkout-page__menu {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #0f172a;
  display: flex;
  height: 38px;
  justify-content: center;
  text-decoration: none;
  width: 38px;
}

.checkout-page__menu {
  justify-self: end;
  padding: 0;
}

.checkout-page__content {
  padding: 10px 0 18px;
}

.checkout-page__content > .alert {
  border-radius: 0;
  margin: 0 0 8px;
}

.checkout-address-card,
.checkout-store-card,
.checkout-steps,
.checkout-confirm-panel.is-ready {
  background: #fff;
  margin-top: 8px;
}

.checkout-address-card {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 16px 14px;
  touch-action: manipulation;
}

.checkout-address-card h2,
.checkout-store-card__head strong {
  color: #0f172a;
  display: block;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
  margin: 0;
}

.checkout-address-card p {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  margin: 7px 0 0;
}

.checkout-address-card__action {
  background: transparent;
  border: 0;
  color: #e11d48;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
  padding: 0;
  text-decoration: none;
}

.checkout-address-card__action:focus,
.checkout-address-card__action:hover {
  color: #be123c;
  outline: 0;
  text-decoration: none;
}

.checkout-store-card__head {
  align-items: center;
  border-bottom: 1px solid #eef2f7;
  display: flex;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 14px;
}

.checkout-store-card__head span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.checkout-product-list {
  background: #f8fafc;
}

.checkout-confirm__items {
  display: grid;
  gap: 8px;
  padding: 10px 12px;
}

.checkout-confirm__product {
  align-items: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  min-height: 84px;
  padding: 10px;
}

.checkout-confirm__product:last-child {
  border-bottom: 1px solid #e2e8f0;
}

.checkout-confirm__image,
.checkout-confirm__voucher-icon {
  align-items: center;
  background: #f8fafc;
  border: 0;
  border-radius: 8px;
  display: flex;
  height: 64px;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  width: 64px;
}

.checkout-confirm__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.checkout-confirm__voucher-icon {
  color: #94a3b8;
  font-size: 24px;
}

.checkout-confirm__product-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.checkout-confirm__product-copy a,
.checkout-confirm__product-copy strong {
  color: #0f172a;
  display: -webkit-box;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  overflow: hidden;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.checkout-confirm__product-copy small,
.checkout-confirm__unit-price {
  color: #64748b;
  display: block;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.checkout-confirm__unit-price {
  margin-top: 2px;
}

.checkout-confirm__line-total {
  color: #e11d48;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.checkout-confirm__totals {
  border-top: 1px solid #eef2f7;
  padding: 0 14px;
}

.checkout-confirm__total {
  align-items: center;
  color: #64748b;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  justify-content: space-between;
  padding: 10px 0;
}

.checkout-confirm__total strong {
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
}

.checkout-confirm__total--grand {
  color: #0f172a;
  font-size: 14px;
}

.checkout-confirm__total--grand strong {
  color: #e11d48;
  font-size: 17px;
}

.checkout-confirm__payment {
  background: #fff;
  margin-top: 8px;
  padding: 14px;
}

.checkout-confirm__payment-inner {
  margin-top: 12px;
}

.checkout-steps {
  margin-bottom: 0;
}

.checkout-steps .panel {
  border: 0;
  border-bottom: 1px solid #eef2f7;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}

.checkout-steps .checkout-step--option {
  display: none !important;
}

.checkout-steps .checkout-step--shipping-address {
  display: none !important;
}

.checkout-steps .checkout-step--account,
.checkout-steps .checkout-step--address {
  border: 0;
  height: 0;
  margin: 0;
  overflow: visible;
}

.checkout-steps .checkout-step--account > .panel-heading,
.checkout-steps .checkout-step--address > .panel-heading {
  display: none;
}

.checkout-steps .panel:last-child {
  border-bottom: 0;
}

.checkout-steps .panel-heading {
  background: #fff;
  border: 0;
  border-radius: 0;
  color: #0f172a;
  padding: 0;
}

.checkout-steps .panel-title {
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  margin: 0;
}

.checkout-steps .panel-title,
.checkout-steps .panel-title a {
  align-items: center;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 14px;
  text-decoration: none;
  width: 100%;
}

.checkout-steps .panel-title a i {
  color: #e11d48;
}

.checkout-steps .panel-body {
  border-top: 1px solid #eef2f7 !important;
  padding: 14px;
}

.checkout-steps .form-control {
  border-color: #e2e8f0;
  border-radius: 10px;
  box-shadow: none;
  min-height: 42px;
}

.checkout-steps .btn-primary,
.checkout-confirm__payment .btn-primary,
.checkout-confirm__payment button[id^="button-"],
.checkout-confirm__payment input[type="button"] {
  background: #e11d48;
  border-color: #e11d48;
  border-radius: 12px;
  color: #fff;
  font-weight: 900;
  min-height: 42px;
}

.checkout-step-sheet__backdrop {
  background: rgba(15, 23, 42, 0.48);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.2s ease;
  z-index: 70;
}

.checkout-step-sheet__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.checkout-step-sheet {
  background: #fff;
  border-radius: 22px 22px 0 0;
  bottom: 0;
  box-shadow: 0 -18px 40px rgba(15, 23, 42, 0.22);
  display: block !important;
  left: 50%;
  max-height: 88vh;
  max-height: 88dvh;
  max-width: 430px;
  overflow: hidden;
  position: fixed;
  right: auto;
  top: auto;
  transform: translate(-50%, 110%);
  transition: transform 0.24s ease;
  width: calc(100% - 28px);
  z-index: 80;
}

#checkout-checkout #accordion > .panel > .panel-collapse.checkout-step-sheet {
  border-radius: 22px 22px 0 0;
  bottom: 0;
  display: block !important;
  height: auto !important;
  left: 50%;
  margin: 0;
  max-height: 88vh;
  max-height: 88dvh;
  max-width: 430px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  right: auto;
  transform: translate(-50%, 110%);
  visibility: hidden;
  width: calc(100% - 28px);
}

.checkout-step-sheet.in,
.checkout-step-sheet.is-sheet-open {
  transform: translate(-50%, 0);
}

#checkout-checkout #accordion > .panel > .panel-collapse.checkout-step-sheet.in,
#checkout-checkout #accordion > .panel > .panel-collapse.checkout-step-sheet.is-sheet-open {
  display: flex !important;
  flex-direction: column;
  height: 88vh !important;
  height: 88dvh !important;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.checkout-step-sheet__header {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #eef2f7;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 38px;
  min-height: 58px;
  padding: 18px 14px 10px;
  position: sticky;
  top: 0;
  z-index: 2;
}

.checkout-step-sheet__handle {
  background: #cbd5e1;
  border-radius: 999px;
  height: 4px;
  left: 50%;
  position: absolute;
  top: 8px;
  transform: translateX(-50%);
  width: 42px;
}

.checkout-step-sheet__title {
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
}

.checkout-step-sheet__close {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #0f172a;
  display: flex;
  height: 34px;
  justify-content: center;
  padding: 0;
  width: 34px;
}

.checkout-step-sheet > .panel-body {
  border-top: 0 !important;
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 14px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom));
  touch-action: pan-y;
}

.checkout-step-sheet-open {
  overflow: hidden;
}

.checkout-bottom-bar {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  bottom: 0;
  box-shadow: 0 -10px 28px rgba(15, 23, 42, 0.12);
  left: 50%;
  max-width: 430px;
  padding: 12px 14px calc(14px + env(safe-area-inset-bottom));
  position: fixed;
  transform: translateX(-50%);
  width: 100%;
  z-index: 40;
}

.checkout-bottom-bar__copy {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.checkout-bottom-bar__copy span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.checkout-bottom-bar__copy strong {
  color: #e11d48;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  max-width: 58%;
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-bottom-bar__button {
  align-items: center;
  background: #e11d48;
  border: 0;
  border-radius: 12px;
  color: #fff;
  display: flex;
  font-size: 15px;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  width: 100%;
}

.checkout-product-sheet__actions {
  display: block;
  margin-top: 14px;
}

.checkout-product-sheet__actions a {
  align-items: center;
  background: #e11d48;
  border-radius: 12px;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  text-decoration: none;
}

@media (min-width: 431px) {
  .cart-page {
    padding: 0;
  }

  .checkout-step-sheet {
    border-radius: 20px 20px 0 0;
    bottom: 0;
    max-width: 430px;
    width: 100%;
  }

  #checkout-checkout #accordion > .panel > .panel-collapse.checkout-step-sheet {
    border-radius: 20px 20px 0 0;
    bottom: 0;
    max-width: 430px;
    width: 100%;
  }
}

@media (max-width: 360px) {
  .cart-item {
    grid-template-columns: 68px minmax(0, 1fr);
    padding-left: 10px;
    padding-right: 10px;
  }

  .cart-item__image {
    height: 68px;
    width: 68px;
  }

  .cart-item__meta {
    align-items: flex-start;
    display: grid;
  }

  .cart-bottom-bar {
    gap: 8px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .cart-bottom-bar__checkout {
    min-width: 102px;
    padding: 0 12px;
  }

  .checkout-confirm__product {
    grid-template-columns: 60px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 8px;
  }

  .checkout-confirm__image,
  .checkout-confirm__voucher-icon {
    height: 60px;
    width: 60px;
  }

  .checkout-bottom-bar__copy strong {
    font-size: 19px;
  }
}

/* Etalase Retail checkout */
.checkout-page__shell {
  background: #f3f6f8;
  padding-bottom: 132px;
}

.checkout-page__header {
  gap: 8px;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  min-height: 60px;
  padding: 8px 12px;
}

.checkout-page__header h1 {
  font-size: 18px;
  font-weight: 800;
}

.checkout-page__back,
.checkout-page__menu {
  background: #f4f7fa;
  border: 0;
  height: 40px;
  width: 40px;
}

.checkout-page__back {
  font-size: 10px;
}

.checkout-page__menu {
  font-size: 14px;
}

.checkout-page__content {
  padding: 8px 0 20px;
}

.checkout-address-card,
.checkout-store-card,
.checkout-payment-card {
  background: #fff;
  border: 1px solid #edf1f5;
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  margin-top: 0;
}

.checkout-address-card {
  gap: 14px;
  min-height: 128px;
  padding: 18px 16px 16px;
}

.checkout-address-card__body {
  min-width: 0;
}

.checkout-address-card h2 {
  font-size: 15px;
}

.checkout-address-card__summary {
  color: #334155;
  display: grid;
  font-size: 13px;
  gap: 2px;
  line-height: 1.4;
  margin-top: 10px;
}

.checkout-address-card__summary strong {
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
}

.checkout-address-card__summary span {
  color: #334155;
}

.checkout-address-card__summary p,
.checkout-address-card p {
  color: #475569;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  margin: 2px 0 0;
}

.checkout-address-card__action {
  color: #f43f5e;
  font-size: 12px;
  font-weight: 500;
}

.checkout-store-card {
  margin-top: 7px;
}

.checkout-store-card__head {
  min-height: 55px;
  padding: 0 16px;
}

.checkout-store-card__head strong {
  align-items: center;
  display: flex;
  font-size: 15px;
  gap: 6px;
}

.checkout-store-card__head strong .fa {
  font-size: 12px;
}

#checkout-checkout .checkout-product-list {
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

#checkout-checkout .checkout-product-list .checkout-confirm__items {
  display: block;
  gap: 0;
  margin: 0;
  padding: 0;
}

#checkout-checkout .checkout-product-list .checkout-confirm__product {
  align-items: start;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 0;
  gap: 12px;
  grid-template-columns: 80px minmax(0, 1fr) max-content;
  min-height: 112px;
  margin: 0;
  padding: 16px;
}

#checkout-checkout .checkout-product-list .checkout-confirm__image,
#checkout-checkout .checkout-product-list .checkout-confirm__voucher-icon {
  align-self: center;
  border: 0;
  border-radius: 8px;
  grid-column: 1;
  grid-row: 1;
  height: 80px;
  margin: 0;
  width: 80px;
}

#checkout-checkout .checkout-product-list .checkout-confirm__product-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 3px;
  grid-column: 2;
  grid-row: 1;
  justify-content: flex-start;
  min-height: 80px;
  min-width: 0;
  text-align: left;
}

#checkout-checkout .checkout-product-list .checkout-confirm__product-copy a,
#checkout-checkout .checkout-product-list .checkout-confirm__product-copy > strong:not(.checkout-confirm__price) {
  display: -webkit-box;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
  overflow: hidden;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#checkout-checkout .checkout-product-list .checkout-confirm__product-copy small {
  color: #64748b;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
  text-align: left;
}

#checkout-checkout .checkout-product-list .checkout-confirm__price {
  color: #f43f5e;
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: auto;
  overflow: visible;
  text-align: left;
}

#checkout-checkout .checkout-product-list .checkout-confirm__quantity {
  align-self: end;
  color: #0f172a;
  font-size: 13px;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  padding-bottom: 8px;
  text-align: right;
}

#checkout-checkout .checkout-product-list > .checkout-confirm__totals {
  display: none;
}

.checkout-order-options {
  background: #fff;
}

.checkout-order-option,
.checkout-payment-card__button {
  align-items: center;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #e5e7eb;
  color: #0f172a;
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  min-height: 55px;
  padding: 10px 16px;
  text-align: left;
  text-decoration: none;
  width: 100%;
}

.checkout-order-option:last-child {
  border-bottom: 0;
}

.checkout-order-option:disabled {
  color: #94a3b8;
  cursor: not-allowed;
}

.checkout-order-option:disabled > strong {
  color: #94a3b8;
}

.checkout-coupon-module > .cart-coupon-trigger {
  display: none;
}

.checkout-order-option:hover,
.checkout-order-option:focus,
.checkout-payment-card__button:hover,
.checkout-payment-card__button:focus {
  color: #0f172a;
  outline: 0;
  text-decoration: none;
}

.checkout-order-option > strong,
.checkout-order-option__value,
.checkout-payment-card__button > strong {
  color: #f43f5e;
  font-size: 12px;
  font-weight: 500;
  text-align: right;
}

.checkout-order-option__value {
  display: grid;
  gap: 2px;
}

.checkout-order-option__value strong {
  color: #0f172a;
  font-size: 12px;
  font-weight: 500;
}

.checkout-order-option__value small {
  color: #f43f5e;
  font-size: 12px;
}

.checkout-payment-card {
  margin-top: 8px;
}

.checkout-payment-card__button {
  border-bottom: 0;
  font-size: 15px;
  min-height: 58px;
}

.checkout-payment-card__button > span {
  font-weight: 500;
}

.checkout-payment-card__button > strong {
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
}

.checkout-steps {
  background: transparent;
  height: 0;
  margin: 0;
  overflow: visible;
}

.checkout-steps > .panel:not(.checkout-confirm-panel) {
  border: 0 !important;
  height: 0;
  margin: 0 !important;
  overflow: visible;
}

.checkout-steps > .panel > .panel-heading {
  display: none;
}

.checkout-confirm-panel {
  display: none;
}

.checkout-confirm-panel.is-ready {
  background: #fff;
  border: 1px solid #edf1f5;
  border-left: 0;
  border-right: 0;
  display: block;
  margin: 0;
}

.checkout-bottom-bar {
  display: block;
}

.checkout-page.is-confirm-ready .checkout-steps {
  background: #fff;
  height: auto;
}

.checkout-confirm-panel.is-ready .checkout-confirm__payment {
  margin: 0;
  padding: 4px 16px 16px;
}

.checkout-confirm-panel.is-ready .checkout-confirm__payment-inner {
  display: none;
}

.checkout-confirm-panel.is-ready .checkout-confirm__total {
  color: #0f172a;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 0;
}

.checkout-confirm-panel.is-ready .checkout-confirm__total strong {
  font-size: 14px;
  font-weight: 500;
}

.checkout-confirm-panel.is-ready .checkout-confirm__total--coupon,
.checkout-confirm-panel.is-ready .checkout-confirm__total--coupon strong,
.checkout-confirm-panel.is-ready .checkout-confirm__total--voucher,
.checkout-confirm-panel.is-ready .checkout-confirm__total--voucher strong {
  color: #059669;
}

.checkout-confirm-panel.is-ready .checkout-confirm__total--grand {
  border-top: 1px solid #e5e7eb;
  font-size: 17px;
  font-weight: 800;
  margin-top: 6px;
  padding-top: 16px;
}

.checkout-confirm-panel.is-ready .checkout-confirm__total--grand strong {
  color: #e91e4d;
  font-size: 18px;
  font-weight: 800;
}

.checkout-bottom-bar__copy {
  display: block;
  margin-bottom: 10px;
}

.checkout-bottom-bar__heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2px;
}

.checkout-bottom-bar__heading button {
  background: transparent;
  border: 0;
  color: #e91e4d;
  font-size: 12px;
  padding: 0;
}

.checkout-bottom-bar__copy > strong {
  display: block;
  font-size: 22px;
  max-width: none;
  text-align: left;
}

/* Checkout slide-up sheet */
.checkout-step-sheet__backdrop {
  background: rgba(15, 23, 42, 0.58);
}

#checkout-checkout #accordion > .panel > .panel-collapse.checkout-step-sheet {
  border-radius: 20px 20px 0 0;
  bottom: 0;
  height: 86vh !important;
  height: 86dvh !important;
  max-height: 86vh;
  max-height: 86dvh;
  max-width: 430px;
  width: 100%;
}

#checkout-checkout #accordion > .panel > .panel-collapse.checkout-step-sheet > .checkout-step-sheet__header {
  min-height: 64px;
  padding: 18px 16px 12px;
}

#checkout-checkout .checkout-step-sheet__title {
  font-size: 18px;
  font-weight: 800;
}

#checkout-checkout .checkout-step-sheet__close {
  background: #f1f5f9;
  border: 0;
  height: 34px;
  width: 34px;
}

#checkout-checkout #accordion > .panel > .panel-collapse.checkout-step-sheet > .panel-body {
  padding: 16px 16px 24px;
  scrollbar-color: #94a3b8 transparent;
  scrollbar-width: thin;
}

#checkout-checkout #collapse-payment-address .panel-body > .row {
  display: block;
  margin: 0;
}

#checkout-checkout #collapse-payment-address .panel-body > .row > .col-sm-6 {
  float: none;
  padding: 0;
  width: 100%;
}

#checkout-checkout #collapse-payment-address fieldset > legend {
  border-bottom: 1px solid #e2e8f0;
  color: #0f172a;
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 16px;
  padding: 0 0 10px;
}

#checkout-checkout #collapse-payment-address .form-group {
  margin-bottom: 14px;
}

#checkout-checkout #collapse-payment-address .control-label {
  color: #334155;
  font-size: 13px;
  margin-bottom: 6px;
}

#checkout-checkout #collapse-payment-address .form-control {
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 14px;
  height: 44px;
  padding: 10px 12px;
}

#checkout-checkout #collapse-payment-address .form-control:focus {
  border-color: #c5203f;
  box-shadow: 0 0 0 3px #fff1f3;
}

#checkout-checkout #collapse-payment-address > .panel-body > .buttons,
#checkout-checkout #collapse-payment-address .panel-body > form > .buttons {
  border-top: 1px solid #e2e8f0;
  margin: 20px 0 0;
  padding: 16px 0 0;
}

#checkout-checkout #collapse-payment-address .buttons .pull-right {
  float: none !important;
  width: 100%;
}

#checkout-checkout #collapse-payment-address .buttons .btn-primary {
  background: #c5203f;
  border: 0;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin: 0;
  min-height: 46px;
  width: 100%;
}

#checkout-checkout #collapse-shipping-method .buttons,
#checkout-checkout #collapse-payment-method .buttons {
  border-top: 1px solid #e2e8f0;
  margin: 22px 0 0;
  padding: 16px 0 2px;
}

#checkout-checkout #collapse-shipping-method .buttons .pull-right,
#checkout-checkout #collapse-payment-method .buttons .pull-right {
  display: grid;
  float: none !important;
  gap: 12px;
  width: 100%;
}

#checkout-checkout #collapse-payment-method .checkout-agreement {
  margin: 0;
  max-width: none;
  width: 100%;
}

#checkout-checkout #button-shipping-method,
#checkout-checkout #button-payment-method {
  align-items: center;
  background-color: #e91e4d !important;
  background-image: none !important;
  border: 1px solid #e91e4d !important;
  border-radius: 10px;
  box-shadow: none;
  color: #fff;
  display: flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  margin: 0;
  min-height: 50px;
  padding: 10px 18px;
  text-shadow: none;
  width: 100%;
}

#checkout-checkout #button-shipping-method:hover,
#checkout-checkout #button-shipping-method:focus,
#checkout-checkout #button-shipping-method:active,
#checkout-checkout #button-shipping-method.active,
#checkout-checkout #button-payment-method:hover,
#checkout-checkout #button-payment-method:focus,
#checkout-checkout #button-payment-method:active,
#checkout-checkout #button-payment-method.active {
  background-color: #c51643 !important;
  background-image: none !important;
  border-color: #c51643 !important;
  color: #fff;
  outline: 0;
}

#checkout-checkout #button-shipping-method:disabled,
#checkout-checkout #button-shipping-method.disabled,
#checkout-checkout #button-shipping-method[disabled],
#checkout-checkout #button-payment-method:disabled,
#checkout-checkout #button-payment-method.disabled,
#checkout-checkout #button-payment-method[disabled] {
  background-color: #f48aa3 !important;
  background-image: none !important;
  border-color: #f48aa3 !important;
  color: #fff !important;
  cursor: not-allowed;
  opacity: 1;
}

.checkout-sheet-loading {
  align-items: center;
  color: #64748b;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  gap: 10px;
  justify-content: center;
  min-height: 180px;
  text-align: center;
}

.checkout-sheet-loading .fa {
  color: #ff7600;
  font-size: 24px;
}

#checkout-checkout.checkout-page.is-confirm-ready .checkout-payment-card {
  border-bottom: 0;
}

#checkout-checkout.checkout-page.is-confirm-ready #accordion.checkout-steps {
  background: #fff;
  height: auto;
  overflow: visible;
}

#checkout-checkout #accordion.checkout-steps > .checkout-confirm-panel.is-ready {
  background: #fff;
  border: 1px solid #edf1f5;
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  border-top: 0;
  box-shadow: none;
  display: block !important;
  height: auto;
  margin: 0;
  overflow: visible;
}

#checkout-checkout #accordion.checkout-steps > .checkout-confirm-panel.is-ready > #collapse-checkout-confirm {
  display: block !important;
  height: auto !important;
  overflow: visible;
}

#checkout-checkout #accordion.checkout-steps > .checkout-confirm-panel.is-ready > #collapse-checkout-confirm > .panel-body {
  border: 0 !important;
  min-height: 0;
  overflow: visible;
  padding: 0 9px 14px;
}

#checkout-checkout .checkout-confirm-panel.is-ready .checkout-confirm__payment {
  background: #fff;
  border-top: 0;
  bottom: auto;
  box-shadow: none;
  left: auto;
  margin: 0;
  max-width: none;
  padding: 0;
  position: static;
  right: auto;
  width: 100%;
  z-index: auto;
}

#checkout-checkout .checkout-confirm-panel.is-ready .checkout-confirm__payment-inner {
  display: none !important;
}

#checkout-checkout .checkout-confirm-panel.is-ready .checkout-confirm__total {
  border: 0;
  color: #0f172a;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  justify-content: space-between;
  min-height: 36px;
  padding: 8px 0;
}

#checkout-checkout .checkout-confirm-panel.is-ready .checkout-confirm__total span,
#checkout-checkout .checkout-confirm-panel.is-ready .checkout-confirm__total strong {
  color: #0f172a;
  font-size: 14px;
  font-weight: 400;
}

#checkout-checkout .checkout-confirm-panel.is-ready .checkout-confirm__total--coupon span,
#checkout-checkout .checkout-confirm-panel.is-ready .checkout-confirm__total--coupon strong,
#checkout-checkout .checkout-confirm-panel.is-ready .checkout-confirm__total--voucher span,
#checkout-checkout .checkout-confirm-panel.is-ready .checkout-confirm__total--voucher strong {
  color: #059669;
}

#checkout-checkout .checkout-confirm-panel.is-ready .checkout-confirm__total--grand {
  border-top: 1px solid #e2e8f0;
  font-size: 17px;
  font-weight: 800;
  margin-top: 4px;
  padding-top: 14px;
}

#checkout-checkout .checkout-confirm-panel.is-ready .checkout-confirm__total--grand span,
#checkout-checkout .checkout-confirm-panel.is-ready .checkout-confirm__total--grand strong {
  font-size: 17px;
  font-weight: 800;
}

#checkout-checkout .checkout-confirm-panel.is-ready .checkout-confirm__total--grand strong {
  color: #e91e4d;
}

@media (max-width: 360px) {
  #checkout-checkout .checkout-product-list .checkout-confirm__product {
    gap: 10px;
    grid-template-columns: 72px minmax(0, 1fr) max-content;
    padding: 14px 12px;
  }

  #checkout-checkout .checkout-product-list .checkout-confirm__image,
  #checkout-checkout .checkout-product-list .checkout-confirm__voucher-icon {
    height: 72px;
    width: 72px;
  }

  #checkout-checkout .checkout-product-list .checkout-confirm__product-copy {
    min-height: 72px;
  }
}

/* footer */
footer:not(.store-footer) {
  background-color: #303030;
  border-top: 1px solid #ddd;
  color: #e2e2e2;
  margin-top: 30px;
  padding-top: 30px;
}

footer:not(.store-footer) hr {
  border-bottom: 1px solid #666;
  border-top: none;
}

footer:not(.store-footer) a {
  color: #ccc;
}

footer:not(.store-footer) a:hover {
  color: #fff;
}

footer:not(.store-footer) h5 {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: bold;
}

.store-footer {
  background: linear-gradient(135deg, #0f3d2e 0%, #7f1d2f 100%);
  border-top: 0;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  padding: 34px 18px calc(34px + env(safe-area-inset-bottom));
  width: 100%;
}

.store-footer *,
.store-footer *::before,
.store-footer *::after {
  box-sizing: border-box;
}

.store-footer__inner {
  margin: 0 auto;
  max-width: 1120px;
  width: 100%;
}

.store-footer__main {
  align-items: flex-start;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  padding-bottom: 24px;
}

.store-footer__identity {
  align-items: flex-start;
  display: grid;
  gap: 14px;
  grid-template-columns: auto minmax(0, 1fr);
  min-width: 0;
}

.store-footer__logo {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 16px;
  display: flex;
  flex: 0 0 auto;
  height: 58px;
  justify-content: center;
  overflow: hidden;
  width: 58px;
}

.store-footer__logo img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.store-footer__identity strong {
  color: #fff;
  display: block;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35;
  margin: 3px 0 7px;
  overflow-wrap: anywhere;
}

.store-footer__identity p {
  align-items: flex-start;
  display: flex;
  font-size: 13px;
  font-weight: 600;
  gap: 7px;
  line-height: 1.6;
  margin: 0;
  max-width: 540px;
  overflow-wrap: anywhere;
}

.store-footer__identity p .fa {
  color: rgba(255, 255, 255, 0.88);
  flex: 0 0 16px;
  line-height: 1.6;
  margin-top: 1px;
}

.store-footer__navigation {
  min-width: 0;
}

.store-footer__title {
  color: #fff;
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.store-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 10px;
}

.store-footer__links a {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  max-width: 100%;
  min-height: 32px;
  padding: 8px 12px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.store-footer__links a:hover,
.store-footer__links a:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  text-decoration: none;
}

.store-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
}

.store-footer__credit {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.store-footer__credit span {
  display: block;
}

.order-shipment {
  padding: 16px 18px 18px;
}

.order-shipment__summary {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.order-shipment__summary article {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  min-width: 0;
  padding: 12px 13px;
}

.order-shipment__summary small,
.order-shipment__summary strong {
  display: block;
}

.order-shipment__summary small {
  color: #64748b;
  font-size: 11px;
  margin-bottom: 4px;
}

.order-shipment__summary strong {
  color: #0f172a;
  overflow-wrap: anywhere;
}

.order-shipment__meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.order-shipment__meta span {
  background: #fff1f2;
  border-radius: 999px;
  color: #be123c;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 10px;
}

.order-shipment__timeline {
  border-top: 1px solid #e2e8f0;
  margin-top: 16px;
  padding-top: 16px;
}

.order-shipment__timeline article {
  display: flex;
  gap: 13px;
  padding: 0 0 18px;
  position: relative;
}

.order-shipment__timeline article:last-child {
  padding-bottom: 0;
}

.order-shipment__timeline article:not(:last-child)::before {
  background: #e2e8f0;
  content: "";
  height: 100%;
  left: 5px;
  position: absolute;
  top: 10px;
  width: 2px;
}

.order-shipment__timeline strong,
.order-shipment__timeline small {
  display: block;
}

.order-shipment__timeline strong {
  color: #0f172a;
}

.order-shipment__timeline small,
.order-shipment__timeline p {
  color: #64748b;
}

.order-shipment__timeline small {
  font-size: 11px;
  margin-top: 3px;
}

.order-shipment__timeline p {
  margin: 6px 0 0;
}

.order-shipment__notice {
  align-items: center;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  color: #1d4ed8;
  display: flex;
  gap: 9px;
  margin-top: 14px;
  padding: 12px 13px;
}

.auth-card__seller {
  align-items: center;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: 16px;
  padding: 14px;
}

.auth-card__seller strong,
.auth-card__seller span {
  display: block;
}

.auth-card__seller strong {
  color: #111827;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.auth-card__seller span {
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 3px;
}

.auth-card__seller a {
  align-items: center;
  background: #f97316;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  gap: 7px;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  text-decoration: none;
  white-space: nowrap;
}

.auth-card__seller a:hover,
.auth-card__seller a:focus {
  background: #ea580c;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 700px) {
  .auth-card__seller {
    align-items: stretch;
    flex-direction: column;
  }

  .auth-card__seller a {
    width: 100%;
  }

  .store-footer {
    padding: 24px 14px calc(24px + env(safe-area-inset-bottom));
  }

  .store-footer__main {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .store-footer__navigation {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 18px;
  }

  .store-footer__logo {
    border-radius: 14px;
    height: 52px;
    width: 52px;
  }

  .store-footer__identity strong {
    font-size: 16px;
  }
}

/* Checkout success — follows openstore_checkout_v1.html */
#common-success.success-page {
  background: #f1f5f9;
  min-height: 100vh;
  padding: 0;
}

#common-success .success-page__shell {
  background: #f1f5f9;
  display: block;
  margin: 0 auto;
  max-width: 430px;
  min-height: 100vh;
  width: 100%;
}

#common-success .success-page__header {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  display: grid;
  gap: 8px;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  min-height: 64px;
  padding: 11px 12px;
  position: sticky;
  top: 0;
  z-index: 20;
}

#common-success .success-page__header h1 {
  color: #0f172a;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}

#common-success .success-page__back,
#common-success .success-page__menu {
  align-items: center;
  background: #f1f5f9;
  border: 0;
  border-radius: 999px;
  color: #0f172a;
  display: flex;
  height: 40px;
  justify-content: center;
  text-decoration: none;
  width: 40px;
}

#common-success .success-page__back {
  font-size: 11px;
}

#common-success .success-page__menu {
  border-radius: 12px;
  font-size: 14px;
}

#common-success .success-page__content {
  padding: 8px 0 16px;
}

#common-success .success-page__panel {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 24px);
  min-height: calc(100dvh - 24px);
}

#common-success .success-card {
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  padding: 32px 24px 28px;
  text-align: center;
}

#common-success .success-card::before {
  display: none;
}

#common-success .success-card__icon {
  align-items: center;
  background: #dcfce7;
  border: 7px solid #f0fdf4;
  border-radius: 50%;
  color: #16a34a;
  display: flex;
  font-size: 25px;
  height: 76px;
  justify-content: center;
  margin: 0 auto 18px;
  width: 76px;
}

#common-success .success-card__eyebrow {
  color: #e91e4d;
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

#common-success .success-card h2 {
  color: #0f172a;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

#common-success .success-card__order-id {
  background: #fff1f4;
  border-radius: 999px;
  color: #be123c;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  margin-top: 14px;
  padding: 7px 12px;
}

#common-success .success-card__message {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  margin: 14px auto 0;
  max-width: 330px;
}

#common-success .success-bank-transfer {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  display: grid;
  gap: 12px;
  margin: 0;
  max-width: none;
  padding: 16px;
  text-align: left;
}

#common-success .success-bank-transfer__heading {
  display: grid;
  gap: 3px;
}

#common-success .success-bank-transfer__heading span {
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#common-success .success-bank-transfer__heading strong {
  color: #0f172a;
  font-size: 16px;
  font-weight: 800;
}

#common-success .success-bank-transfer__account {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  display: grid;
  gap: 4px;
  padding: 14px;
}

#common-success .success-bank-transfer__account span,
#common-success .success-bank-transfer__account small {
  color: #64748b;
  font-size: 12px;
}

#common-success .success-bank-transfer__account strong {
  color: #e91e4d;
  font-size: 17px;
  line-height: 1.35;
}

#common-success .success-bank-transfer__account p {
  color: #0f172a;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

#common-success .success-card__actions {
  background: #fff;
  border-top: 0;
  display: grid;
  gap: 9px;
  padding: 0 24px 28px;
  position: static;
}

#common-success .success-card__action-row {
  display: flex;
  gap: 9px;
  width: 100%;
}

#common-success .success-card__action-row .success-card__button {
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
  width: auto;
}

#common-success .success-card__button {
  align-items: center;
  background: #e91e4d;
  border: 1px solid #e91e4d;
  border-radius: 12px;
  box-shadow: none;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
  width: 100%;
}

#common-success .success-card__button--secondary {
  background: #fff;
  border-color: #e91e4d;
  color: #e91e4d;
}

#common-success .success-card__button--return {
  background: #f97316;
  border-color: #f97316;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.22);
  color: #fff;
}

#common-success .success-card__button--return:hover,
#common-success .success-card__button--return:focus {
  background: #ea580c;
  border-color: #ea580c;
  color: #fff;
}

#common-success .success-card__button--plain {
  background: #f1f5f9;
  border-color: #f1f5f9;
  color: #334155;
}

#common-success .success-card__button:hover,
#common-success .success-card__button:focus {
  background: #be123c;
  border-color: #be123c;
  color: #fff;
  text-decoration: none;
  transform: none;
}

#common-success .success-card__button--plain:hover,
#common-success .success-card__button--plain:focus {
  background: #e2e8f0;
  border-color: #e2e8f0;
  color: #0f172a;
}

#common-success > .storefront-widgets,
#common-success > #content-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: 430px;
}

@media (min-width: 431px) {
  #common-success .success-page__shell {
    box-shadow: 0 0 30px rgba(15, 23, 42, 0.08);
  }
}

/* Xendit QRIS order action */
#xendit-qris-page .xendit-qris__actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

#xendit-qris-page .xendit-qris__order-button {
  align-items: center;
  background: #e91e4d;
  border: 1px solid #e91e4d;
  border-radius: 12px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

#xendit-qris-page .xendit-qris__order-button .fa-chevron-right {
  font-size: 9px;
  margin-left: 3px;
}

#xendit-qris-page .xendit-qris__order-button:hover,
#xendit-qris-page .xendit-qris__order-button:focus {
  background: #be123c;
  border-color: #be123c;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  #xendit-qris-page .xendit-qris__order-button {
    max-width: 280px;
    width: 100%;
  }
}

/* Storefront back to top */
#backToTopBtn.back-to-top-button,
#categoryBackToTopBtn.back-to-top-button,
#specialBackToTopBtn.back-to-top-button,
#searchBackToTopBtn.back-to-top-button {
  background: #0f3d2e;
  border: 2px solid #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.34);
  color: #fff;
  font-size: 16px;
}

#backToTopBtn.back-to-top-button:hover,
#backToTopBtn.back-to-top-button:focus,
#categoryBackToTopBtn.back-to-top-button:hover,
#categoryBackToTopBtn.back-to-top-button:focus,
#specialBackToTopBtn.back-to-top-button:hover,
#specialBackToTopBtn.back-to-top-button:focus,
#searchBackToTopBtn.back-to-top-button:hover,
#searchBackToTopBtn.back-to-top-button:focus {
  background: #092b20;
  border-color: #fff;
  color: #fff;
  outline: 0;
}

/* Compact buyer address sheet */
.checkout-address-add-trigger {
  display: none;
}

#checkout-checkout #accordion > .panel > #collapse-payment-address.checkout-step-sheet.in,
#checkout-checkout #accordion > .panel > #collapse-payment-address.checkout-step-sheet.is-sheet-open {
  height: auto !important;
  max-height: 86vh;
  max-height: 86dvh;
}

#checkout-checkout #accordion > .panel > #collapse-payment-address.checkout-step-sheet > .panel-body {
  padding: 12px 16px max(18px, env(safe-area-inset-bottom));
}

#checkout-checkout #collapse-payment-address > .checkout-step-sheet__header {
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto 34px;
}

#checkout-checkout #collapse-payment-address > .checkout-step-sheet__header .checkout-address-add-trigger {
  align-items: center;
  background: #fff1f3;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  color: #be123c;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 5px;
  min-height: 30px;
  padding: 0 10px;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

#checkout-checkout #collapse-payment-address > .checkout-step-sheet__header .checkout-address-add-trigger:hover,
#checkout-checkout #collapse-payment-address > .checkout-step-sheet__header .checkout-address-add-trigger:focus {
  background: #ffe4e8;
  border-color: #fda4af;
  outline: 0;
  transform: translateY(-1px);
}

#checkout-checkout #collapse-payment-address > .checkout-step-sheet__header .checkout-address-add-trigger.is-showing-new {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #475569;
}

#checkout-checkout #collapse-payment-address .checkout-address-mode-inputs,
#checkout-checkout #collapse-payment-address .checkout-address-native-select {
  display: none !important;
}

#checkout-checkout #collapse-payment-address .checkout-address-panel--existing {
  background: transparent;
  border: 0;
  padding: 0;
}

#checkout-checkout #collapse-payment-address .checkout-address-panel__title {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

#checkout-checkout #collapse-payment-address .checkout-address-panel__title > span {
  align-items: center;
  background: #fff1f3;
  border-radius: 10px;
  color: #be123c;
  display: flex;
  flex: 0 0 34px;
  height: 34px;
  justify-content: center;
}

#checkout-checkout #collapse-payment-address .checkout-address-panel__title strong,
#checkout-checkout #collapse-payment-address .checkout-address-panel__title small {
  display: block;
}

#checkout-checkout #collapse-payment-address .checkout-address-panel__title strong {
  color: #0f172a;
  font-size: 13px;
  margin-bottom: 1px;
}

#checkout-checkout #collapse-payment-address .checkout-address-panel__title small {
  color: #64748b;
  font-size: 10px;
}

#checkout-checkout #collapse-payment-address .checkout-address-radio-list {
  display: grid;
  gap: 8px;
}

#checkout-checkout #collapse-payment-address .checkout-address-radio {
  align-items: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  cursor: pointer;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px minmax(0, 1fr) 24px;
  margin: 0;
  min-height: 68px;
  padding: 11px 12px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

#checkout-checkout #collapse-payment-address .checkout-address-radio:hover {
  border-color: #fda4af;
  transform: translateY(-1px);
}

#checkout-checkout #collapse-payment-address .checkout-address-radio.is-selected {
  background: #fff7f8;
  border-color: #e91e4d;
  box-shadow: 0 0 0 3px rgba(233, 30, 77, 0.08);
}

#checkout-checkout #collapse-payment-address .checkout-address-radio input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

#checkout-checkout #collapse-payment-address .checkout-address-radio__marker {
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  height: 18px;
  position: relative;
  transition: border-color 0.18s ease;
  width: 18px;
}

#checkout-checkout #collapse-payment-address .checkout-address-radio__marker::after {
  background: #e91e4d;
  border-radius: 50%;
  content: '';
  height: 8px;
  left: 3px;
  opacity: 0;
  position: absolute;
  top: 3px;
  transform: scale(0.45);
  transition: opacity 0.18s ease, transform 0.18s ease;
  width: 8px;
}

#checkout-checkout #collapse-payment-address .checkout-address-radio.is-selected .checkout-address-radio__marker {
  border-color: #e91e4d;
}

#checkout-checkout #collapse-payment-address .checkout-address-radio.is-selected .checkout-address-radio__marker::after {
  opacity: 1;
  transform: scale(1);
}

#checkout-checkout #collapse-payment-address .checkout-address-radio__content {
  min-width: 0;
}

#checkout-checkout #collapse-payment-address .checkout-address-radio__content strong,
#checkout-checkout #collapse-payment-address .checkout-address-radio__content small {
  display: block;
}

#checkout-checkout #collapse-payment-address .checkout-address-radio__content strong {
  color: #0f172a;
  font-size: 13px;
  margin-bottom: 3px;
}

#checkout-checkout #collapse-payment-address .checkout-address-radio__content small {
  color: #64748b;
  font-size: 11px;
  line-height: 1.4;
}

#checkout-checkout #collapse-payment-address .checkout-address-radio__check {
  align-items: center;
  background: #e91e4d;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 10px;
  height: 22px;
  justify-content: center;
  opacity: 0;
  transform: scale(0.65);
  transition: opacity 0.18s ease, transform 0.18s ease;
  width: 22px;
}

#checkout-checkout #collapse-payment-address .checkout-address-radio.is-selected .checkout-address-radio__check {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 480px) {
  #checkout-checkout #collapse-payment-address > .checkout-step-sheet__header {
    padding-left: 14px;
    padding-right: 14px;
  }

  #checkout-checkout #collapse-payment-address > .checkout-step-sheet__header .checkout-address-add-trigger {
    font-size: 10px;
    min-height: 28px;
    padding: 0 8px;
  }

  #checkout-checkout .coupon-sheet__panel {
    max-height: 90vh;
    max-height: 90dvh;
    padding: 0 14px max(20px, env(safe-area-inset-bottom));
  }

  #checkout-checkout .coupon-sheet__header {
    gap: 10px;
    margin-bottom: 14px;
    padding-right: 38px;
  }

  #checkout-checkout .coupon-sheet__header h3 {
    font-size: 17px;
  }

  #checkout-checkout .coupon-sheet__header p {
    font-size: 11px;
    line-height: 1.45;
  }

  #checkout-checkout .cart-coupon__form {
    align-items: stretch;
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
  }

  #checkout-checkout .cart-coupon__form input {
    box-sizing: border-box;
    font-size: 16px;
    height: 46px;
    min-width: 0;
    padding: 0 13px;
    width: 100%;
  }

  #checkout-checkout .cart-coupon__form button {
    box-sizing: border-box;
    height: 46px;
    min-width: 126px;
    padding: 0 14px;
    width: auto !important;
  }

  #checkout-checkout .coupon-list {
    margin-top: 16px;
    padding-top: 14px;
  }

  #checkout-checkout .coupon-card {
    align-items: start;
    gap: 9px 10px;
    grid-template-columns: 64px minmax(0, 1fr);
  }

  #checkout-checkout .coupon-card__discount {
    font-size: 12px;
    grid-row: 1 / span 2;
    min-height: 66px;
  }

  #checkout-checkout .coupon-card__select {
    grid-column: 2;
    justify-self: start;
    padding: 7px 13px;
  }
}

@media (max-width: 360px) {
  #checkout-checkout .cart-coupon__form {
    grid-template-columns: 1fr;
  }

  #checkout-checkout .cart-coupon__form button {
    width: 100% !important;
  }
}

.success-card__whatsapp-status {
  align-items: center;
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  color: #166534;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 7px;
  margin-top: 14px;
  padding: 9px 12px;
}

.success-card__whatsapp-status .fa {
  color: #16a34a;
  font-size: 15px;
}
