/* Swiss Beauty–inspired storefront polish (keeps existing header/footer) */

/* Checkout barcode size */
.bs-checkout__qr {
  width: 120px !important;
  max-width: 120px !important;
  height: auto !important;
  display: block;
  margin: 0 0 10px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

/* Header country / language */
.bs-header__locale {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 4px;
}
.bs-header__locale-item { position: relative; }
.bs-header__locale-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  border: 1px solid var(--bs-border, #ebe4e8);
  border-radius: 999px;
  background: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  color: var(--bs-text);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
}
.bs-header__locale-label {
  color: var(--bs-muted);
  font-weight: 500;
  display: none;
}
.bs-header__locale-value { max-width: 72px; overflow: hidden; text-overflow: ellipsis; }
.bs-header__locale-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background: #fff;
  border: 1px solid var(--bs-border);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(45, 35, 40, 0.12);
  padding: 6px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bs-header__locale-option {
  display: block;
  width: 85%;
  text-align: left;
  padding: 8px 10px;
  border: none;
  border-radius: 6px;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--bs-text);
  text-decoration: none;
  cursor: pointer;
}
.bs-header__locale-option:hover,
.bs-header__locale-option.is-active {
  background: #fce4f0;
  color: var(--bs-pink);
}
@media (min-width: 900px) {
  .bs-header__locale-label { display: inline; }
  .bs-header__locale-value { max-width: none; }
}
@media (max-width: 639px) {
  .bs-header__locale { gap: 4px; margin-right: 0; }
  .bs-header__locale-btn { padding: 5px 7px; font-size: 10px; }
}

/* Hide Google Translate chrome — keep widget mount off-screen (must not be display:none or init fails) */
.bs-gt-mount,
#google_translate_element {
  position: absolute !important;
  left: -9999px !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}
iframe.goog-te-banner-frame,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
div#goog-gt- {
  display: none !important;
}
body { top: 0 !important; }
.goog-te-gadget { font-size: 0 !important; }
/* Translated text highlight reset */
font { background: transparent !important; box-shadow: none !important; }

/* Product cards */
.bs-product--sb {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.bs-product--sb:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.bs-product--sb .bs-product__media {
  aspect-ratio: 1 / 1;
  max-height: none;
  background: #f3f0f2;
}
.bs-product--sb .bs-product__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
}
.bs-product--sb .bs-product__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  padding: 0 !important;
  transition: opacity 0.35s ease;
  transform: none !important;
}
.bs-product--sb .bs-product__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 2;
}
.bs-product--sb:hover .bs-product__img--primary { opacity: 0; }
.bs-product--sb:hover .bs-product__img--hover { opacity: 1; }
.bs-product--sb .bs-product__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  display: inline-block;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  border-radius: 0 0 8px 0;
}
.bs-product--sb .bs-product__ribbon--best { background: var(--bs-pink); }
.bs-product--sb .bs-product__ribbon--new { background: #16a34a; }
.bs-product--sb .bs-product__ribbon--oos {
  top: auto;
  bottom: 10px;
  left: 10px;
  background: #6b7280;
  border-radius: 999px;
  padding: 4px 10px;
}
.bs-product--sb .bs-product__offer {
  position: absolute;
  top: 10px;
  right: 48px;
  z-index: 4;
  min-width: 34px;
  height: 34px;
  padding: 0 6px;
  border-radius: 50%;
  background: #e11d48;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.bs-product--sb .bs-product__shade-dot { display: none !important; }
.bs-product--sb .bs-product__wish {
  z-index: 5;
  background: rgba(255,255,255,.92);
}
.bs-product--sb .bs-product__tagline {
  background: #fff4c2;
  color: #1f1f1f;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 7px 8px;
  line-height: 1.3;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bs-product--sb .bs-product__body {
  padding: 10px 12px 12px;
  gap: 6px;
  text-align: center;
}
.bs-product--sb .bs-product__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.bs-product--sb .bs-product__name a { color: inherit; text-decoration: none; }
.bs-product--sb .bs-product__rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #555;
}
.bs-product--sb .bs-product__star { color: var(--bs-pink); font-size: 13px; line-height: 1; }
.bs-product--sb .bs-product__rating-sep {
  width: 1px;
  height: 12px;
  background: #d4d4d4;
  display: inline-block;
}
.bs-product--sb .bs-product__price {
  justify-content: center;
  margin: 2px 0 4px;
}
.bs-product--sb .bs-product__price-current {
  font-size: 16px;
  font-weight: 700;
}
.bs-product--sb .bs-product__cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 11px 12px;
  border: none;
  border-radius: 8px;
  background: var(--bs-pink);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.bs-product--sb .bs-product__cart-btn:hover { background: color-mix(in srgb, var(--bs-pink) 85%, #000); color: #fff; }
.bs-product--sb .bs-product__cart-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Homepage sections */
.bs-home .bs-home-products .bs-section__head {
  align-items: center;
  margin-bottom: 18px;
}
.bs-home .bs-home-products .bs-section__title {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: inherit;
}
.bs-home .bs-home-products .bs-section__link {
  color: #e11d48;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.bs-home .bs-home-products .bs-section__link:hover { text-decoration: underline; }
.bs-home .bs-scroll-row > .bs-product--sb,
.bs-home .bs-product-carousel__track > .bs-product--sb {
  flex: 0 0 220px;
  width: 220px;
  max-width: 220px;
}
@media (max-width: 767.98px) {
  .bs-home .bs-scroll-row > .bs-product--sb,
  .bs-home .bs-product-carousel__track > .bs-product--sb {
    flex: 0 0 calc((100% - 12px) / 2);
    width: calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
  }
}
@media (min-width: 768px) {
  .bs-home .bs-scroll-row > .bs-product--sb,
  .bs-home .bs-product-carousel__track > .bs-product--sb {
    flex-basis: 240px;
    width: 240px;
    max-width: 240px;
  }
}

.bs-home-cats {
  padding: 18px 0 8px;
  background: #fff;
}
.bs-home-cats__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: thin;
}
.bs-home-cats__item {
  flex: 0 0 auto;
  width: 88px;
  text-align: center;
  text-decoration: none;
  color: var(--bs-text);
}
.bs-home-cats__img {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 8px;
  border-radius: 50%;
  overflow: hidden;
  background: #f6f1f4;
  border: 1px solid #f0e8ec;
}
.bs-home-cats__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bs-home-cats__name {
  display: block;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}

/* PDP coupons / stock / responsive */
.bs-pdp {
  max-width: 100%;
  overflow-x: clip;
}
.bs-pdp__layout,
.bs-pdp__gallery,
.bs-pdp__info,
.bs-pdp__purchase,
.bs-pdp__btn-row {
  min-width: 0;
  max-width: 100%;
}
.bs-pdp__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}
.bs-pdp__price-main {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
}
.bs-pdp__stock--inline {
  margin: 0 !important;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
}
.bs-pdp__stock--inline.bs-pdp__stock--in { color: #16a34a; }
.bs-pdp__stock--inline.bs-pdp__stock--out { color: #dc2626; }
.bs-pdp__sku { display: none !important; }

.bs-pdp-coupons { margin: 18px 0 8px; }
.bs-pdp-coupons__title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px;
}
.bs-pdp-coupons__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.bs-coupon-card {
  flex: 0 0 min(260px, 82vw);
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
}
.bs-coupon-card__top {
  padding: 12px 14px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--bs-pink, var(--color-primary, #CA9C46));
}
.bs-coupon-card--orange .bs-coupon-card__top,
.bs-coupon-card--pink .bs-coupon-card__top,
.bs-coupon-card--rose .bs-coupon-card__top {
  background: var(--bs-pink, var(--color-primary, #CA9C46));
}
.bs-coupon-card__body {
  padding: 14px;
  border-top: 1px dashed #e5e7eb;
}
.bs-coupon-card__offer {
  font-size: 13px;
  line-height: 1.4;
  margin: 0 0 12px;
  color: #333;
  min-height: 2.8em;
}
.bs-coupon-card__copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fafafa;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.bs-coupon-card__copy:hover { background: #f3f4f6; }

.bs-pdp .bs-pdp__main-frame {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.bs-pdp .bs-pdp__main-img {
  margin: 0 auto;
  object-fit: contain !important;
  object-position: center center !important;
}

@media (max-width: 767px) {
  .bs-pdp {
    padding-bottom: 24px;
    overflow-x: clip;
    max-width: 100%;
  }
  .bs-pdp .bs-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
    max-width: 100%;
    box-sizing: border-box;
  }
  .bs-pdp__layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .bs-pdp__gallery,
  .bs-pdp__info {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .bs-pdp__gallery {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .bs-pdp__main {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    max-height: none !important;
    border-radius: 12px !important;
    min-width: 0;
  }
  .bs-pdp__main-frame { padding: 8px !important; }
  .bs-pdp__main-img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
  }
  .bs-pdp__thumbs {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 100% !important;
    order: 1 !important;
    gap: 8px !important;
    max-height: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .bs-pdp__thumbs::-webkit-scrollbar { display: none; }
  .bs-pdp__thumb {
    width: 56px !important;
    flex: 0 0 56px !important;
  }
  .bs-pdp__title {
    font-size: clamp(1.2rem, 5.5vw, 1.45rem) !important;
    line-height: 1.25;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .bs-pdp__price {
    font-size: 22px !important;
  }
  .bs-pdp__price-row {
    align-items: flex-start !important;
  }
  .bs-pdp__stock--inline {
    margin-left: 0 !important;
  }
  .bs-pdp__variant-options {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .bs-pdp__variant-options--color {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)) !important;
  }
  .bs-pdp__variant-btn--swatch {
    width: 100% !important;
    min-width: 0 !important;
  }
  .bs-pdp__swatch-label {
    font-size: 10px !important;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Purchase buttons — full-bleed sticky bar (edge to edge) */
  .bs-pdp__purchase {
    position: sticky;
    bottom: 0;
    z-index: 30;
    width: calc(100% + 24px) !important;
    max-width: none !important;
    margin: 0 -12px !important;
    padding: 12px 12px max(12px, env(safe-area-inset-bottom)) !important;
    background: #fff;
    border-top: 1px solid #f0e8ec;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.06);
    box-sizing: border-box;
    border-radius: 0;
  }
  .bs-pdp__btn-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 8px !important;
  }
  .bs-pdp__btn {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 12px 8px !important;
    font-size: 12px !important;
    letter-spacing: 0.04em !important;
    box-sizing: border-box !important;
  }
  .bs-pdp__wishlist-btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  .bs-pdp-coupons,
  .mb-pdp-offers,
  .mb-pdp-features {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .bs-pdp-coupons__track {
    margin: 0 !important;
    padding: 0 0 6px !important;
    max-width: 100%;
  }
  .bs-coupon-card {
    flex: 0 0 min(240px, 78vw) !important;
  }
  .mb-pdp-features {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
  .mb-pdp-feature {
    font-size: 11px !important;
    min-width: 0;
  }
  .mb-pdp-feature span {
    font-size: 9px !important;
    overflow-wrap: anywhere;
  }

  .bs-pdp__details-full {
    margin-top: 24px;
    padding: 20px 0 32px;
    overflow-x: clip;
  }
  .bs-pdp__tabs .bs-tabs__nav,
  .bs-pdp__details-full .bs-tabs__nav {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap !important;
    gap: 6px;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }
  .bs-tabs__btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .bs-tabs__panel,
  .bs-pdp__details-full .bs-tabs__panel {
    font-size: 14px !important;
    line-height: 1.65 !important;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
  }
  .bs-tabs__panel img,
  .bs-tabs__panel table,
  .bs-tabs__panel iframe,
  .bs-page__content img {
    max-width: 100% !important;
    height: auto !important;
  }
  .bs-tabs__panel table {
    display: block;
    overflow-x: auto;
  }

  .bs-pdp-related {
    padding-left: 0;
    padding-right: 0;
    overflow-x: clip;
    max-width: 100%;
  }
  .bs-pdp-related__head {
    flex-wrap: wrap;
    gap: 8px;
  }
  .bs-pdp-related__track,
  .bs-pdp-related__track .bs-scroll-row {
    max-width: 100%;
  }
  .bs-pdp-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
}

@media (max-width: 420px) {
  .bs-pdp__btn-row {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .bs-pdp__btn {
    font-size: 13px !important;
  }
}

/* Tablet: keep gallery from forcing horizontal overflow */
@media (min-width: 768px) and (max-width: 1023px) {
  .bs-pdp__layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .bs-pdp__gallery {
    max-width: 100%;
    min-width: 0;
  }
  .bs-pdp__info {
    min-width: 0;
    max-width: 100%;
  }
  .mb-pdp-features {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* Account mobile */
@media (max-width: 767px) {
  .bs-store .bs-account-page { padding: 1rem 12px 2.5rem; }
  .bs-store .bs-account__panel {
    padding: 1rem;
    border-radius: 12px;
  }
  .bs-store .bs-account-form__grid { grid-template-columns: 1fr !important; }
  .bs-store .bs-account-address-grid { grid-template-columns: 1fr !important; }
  .bs-store .bs-account-order-row,
  .bs-store .bs-account-order-detail__head {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 8px;
  }
  .bs-store .bs-account-order-detail__grid { grid-template-columns: 1fr !important; }
  .bs-store .bs-account-order-item {
    grid-template-columns: 64px 1fr !important;
    gap: 10px;
  }
  .bs-store .bs-account-table-wrap,
  .bs-store .bs-account-order-detail__table-wrap {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .bs-store .bs-account-btn { min-height: 44px; }
  .bs-store .bs-account-welcome {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}

/* Shop grid */
.bs-grid > .bs-product--sb { min-width: 0; }
@media (max-width: 639px) {
  .bs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .bs-product--sb .bs-product__tagline { font-size: 11px; min-height: 30px; }
  .bs-product--sb .bs-product__name { font-size: 12px; }
  .bs-product--sb .bs-product__cart-btn { font-size: 11px; padding: 9px 8px; }
}

/* Top navbar category dropdowns */
.bs-store .bs-nav,
.bs-store .bs-nav__inner {
  overflow: visible !important;
}
.bs-store .bs-header {
  overflow: visible;
}
.bs-store .bs-nav__inner {
  position: relative;
}
.bs-store .bs-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: 100%;
}
.bs-store .bs-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.bs-store .bs-nav__chevron {
  opacity: 0.7;
  transition: transform 0.2s;
}
.bs-store .bs-nav__link.is-open .bs-nav__chevron {
  transform: rotate(180deg);
}
.bs-store .bs-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--bs-border, #ebe4e8);
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(45, 35, 40, 0.12);
  padding: 8px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bs-store .bs-nav__dropdown-link {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--bs-text);
  text-decoration: none;
  white-space: nowrap;
}
.bs-store .bs-nav__dropdown-link:hover {
  background: #fce4f0;
  color: var(--bs-pink);
}
.bs-drawer__link--sub {
  padding-left: 1.75rem !important;
  font-size: 13px !important;
  opacity: 0.85;
}

/* Mini cart must sit above promo (200) / locale menus (220) */
.bs-mini-cart__overlay {
  z-index: 400 !important;
}
.bs-mini-cart__panel {
  z-index: 410 !important;
}

/* PDP main image gallery arrows (inside main frame) */
.bs-pdp__main-nav {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.bs-pdp__main-nav-btn {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(45, 35, 40, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #2a2430;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(45, 35, 40, 0.12);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, opacity 0.2s;
  opacity: 0.92;
  padding: 0;
}
.bs-pdp__main-nav-btn:hover {
  background: #fff;
  color: #be185d;
  box-shadow: 0 6px 18px rgba(45, 35, 40, 0.16);
  opacity: 1;
}
.bs-pdp__main-nav-btn--prev { left: 10px; }
.bs-pdp__main-nav-btn--next { right: 10px; }
.bs-pdp__main-nav-btn .bs-icon {
  width: 18px;
  height: 18px;
  display: block;
}
.bs-pdp__main-counter {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 3;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--pdp-border, #eadfe6);
  font-size: 11px;
  font-weight: 600;
  color: #5c5560;
  letter-spacing: 0.02em;
  pointer-events: none;
}

@media (max-width: 767px) {
  .bs-pdp__main-nav-btn {
    width: 34px;
    height: 34px;
  }
  .bs-pdp__main-nav-btn--prev { left: 6px; }
  .bs-pdp__main-nav-btn--next { right: 6px; }
  .bs-pdp__main-nav-btn .bs-icon {
    width: 16px;
    height: 16px;
  }
}

/* Promo bar country / language — simple CSS dropdowns (no fixed/JS teleport) */
.bs-store {
  overflow-x: clip;
}
.bs-store .bs-promo {
  position: relative;
  z-index: 200;
  overflow: visible !important;
}
.bs-promo__inner {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
  overflow: visible !important;
  white-space: normal !important;
  max-width: min(var(--bs-container), 100%) !important;
  width: 100%;
  padding: 8px 20px !important;
  box-sizing: border-box;
}
.bs-promo__messages {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
}
.bs-promo__messages .bs-promo__item {
  white-space: nowrap;
}
.bs-promo__locale {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-left: auto;
  position: relative;
  z-index: 210;
}
.bs-promo__dd {
  position: relative;
  flex-shrink: 0;
}
.bs-promo__locale-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border: 1px solid rgba(92, 61, 79, 0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  color: #5c3d4f;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
}
.bs-promo__locale-btn:hover {
  background: #fff;
  border-color: rgba(92, 61, 79, 0.28);
}
.bs-promo__locale-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.9;
}
.bs-promo__chevron {
  opacity: 0.7;
}
.bs-promo__locale-name { display: none; }
@media (min-width: 640px) {
  .bs-promo__locale-name { display: inline; }
}

/* Both menus identical: under button, pinned to its right edge (opens left) */
.bs-promo__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: auto;
  width: 160px;
  background: #fff;
  border: 1px solid var(--bs-border, #ebe4e8);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(45, 35, 40, 0.14);
  padding: 6px;
  z-index: 220;
  flex-direction: column;
  gap: 2px;
  box-sizing: border-box;
}
.bs-promo__menu.is-open {
  display: flex !important;
}

/* CMS pages */
.bs-page {
  padding: 1.25rem 0 3rem;
  background: var(--bs-bg, #fff);
}
.bs-page__narrow { max-width: 760px; }
.bs-page__title {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: var(--bs-text);
}
.bs-page__content {
  font-size: 15px;
  line-height: 1.75;
  color: #4b4450;
}
.bs-page__content p { margin: 0 0 1rem; }
.bs-page__content ul { margin: 0 0 1rem 1.2rem; }
.bs-page__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.75rem;
}
.bs-contact {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 900px) {
  .bs-contact { grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: start; }
}
.bs-contact__list {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.bs-contact__card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--bs-border, #ebe4e8);
  border-radius: 12px;
  background: #fff;
}
.bs-contact__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bs-muted);
  margin: 0 0 2px;
}
.bs-contact__form-wrap {
  background: #fff;
  border: 1px solid var(--bs-border, #ebe4e8);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(45,35,40,0.05);
}
.bs-contact__form {
  display: grid;
  gap: 10px;
}
.bs-contact__form-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 4px;
}
.bs-contact__flash {
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #ecfdf5;
  color: #047857;
  font-size: 14px;
}

/* ── PDP details tabs — large professional cards ───────── */
.bs-pdp__details-full {
  margin-top: 48px !important;
  padding: 40px 0 56px !important;
  background: linear-gradient(180deg, #faf7f9 0%, #fff 140px) !important;
}
.bs-pdp__tabs--pro {
  margin-top: 0 !important;
}
.bs-pdp__tabs-nav.bs-tabs__nav {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px !important;
  border-bottom: none !important;
  padding: 0 0 20px !important;
  margin: 0 0 4px !important;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.bs-pdp__tabs--pro .bs-tabs__btn {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 12px 22px !important;
  margin: 0 !important;
  border: 1px solid #eadfe6 !important;
  border-radius: 999px !important;
  border-bottom: 1px solid #eadfe6 !important;
  background: #fff !important;
  color: #5c5560 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  box-shadow: 0 1px 2px rgba(45, 35, 40, 0.04);
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.bs-pdp__tabs--pro .bs-tabs__btn:hover {
  border-color: color-mix(in srgb, var(--bs-pink) 35%, #eadfe6) !important;
  color: var(--bs-pink) !important;
}
.bs-pdp__tabs--pro .bs-tabs__btn.is-active {
  background: var(--bs-pink) !important;
  background-image: none !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--bs-pink) 22%, transparent);
}

.bs-pdp__tab-stage {
  width: 100%;
}
.bs-pdp__tab-card.bs-tabs__panel {
  margin: 0 !important;
  padding: 0 !important;
  background: #fff;
  border: 1px solid #ece4e9;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(45, 35, 40, 0.06);
  overflow: hidden;
  max-width: none !important;
}
.bs-pdp__tab-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 22px 28px 0;
}
.bs-pdp__tab-card-title {
  margin: 0;
  padding: 22px 28px 0;
  font-family: var(--bs-display, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1f1a22;
  line-height: 1.25;
}
.bs-pdp__tab-card-head .bs-pdp__tab-card-title {
  padding: 0;
}
.bs-pdp__tab-card-meta {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #8a8190;
}
.bs-pdp__tab-card-body {
  padding: 18px 28px 28px;
}
.bs-pdp__prose {
  font-size: 16px !important;
  line-height: 1.8 !important;
  color: #3f3844 !important;
}
.bs-pdp__prose p {
  margin: 0 0 1rem;
}
.bs-pdp__prose p:last-child {
  margin-bottom: 0;
}
.bs-pdp__prose ul,
.bs-pdp__prose ol {
  margin: 0 0 1rem 1.2rem;
}
.bs-pdp__prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0.75rem 0;
}

.bs-pdp__tabs--pro .bs-pdp__reviews-list {
  gap: 14px;
}
.bs-pdp__tabs--pro .bs-pdp__reviews-list .mb-review-card {
  width: 100%;
  max-width: 100%;
  flex: none;
  padding: 20px 22px 16px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(40, 44, 63, 0.05);
}
.bs-pdp__tabs--pro .bs-pdp__reviews-list .mb-review-card__main {
  gap: 16px;
}
.bs-pdp__tabs--pro .bs-pdp__reviews-list .mb-review-card__images {
  max-width: 72px;
}
.bs-pdp__tabs--pro .bs-pdp__reviews-list .mb-review-card__images img {
  width: 64px;
  height: 64px;
}
.bs-pdp__tabs--pro .bs-pdp__reviews-list .mb-review-card__quote {
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
}
.bs-pdp__tabs--pro .bs-pdp__review-form {
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 18px;
  background: #faf7f9;
  border: 1px solid #f0e6ec;
}
.bs-pdp__tabs--pro .bs-pdp__review-form h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
}
.bs-pdp__review-form-note {
  margin: 0 0 14px;
  font-size: 13px;
  color: #8a8190;
  line-height: 1.45;
}
.bs-pdp__review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.bs-pdp__review-star {
  border: none;
  background: none;
  padding: 0;
  font-size: 28px;
  line-height: 1;
  color: #e2d8de;
  cursor: pointer;
}
.bs-pdp__review-star.is-on,
.bs-pdp__review-star:hover {
  color: #f5a524;
}
.bs-pdp__review-note--ok {
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  padding: 10px 12px;
}

/* Own review + photo upload */
.bs-pdp__my-review {
  margin-bottom: 22px;
  padding: 20px 22px;
  border-radius: 14px;
  background: linear-gradient(160deg, #fff9fb 0%, #fff 55%);
  border: 1px solid #f0e0ea;
}
.bs-pdp__my-review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.bs-pdp__my-review-eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bs-pink, #be185d);
}
.bs-pdp__my-review-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #2a2430;
}
.bs-pdp__my-review-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #4b4452;
  white-space: pre-wrap;
}
.bs-pdp__review-stars--readonly {
  margin-bottom: 0;
  pointer-events: none;
}
.bs-pdp__review-form--edit {
  margin-top: 8px;
  margin-bottom: 0;
}
.bs-pdp__review-upload {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 10px;
  padding: 14px 16px;
  border: 1px dashed #e4c9d8;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.bs-pdp__review-upload:hover {
  border-color: #d4a3bd;
  background: #fffafc;
}
.bs-pdp__review-upload-label {
  font-size: 13px;
  font-weight: 600;
  color: #6b5f6e;
}
.bs-pdp__review-upload input[type="file"] {
  font-size: 13px;
  color: #6b5f6e;
}
.bs-pdp__review-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}
.bs-pdp__review-preview-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #eadfe6;
}
.bs-pdp__review-existing {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 12px;
}
.bs-pdp__review-existing-item {
  position: relative;
  width: 88px;
}
.bs-pdp__review-existing-item img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #eadfe6;
  display: block;
}
.bs-pdp__review-existing-remove {
  display: block;
  width: 100%;
  margin-top: 4px;
  border: none;
  background: transparent;
  color: #a11d4a;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-align: center;
}
.bs-pdp__review-existing-remove:hover {
  text-decoration: underline;
}

.bs-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bs-faq__item {
  border: 1px solid #ece4e9;
  border-radius: 12px;
  background: #faf7f9;
  overflow: hidden;
}
.bs-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #2a2430;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.bs-faq__item summary::-webkit-details-marker {
  display: none;
}
.bs-faq__item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #eadfe6;
  color: #be185d;
  font-size: 18px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.bs-faq__item[open] summary::after {
  content: '–';
}
.bs-faq__item[open] {
  background: #fff;
  box-shadow: 0 6px 18px rgba(45, 35, 40, 0.05);
}
.bs-faq__answer {
  padding: 0 18px 16px;
}
.bs-faq__answer p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: #5c5560;
}

@media (max-width: 767px) {
  .bs-pdp__details-full {
    margin-top: 28px !important;
    padding: 24px 0 36px !important;
  }
  .bs-pdp__tabs--pro .bs-tabs__btn {
    min-height: 44px;
    padding: 10px 16px !important;
    font-size: 13px !important;
  }
  .bs-pdp__tab-card-title,
  .bs-pdp__tab-card-head {
    padding-left: 18px;
    padding-right: 18px;
  }
  .bs-pdp__tab-card-title {
    padding-top: 18px;
    font-size: 1.3rem;
  }
  .bs-pdp__tab-card-head {
    padding-top: 18px;
  }
  .bs-pdp__tab-card-head .bs-pdp__tab-card-title {
    padding: 0;
  }
  .bs-pdp__tab-card-body {
    padding: 14px 18px 20px;
  }
  .bs-pdp__prose {
    font-size: 15px !important;
  }
}

/* Header hide on scroll down / show on scroll up */
.bs-header.is-hidden {
  transform: translate3d(0, -110%, 0) !important;
  pointer-events: none;
}

/* Auth pages — smaller logos on mobile */
.bs-auth-layout .bs-header__logo img {
  height: 26px !important;
  max-width: 110px !important;
  width: auto !important;
  object-fit: contain !important;
}
.bs-auth-layout .bs-auth-card__logo--mobile {
  height: 26px !important;
  max-width: 110px !important;
  width: auto !important;
  object-fit: contain !important;
  margin: 0 auto 0.65rem !important;
}
@media (min-width: 768px) {
  .bs-auth-layout .bs-header__logo img {
    height: 36px !important;
    max-width: none !important;
  }
}
