/** Shopify CDN: Minification failed

Line 530:0 Unexpected "}"

**/
/* =============================================
   L'ABBEYE — Theme CSS
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Roboto:wght@300;400;500&display=swap');

/* ---- Variables ---- */
:root {
  --background: #ffffff;
  --foreground: #111111;
  --muted: #f4f3f0;
  --muted-fg: #888888;
  --border: #e5e5e5;
  --primary: #0a0a0a;
  --primary-fg: #ffffff;
  --font-display: 'Inter', system-ui, sans-serif;
  --font-body: 'Roboto', system-ui, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }
img { display: block; max-width: 100%; }

.ab-qty__btn { color: var(--foreground); }

/* ---- Base ---- */
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6, .font-display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ---- Layout ---- */
.ab-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .ab-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .ab-container { padding: 0 2rem; } }
@media (max-width: 640px)  { .ab-cta-text { display: none; } }

/* ---- Header ---- */
.ab-header {
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  z-index: 30;
}
.ab-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.ab-header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
@media (min-width: 640px) { .ab-header__logo { font-size: 15px; letter-spacing: 0.32em; } }
.ab-header__logo img {
  height: 100px !important;
  width: auto !important;
  display: block !important;
  filter: brightness(0) !important;
  max-width: none !important;
}
.ab-header__logo-round img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}
.ab-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--foreground);
  color: var(--background);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: opacity 0.15s;
}
@media (min-width: 640px) { .ab-header__cta { padding: 0.5rem 1rem; } }
.ab-header__cta:hover { opacity: 0.85; }
.ab-header__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: opacity 0.15s;
}
.ab-header__back:hover { opacity: 0.6; }
.ab-header__spacer { width: 80px; display: none; }
@media (min-width: 640px) { .ab-header__spacer { display: block; } }

/* ---- Eyebrow ---- */
.ab-eyebrow {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: rgba(17,17,17,0.5);
  text-transform: uppercase;
  font-family: var(--font-display);
}

/* ---- Button ---- */
.ab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--foreground);
  color: var(--background);
  padding: 0.875rem 1.5rem;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  transition: opacity 0.15s;
  border: none;
  cursor: pointer;
}
@media (min-width: 640px) { .ab-btn { padding: 0.875rem 2rem; } }
.ab-btn:hover { opacity: 0.85; }
.ab-btn--full { width: 100%; justify-content: center; }

/* ---- Arrow icon ---- */
.ab-icon-arrow {
  width: 14px;
  height: 14px;
  display: inline-block;
  flex-shrink: 0;
}

/* ---- Hero ---- */
.ab-hero { border-bottom: 1px solid var(--border); }
.ab-hero__inner { padding: 3rem 0; text-align: center; }
@media (min-width: 640px)  { .ab-hero__inner { padding: 3rem 0; } }
@media (min-width: 1024px) { .ab-hero__inner { padding: 3rem 0; } }

.ab-hero__title {
  margin-top: 1.25rem;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.ab-hero__subtitle {
  margin-top: 1.5rem;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(17,17,17,0.65);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.5rem;
}
@media (min-width: 640px) { .ab-hero__subtitle { font-size: 15px; } }
.ab-hero__cta-wrap { margin-top: 2rem; display: flex; justify-content: center; }

/* ---- Offers Section ---- */
.ab-offers { border-bottom: 1px solid var(--border); }
.ab-offers__inner { padding: 1.5rem 0 3rem; }
@media (min-width: 640px) { .ab-offers__inner { padding: 2.5rem 0 3.5rem; } }

.ab-offers__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.ab-offers__title {
  margin-top: 0.5rem;
  font-size: clamp(36px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.ab-offers__subtitle {
  margin-top: 1rem;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(17,17,17,0.6);
}
.ab-offers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 786px;
  margin: 0 auto;
}
@media (min-width: 768px) { .ab-offers__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

/* ---- Product Card ---- */
.ab-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  transition: border-color 0.5s, box-shadow 0.5s;
  text-decoration: none;
  color: inherit;
}
.ab-card:hover {
  border-color: var(--foreground);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.12);
}
.ab-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 370px;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;  /* ← ajoute ça */
}
.ab-card__img {
  max-height: 100%;
  max-width: 100%;
  width: 100%;   /* ← ajoute ça */
  object-fit: contain;
  transition: transform 1.2s ease-out;
}
.ab-card:hover .ab-card__img { transform: scale(1.03); }
.ab-card__img--leather { transform: scale(1.1) translateY(2%); }
.ab-card:hover .ab-card__img--leather { transform: scale(1.13) translateY(2%); }
.ab-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (min-width: 1024px) { .ab-card__body { padding: 1.75rem; } }
.ab-card__eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(17,17,17,0.5);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
}
.ab-card__title {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.ab-card__desc {
  margin-top: 0.5rem;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(17,17,17,0.6);
}
.ab-card__footer {
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ab-card__price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.ab-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(17,17,17,0.35);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.ab-card:hover .ab-card__link { border-color: var(--foreground); }

/* Collector edition badge */
.ab-offers__grid .ab-card:last-child .ab-card__eyebrow {
  display: inline-block;
  width: fit-content;
  background: #111111;
  color: #ffffff;
  padding: 4px 10px;
  margin-bottom: 0.75rem;
}

/* ---- Stock Bar ---- */
.ab-stock { margin-top: 1rem; }
.ab-stock__label {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.6);
  margin-bottom: 6px;
}
.ab-stock__track {
  height: 3px;
  width: 100%;
  background: rgba(17,17,17,0.1);
  overflow: hidden;
}
.ab-stock__fill {
  height: 100%;
  background: var(--foreground);
}

/* ---- Donation Section ---- */
.ab-donation { border-top: 1px solid var(--border); }
.ab-donation__inner {
  padding: 1.5rem 0 2rem;
  text-align: center;
}

.ab-donation__inner {
  padding: 1.5rem 0 4rem;
  text-align: center;
}

.ab-donation__title {
  margin-top: 0.75rem;
  font-size: clamp(26px, 2.5vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.ab-donation__text {
  margin-top: 0.75rem;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(17,17,17,0.6);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.ab-donation__cta { margin-top: 1.5rem; }

/* ---- Footer ---- */
.ab-footer { border-top: 1px solid var(--border); }
.ab-footer__inner {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(17,17,17,0.5);
}
@media (min-width: 640px) { .ab-footer__inner { flex-direction: row; } }
.ab-footer__email {
  letter-spacing: normal;
  font-size: 12px;
  transition: color 0.15s;
  text-transform: none;
}
.ab-footer__email:hover { color: var(--foreground); }

/* ---- Product Page ---- */
.ab-product { min-height: 100vh; }
.ab-product__section { padding: 2rem 0 3rem; }
.ab-product__img-wrap,
.ab-product__img-slider {
  border-bottom: none !important;
}
@media (min-width: 640px)  { .ab-product__section { padding: 2.5rem 0 4rem; } }
@media (min-width: 1024px) { .ab-product__section { padding: 4rem 0 5rem; } }
.ab-product__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) { .ab-product__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.ab-product__img-wrap { background: #ffffff; overflow: hidden; }
.ab-product__img,
.ab-product__img--leather { width: 100%; height: auto; display: block; }
.ab-product__eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--muted-fg);
  text-transform: uppercase;
  font-family: var(--font-display);
}
.ab-product__title {
  margin-top: 0.5rem;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.ab-product__price-row {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ab-product__price { font-family: var(--font-display); font-size: 26px; font-weight: 500; }
.ab-product__badge {
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--foreground);
  font-size: 9px;
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: uppercase;
}
.ab-product__desc {
  margin-top: 1.5rem;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(17,17,17,0.75);
}
.ab-product__specs {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 1rem;
  list-style: none;
}
.ab-product__specs li { font-size: 12px; color: rgba(17,17,17,0.65); }
.ab-product__benefits {
  margin-top: 1.25rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ab-product__benefit {
  display: flex;
  gap: 0.5rem;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(17,17,17,0.8);
}
.ab-product__benefit-icon { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }
.ab-product__note { margin-top: 1.5rem; font-size: 12px; color: rgba(17,17,17,0.5); font-style: italic; }

.ab-product__img-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ab-product__img-slider::-webkit-scrollbar { display: none; }
.ab-product__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

/* ---- Cover Selector ---- */
.ab-covers { margin-top: 2rem; }
.ab-covers__label {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--muted-fg);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}
.ab-covers__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.4rem;
}

.ab-covers__thumb {
  aspect-ratio: 3/4;
}

@media (max-width: 767px) {
  .ab-covers__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
}
.ab-covers__item {
  align-items: center;
}

.ab-covers__name {
  min-height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
}
.ab-covers__item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-align: center;
}
.ab-covers__thumb {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: border-color 0.2s;
}
.ab-covers__item:hover .ab-covers__thumb { border-color: rgba(17,17,17,0.6); }
.ab-covers__item.active .ab-covers__thumb {
  border-color: var(--foreground);
  box-shadow: 0 0 0 2px rgba(17,17,17,0.2);
}
.ab-covers__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.ab-covers__check {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--foreground);
  color: var(--background);
  display: none;
  align-items: center;
  justify-content: center;
}
.ab-covers__item.active .ab-covers__check { display: flex; }
.ab-covers__name {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-fg);
  font-family: var(--font-display);
}
.ab-covers__item.active .ab-covers__name { color: var(--foreground); font-weight: 600; }

/* ---- Quantity ---- */
.ab-qty { margin-top: 2rem; }
.ab-qty__label {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--muted-fg);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}
.ab-qty__row { display: flex; align-items: center; gap: 1rem; }
.ab-qty__control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  width: 8rem;
}
.ab-qty__btn {
  padding: 0.625rem 0.75rem;
  transition: background 0.15s;
  font-size: 14px;
  line-height: 1;
}
.ab-qty__btn:hover { background: var(--muted); }
.ab-qty__num {
  font-size: 13px;
  font-weight: 500;
  width: 5ch;
  min-width: 5ch;
  text-align: center;
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  border: none;
  outline: none;
  background: transparent;
  -moz-appearance: textfield;
}
.ab-qty__num::-webkit-outer-spin-button,
.ab-qty__num::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ---- Cart Button ---- */
.ab-cart-btn {
  flex: 1;
  background: var(--primary);
  color: var(--primary-fg);
  padding: 0.75rem 1rem;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-transform: uppercase;
  transition: opacity 0.15s;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
}
.ab-cart-btn:hover { opacity: 0.85; }
.ab-cart-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---- Cart FAB ---- */
.ab-cart-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  width: 52px;
  height: 52px;
  background: var(--foreground);
  color: var(--background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  transition: opacity 0.15s, transform 0.15s;
  text-decoration: none;
}
.ab-cart-fab:hover { opacity: 0.85; transform: scale(1.05); }
.ab-cart-fab--hidden { opacity: 0; pointer-events: none; }
.ab-cart-fab__count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ffffff;
  color: var(--foreground);
  font-size: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease-out both; }

@media (max-width: 767px) {
  .ab-offers__grid {
    padding: 0 1rem;
  }
  .ab-page {
    padding: 0 !important;
    margin: 0 !important;
  }
}

.ab-soutenir__input {
  padding-left: 1rem !important;
}

/* ---- Featuring ---- */
.ab-product__featuring {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.ab-product__featuring-names {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(17,17,17,0.6);
  font-style: italic;
  margin-top: 0.25rem;
}

.ab-product__interviews {
  list-style: none;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ab-product__interviews li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.ab-product__interview-name {
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--foreground);
}
.ab-product__interview-detail {
  color: rgba(17,17,17,0.5);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
}

.ab-accordion { margin-top: 1.25rem; border-top: 1px solid var(--border); }
.ab-accordion__item { border-bottom: 1px solid var(--border); }
.ab-accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
}
.ab-accordion__trigger svg { transition: transform 0.25s; flex-shrink: 0; }
.ab-accordion__trigger.open svg { transform: rotate(180deg); }
.ab-accordion__body {
  display: none;
  padding-bottom: 1rem;
}
.ab-accordion__body.open { display: block; }

.ab-product__slide img {
  max-height: 638px;
  object-fit: contain;
}

.ab-hero { border-bottom: none; }
.ab-offers { border-bottom: none !important; }
.ab-donation { border-top: none !important; }

/* ---- Soutenir Page ---- */
.ab-soutenir {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.ab-soutenir__title {
  margin-top: 1rem;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  font-family: var(--font-display);
}
.ab-soutenir__subtitle {
  margin-top: 1rem;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(17,17,17,0.6);
}
.ab-soutenir__form {
  margin-top: 2.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}
@media (max-width: 640px) {
  .ab-soutenir__form {
    flex-direction: column;
  }
  .ab-soutenir__cta {
    width: 100%;
    justify-content: center;
  }
}
.ab-soutenir__input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  flex: 1;
  transition: border-color 0.15s;
}
.ab-soutenir__input-wrap:focus-within { border-color: var(--foreground); }
.ab-soutenir__currency {
  padding: 0 0.5rem 0 1rem;
  font-size: 14px;
  color: var(--muted-fg);
  font-family: var(--font-display);
}
.ab-soutenir__input {
  border: none;
  outline: none;
  padding: 0.875rem 1rem 0.875rem 0;
  font-size: 14px;
  font-family: var(--font-display);
  width: 100%;
  background: transparent;
  color: var(--foreground);
}
.ab-soutenir__input::placeholder { color: var(--muted-fg); }
.ab-soutenir__note {
  margin-top: 1.25rem;
  font-size: 11px;
  color: rgba(17,17,17,0.4);
  font-style: italic;
}

.ab-product__desc-wrap { position: relative; margin-top: 0.75rem; }
#ab-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#ab-desc.expanded {
  display: block;
  -webkit-line-clamp: unset;
}
.ab-product__read-more {
  margin-top: 0.5rem;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--foreground);
  background: none;
  border: none;
  border-bottom: 1px solid var(--foreground);
  padding-bottom: 1px;
  cursor: pointer;
  font-family: var(--font-display);
}

.ab-product__img-slider {
  max-height: 600px;
}

.ab-product__slide img {
  max-height: 600px;
  object-fit: contain;
}

.ab-product__grid > div:first-child {
  border: none !important;
}

@media (max-width: 767px) {
  button[onclick="abSlide(-1)"],
  button[onclick="abSlide(1)"],
  button[onclick="abSlideStandard(-1)"],
  button[onclick="abSlideStandard(1)"] {
    display: none !important;
  }
}
.ab-product__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .ab-product__slide {
    height: 420px;
  }
}

.ab-product__slide img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.ab-product__slide img {
  max-height: 100%;
  height: auto;
  width: 100%;
  object-fit: cover;
}