/* ═══════════════════════════════════════════════════════════════
   Featured Collection — Lupo Bianco style product grid slider
   ═══════════════════════════════════════════════════════════════ */

.ao-fc-section {
  --sb-fc-page-width: 1300px;
  --sb-fc-page-padding: clamp(1.25rem, 2.526vw, 3rem);
  --sb-fc-gap: clamp(1rem, 1.263vw, 1.5rem);
  --sb-fc-cols: 4;
  --sb-fc-container: min(
    calc(100vw - 15px - var(--sb-fc-page-padding) * 2),
    var(--sb-fc-page-width)
  );
  --sb-fc-slide-width: calc(
    var(--sb-fc-container) / var(--sb-fc-cols) - var(--sb-fc-gap) *
      calc(var(--sb-fc-cols) - 1) / var(--sb-fc-cols)
  );

  padding: 72px 0 80px;
  background: #fff;
}

#ao-fc-slider .splide__slide {
  width: var(--sb-fc-slide-width);
  visibility: visible !important;
  opacity: 1 !important;
  flex-shrink: 0 !important;
}

#ao-fc-slider:not(.is-initialized) .splide__list {
  display: flex !important;
  gap: var(--sb-fc-gap);
  list-style: none;
  padding: 0;
  margin: 0;
}

.ao-fc-header {
  max-width: 1300px;
  margin: 0 auto 40px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.ao-fc-title {
  font-family: "Inter", sans-serif !important;
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  color: #111 !important;
  margin: 0 !important;
  line-height: 1.15 !important;
}

.ao-fc-nav {
  display: flex;
  gap: 10px;
}

/* ── Circular prev/next buttons — lb-btn fill ────────────────── */
.ao-fc-btn {
  -webkit-appearance: none !important;
  appearance: none !important;
  outline: none !important;
  box-shadow: none !important;

  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 3.5rem !important;
  height: 3.5rem !important;
  border-radius: 50% !important;
  border: 1.5px solid rgb(var(--color-btn, 17, 17, 17)) !important;
  background: transparent !important;
  background-color: transparent !important;
  color: rgb(var(--color-btn, 17, 17, 17)) !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
  transition: border-color 0.3s ease !important;
}

.ao-fc-btn:hover,
.ao-fc-btn:focus,
.ao-fc-btn:active,
.ao-fc-btn:focus-visible {
  background: transparent !important;
  background-color: transparent !important;
  border-color: rgb(var(--color-btn, 17, 17, 17)) !important;
  outline: none !important;
  box-shadow: none !important;
}

.ao-fc-btn[disabled] {
  border-color: rgba(17, 17, 17, 0.22) !important;
  pointer-events: none !important;
  cursor: default !important;
}

.ao-fc-btn[disabled] .btn-fill {
  display: none !important;
}

.ao-fc-btn[disabled] .btn-text {
  color: rgba(17, 17, 17, 0.28) !important;
}

.ao-fc-btn .btn-fill {
  display: block !important;
  position: absolute !important;
  width: 160% !important;
  height: 220% !important;
  top: -60% !important;
  left: -30% !important;
  border-radius: 50% !important;
  background: rgb(var(--color-btn, 17, 17, 17)) !important;
  transform: translate3d(0, 76%, 0);
  pointer-events: none !important;
  z-index: 0 !important;
}

.ao-fc-btn .btn-text {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgb(var(--color-btn, 17, 17, 17));
  line-height: 0 !important;
  background: none !important;
  transition: color 0.3s ease;
}

/* ── Slider track ────────────────────────────────────────────── */
.ao-fc-slider {
  max-width: calc(var(--sb-fc-container) + var(--sb-fc-page-padding) * 2);
  margin: 0 auto;
  overflow: hidden;
}

.ao-fc-slider .splide__track {
  overflow: hidden;
}

/* ── Product card (basic shared) ──────────────────────────────── */
/* Card layout, image wrap, body, name/price, ATC, rating
   are now in assets/css/shark-product-card.css */

.ao-fc-img-stack {
  display: flex;
  flex-direction: row;
  height: 100%;
  will-change: transform;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ao-fc-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f4f4f4 0%, #e8e8e8 100%);
}

/* ── View all pill button — lb-btn fill ──────────────────────── */
.ao-fc-viewall-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.ao-fc-viewall {
  outline: none !important;
  box-shadow: none !important;

  --sb-fc-btn-pad-block: clamp(1.125rem, 1.2vw, 1.375rem);
  --sb-fc-btn-pad-inline: clamp(1.5rem, 1.8vw, 2rem);

  position: relative !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  padding-block: var(--sb-fc-btn-pad-block) !important;
  padding-inline: var(--sb-fc-btn-pad-inline) !important;
  border-radius: 60px !important;
  border: 1.5px solid rgb(var(--color-btn, 17, 17, 17)) !important;
  background: transparent !important;
  background-color: transparent !important;
  text-decoration: none !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

.ao-fc-viewall:hover,
.ao-fc-viewall:focus,
.ao-fc-viewall:active,
.ao-fc-viewall:visited {
  background: transparent !important;
  background-color: transparent !important;
  border-color: rgb(var(--color-btn, 17, 17, 17)) !important;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.ao-fc-viewall .btn-fill {
  display: block !important;
  position: absolute !important;
  width: 160% !important;
  height: 400% !important;
  top: -150% !important;
  left: -30% !important;
  border-radius: 50% !important;
  background: rgb(var(--color-btn, 17, 17, 17)) !important;
  transform: translate3d(0, 76%, 0);
  pointer-events: none !important;
  z-index: 0 !important;
}

.ao-fc-viewall .btn-text {
  position: relative !important;
  z-index: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: rgb(var(--color-btn, 17, 17, 17));
  white-space: nowrap !important;
  background: none !important;
  transition: color 0.3s ease;
}

/* ── Card actions wrapper (SVG icons use .ao-icon-*) ──────── */
.ao-fc-card-actions .ao-fc-eye,
.ao-fc-card-actions .ao-fc-atc,
.ao-fc-card-actions .ao-fc-atc-link {
  pointer-events: auto;
}

/* ── Eye icon (quick view) — lb-btn fill ──────────────────── */
.ao-fc-eye {
  -webkit-appearance: none !important;
  appearance: none !important;
  outline: none !important;
  box-shadow: none !important;

  position: absolute;
  z-index: 4;
  top: 12px;
  right: 12px;

  opacity: 0;
  pointer-events: none;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;

  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  border: 1px solid rgb(var(--color-btn, 180, 180, 180)) !important;
  background: #fff !important;
  background-color: #fff !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
  text-decoration: none !important;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    border-color 0.15s ease;
}

.ao-fc-card:hover .ao-fc-eye,
.ao-fc-card:focus-within .ao-fc-eye {
  opacity: 1;
  pointer-events: auto;
}

.ao-fc-eye .btn-fill {
  display: block !important;
  position: absolute !important;
  width: 160% !important;
  height: 220% !important;
  top: -60% !important;
  left: -30% !important;
  border-radius: 50% !important;
  background: rgb(var(--color-btn, 180, 180, 180)) !important;
  transform: translate3d(0, 76%, 0);
  pointer-events: none !important;
  z-index: 0 !important;
}

.ao-fc-eye .btn-text {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgb(var(--color-btn, 180, 180, 180));
  line-height: 0 !important;
  background: none !important;
  transition: color 0.3s ease;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991px) {
  .ao-fc-section {
    padding: 48px 0 56px;
    display: flex;
    flex-direction: column;
  }

  .ao-fc-header {
    padding: 0 24px;
    margin-bottom: 28px;
    order: 1;
  }

  .ao-fc-viewall-wrap {
    order: 2;
    margin-top: 0;
    margin-bottom: 28px;
  }

  .ao-fc-slider {
    padding: 0 24px;
    order: 3;
    overflow: visible;
  }

  .ao-fc-nav {
    display: none !important;
  }

  .ao-fc-eye {
    opacity: 1;
    pointer-events: auto;
    top: auto;
    bottom: 64px;
    right: 12px;
  }

  .ao-fc-atc {
    opacity: 1 !important;
    pointer-events: auto !important;
    bottom: 12px;
    right: 12px;
    left: auto;
    transform: none;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    padding: 0 !important;
    background: #111 !important;
    background-color: #111 !important;
    border: none !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }

  .ao-fc-card:hover .ao-fc-atc,
  .ao-fc-card:focus-within .ao-fc-atc {
    transform: none;
  }

  .ao-fc-atc .btn-fill {
    display: none !important;
  }

  .ao-fc-atc .btn-text {
    color: #fff !important;
    padding: 0;
  }

  .ao-fc-atc-label {
    display: none;
  }

  .ao-fc-atc-icon {
    display: block;
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 768px) {
  .ao-fc-eye {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 600px) {
  .ao-fc-section {
    padding: 36px 0 48px;
  }

  .ao-fc-header {
    padding: 0 16px;
  }

  .ao-fc-slider {
    padding: 0 16px;
  }

  .ao-fc-img-wrap {
    border-radius: 10px;
  }
}

/* ── Full-page quick view popup ───────────────────────────── */
.ao-fc-qv {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100001;
  align-items: center;
  justify-content: center;
}

.ao-fc-qv.open {
  display: flex;
}

.ao-fc-qv.open .ao-fc-qv-backdrop {
  animation: sbQvFadeIn 0.25s ease;
}

.ao-fc-qv.open .ao-fc-qv-panel {
  animation: sbQvPopIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes sbQvFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes sbQvPopIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.ao-fc-qv-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.ao-fc-qv-panel {
  position: relative;
  z-index: 1;
  width: min(90vw, 960px);
  max-height: 85vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ao-fc-qv-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: #000;
  transition:
    background 0.2s,
    transform 0.25s;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
}

.ao-fc-qv-close:hover {
  background: #000;
  transform: rotate(90deg);
}

.ao-fc-qv-close svg {
  display: block;
}

.ao-fc-qv-body .ao-qv-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.ao-fc-qv-body .ao-qv-price-wrap {
  margin: 0;
}

.ao-fc-qv-body .ao-qv-current-price {
  font-size: 24px;
  font-weight: 700;
  color: #111;
}

.ao-fc-qv-body .ao-qv-sale {
  display: inline-block;
  background: #111;
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.ao-fc-qv-body .ao-qv-old-price-row del {
  color: #999;
  font-size: 15px;
}

.ao-fc-qv-body .ao-qv-ui-bridge {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ao-fc-qv-body .ao-qv-mockup-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.ao-fc-qv-body .ao-qv-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ao-fc-qv-body .ao-size-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid #ddd;
  border-radius: 30px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.ao-fc-qv-body .ao-size-btn:hover {
  border-color: #111;
}

.ao-fc-qv-body .ao-size-btn.active {
  border-color: #111;
  background: #111;
  color: #fff;
}

.ao-fc-qv-body .ao-fc-qv-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ao-fc-qv-body .ao-qv-action-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ao-fc-qv-body .ao-qv-qty {
  display: flex;
  align-items: center;
  min-height: 3.75rem;
  border: 1.5px solid #ddd;
  border-radius: 30px !important;
  overflow: hidden;
}

.ao-fc-qv-body .ao-qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s ease;
}

.ao-fc-qv-body .ao-qty-btn:hover {
  background: #f4f4f4;
}

.ao-fc-qv-body .ao-qty-val {
  min-width: 32px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.ao-fc-qv-body .ao-qv-btn-desktop {
  -webkit-appearance: none !important;
  appearance: none !important;
  outline: none !important;
  box-shadow: none !important;

  position: relative !important;
  overflow: hidden !important;
  display: inline-flex !important;
  flex: 1 !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100%;
  height: 48px;
  min-height: 3.75rem;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px solid rgb(var(--color-btn, 0, 0, 0)) !important;
  border-radius: 30px !important;
  background: rgb(var(--color-btn, 0, 0, 0)) !important;
  background-color: rgb(var(--color-btn, 0, 0, 0)) !important;
  text-decoration: none !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.ao-fc-qv-body .ao-qv-btn-desktop .btn-fill {
  display: block !important;
  position: absolute !important;
  width: 150% !important;
  height: 220% !important;
  top: -60% !important;
  left: -25% !important;
  border-radius: 50% !important;
  background: #fff !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.ao-fc-qv-body .ao-qv-btn-desktop .btn-text {
  position: relative !important;
  z-index: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #fff;
  transition: color 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.ao-qv-btn-desktop.loading {
  pointer-events: none !important;
  opacity: 0.55;
}

.ao-fc-qv-body .ao-fc-qv-buy-now {
  width: 100%;
  min-height: 3.75rem;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px solid #000;
  border-radius: 30px;
  background: #fff;
  color: #000;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.ao-fc-qv-body .ao-fc-qv-buy-now:hover {
  background: #000;
  color: #fff;
}

/* ── Left column: Image Gallery ─────────────────────────── */
.ao-fc-qv-images {
  position: sticky;
  top: 0;
}

.ao-fc-qv-main-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f4f4;
  line-height: 0;
  cursor: zoom-in;
}

.ao-fc-qv-main-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ao-fc-qv-main-track img {
  flex: 0 0 100%;
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.ao-fc-qv-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.ao-fc-qv-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    border-color 0.15s ease,
    opacity 0.15s ease;
  opacity: 0.5;
  flex-shrink: 0;
}

.ao-fc-qv-thumb:hover {
  opacity: 0.8;
}

.ao-fc-qv-thumb.active {
  border-color: #111;
  opacity: 1;
}

/* ── Right column: Details ──────────────────────────────── */
.ao-fc-qv-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ao-fc-qv-vendor {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ao-fc-qv-details .ao-fc-qv-title {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ── Rating ─────────────────────────────────────────────── */
.ao-fc-qv-details .ao-fc-qv-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.ao-fc-qv-details .ao-fc-qv-stars {
  display: flex;
  gap: 2px;
}

.ao-fc-qv-details .ao-fc-qv-star--full {
  color: #111;
}

.ao-fc-qv-details .ao-fc-qv-star--empty {
  color: #ddd;
}

.ao-fc-qv-details .ao-fc-qv-rating-num {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.ao-fc-qv-details .ao-fc-qv-rating-count {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #999;
}

/* ── Attribute rows (Color swatches, Size pills) ────────── */
.ao-fc-qv-attr {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Color Swatches ─────────────────────────────────────── */
.ao-fc-qv-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ao-fc-qv-swatch {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #ddd;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    transform 0.15s ease;
  position: relative;
  flex-shrink: 0;
}

.ao-fc-qv-swatch:hover {
  transform: scale(1.12);
  border-color: #bbb;
}

.ao-fc-qv-swatch.active {
  border-color: #111;
  box-shadow:
    0 0 0 1px #fff,
    0 0 0 2px #111;
}

/* ── Stock bar ──────────────────────────────────────────── */
.ao-fc-qv-stock-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ao-fc-qv-stock-bar {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: #eee;
  overflow: hidden;
  max-width: 120px;
}

.ao-fc-qv-stock-bar span {
  display: block;
  height: 100%;
  background: #111;
  border-radius: 3px;
}

.ao-fc-qv-stock-text {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  white-space: nowrap;
}

/* ── View full details link ─────────────────────────────── */
.ao-fc-qv-details-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #999;
  text-decoration: none;
  transition: color 0.15s ease;
  margin-top: 2px;
}

.ao-fc-qv-details-link:hover {
  color: #111;
}

/* ── Fullscreen image viewer (white bg) ────────────────── */
.ao-fc-qv-fullscreen {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100000;
  align-items: center;
  justify-content: center;
}

.ao-fc-qv-fullscreen.open {
  display: flex;
}

.ao-fc-qv-fullscreen-backdrop {
  position: absolute;
  inset: 0;
  background: #fff;
  cursor: pointer;
}

.ao-fc-qv-fullscreen img {
  position: relative;
  z-index: 1;
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

/* counter top-left */
.ao-fc-qv-fullscreen-counter {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  font:
    500 14px/1 "Inter",
    sans-serif;
  color: #000;
  letter-spacing: 0.03em;
  user-select: none;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 50px;
}

/* close button — clean, no lb-btn */
.ao-fc-qv-fullscreen-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px #ddd solid;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  transition:
    background 0.2s,
    transform 0.25s;
}

.ao-fc-qv-fullscreen-close:hover {
  background: #000;
  transform: rotate(90deg);
}

.ao-fc-qv-fullscreen-close svg {
  display: block;
}

/* prev / next arrows */
.ao-fc-qv-fullscreen-prev,
.ao-fc-qv-fullscreen-next {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px #ddd solid;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  transition:
    opacity 0.25s,
    background 0.2s,
    transform 0.2s;
}

.ao-fc-qv-fullscreen-prev {
  left: 20px;
}
.ao-fc-qv-fullscreen-next {
  right: 20px;
}

.ao-fc-qv-fullscreen:hover .ao-fc-qv-fullscreen-prev,
.ao-fc-qv-fullscreen:hover .ao-fc-qv-fullscreen-next {
  opacity: 1;
}

.ao-fc-qv-fullscreen-prev:focus,
.ao-fc-qv-fullscreen-next:focus,
.ao-fc-qv-fullscreen-prev:focus-visible,
.ao-fc-qv-fullscreen-next:focus-visible {
  background: transparent !important;
  border-color: #ddd !important;
  outline: none !important;
  box-shadow: none !important;
}

.ao-fc-qv-fullscreen-prev:hover,
.ao-fc-qv-fullscreen-next:hover {
  background: #111;
  transform: translateY(-50%) scale(1.08);
}

.ao-fc-qv-fullscreen-prev:hover svg,
.ao-fc-qv-fullscreen-next:hover svg {
  stroke: #fff;
}

.ao-fc-qv-fullscreen-prev svg,
.ao-fc-qv-fullscreen-next svg {
  display: block;
}

/* slide-in animation for image transitions */
@keyframes sbFsSlideIn {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes sbFsSlideInRev {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.ao-fs-slide-in {
  animation: sbFsSlideIn 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

.ao-fs-slide-in-rev {
  animation: sbFsSlideInRev 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

/* ── Responsive: stack to single column ─────────────────── */
@media (max-width: 991px) {
  .ao-fc-qv-body .ao-qv-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ao-fc-qv-images {
    position: static;
  }

  .ao-fc-qv-main-track img {
    aspect-ratio: 4 / 3;
  }

  .ao-fc-qv-thumb {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 600px) {
  .ao-fc-qv-panel {
    padding: 36px 20px 24px;
    width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }
}
