/**
 * Maake Beauty — Premium polish (improvements layer)
 */

/* ─── Links ─── */
.bs-store a,
.bs-store button,
.bs-store .bs-nav__link,
.bs-store .bs-product__name a {
  text-decoration: none !important;
}
.bs-store .bs-product__price-mrp,
.bs-store [class*="price-mrp"],
.bs-store [class*="price-old"] {
  text-decoration: line-through !important;
}

/* ─── Homepage: scroll naturally (no sticky) ─── */
.bs-home .bs-header,
.bs-home .bs-promo,
.bs-home .bs-nav {
  position: relative !important;
  top: auto !important;
}

/* ─── Header (Nykaa-inspired — soft beauty retail) ─── */
.bs-store {
  margin: 0;
  padding: 0;
}

.bs-promo {
  background: linear-gradient(90deg, #fce4f0 0%, #fdf6f9 45%, #f3effa 100%);
  color: #5c3d4f;
  font-size: 12px;
  font-weight: 500;
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #f0d9e6;
}
.bs-promo__item svg {
  color: var(--bs-pink);
}
.bs-promo__inner {
  gap: 16px;
  max-width: var(--bs-container);
  width: 100%;
  margin: 0 auto;
  padding: 8px 16px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .bs-promo__inner {
    padding: 8px 24px;
  }
}
.bs-promo__item--hide-sm {
  display: none;
}
@media (min-width: 640px) {
  .bs-promo__item--hide-sm {
    display: inline-flex;
  }
}
.bs-promo__item--hide-md {
  display: none;
}
@media (min-width: 900px) {
  .bs-promo__item--hide-md {
    display: inline-flex;
  }
}

.bs-header {
  border-bottom: none;
  background: #fff;
  width: 100%;
  margin: 0;
  overflow: visible;
  box-shadow: 0 1px 0 rgba(40, 44, 63, 0.05), 0 6px 28px rgba(40, 44, 63, 0.04);
  transition: box-shadow 0.25s ease, transform 0.28s ease;
}
.bs-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(40, 44, 63, 0.08);
}
.bs-header.is-hidden {
  transform: translate3d(0, -110%, 0);
  pointer-events: none;
  box-shadow: none;
}
.bs-header__grid {
  max-width: var(--bs-container);
  width: 100%;
  margin: 0 auto;
  padding: 12px 16px 14px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "menu logo actions"
    "search search search";
  align-items: center;
  gap: 12px 14px;
}
@media (min-width: 768px) {
  .bs-header__grid {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "logo search actions";
    padding: 14px 24px;
    gap: 32px;
  }
}
.bs-header__menu-btn {
  grid-area: menu;
  padding: 6px;
  margin: 0;
  border: none;
  background: none;
  color: var(--bs-text);
  cursor: pointer;
}
@media (min-width: 768px) {
  .bs-header__menu-btn {
    display: none;
  }
}
.bs-header__logo {
  grid-area: logo;
  justify-self: start;
}
.bs-header__logo img {
  height: 28px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .bs-header__logo img {
    height: 40px;
    max-width: none;
  }
}
.bs-header__search {
  grid-area: search;
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
}
@media (min-width: 768px) {
  .bs-header__search {
    max-width: 560px;
    justify-self: center;
  }
}
.bs-header__search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.bs-header__search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94969f;
  pointer-events: none;
  z-index: 1;
}
.bs-header__search input {
  width: 100%;
  padding: 12px 18px 12px 44px;
  border: 1px solid #ece6ea;
  border-radius: 999px;
  background: #f9f8fa;
  font-size: 14px;
  color: var(--bs-text);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.bs-header__search input::placeholder {
  color: #94969f;
}
.bs-header__search input:focus {
  outline: none;
  background: #fff;
  border-color: #e8b4cc;
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.08);
}
.bs-header__search-btn {
  display: none !important;
}
.bs-header__actions {
  grid-area: actions;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 2px;
  overflow: visible;
}
@media (min-width: 768px) {
  .bs-header__actions {
    gap: 4px;
  }
}
.bs-header__icon-btn {
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 44px;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.bs-header__icon-btn:hover {
  background: #fdf5f9;
  color: var(--bs-pink);
}
.bs-header__icon-btn:hover .bs-header__icon-label {
  color: var(--bs-pink);
}
.bs-header__icon-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--bs-text);
  line-height: 1;
  display: none;
}
@media (min-width: 1024px) {
  .bs-header__icon-label {
    display: block;
  }
  .bs-header__icon-btn {
    min-width: 52px;
    padding: 2px 8px;
  }
}
.bs-header__icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
.bs-header__icon-wrap .bs-icon,
.bs-header__icon-wrap svg {
  width: 22px !important;
  height: 22px !important;
}
.bs-header__icon-wrap .bs-header__badge {
  position: absolute;
  top: -5px;
  right: -7px;
  box-sizing: border-box;
  min-width: 17px;
  width: 17px;
  height: 17px;
  padding: 0;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--bs-pink);
  border: 2px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}
.bs-header__icon-wrap .bs-header__badge--pill {
  width: auto;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
}
.bs-header__profile {
  position: relative;
  z-index: 220;
}

.bs-store .bs-profile-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--bs-border);
  border-radius: 8px;
  box-shadow: var(--bs-shadow-lg);
  padding: 6px 0;
  z-index: 230;
  overflow: hidden;
}

.bs-store .bs-profile-menu__greet {
  padding: 10px 16px 8px;
  font-size: 12px;
  color: var(--bs-muted);
  margin: 0;
  border-bottom: 1px solid var(--bs-border);
}

.bs-store .bs-profile-menu a,
.bs-store .bs-profile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--bs-text);
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  box-sizing: border-box;
  text-decoration: none !important;
}

.bs-store .bs-profile-menu a:hover,
.bs-store .bs-profile-menu button:hover {
  background: #fce4f0;
  color: var(--bs-pink);
}

.bs-store .bs-profile-menu form {
  margin: 0;
  padding: 4px 0 0;
  border-top: 1px solid var(--bs-border);
}

.bs-store .bs-nav {
  width: 100%;
  margin: 0;
  background: #faf9fb;
  border-top: 1px solid #f0ecef;
  border-bottom: 1px solid var(--bs-border);
}

.bs-store .bs-nav__inner {
  max-width: var(--bs-container);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  justify-content: center;
  gap: 4px;
  height: 44px;
}

.bs-store .bs-nav__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0 14px;
  height: 44px;
  color: #4a4f63;
  border-radius: 0;
  position: relative;
}

.bs-store .bs-nav__link::after {
  height: 2px;
  background: linear-gradient(90deg, var(--bs-pink), var(--bs-lavender));
  border-radius: 2px 2px 0 0;
}

.bs-store .bs-nav__link:hover,
.bs-store .bs-nav__link.is-active {
  color: var(--bs-pink);
  background: transparent;
}

.bs-store .bs-nav__link--offers {
  color: var(--bs-pink);
  font-weight: 700;
}

.bs-header__icon-circle {
  display: none;
}

.bs-search-result__info { flex: 1; min-width: 0; }
.bs-search-result__name { font-weight: 600; font-size: 13px; }
.bs-search-result__name mark {
  background: rgba(244, 196, 203, 0.5);
  border-radius: 2px;
}

/* ─── Hero ─── */
.bs-hero__slider {
  position: relative;
}
.bs-hero__slide picture,
.bs-hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.bs-hero__slide {
  min-height: 320px;
  max-height: 540px;
}
@media (max-width: 767px) {
  .bs-hero__slide { min-height: 280px; max-height: 400px; }
}
.bs-hero__overlay {
  background: linear-gradient(105deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.72) 38%, rgba(255,255,255,0.2) 58%, transparent 75%);
}
@media (max-width: 767px) {
  .bs-hero__overlay {
    background: linear-gradient(0deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.55) 42%, transparent 72%);
  }
}
.bs-hero__content { max-width: 460px; }
.bs-hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--bs-pink);
}
.bs-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.85rem);
  margin-bottom: 12px;
  color: var(--bs-pink);
}
.bs-hero__subtitle {
  font-size: 15px;
  line-height: 1.55;
  max-width: 400px;
  color: var(--bs-pink);
}
.bs-hero__arrow {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  opacity: 1;
}
.bs-hero__arrow:hover {
  border-color: #e8b4cc;
  color: var(--bs-pink);
}

.bs-hero__overlay--center {
  justify-content: center;
  text-align: center;
}
.bs-hero__overlay--center .bs-hero__content {
  margin-inline: auto;
}
.bs-hero__overlay--right {
  justify-content: flex-end;
  text-align: right;
}
.bs-hero__overlay--right .bs-hero__content {
  margin-left: auto;
}
.bs-hero__overlay[style*="--hero-overlay-opacity"] {
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, calc(0.35 + var(--hero-overlay-opacity, 0.65) * 0.9)) 0%,
    rgba(255, 255, 255, calc(var(--hero-overlay-opacity, 0.65) * 0.55)) 38%,
    rgba(255, 255, 255, calc(var(--hero-overlay-opacity, 0.65) * 0.15)) 58%,
    transparent 75%
  );
}
@media (max-width: 767px) {
  .bs-hero__overlay[style*="--hero-overlay-opacity"] {
    background: linear-gradient(
      0deg,
      rgba(255, 255, 255, calc(0.4 + var(--hero-overlay-opacity, 0.65) * 0.9)) 0%,
      rgba(255, 255, 255, calc(var(--hero-overlay-opacity, 0.65) * 0.4)) 42%,
      transparent 72%
    );
  }
}

/* ─── Homepage category spotlight (Face / Eyes / Lips) ─── */
.bs-home-spotlight {
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) {
  .bs-home-spotlight {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}
.bs-home-spotlight__card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  text-decoration: none;
}
.bs-home-spotlight__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.bs-home-spotlight__card:hover img {
  transform: scale(1.04);
}
.bs-home-spotlight__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(0deg, rgba(40, 44, 63, 0.78) 0%, rgba(40, 44, 63, 0.15) 52%, transparent 72%);
  color: #fff;
}
.bs-home-spotlight__overlay h3 {
  font-family: var(--bs-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
}

/* ─── Section utilities ─── */
.bs-section__head--center {
  text-align: center;
  justify-content: center;
}
.bs-section__title--center { text-align: center; margin-bottom: 20px; }
.bs-section__cta { text-align: center; margin-top: 20px; }
.bs-container--narrow { max-width: 720px; }
.bs-section__link:hover { color: var(--bs-pink); }

/* ─── Product carousel ─── */
.bs-product-carousel {
  position: relative;
}
.bs-product-carousel__track {
  scroll-padding-left: 4px;
}
.bs-product-carousel__track.is-dragging,
.bs-product-carousel__track.is-user-scrolling {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.bs-product-carousel__track > .bs-product {
  flex: 0 0 calc(50% - 8px);
  width: calc(50% - 8px);
  scroll-snap-align: start;
}
@media (min-width: 640px) {
  .bs-product-carousel__track > .bs-product {
    flex: 0 0 calc(33.333% - 11px);
    width: calc(33.333% - 11px);
  }
}
@media (min-width: 1024px) {
  .bs-product-carousel__track > .bs-product {
    flex: 0 0 calc(20% - 13px);
    width: calc(20% - 13px);
  }
}
.bs-product-carousel__arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--bs-border);
  background: #fff;
  color: var(--bs-text);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
@media (min-width: 768px) {
  .bs-product-carousel__arrow { display: flex; }
}
.bs-product-carousel__arrow:hover {
  border-color: var(--bs-pink);
  color: var(--bs-pink);
}
.bs-product-carousel__arrow--prev { left: -12px; }
.bs-product-carousel__arrow--next { right: -12px; }
@media (min-width: 1280px) {
  .bs-product-carousel__arrow--prev { left: -20px; }
  .bs-product-carousel__arrow--next { right: -20px; }
}

/* ─── Product card (premium, compact) ─── */
.bs-product {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  border: 1px solid #ece6ea;
  background: #fff;
  overflow: hidden;
  box-shadow: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.bs-product:hover {
  box-shadow: 0 12px 32px rgba(45, 35, 40, 0.1);
  transform: translateY(-3px);
}
.bs-product__media {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 280px;
  background: #f3f0f6;
  overflow: hidden;
}
.bs-product__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
}
.bs-product__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: opacity 0.4s ease;
}
.bs-product__media.is-loading .bs-product__img {
  opacity: 0;
}
.bs-product__skeleton {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #e8e4e8 0%, #f5f2f4 42%, #e8e4e8 84%);
  background-size: 200% 100%;
  animation: bs-skeleton-shimmer 1.2s ease-in-out infinite;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.bs-product__media:not(.is-loading) .bs-product__skeleton {
  opacity: 0;
  visibility: hidden;
}
.bs-product__media.is-loading .bs-product__wish,
.bs-product__media.is-loading .bs-product__hover,
.bs-product__media.is-loading .bs-product__badge,
.bs-product__media.is-loading .bs-product__variant-badge {
  opacity: 0;
  pointer-events: none;
}
@keyframes bs-skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.bs-product:hover .bs-product__img {
  transform: scale(1.05);
}
.bs-product__body {
  flex: 1 1 auto;
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
}
.bs-product__brand {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bs-muted);
  margin: 0 0 2px;
}
.bs-product__name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 2px;
  color: #4a4f63;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0;
}
.bs-product__name a {
  color: inherit;
}
.bs-product__rating {
  font-size: 11px;
  color: var(--bs-muted);
  margin: 0 0 2px;
}
.bs-product__stars { color: #ffb800; }
.bs-product__price {
  margin-top: 4px;
  padding-top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}
.bs-product__price-current {
  font-size: 15px;
  font-weight: 700;
}
.bs-product__price-from {
  font-size: 10px;
  display: inline;
  margin-right: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bs-product__badge {
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  background: var(--bs-pink);
  color: #fff;
  border-radius: 4px;
  border: none;
}
.bs-product__variant-badge {
  top: auto;
  bottom: 8px;
  left: 8px;
  z-index: 2;
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 4px;
}
.bs-product__wish {
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  z-index: 3;
  background: rgba(255,255,255,0.96);
  border: 1px solid #ece6ea;
}
.bs-product__hover {
  display: flex;
  gap: 6px;
  padding: 8px;
  background: linear-gradient(0deg, rgba(255,255,255,0.98) 0%, transparent 100%);
}
.bs-product__quick-view,
.bs-product__quick-add {
  flex: 1;
  padding: 9px 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 8px;
  transition: opacity 0.2s, background 0.2s;
}
.bs-product__quick-view {
  background: #fff;
  color: var(--bs-text);
  border: 1px solid var(--bs-border);
}
.bs-product__quick-view:hover {
  border-color: var(--bs-pink);
  color: var(--bs-pink);
}
.bs-product__quick-add {
  background: var(--bs-text);
  color: #fff;
  border: none;
  cursor: pointer;
}
.bs-product__quick-add:hover {
  background: var(--bs-pink);
  opacity: 1;
  transform: none;
}

/* ─── Category scroll ─── */
.bs-category-scroll { padding-bottom: 4px; }
.bs-category-pill {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  min-width: 100px;
  background: #fff;
  border: 1px solid var(--bs-border);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.bs-category-pill:hover {
  border-color: #d4a5b5;
  transform: translateY(-2px);
}
.bs-category-pill img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

/* ─── Editorial blocks ─── */
.bs-editorial__content {
  padding: 28px;
}
.bs-editorial__visual {
  min-height: 220px;
  border-radius: 12px;
  overflow: hidden;
}
.bs-editorial__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .bs-editorial--reverse {
    direction: rtl;
  }
  .bs-editorial--reverse > * {
    direction: ltr;
  }
}

.bs-brand-story.bs-editorial {
  align-items: stretch;
}

.bs-brand-story .bs-editorial__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: linear-gradient(165deg, #fdf6f9 0%, #f8f4fb 55%, #f3effa 100%);
  min-height: 280px;
  overflow: hidden;
}

.bs-brand-story .bs-editorial__visual img {
  position: static;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  border-radius: 8px;
  box-shadow: 0 10px 36px rgba(40, 44, 63, 0.1);
}

@media (min-width: 768px) {
  .bs-brand-story.bs-editorial {
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
  }

  .bs-brand-story .bs-editorial__visual {
    padding: 32px 28px;
    border-right: 1px solid #f0e6ec;
    min-height: 100%;
  }

  .bs-brand-story .bs-editorial__visual img {
    max-height: 420px;
  }

  .bs-brand-story .bs-editorial__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 44px 44px;
    box-sizing: border-box;
  }
}

@media (max-width: 767px) {
  .bs-brand-story .bs-editorial__visual {
    min-height: auto;
    max-height: none;
    aspect-ratio: unset;
    border-bottom: 1px solid #f0e6ec;
    padding: 20px 16px;
  }

  .bs-brand-story .bs-editorial__visual img {
    max-height: 340px;
  }

  .bs-brand-story .bs-editorial__content {
    padding: 24px 20px 28px;
  }
}

.bs-brand-story__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 16px 0 24px;
}
.bs-brand-story__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--bs-muted);
}
@media (min-width: 768px) {
  .bs-brand-story__body p {
    font-size: 15px;
  }
  .bs-brand-story .bs-section__title {
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    line-height: 1.3;
  }
}

/* ─── Video reviews ─── */
.mb-video-reviews .bs-section__head { margin-bottom: 24px; }

.mb-video-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "prev viewport next"
    "dots dots dots";
  align-items: center;
  gap: 8px 4px;
  /* Keep page scroll free — never nest a scrollport here */
  overscroll-behavior: auto;
  touch-action: pan-y;
}

.mb-video-carousel__viewport {
  grid-area: viewport;
  overflow: hidden;
  padding: 28px 0 12px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  touch-action: pan-y;
}

.mb-video-carousel__track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.mb-video-carousel__track.is-dragging {
  transition: none;
}

.mb-video-carousel__arrow {
  grid-area: prev;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 999px;
  background: #fff;
  color: #e91e8c;
  box-shadow: 0 8px 22px rgba(233, 30, 140, 0.12);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.mb-video-carousel__arrow--next { grid-area: next; }

.mb-video-carousel__arrow svg {
  width: 20px;
  height: 20px;
}

.mb-video-carousel__arrow:hover:not(:disabled) {
  background: #e91e8c;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(233, 30, 140, 0.28);
}

.mb-video-carousel__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.mb-video-carousel__dots {
  grid-area: dots;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 8px;
}

.mb-video-carousel__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(233, 30, 140, 0.25);
  padding: 0;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.mb-video-carousel__dot.is-active {
  width: 22px;
  background: #e91e8c;
}

.mb-video-card {
  flex: 0 0 148px;
  opacity: 0.42;
  transform: scale(0.82);
  filter: saturate(0.8);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    filter 0.45s ease;
}

.mb-video-card.is-side {
  opacity: 0.62;
  transform: scale(0.9);
  filter: saturate(0.92);
}

.mb-video-card.is-active {
  flex: 0 0 220px;
  opacity: 1;
  transform: scale(1.08);
  filter: none;
  z-index: 2;
}

.mb-video-card.is-far {
  opacity: 0.3;
  transform: scale(0.76);
}

@media (min-width: 768px) {
  .mb-video-carousel {
    gap: 8px 12px;
  }
  .mb-video-carousel__track {
    gap: 22px;
  }
  .mb-video-card { flex: 0 0 170px; }
  .mb-video-card.is-active { flex: 0 0 260px; transform: scale(1.1); }
  .mb-video-carousel__arrow {
    width: 48px;
    height: 48px;
  }
}

.mb-video-card__frame {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  cursor: pointer;
  background: #eee;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.45s ease;
}

.mb-video-card.is-active .mb-video-card__frame {
  box-shadow:
    0 0 0 3px rgba(233, 30, 140, 0.35),
    0 22px 48px rgba(233, 30, 140, 0.28);
}

.mb-video-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mb-video-card.is-active .mb-video-card__frame img {
  transform: scale(1.03);
}

.mb-video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.14);
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.mb-video-card.is-active .mb-video-card__play {
  opacity: 1;
  background: rgba(0,0,0,0.08);
}

.mb-video-card__play svg {
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.25));
}

.mb-video-card.is-active .mb-video-card__play svg {
  width: 64px;
  height: 64px;
}

.mb-video-card__glow {
  position: absolute;
  inset: auto 12% -18% 12%;
  height: 40%;
  background: radial-gradient(ellipse at center, rgba(233, 30, 140, 0.45), transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mb-video-card.is-active .mb-video-card__glow {
  opacity: 1;
}

.mb-video-card__body {
  padding: 12px 4px 0;
  text-align: center;
  max-width: 240px;
  margin: 0 auto;
}

.mb-video-card__name { font-size: 14px; font-weight: 600; }
.mb-video-card__product { font-size: 12px; color: var(--bs-pink); margin-top: 2px; }
.mb-video-card__stars { color: #ffb800; font-size: 12px; margin: 4px 0; }
.mb-video-card__text {
  font-size: 12px;
  line-height: 1.45;
  color: var(--bs-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 640px) {
  .mb-video-carousel__arrow {
    width: 38px;
    height: 38px;
  }
  .mb-video-carousel__track {
    gap: 14px;
  }
  .mb-video-card { flex: 0 0 130px; }
  .mb-video-card.is-active { flex: 0 0 180px; }
}

.mb-video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.mb-video-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
}
.mb-video-lightbox__dialog {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
}
.mb-video-lightbox__close {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.mb-video-lightbox__player {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
}
.mb-video-lightbox__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.mb-video-lightbox__meta {
  padding: 14px 18px;
  border-top: 1px solid var(--bs-border);
}

/* ─── Review cards & carousel ─── */
.mb-reviews-section .bs-section__head {
  margin-bottom: 1.75rem;
}

.bs-reviews-carousel {
  position: relative;
}

.bs-reviews-carousel__track {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 2px 20px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.bs-reviews-carousel__track::-webkit-scrollbar {
  display: none;
}

.bs-reviews-carousel__track.is-dragging,
.bs-reviews-carousel__track.is-user-scrolling {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.bs-reviews-carousel__track > .mb-review-card {
  flex: 0 0 calc(100% - 24px);
  width: calc(100% - 24px);
  scroll-snap-align: start;
  min-height: 0;
  height: auto;
  align-self: flex-start;
}

@media (min-width: 640px) {
  .bs-reviews-carousel__track > .mb-review-card {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
  }
}

@media (min-width: 1024px) {
  .bs-reviews-carousel__track > .mb-review-card {
    flex: 0 0 calc(33.333% - 14px);
    width: calc(33.333% - 14px);
  }
}

.bs-reviews-carousel__arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--bs-border);
  background: #fff;
  color: var(--bs-text);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

@media (min-width: 768px) {
  .bs-reviews-carousel__arrow {
    display: flex;
  }
}

.bs-reviews-carousel__arrow:hover {
  border-color: #d4a5b5;
  color: var(--bs-pink);
}

.bs-reviews-carousel__arrow--prev {
  left: -12px;
}

.bs-reviews-carousel__arrow--next {
  right: -12px;
}

@media (min-width: 1024px) {
  .bs-reviews-carousel__arrow--prev {
    left: -20px;
  }

  .bs-reviews-carousel__arrow--next {
    right: -20px;
  }
}

.mb-reviews-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 16px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
@media (min-width: 1024px) {
  .mb-reviews-track { padding: 4px 24px 16px; }
}
.mb-reviews-track::-webkit-scrollbar { display: none; }
.mb-review-card {
  flex: 0 0 min(320px, 85vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  height: auto;
  border-radius: 14px;
  padding: 18px 18px 14px;
  border: 1px solid #ece6ea;
  background: #fff;
  box-shadow: 0 4px 20px rgba(40, 44, 63, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.bs-reviews-carousel__track > .mb-review-card:hover {
  box-shadow: 0 10px 28px rgba(40, 44, 63, 0.1);
  transform: translateY(-2px);
}

.mb-review-card--blush { background: linear-gradient(165deg, #fff 0%, #fdf6f8 100%); }
.mb-review-card--lavender { background: linear-gradient(165deg, #fff 0%, #f8f6fc 100%); }
.mb-review-card--peach { background: linear-gradient(165deg, #fff 0%, #fdf8f5 100%); }

.mb-review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.mb-review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fce4f0, #f3effa);
  color: var(--bs-pink);
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #f0d9e6;
  overflow: hidden;
}
.mb-review-card__avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mb-review-card__identity {
  min-width: 0;
}

.mb-review-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--bs-text);
  margin: 0 0 4px;
}

.mb-review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bs-muted);
}

.mb-review-card__verified svg {
  width: 14px;
  height: 14px;
  color: var(--bs-pink);
  flex-shrink: 0;
}

.mb-review-card__stars {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1;
  color: #ffb800;
  letter-spacing: 1px;
}

.mb-review-card__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--bs-text);
  margin: 0 0 8px;
}

.mb-review-card__quote {
  font-size: 14px;
  line-height: 1.65;
  color: #4a4f63;
  margin: 0;
  flex: 0 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mb-review-card__product {
  font-size: 12px;
  font-weight: 600;
  color: var(--bs-pink);
  margin: 8px 0 0;
}

.mb-review-card__date {
  display: block;
  font-size: 11px;
  color: var(--bs-muted);
  margin-top: 8px;
}

.mb-review-card__main {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mb-review-card__content {
  flex: 1;
  min-width: 0;
}

.mb-review-card__images {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 0;
  flex: 0 0 auto;
  max-width: 64px;
}

.mb-review-card__images a,
.mb-review-card__photo {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--bs-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mb-review-card__images a:hover,
.mb-review-card__photo:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(40, 44, 63, 0.1);
}

.mb-review-card__images img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  display: block;
}

.mb-review-card__images--lg {
  gap: 6px;
  margin-top: 0;
}

.mb-review-card__images--lg a,
.mb-review-card__images--lg .mb-review-card__photo {
  border-radius: 8px;
}

.mb-review-card__images--lg img {
  width: 56px;
  height: 56px;
}

@media (max-width: 480px) {
  .mb-review-card__main {
    flex-direction: column;
  }

  .mb-review-card__images {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    max-width: none;
    width: 100%;
    margin-top: 4px;
  }
}

.bs-store .bs-account-review-manage {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bs-store .bs-account-review-manage__product {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.bs-store .bs-account-review-manage__thumb {
  width: 56px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--bs-border);
  flex-shrink: 0;
}

.bs-store .bs-account-review-manage__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.bs-store .bs-account-review-edit {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.bs-store .bs-account-review-edit .input-theme {
  width: 100%;
}
/* ─── Instagram + blog + newsletter ─── */
.mb-instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .mb-instagram-grid { grid-template-columns: repeat(6, 1fr); gap: 12px; }
}
.mb-instagram-grid a {
  display: block;
  min-width: 0;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bs-pink-soft, #fce4f0);
}
.mb-instagram-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.bs-home-blog-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.bs-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 440px;
  margin: 20px auto 0;
}
.bs-newsletter__form input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--bs-border);
  font-size: 14px;
}

/* ─── Home product sections spacing ─── */
.bs-home-products {
  padding: 36px 0;
}
.bs-home-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}
@media (min-width: 640px) {
  .bs-home-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .bs-home-product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* ─── Two-column & wide homepage banners ─── */
.bs-home-duo {
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) {
  .bs-home-duo {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.bs-home-duo__card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  text-decoration: none;
}
@media (min-width: 768px) {
  .bs-home-duo__card {
    aspect-ratio: 3 / 4;
  }
}
.bs-home-duo__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bs-home-duo__card:hover img {
  transform: scale(1.03);
}
.bs-home-duo__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(0deg, rgba(40, 44, 63, 0.72) 0%, transparent 55%);
  color: #fff;
}
.bs-home-duo__overlay h3 {
  font-family: var(--bs-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 4px;
}
.bs-home-duo__overlay p {
  margin: 0 0 10px;
  font-size: 13px;
  opacity: 0.9;
}
.bs-home-duo__cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bs-home-wide-banner {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  text-decoration: none;
}
@media (max-width: 767px) {
  .bs-home-wide-banner {
    aspect-ratio: 16 / 9;
  }
}
.bs-home-wide-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bs-home-wide-banner:hover img {
  transform: scale(1.02);
}
.bs-home-wide-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 32px;
  background: linear-gradient(90deg, rgba(40, 44, 63, 0.65) 0%, transparent 70%);
  color: #fff;
}
.bs-home-wide-banner__overlay h2 {
  font-family: var(--bs-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  margin: 0 0 6px;
}
.bs-home-wide-banner__overlay p {
  margin: 0 0 14px;
  font-size: 14px;
  opacity: 0.92;
}
.bs-home-wide-banner__overlay .bs-btn {
  pointer-events: none;
}

/* ─── Checkout & Cart (beauty theme consistency) ─── */
.bs-store #main-content {
  background: var(--bs-bg);
}

.bs-store .cart-checkout-page {
  padding: 1.5rem 16px 3rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: clip;
}

@media (min-width: 768px) {
  .bs-store .cart-checkout-page {
    padding: 2rem 24px 4rem;
  }
}

.bs-store .cart-checkout-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bs-store .cart-checkout-title {
  font-family: var(--bs-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--bs-text);
  margin: 0;
}

.bs-store .cart-checkout-subtitle {
  color: var(--bs-muted);
  font-size: 13px;
  margin-top: 6px;
}

.bs-store .cart-checkout-back {
  display: none;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--bs-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

@media (min-width: 640px) {
  .bs-store .cart-checkout-back {
    display: inline-flex;
  }
}

.bs-store .cart-checkout-back:hover {
  color: var(--bs-pink);
}

.bs-store .bs-checkout__main,
.bs-store .bs-checkout__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bs-store .checkout-card,
.bs-store .auth-card {
  background: #fff;
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  box-shadow: var(--bs-shadow-sm);
  padding: 1.25rem 1.5rem;
  box-sizing: border-box;
  max-width: 100%;
}

@media (min-width: 768px) {
  .bs-store .checkout-card,
  .bs-store .auth-card {
    padding: 1.5rem 1.75rem;
  }
}

.bs-store .checkout-section-title,
.bs-store .cart-summary-title {
  font-family: var(--bs-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bs-text);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--bs-border);
}

.bs-store .bs-checkout__empty {
  font-size: 14px;
  color: var(--bs-muted);
  padding: 0.5rem 0;
}

.bs-store .bs-checkout__empty a {
  color: var(--bs-pink);
  font-weight: 600;
}

.bs-store .checkout-card .cart-line-item--compact {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 14px 0;
  margin: 0;
  border-bottom: 1px solid var(--bs-border);
}

.bs-store .checkout-card .cart-line-item--compact:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bs-store .cart-line-item {
  gap: 14px;
  align-items: flex-start;
}

.bs-store .cart-line-item-image {
  width: 80px;
  height: 96px;
  border: none;
  border-radius: 8px;
  background: var(--bs-bg);
  overflow: hidden;
  flex-shrink: 0;
}

.bs-store .cart-line-item-image--sm {
  width: 72px;
  height: 88px;
}

.bs-store .cart-line-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bs-store .cart-line-item-body {
  gap: 4px;
  padding-top: 2px;
}

.bs-store .cart-line-item-top {
  align-items: flex-start;
  gap: 12px;
}

.bs-store .cart-line-item-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: #4a4f63;
  margin: 0;
  flex: 1;
  min-width: 0;
}

.bs-store .cart-line-item-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--bs-pink);
  white-space: nowrap;
  margin: 0;
}

.bs-store .cart-line-item-unit {
  font-size: 12px;
  color: var(--bs-muted);
  margin: 0;
}

.bs-store .cart-line-item-actions {
  gap: 10px 14px;
  margin-top: 6px;
  padding-top: 0;
}

.bs-store .cart-qty-control {
  border: none;
  background: #f5f5f6;
  border-radius: 4px;
  overflow: hidden;
  font-size: 13px;
}

.bs-store .cart-qty-control button {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--bs-text);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, color 0.15s;
}

.bs-store .cart-qty-control button:hover {
  background: rgba(233, 30, 140, 0.08);
  color: var(--bs-pink);
}

.bs-store .cart-qty-control span {
  min-width: 28px;
  font-weight: 600;
  font-size: 13px;
}

.bs-store .cart-action-link {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--bs-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.bs-store .cart-action-link:hover {
  color: var(--bs-pink);
}

.bs-store .cart-action-link.danger {
  color: #b85c6a;
}

.bs-store .cart-action-link.danger:hover {
  color: #d4183d;
}

.bs-store .checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px) {
  .bs-store .checkout-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 18px;
  }
}

.bs-store .checkout-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.bs-store .checkout-field--full {
  grid-column: 1 / -1;
}

.bs-store .checkout-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bs-muted);
}

.bs-store .input-theme {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 14px;
  border: none;
  border-radius: 4px;
  background: #f5f5f6;
  font-size: 14px;
  font-family: var(--bs-font);
  color: var(--bs-text);
  transition: background 0.2s, box-shadow 0.2s;
}

.bs-store .input-theme:focus {
  outline: none;
  background: #fff;
  box-shadow: inset 0 0 0 1px #d4a5b5, 0 0 0 3px rgba(233, 30, 140, 0.1);
}

.bs-store .input-theme[readonly] {
  opacity: 0.85;
  cursor: default;
}

.bs-store textarea.input-theme {
  resize: vertical;
  min-height: 76px;
}

.bs-store .checkout-payment-options {
  gap: 10px;
}

.bs-store .checkout-payment-option {
  border: 1px solid var(--bs-border);
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.bs-store .checkout-payment-option:hover {
  border-color: #d4a5b5;
}

.bs-store .checkout-payment-option:has(:checked) {
  border-color: var(--bs-pink);
  background: #fce4f0;
}

.bs-store .checkout-payment-option input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--bs-pink);
  flex-shrink: 0;
}

.bs-store .checkout-payment-option__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bs-text);
}

.bs-store .checkout-payment-option__label .bs-icon {
  width: 18px !important;
  height: 18px !important;
  color: var(--bs-pink);
  flex-shrink: 0;
}

.bs-store .bs-checkout__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.bs-store .bs-checkout__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--bs-pink);
  flex-shrink: 0;
}

.bs-store .bs-checkout__checkbox strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--bs-text);
  margin-bottom: 4px;
}

.bs-store .bs-checkout__checkbox small {
  display: block;
  font-size: 12px;
  color: var(--bs-muted);
  line-height: 1.45;
}

.bs-store .bs-checkout__account-password {
  margin-top: 1rem;
}

.bs-store .cart-summary-card {
  position: sticky;
  top: 20px;
  overflow: hidden;
}

.bs-store .cart-summary-panel {
  min-width: 0;
  width: 100%;
}

.bs-store .cart-checkout-layout > * {
  min-width: 0;
}

.bs-store .bs-checkout__summary-rows {
  margin-top: 1rem;
}

.bs-store .cart-summary-rows {
  font-size: 14px;
  color: var(--bs-text);
}

.bs-store .cart-summary-row span:first-child {
  color: var(--bs-muted);
}

.bs-store .cart-summary-total {
  font-size: 1.05rem;
  border-top-color: var(--bs-border);
}

.bs-store .bs-checkout__total,
.bs-store .text-theme-primary {
  color: var(--bs-pink) !important;
}

.bs-store .bs-checkout__discount,
.bs-store .text-green-400 {
  color: #16a34a !important;
  font-weight: 600;
}

.bs-store .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 14px 20px;
  border: none;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--bs-pink), var(--bs-lavender));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: var(--bs-shadow-sm);
}

.bs-store .btn-primary:hover {
  opacity: 0.95;
  box-shadow: var(--bs-shadow);
}

.bs-store .cart-summary-card .btn-primary:hover,
.bs-store .cart-summary-card .bs-checkout__submit:hover {
  transform: none;
}

.bs-store .btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.bs-store .bs-checkout__submit {
  margin-top: 1.5rem;
  display: flex;
  width: 100%;
  max-width: 100%;
}

.bs-store .coupon-box {
  border-bottom-color: var(--bs-border);
  min-width: 0;
}

.bs-store .coupon-box-title {
  color: var(--bs-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bs-store .coupon-input-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  min-width: 0;
  width: 100%;
}

.bs-store .coupon-input {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bs-store .coupon-apply-btn {
  flex: 0 0 auto;
  width: auto !important;
  min-width: 4.75rem;
  padding: 11px 14px;
  font-size: 11px;
  letter-spacing: 0.05em;
  border-radius: 4px;
  white-space: nowrap;
}

.bs-store .coupon-applied {
  background: #fce4f0;
  border: 1px solid #f0c4db;
  border-radius: 8px;
}

.bs-store .coupon-applied-code {
  color: var(--bs-pink);
}

.bs-store .coupon-applied-name {
  display: block;
  font-size: 12px;
  color: var(--bs-muted);
  margin-top: 2px;
}

.bs-store .coupon-remove-btn {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: var(--bs-muted);
}

.bs-store .coupon-remove-btn:hover {
  color: #d4183d;
}

.bs-store .cart-trust-badges {
  border-top-color: var(--bs-border);
  gap: 8px;
}

.bs-store .cart-trust-badges span {
  font-size: 12px;
  color: var(--bs-muted);
}

.bs-store .cart-trust-badges .bs-icon {
  width: 16px !important;
  height: 16px !important;
  color: var(--bs-pink);
  stroke: currentColor;
  flex-shrink: 0;
}

.bs-store .fomo-summary-row,
.bs-store .fomo-offer-strip {
  border-radius: 8px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* FOMO — brand pink/lavender (override legacy blue theme) */
.bs-store .fomo-offer-strip {
  border: 1px solid #e8d4dc;
  background: linear-gradient(135deg, #fdf5f9 0%, #f9f6fc 50%, #fdf0f7 100%);
  overflow: hidden;
}

.bs-store .fomo-offer-strip-mesh {
  opacity: 0.55;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(233, 30, 140, 0.1), transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(155, 127, 212, 0.12), transparent 50%);
}

.bs-store .fomo-offer-strip-glow {
  background: radial-gradient(ellipse at top right, rgba(233, 30, 140, 0.12), transparent 55%);
}

.bs-store .fomo-offer-strip-inner {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.bs-store .fomo-offer-strip-text {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

.bs-store .fomo-offer-strip-badge,
.bs-store .fomo-summary-badge {
  background: linear-gradient(90deg, var(--bs-pink), var(--bs-lavender));
  color: #fff;
}

.bs-store .fomo-offer-strip-title {
  font-family: var(--bs-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bs-text);
  margin: 0 0 4px;
}

@media (min-width: 640px) {
  .bs-store .fomo-offer-strip-title {
    font-size: 1.05rem;
  }
}

.bs-store .fomo-offer-strip-message,
.bs-store .fomo-offer-countdown-heading,
.bs-store .fomo-offer-countdown-hint,
.bs-store .fomo-offer-meta-label,
.bs-store .fomo-summary-expires {
  color: var(--bs-muted);
}

.bs-store .fomo-offer-strip-meta {
  min-width: 0;
  max-width: 100%;
}

.bs-store .fomo-offer-meta-item {
  min-width: 0;
}

.bs-store .fomo-offer-meta-value,
.bs-store .fomo-summary-code {
  color: var(--bs-text);
  font-family: var(--bs-font);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.bs-store .fomo-offer-meta-savings,
.bs-store .fomo-summary-save {
  color: #c2185b;
  font-weight: 600;
}

.bs-store .fomo-offer-countdown {
  min-width: 0;
}

.bs-store .fomo-countdown-clock--hero {
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e8d4dc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.bs-store .fomo-countdown-hero-value,
.bs-store .fomo-countdown-hero-value--sm,
.bs-store .fomo-summary-timer {
  font-family: var(--bs-font);
  font-weight: 700;
  color: var(--bs-pink);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: currentColor;
}

.bs-store .fomo-countdown-hero-value {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  letter-spacing: 0.06em;
}

.bs-store .fomo-summary-row {
  margin: 0.75rem 0;
  padding: 0.65rem 0.75rem;
  background: linear-gradient(135deg, rgba(252, 228, 240, 0.55), rgba(243, 239, 250, 0.85));
  border: 1px solid #e8d4dc;
}

.bs-store .fomo-summary-timer {
  font-size: 0.95rem;
}

.bs-store .fomo-offer-compact {
  background: linear-gradient(135deg, rgba(252, 228, 240, 0.55), rgba(243, 239, 250, 0.85));
  border: 1px solid #e8d4dc;
  border-radius: 8px;
}

.bs-store .fomo-offer-compact .text-theme-primary {
  color: var(--bs-pink) !important;
}

.bs-store .cart-items-panel .cart-line-item {
  background: #fff;
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  box-shadow: var(--bs-shadow-sm);
  padding: 1rem 1.25rem;
}

.bs-store .cart-items-panel .cart-line-item:hover {
  border-color: #e8d4dc;
}

/* ─── Cart page ─── */
.bs-store .bs-cart-page {
  padding-bottom: 3rem;
}

.bs-store .cart-checkout-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .bs-store .cart-checkout-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .bs-store .cart-checkout-layout {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 2.5rem;
  }
}

.bs-store .bs-cart-card {
  padding: 0;
  overflow: hidden;
}

.bs-store .bs-cart-card__head {
  padding: 1.25rem 1.5rem 0;
}

@media (min-width: 768px) {
  .bs-store .bs-cart-card__head {
    padding: 1.5rem 1.75rem 0;
  }
}

.bs-store .bs-cart-card__head .checkout-section-title {
  margin-bottom: 0;
}

.bs-store .bs-cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bs-store .bs-cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  grid-template-areas:
    "image body"
    "price price";
  gap: 8px 14px;
  padding: 16px;
  border-top: 1px solid var(--bs-border);
  align-items: start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.bs-store .bs-cart-item:first-child {
  border-top: none;
}

@media (min-width: 640px) {
  .bs-store .bs-cart-item {
    grid-template-columns: 88px minmax(0, 1fr) auto;
    grid-template-areas: "image body price";
    align-items: center;
    gap: 16px 20px;
    padding: 18px 20px;
  }
}

.bs-store .bs-cart-item__image {
  grid-area: image;
  display: block;
  width: 72px;
  height: 88px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bs-bg);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .bs-store .bs-cart-item__image {
    width: 88px;
    height: 106px;
  }
}

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

.bs-store .bs-cart-item__body {
  grid-area: body;
  min-width: 0;
  overflow: hidden;
}

.bs-store .bs-cart-item__name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 4px;
}

.bs-store .bs-cart-item__name a {
  color: #4a4f63;
  text-decoration: none;
}

.bs-store .bs-cart-item__name a:hover {
  color: var(--bs-pink);
}

.bs-store .bs-cart-item__variant {
  font-size: 12px;
  color: var(--bs-muted);
  margin: 0 0 2px;
}

.bs-store .bs-cart-item__unit {
  font-size: 12px;
  color: var(--bs-muted);
  margin: 0 0 8px;
}

.bs-store .bs-cart-item__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 8px;
}

.bs-store .bs-cart-item__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--bs-pink);
  white-space: nowrap;
  margin: 0;
  align-self: start;
  grid-area: price;
  text-align: left;
  padding-top: 2px;
  padding-left: calc(72px + 14px);
}

@media (min-width: 640px) {
  .bs-store .bs-cart-item__price {
    align-self: center;
    font-size: 16px;
    text-align: right;
    padding-left: 0;
  }
}

.bs-store .bs-cart-empty {
  text-align: center;
  padding: 3rem 1.5rem;
}

.bs-store .bs-cart-empty__title {
  font-family: var(--bs-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bs-text);
  margin: 0 0 8px;
}

.bs-store .bs-cart-empty__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--bs-muted);
  margin: 0 auto 1.5rem;
  max-width: 360px;
}

.bs-store .bs-cart-empty__btn {
  width: auto;
  min-width: 200px;
  margin: 0 auto;
}

.bs-store .bs-cart-related {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--bs-border);
}

.bs-store .bs-cart-related .bs-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bs-store .bs-cart-related .bs-product-carousel__track > .bs-product {
  height: auto;
}

/* ─── PDP related products (You May Also Like / FBT) ─── */
.bs-store .bs-pdp-related {
  padding: 3rem 0 4rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--bs-border);
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.bs-store .bs-pdp-related__section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bs-store .bs-pdp-related__section--fbt {
  padding: 2rem;
  border-radius: var(--bs-radius-lg);
  background: linear-gradient(180deg, color-mix(in srgb, var(--bs-lavender-soft) 55%, #fff) 0%, #fff 100%);
  border: 1px solid color-mix(in srgb, var(--bs-lavender) 18%, var(--bs-border));
}

.bs-store .bs-pdp-related__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.bs-store .bs-pdp-related__intro {
  min-width: 0;
}

.bs-store .bs-pdp-related__title {
  margin: 0;
  font-family: var(--bs-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--bs-text);
  letter-spacing: 0.01em;
}

.bs-store .bs-pdp-related__subtitle {
  margin: 0.4rem 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--bs-muted);
}

.bs-store .bs-pdp-related__link {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bs-pink);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.bs-store .bs-pdp-related__link:hover {
  color: var(--bs-purple);
}

.bs-store .bs-pdp-related__track {
  margin: 0 -0.25rem;
  padding: 0.25rem 0.25rem 0.75rem;
}

.bs-store .bs-pdp-related__track .bs-scroll-row {
  gap: 1rem;
  padding-bottom: 0.5rem;
}

.bs-store .bs-pdp-related__track .bs-scroll-row > .bs-product {
  flex: 0 0 168px;
  width: 168px;
  scroll-snap-align: start;
}

@media (min-width: 640px) {
  .bs-store .bs-pdp-related__track .bs-scroll-row > .bs-product {
    flex: 0 0 200px;
    width: 200px;
  }
}

@media (min-width: 1024px) {
  .bs-store .bs-pdp-related__track .bs-scroll-row > .bs-product {
    flex: 0 0 220px;
    width: 220px;
  }

  .bs-store .bs-pdp-related__track .bs-scroll-row {
    gap: 1.25rem;
  }
}

.bs-store .bs-pdp-related__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 640px) {
  .bs-store .bs-pdp-related__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .bs-store .bs-pdp-related__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.bs-store .bs-pdp-related__grid .bs-product,
.bs-store .bs-pdp-related__track .bs-product {
  height: 100%;
}

.bs-store .bs-cart-related .bs-product-carousel {
  margin: 0;
  max-width: 100%;
  overflow: hidden;
}

.bs-store .bs-cart-related .bs-product-carousel__arrow--prev {
  left: 4px;
}

.bs-store .bs-cart-related .bs-product-carousel__arrow--next {
  right: 4px;
}

@media (min-width: 1024px) {
  .bs-store .bs-cart-related .bs-product-carousel__arrow--prev {
    left: 8px;
  }

  .bs-store .bs-cart-related .bs-product-carousel__arrow--next {
    right: 8px;
  }
}

.bs-store .bs-cart-related .bs-product-carousel__track > .bs-product {
  height: auto;
}

.bs-store .cart-empty-state {
  background: #fff;
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
}

.bs-store .cart-empty-icon {
  background: #fce4f0;
  color: var(--bs-pink);
  border: none;
}

.bs-store .cart-empty-icon .bs-icon {
  width: 40px !important;
  height: 40px !important;
}

/* ─── Order success page ─── */
.bs-store .bs-order-success {
  padding-bottom: 4rem;
}

.bs-store .bs-order-success__wrap {
  max-width: 560px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  box-sizing: border-box;
}

.bs-store .bs-order-success__card {
  text-align: center;
  padding: 2rem 1.25rem 1.75rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (min-width: 640px) {
  .bs-store .bs-order-success__card {
    padding: 2.5rem 2.25rem 2rem;
  }
}

.bs-store .bs-order-success__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fce4f0, #f3effa);
  color: var(--bs-pink);
}

.bs-store .bs-order-success__icon .bs-icon {
  width: 40px !important;
  height: 40px !important;
  stroke-width: 1.75;
}

.bs-store .bs-order-success__title {
  font-family: var(--bs-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--bs-text);
  margin: 0 0 0.5rem;
}

.bs-store .bs-order-success__lead {
  font-size: 14px;
  line-height: 1.55;
  color: var(--bs-muted);
  margin: 0 0 1.5rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.bs-store .bs-order-success__note {
  font-size: 14px;
  color: var(--bs-muted);
  margin: 0 0 1.5rem;
}

.bs-store .bs-order-success__details {
  text-align: left;
  background: var(--bs-bg);
  border: 1px solid var(--bs-border);
  border-radius: 8px;
  padding: 4px 0;
  margin-bottom: 1.5rem;
}

.bs-store .bs-order-success__detail-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--bs-border);
}

.bs-store .bs-order-success__detail-row:last-child {
  border-bottom: none;
}

.bs-store .bs-order-success__detail-row span {
  color: var(--bs-muted);
  flex-shrink: 0;
}

.bs-store .bs-order-success__detail-row strong {
  font-weight: 600;
  color: var(--bs-text);
  text-align: right;
}

.bs-store .bs-order-success__detail-row--address strong {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.45;
}

.bs-store .bs-order-success__total {
  color: var(--bs-pink) !important;
  font-size: 15px;
}

.bs-store .bs-order-success__items {
  text-align: left;
  margin-bottom: 1.5rem;
}

.bs-store .bs-order-success__items-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bs-muted);
  margin: 0 0 10px;
}

.bs-store .bs-order-success__item-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--bs-border);
  border-radius: 8px;
  overflow: hidden;
}

.bs-store .bs-order-success__item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px 12px;
  align-items: center;
  padding: 10px 14px;
  font-size: 13px;
  background: #fff;
  border-bottom: 1px solid var(--bs-border);
}

.bs-store .bs-order-success__item:last-child {
  border-bottom: none;
}

.bs-store .bs-order-success__item-name {
  color: #4a4f63;
  font-weight: 500;
  min-width: 0;
}

.bs-store .bs-order-success__item-qty {
  color: var(--bs-muted);
  font-size: 12px;
}

.bs-store .bs-order-success__item-price {
  font-weight: 700;
  color: var(--bs-text);
  white-space: nowrap;
}

.bs-store .bs-order-success__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 0.5rem;
}

.bs-store .bs-order-success__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 13px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  line-height: 1.35;
  white-space: normal;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
}

.bs-store .bs-order-success__btn--primary {
  border: none;
  background: linear-gradient(135deg, var(--bs-pink), var(--bs-lavender));
  color: #fff;
  box-shadow: var(--bs-shadow-sm);
}

.bs-store .bs-order-success__btn--primary:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: var(--bs-shadow);
}

.bs-store .bs-order-success__btn--outline {
  border: 1px solid var(--bs-border);
  background: #fff;
  color: var(--bs-text);
}

.bs-store .bs-order-success__btn--outline:hover {
  border-color: var(--bs-pink);
  color: var(--bs-pink);
}

.bs-store .bs-order-success__trust {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--bs-border);
  text-align: left;
}

.bs-store .bs-order-success__trust span {
  justify-content: flex-start;
}

/* ─── Wishlist page ─── */
.bs-store .bs-wishlist-page {
  padding-bottom: 3rem;
}

.bs-store .bs-wishlist-card {
  padding: 0;
  overflow: hidden;
}

.bs-store .bs-wishlist-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bs-store .bs-wishlist-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  grid-template-areas:
    "image body"
    "actions actions";
  gap: 12px 14px;
  padding: 16px;
  border-bottom: 1px solid var(--bs-border);
  align-items: start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.bs-store .bs-wishlist-item:last-child {
  border-bottom: none;
}

@media (min-width: 640px) {
  .bs-store .bs-wishlist-item {
    grid-template-columns: 88px minmax(0, 1fr) minmax(0, 160px);
    grid-template-areas: "image body actions";
    align-items: center;
    gap: 16px 20px;
    padding: 18px 20px;
  }
}

.bs-store .bs-wishlist-item__image {
  grid-area: image;
  display: block;
  width: 72px;
  height: 88px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bs-bg);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .bs-store .bs-wishlist-item__image {
    width: 88px;
    height: 106px;
  }
}

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

.bs-store .bs-wishlist-item__body {
  grid-area: body;
  min-width: 0;
}

.bs-store .bs-wishlist-item__brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bs-muted);
  margin: 0 0 4px;
}

.bs-store .bs-wishlist-item__name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 6px;
}

.bs-store .bs-wishlist-item__name a {
  color: #4a4f63;
  text-decoration: none;
}

.bs-store .bs-wishlist-item__name a:hover {
  color: var(--bs-pink);
}

.bs-store .bs-wishlist-item__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

.bs-store .bs-wishlist-item__price-current {
  font-size: 15px;
  font-weight: 700;
  color: var(--bs-pink);
}

.bs-store .bs-wishlist-item__price-mrp {
  font-size: 12px;
  color: var(--bs-muted);
  text-decoration: line-through;
}

.bs-store .bs-wishlist-item__actions {
  grid-area: actions;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

@media (min-width: 640px) {
  .bs-store .bs-wishlist-item__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 160px;
  }
}

.bs-store .bs-wishlist-item__btn {
  width: auto;
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  padding: 11px 14px;
  font-size: 11px;
  white-space: nowrap;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .bs-store .bs-wishlist-item__btn {
    width: 100%;
    flex: none;
  }
}

.bs-store .bs-wishlist-item__remove {
  flex: 0 1 auto;
  border: none;
  background: none;
  padding: 8px 12px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--bs-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-align: center;
  transition: color 0.15s;
}

.bs-store .bs-wishlist-item__remove:hover {
  color: #d4183d;
}

@media (min-width: 640px) {
  .bs-store .bs-wishlist-item__remove {
    padding: 4px 0;
  }
}

.bs-store .bs-wishlist-empty {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.bs-store .bs-wishlist-empty__title {
  font-family: var(--bs-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--bs-text);
  margin: 0 0 8px;
}

.bs-store .bs-wishlist-empty__text {
  font-size: 14px;
  color: var(--bs-muted);
  margin: 0 0 1.5rem;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.bs-store .bs-wishlist-empty__btn {
  width: auto;
  min-width: 200px;
  display: inline-flex;
}

/* Prevent product-card hover buttons overflowing in grids */
.bs-store .bs-product {
  min-width: 0;
  overflow: hidden;
}

.bs-store .bs-product__hover {
  left: 0;
  right: 0;
  box-sizing: border-box;
}

.bs-store .bs-product__quick-view,
.bs-store .bs-product__quick-add {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── Account pages ─── */
.bs-store .bs-account-page {
  padding: 1.5rem 16px 3rem;
  background: var(--bs-bg);
  min-height: 60vh;
}

@media (min-width: 768px) {
  .bs-store .bs-account-page {
    padding: 2rem 24px 4rem;
  }
}

.bs-store .bs-account__layout {
  display: grid;
  gap: 1.25rem;
  max-width: var(--bs-container);
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 768px) {
  .bs-store .bs-account__layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .bs-store .bs-account__layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 2rem;
  }
}

/* Sidebar */
.bs-store .bs-account__sidebar {
  min-width: 0;
}

.bs-store .bs-account-nav {
  background: #fff;
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  box-shadow: var(--bs-shadow-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 768px) {
  .bs-store .bs-account-nav {
    position: sticky;
    top: 20px;
    padding: 1.25rem 1rem;
  }
}

.bs-store .bs-account-nav__profile {
  padding: 0.25rem 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--bs-border);
}

.bs-store .bs-account-nav__greet {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bs-muted);
  margin: 0 0 4px;
}

.bs-store .bs-account-nav__name {
  font-family: var(--bs-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bs-text);
  margin: 0;
  line-height: 1.3;
  word-break: break-word;
}

.bs-store .bs-account-nav__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0.25rem 0;
}

.bs-store .bs-account-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 6px;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--bs-muted);
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  box-sizing: border-box;
}

.bs-store .bs-account-nav__link .bs-icon {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
  color: inherit;
}

.bs-store .bs-account-nav__link:hover,
.bs-store .bs-account-nav__link.is-active {
  background: #fce4f0;
  color: var(--bs-pink);
}

.bs-store .bs-account-nav__logout {
  margin: 0.75rem 0 0;
  padding: 0.75rem 0 0;
  border-top: 1px solid var(--bs-border);
}

.bs-store .bs-account-nav__link--logout {
  color: #b85c6a;
}

.bs-store .bs-account-nav__link--logout:hover {
  background: #fef2f2;
  color: #d4183d;
}

/* Main panel */
.bs-store .bs-account__panel {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  box-shadow: var(--bs-shadow-sm);
  padding: 1.25rem 1.25rem 1.5rem;
}

@media (min-width: 768px) {
  .bs-store .bs-account__panel {
    padding: 1.5rem 1.75rem 1.75rem;
  }
}

.bs-store .bs-account-title {
  font-family: var(--bs-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--bs-text);
  margin: 0;
  line-height: 1.25;
}

.bs-store .bs-account-title--page {
  margin-bottom: 1.25rem;
}

.bs-store .bs-account-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--bs-text);
  margin: 0 0 1rem;
}

.bs-store .bs-account-lead {
  font-size: 14px;
  color: var(--bs-muted);
  margin: -0.5rem 0 1.25rem;
  line-height: 1.5;
}

.bs-store .bs-account-muted {
  font-size: 14px;
  color: var(--bs-muted);
  margin: 0;
  line-height: 1.5;
}

.bs-store .bs-account-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--bs-pink);
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.bs-store .bs-account-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bs-store .bs-account-link--danger {
  color: #b85c6a;
}

.bs-store .bs-account-link--danger:hover {
  color: #d4183d;
}

.bs-store .bs-account-flash {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 1.25rem;
}

.bs-store .bs-account-flash--success {
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  color: #15803d;
}

.bs-store .bs-account-divider {
  height: 1px;
  background: var(--bs-border);
  margin: 1.75rem 0;
}

.bs-store .bs-account-note {
  font-size: 14px;
  color: var(--bs-muted);
  padding: 12px 14px;
  border: 1px solid var(--bs-border);
  border-radius: 8px;
  background: var(--bs-bg);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

/* Buttons */
.bs-store .bs-account-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.bs-store .bs-account-btn--primary {
  background: linear-gradient(135deg, var(--bs-pink), var(--bs-lavender));
  color: #fff;
  box-shadow: var(--bs-shadow-sm);
}

.bs-store .bs-account-btn--primary:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.bs-store .bs-account-btn--outline {
  background: #fff;
  color: var(--bs-text);
  border: 1px solid var(--bs-border);
}

.bs-store .bs-account-btn--outline:hover {
  border-color: var(--bs-pink);
  color: var(--bs-pink);
}

.bs-store .bs-account-btn--danger {
  color: #d4183d;
  border-color: #f5c2c7;
}

.bs-store .bs-account-btn--danger:hover {
  border-color: #d4183d;
  background: #fef2f2;
}

/* Dashboard */
.bs-store .bs-account-welcome {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  border-radius: var(--bs-radius-lg);
  background: linear-gradient(135deg, #fff5fa, #f8f0ff);
  border: 1px solid var(--bs-border);
}

.bs-store .bs-account-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 1.25rem;
}

@media (max-width: 639px) {
  .bs-store .bs-account-stats {
    grid-template-columns: 1fr;
  }
}

.bs-store .bs-account-stat {
  text-align: center;
  padding: 1rem 0.75rem;
  background: var(--bs-bg);
  border: 1px solid var(--bs-border);
  border-radius: 8px;
}

.bs-store .bs-account-stat__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fce4f0;
  color: var(--bs-pink);
}

.bs-store .bs-account-stat__icon .bs-icon {
  width: 20px !important;
  height: 20px !important;
}

.bs-store .bs-account-stat__value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bs-pink);
  margin: 0;
}

.bs-store .bs-account-stat__label {
  font-size: 12px;
  color: var(--bs-muted);
  margin: 4px 0 0;
}

.bs-store .bs-account-card {
  background: #fff;
  border: 1px solid var(--bs-border);
  border-radius: 8px;
  padding: 1.25rem;
}

.bs-store .bs-account__panel > .bs-account-card:not(.bs-account-card--form):not(.bs-account-address-card) {
  border: none;
  padding: 0;
}

.bs-store .bs-account__panel > .bs-account-card.bs-account-card--form {
  border: 1px solid var(--bs-border);
  padding: 1.5rem;
  margin: 0 0 1.5rem;
  background: var(--bs-bg);
  box-sizing: border-box;
}

.bs-store .bs-account-card--form {
  border: 1px solid var(--bs-border);
  padding: 1.5rem;
  margin: 0 0 1.5rem;
  background: var(--bs-bg);
  box-sizing: border-box;
}

.bs-store .bs-account-card--form .bs-account-subtitle {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.bs-store .bs-account-card--form .bs-account-form {
  max-width: 100%;
  width: 100%;
  margin-bottom: 0;
}

.bs-store .bs-account-card--form .bs-account-form__grid {
  column-gap: 20px;
  row-gap: 16px;
}

.bs-store .bs-account__panel .bs-wishlist-list {
  border: 1px solid var(--bs-border);
  border-radius: 8px;
  overflow: hidden;
}

.bs-store .bs-account__panel .bs-wishlist-item {
  padding: 16px;
  background: #fff;
}

.bs-store .bs-account__panel .bs-wishlist-item:last-child {
  border-bottom: none;
}

.bs-store .bs-account__panel .bs-account-empty {
  text-align: center;
  padding: 2rem 1rem;
}

.bs-store .bs-account__panel .bs-account-empty .bs-account-stat__icon {
  margin: 0 auto 1rem;
}

.bs-store .bs-account__panel .bs-account-empty .bs-account-muted {
  margin-bottom: 1.25rem;
}

.bs-store .bs-account-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 1rem;
}

.bs-store .bs-account-card__title {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: var(--bs-text);
}

.bs-store .bs-account-order-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bs-store .bs-account-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--bs-border);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.bs-store .bs-account-order-row:hover {
  border-color: #e8d4dc;
  box-shadow: var(--bs-shadow-sm);
}

.bs-store .bs-account-order-row__id {
  font-size: 14px;
  font-weight: 600;
  color: var(--bs-text);
  margin: 0 0 2px;
}

.bs-store .bs-account-order-row__meta {
  text-align: right;
}

.bs-store .bs-account-order-row__total {
  font-size: 14px;
  font-weight: 700;
  color: var(--bs-pink);
  margin: 0 0 2px;
}

/* Forms */
.bs-store .bs-account-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
  margin-bottom: 0.5rem;
}

.bs-store .bs-account-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .bs-store .bs-account-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }
}

.bs-store .bs-account-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.bs-store .bs-account-form__field label,
.bs-store .bs-account-form .password-field > label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bs-muted);
}

.bs-store .bs-account-form .password-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bs-store .bs-account-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--bs-text);
  cursor: pointer;
}

.bs-store .bs-account-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--bs-pink);
}

/* Table */
.bs-store .bs-account-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--bs-border);
  border-radius: 8px;
}

.bs-store .bs-account-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.bs-store .bs-account-table th,
.bs-store .bs-account-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--bs-border);
}

.bs-store .bs-account-table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bs-muted);
  background: var(--bs-bg);
}

.bs-store .bs-account-table tr:last-child td {
  border-bottom: none;
}

.bs-store .bs-account-table__right {
  text-align: right;
}

.bs-store .bs-account-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  background: var(--bs-bg);
  border: 1px solid var(--bs-border);
  color: var(--bs-text);
}

.bs-store .bs-account-badge--lg {
  font-size: 12px;
  padding: 6px 12px;
}

/* Addresses */
.bs-store .bs-account-address-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 0.25rem;
}

@media (min-width: 640px) {
  .bs-store .bs-account-address-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.bs-store .bs-account__panel > .bs-account-card.bs-account-address-card,
.bs-store .bs-account-address-card {
  position: relative;
  padding: 1.5rem !important;
  background: #fff;
  border: 1px solid var(--bs-border);
  border-radius: 8px;
  box-sizing: border-box;
}

.bs-store .bs-account-address-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: #fce4f0;
  color: var(--bs-pink);
}

.bs-store .bs-account-address-card__title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
  padding-right: 4rem;
}

.bs-store .bs-account-address-card__text {
  margin-bottom: 12px;
}

/* Reviews */
.bs-store .bs-account-empty {
  text-align: center;
  padding: 2rem 1.5rem !important;
}

.bs-store .bs-account-review-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bs-store .bs-account-review-card__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.bs-store .bs-account-review-card__product {
  font-size: 14px;
  font-weight: 600;
  color: var(--bs-text);
  text-decoration: none;
}

.bs-store .bs-account-review-card__product:hover {
  color: var(--bs-pink);
}

.bs-store .bs-account-review-card__title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 6px;
}

.bs-store .bs-account-stars {
  color: #ffb800;
  font-size: 12px;
  margin-top: 4px;
}

.bs-store .bs-account-verified {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  background: #ecfdf3;
  color: #15803d;
}

/* Order detail */
.bs-store .bs-account-order-detail__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.bs-store .bs-account-order-detail__head .bs-account-title--page {
  margin-bottom: 4px;
}

.bs-store .bs-account-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 1.25rem;
}

.bs-store .bs-account-timeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 4.5rem;
  flex-shrink: 0;
}

.bs-store .bs-account-timeline__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bs-border);
  border: 2px solid #fff;
  margin-bottom: 6px;
}

.bs-store .bs-account-timeline__step.is-done .bs-account-timeline__dot,
.bs-store .bs-account-timeline__step.is-active .bs-account-timeline__dot {
  background: var(--bs-pink);
}

.bs-store .bs-account-timeline__label {
  font-size: 10px;
  text-align: center;
  color: var(--bs-muted);
  line-height: 1.3;
}

.bs-store .bs-account-timeline__step.is-done .bs-account-timeline__label,
.bs-store .bs-account-timeline__step.is-active .bs-account-timeline__label {
  color: var(--bs-text);
  font-weight: 600;
}

.bs-store .bs-account-timeline__line {
  flex: 1;
  height: 2px;
  background: var(--bs-border);
  margin-top: 5px;
  min-width: 1rem;
}

.bs-store .bs-account-timeline__line.is-done {
  background: var(--bs-pink);
}

.bs-store .bs-account-alert {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}

.bs-store .bs-account-alert--danger {
  border: 1px solid #fecaca;
  background: #fef2f2;
}

.bs-store .bs-account-alert .bs-account-muted {
  margin-bottom: 12px;
}

.bs-store .bs-account-order-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .bs-store .bs-account-order-detail__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bs-store .bs-account-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.bs-store .bs-account-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.bs-store .bs-account-summary-row span:first-child {
  color: var(--bs-muted);
}

.bs-store .bs-account-summary-row--discount span:last-child {
  color: #16a34a;
  font-weight: 600;
}

.bs-store .bs-account-summary-row--total {
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid var(--bs-border);
  font-weight: 700;
}

.bs-store .bs-account-summary-row--total span:last-child {
  color: var(--bs-pink);
}

.bs-store .bs-account-summary-row--sm {
  font-size: 12px;
}

.bs-store .bs-account-order-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.bs-store .bs-account-order-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--bs-border);
  border-radius: 8px;
  font-size: 14px;
}

.bs-store .bs-account-order-item .bs-account-link {
  display: inline-flex;
  margin-top: 0;
  font-size: 12px;
}

.bs-store .bs-account-order-item--review {
  display: block;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(45, 35, 40, 0.04);
}

.bs-store .bs-account-order-item__main {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
}

.bs-store .bs-account-order-item__thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: #faf7f9;
  border: 1px solid var(--bs-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bs-store .bs-account-order-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bs-store .bs-account-order-item__thumb-fallback {
  color: #c4b7be;
}

.bs-store .bs-account-order-item__info {
  flex: 1 1 auto;
  min-width: 0;
}

.bs-store .bs-account-order-item__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--bs-text);
  text-decoration: none;
  line-height: 1.35;
  margin-bottom: 4px;
}

a.bs-store .bs-account-order-item__name:hover,
.bs-store a.bs-account-order-item__name:hover {
  color: var(--bs-pink);
}

.bs-store .bs-account-order-item__price {
  margin-left: auto;
}

.bs-store .bs-account-review-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff7fb 0%, #faf5ff 100%);
  border: 1px solid #f0dfea;
}

.bs-store .bs-account-review-banner--done {
  background: #f4fbf7;
  border-color: #d1e7dd;
}

.bs-store .bs-account-review-banner__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--bs-pink, #be185d);
  border: 1px solid #f0dfea;
}

.bs-store .bs-account-review-banner--done .bs-account-review-banner__icon {
  color: #047857;
  border-color: #d1e7dd;
}

.bs-store .bs-account-review-banner__title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--bs-text);
}

.bs-store .bs-account-review-banner__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--bs-muted);
}

.bs-store .bs-account-rate {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.bs-store .bs-account-rate__label {
  margin: 0;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: var(--bs-muted);
  letter-spacing: 0.02em;
}

.bs-store .bs-account-rate__stars {
  display: inline-flex;
  gap: 2px;
}

.bs-store .bs-account-rate__star {
  border: none;
  background: none;
  padding: 0 1px;
  font-size: 22px;
  line-height: 1;
  color: #e2d8de;
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
}

.bs-store .bs-account-rate__star:hover,
.bs-store .bs-account-rate__star.is-on {
  color: #f5a524;
}

.bs-store .bs-account-rate__star:hover {
  transform: scale(1.08);
}

.bs-store .bs-account-rate__stars--lg .bs-account-rate__star {
  font-size: 28px;
}

.bs-store .bs-account-rate--done {
  margin-top: 10px;
  gap: 12px;
}

.bs-store .bs-account-rate__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 12px;
  font-weight: 600;
}

.bs-store .bs-account-btn--sm {
  padding: 7px 12px;
  font-size: 12px;
  min-height: 0;
}

.bs-store .bs-account-review-form {
  padding: 0 16px 16px;
  border-top: 1px solid #f0e6ec;
  background: #faf7f9;
}

.bs-store .bs-account-review-form form {
  display: grid;
  gap: 12px;
  padding-top: 14px;
}

.bs-store .bs-account-review-form__row {
  display: grid;
  gap: 6px;
}

.bs-store .bs-account-review-form__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--bs-muted);
}

.bs-store .bs-account-rate-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff7fb;
  border: 1px solid #f0dfea;
  color: var(--bs-pink, #be185d);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.bs-store .bs-account-rate-link:hover {
  background: #fce7f3;
}

.bs-store .bs-account-rate-hint {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--bs-pink, #be185d);
}

.bs-store .bs-account-history {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 4px;
}

.bs-store .bs-account-history__item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0 14px;
  min-height: 0;
}

.bs-store .bs-account-history__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.bs-store .bs-account-history__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d4c8ce;
  flex-shrink: 0;
  box-sizing: border-box;
}

.bs-store .bs-account-history__item.is-latest .bs-account-history__dot {
  border-color: var(--bs-pink, #be185d);
  background: var(--bs-pink, #be185d);
  box-shadow: 0 0 0 4px rgba(190, 24, 93, 0.12);
}

.bs-store .bs-account-history__connector {
  width: 2px;
  flex: 1 1 auto;
  min-height: 18px;
  margin: 4px 0 0;
  background: #eadfe6;
}

.bs-store .bs-account-history__body {
  padding: 0 0 18px;
  min-width: 0;
}

.bs-store .bs-account-history__item:last-child .bs-account-history__body {
  padding-bottom: 4px;
}

.bs-store .bs-account-history__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--bs-text);
  line-height: 1.3;
}

.bs-store .bs-account-history__item.is-latest .bs-account-history__title {
  color: var(--bs-pink, #be185d);
}

.bs-store .bs-account-history__message {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--bs-muted);
}

.bs-store .bs-account-history__time {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 500;
  color: #9a9198;
}

.bs-store .bs-account-history__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 10px 12px;
  font-size: 13px;
  background: var(--bs-bg);
  border-radius: 6px;
}

.bs-store .bs-account-history__status {
  font-weight: 600;
  color: var(--bs-text);
}

/* Mobile: horizontal scroll nav */
@media (max-width: 767px) {
  .bs-store .bs-account-nav__profile {
    display: none;
  }

  .bs-store .bs-account-nav {
    padding: 0.75rem;
  }

  .bs-store .bs-account-nav__links {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .bs-store .bs-account-nav__links::-webkit-scrollbar {
    display: none;
  }

  .bs-store .bs-account-nav__link {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 13px;
  }

  .bs-store .bs-account-nav__logout {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }

  .bs-store .bs-account-nav__link--logout {
    width: 100%;
    justify-content: center;
  }

  .bs-store .bs-account-welcome .bs-account-btn {
    width: 100%;
  }
}

/* Sold count + flash sale on PDP */
.bs-pdp__sold {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--bs-muted, #6b7280);
}
.bs-pdp__sold-icon {
  display: inline-flex;
  color: #e91e8c;
}
.bs-pdp__flash {
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: linear-gradient(90deg, #fff1f2 0%, #fdf2f8 100%);
  border: 1px solid #fecdd3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.bs-pdp__flash-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff1f2;
  color: #be123c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bs-pdp__flash-timer {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
}
.bs-pdp__flash-label { color: var(--bs-muted, #6b7280); font-weight: 500; }
.bs-pdp__flash-digits { font-weight: 700; font-variant-numeric: tabular-nums; color: #be123c; }

/* Auth pages */
.bs-auth-page {
  min-height: calc(100vh - var(--bs-header-h) - var(--bs-nav-h) - 2rem);
  padding: 1.5rem 1rem 3rem;
  background:
    radial-gradient(ellipse 90% 55% at 8% -10%, rgba(233, 30, 140, 0.14), transparent 52%),
    radial-gradient(ellipse 70% 45% at 100% 100%, rgba(242, 120, 186, 0.12), transparent 48%),
    linear-gradient(180deg, #fff5fa 0%, #ffffff 42%, #fff8fc 100%);
}

.bs-auth-page__shell {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .bs-auth-page__shell {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 620px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(233, 30, 140, 0.1);
    border: 1px solid rgba(233, 30, 140, 0.12);
    background: #fff;
  }
}

.bs-auth-brand {
  position: relative;
  display: none;
  padding: 2.5rem 2rem;
  color: #fff;
  background:
    linear-gradient(155deg, var(--bs-pink) 0%, color-mix(in srgb, var(--bs-pink) 70%, var(--bs-lavender)) 55%, var(--bs-lavender) 100%);
  overflow: hidden;
}

@media (min-width: 900px) {
  .bs-auth-brand { display: flex; align-items: center; }
}

.bs-auth-brand__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.28), transparent 40%),
    radial-gradient(circle at 88% 78%, rgba(255, 182, 213, 0.35), transparent 42%),
    radial-gradient(circle at 50% 110%, rgba(155, 127, 212, 0.22), transparent 45%);
  pointer-events: none;
}

.bs-auth-brand__content {
  position: relative;
  z-index: 1;
  max-width: 360px;
}

.bs-auth-brand__logo {
  height: 42px;
  width: auto;
  margin-bottom: 1.75rem;
  filter: brightness(0) invert(1);
}

.bs-auth-brand__title {
  margin: 0 0 0.75rem;
  font-family: var(--bs-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
}

.bs-auth-brand__text {
  margin: 0 0 1.5rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.bs-auth-brand__perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.bs-auth-brand__perks li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
}

.bs-auth-brand__perks svg {
  flex-shrink: 0;
  opacity: 0.95;
}

.bs-auth-card {
  background: #fff;
  border: 1px solid var(--bs-border);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--bs-shadow-sm);
}

@media (min-width: 900px) {
  .bs-auth-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 2.5rem 2.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.bs-auth-card__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
  .bs-auth-card__header { text-align: left; }
}

.bs-auth-card__logo--mobile {
  display: block;
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  margin: 0 auto 0.75rem;
}

@media (min-width: 900px) {
  .bs-auth-card__logo--mobile { display: none; }
}

/* Auth layout — compact mobile branding + room to scroll header away */
.bs-auth-layout .bs-header__logo img {
  height: 26px !important;
  max-width: 110px;
  width: auto;
  object-fit: contain;
}
.bs-auth-layout .bs-auth-page {
  min-height: auto;
  padding: 1rem 1rem 2.5rem;
}
.bs-auth-layout .bs-auth-card {
  padding: 1.35rem 1.15rem 1.5rem;
  border-radius: 16px;
}
.bs-auth-layout .bs-auth-card__title {
  font-size: 1.55rem;
}
.bs-auth-layout .bs-auth-card__header {
  margin-bottom: 1.15rem;
}
@media (min-width: 768px) {
  .bs-auth-layout .bs-header__logo img {
    height: 36px !important;
    max-width: none;
  }
  .bs-auth-layout .bs-auth-page {
    padding: 1.5rem 1rem 3rem;
  }
}

.bs-auth-card__title {
  margin: 0 0 0.35rem;
  font-family: var(--bs-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--bs-text);
}

.bs-auth-card__subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--bs-muted);
}

.bs-auth-alert {
  margin-bottom: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.45;
}

.bs-auth-alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.bs-auth-alert--success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
}

.bs-auth-page__shell--single {
  max-width: 460px;
}

.bs-auth-form {
  display: grid;
  gap: 1rem;
}

.bs-auth-field {
  display: grid;
  gap: 0.45rem;
}

.bs-auth-field__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--bs-muted);
}

.bs-auth-field__optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #9ca3af;
}

.bs-auth-field__control {
  position: relative;
}

.bs-auth-field__icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bs-muted);
  pointer-events: none;
  display: inline-flex;
}

.bs-auth-field__input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.72rem 0.9rem 0.72rem 2.5rem;
  border: 1px solid var(--bs-border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--bs-text);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bs-auth-field__input:focus {
  outline: none;
  border-color: var(--bs-pink);
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.12);
}

.bs-auth-field__input--otp {
  padding-left: 0.9rem;
  text-align: center;
  font-size: 1.25rem;
  letter-spacing: 0.35em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.bs-auth-otp-resend button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.bs-auth-field--password .password-field__control {
  position: relative;
}

.bs-auth-field--password .bs-auth-field__input--password {
  padding-left: 0.9rem;
  padding-right: 2.75rem;
}

.bs-auth-field--password .password-field__toggle {
  right: 0.55rem;
  bottom: 0.35rem;
  color: var(--bs-muted);
}

.bs-auth-field--password .password-field__icon[hidden],
.bs-auth-field--password .password-field__toggle:not([aria-pressed="true"]) .password-field__icon--hide {
  display: none !important;
}

.bs-auth-field-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .bs-auth-field-grid { grid-template-columns: 1fr 1fr; }
}

.bs-auth-form__row {
  display: flex;
  justify-content: flex-end;
  margin-top: -0.25rem;
}

.bs-auth-link {
  font-size: 13px;
  color: var(--bs-pink);
  text-decoration: none;
}

.bs-auth-link:hover { text-decoration: underline; }

.bs-auth-link--strong { font-weight: 600; }

.bs-auth-submit {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.9rem 1rem;
  border: 0;
  border-radius: 12px;
  background: var(--bs-pink, #CA9C46);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--bs-pink, #CA9C46) 28%, transparent);
}

.bs-auth-submit:hover {
  background: #d4177f;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(233, 30, 140, 0.36);
}

.bs-auth-submit:active {
  transform: translateY(0);
  background: #c2187a;
}

.bs-auth-card__footer {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--bs-muted);
}

@media (min-width: 900px) {
  .bs-auth-card__footer { text-align: left; }
}

.bs-auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.1rem 0;
  color: var(--bs-muted);
  font-size: 12px;
  text-transform: lowercase;
}

.bs-auth-divider::before,
.bs-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bs-border);
}

.bs-auth-divider span { white-space: nowrap; }

.bs-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1px solid #dadce0;
  border-radius: 10px;
  background: #fff;
  color: #3c4043;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

.bs-google-btn:hover {
  background: #f8f9fa;
  border-color: #c6c9cc;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.12);
}

.bs-google-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bs-google-btn__label { line-height: 1; }

/* Auth modal — above header/nav/drawers */
.bs-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.bs-auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(3px);
  z-index: 0;
}
.bs-auth-modal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
  animation: bs-auth-modal-in 0.22s ease-out;
}
body.bs-auth-modal-open {
  overflow: hidden !important;
  touch-action: none;
}

@keyframes bs-auth-modal-in {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.bs-auth-modal__close {
  position: absolute; top: 12px; right: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 0; border-radius: 999px;
  background: #f3f4f6; cursor: pointer; color: #6b7280;
  transition: background 0.15s ease, color 0.15s ease;
}
.bs-auth-modal__close:hover { background: #e5e7eb; color: #111827; }

.bs-auth-modal__brand { text-align: center; margin-bottom: 1.25rem; }
.bs-auth-modal__logo { height: 34px; width: auto; margin: 0 auto 0.85rem; }
.bs-auth-modal__title {
  margin: 0 0 0.45rem;
  font-family: var(--bs-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--bs-text);
}
.bs-auth-modal__text { margin: 0; font-size: 14px; color: #6b7280; line-height: 1.5; }

.bs-auth-modal__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.bs-auth-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.85rem;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.bs-auth-modal__btn--primary {
  background: linear-gradient(135deg, var(--bs-pink), #d4177f);
  color: #fff;
  border: 1px solid transparent;
}

.bs-auth-modal__btn--primary:hover { filter: brightness(1.03); }

.bs-auth-modal__btn--outline {
  background: #fff;
  color: var(--bs-text);
  border: 1px solid var(--bs-border);
}

.bs-auth-modal__btn--outline:hover { background: #faf9fb; }

.bs-google-btn--modal { margin-bottom: 0; }

/* Checkout barcode payment */
.bs-checkout__barcode {
  margin: 8px 0 12px 28px;
  padding: 12px;
  border: 1px solid var(--bs-border, #e5e7eb);
  border-radius: 12px;
  background: #fafafa;
}
.bs-checkout__qr { max-width: 180px; height: auto; display: block; margin-bottom: 10px; border-radius: 8px; background: #fff; }
.bs-checkout__barcode-help { font-size: 13px; color: #6b7280; margin: 8px 0; line-height: 1.5; }

