/** Shopify CDN: Minification failed

Line 17:0 All "@import" rules must come first

**/

    .fx-recently-viewed-dots { display: none !important; }

    /* NASCONDI DOTS */

    .fx-recently-viewed-section .fx-recently-viewed-dots {

        display: none !important;

    }
/* IMPORT MONTSERRAT FONT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* RECENTLY VIEWED - STILE DA FEATURED PRODUCTS V2 */

/* FIX OVERFLOW ORIZZONTALE GLOBALE */
.fx-recently-viewed-section {
  max-width: 100%;
  overflow-x: hidden;
}

/* VARIABILI COLORE */
.fx-recently-viewed-section {
  --fx-bg: #FBFDFB;
  --fx-bg-secondary: #f8f9fa;
  --fx-bg-card: #FBFDFB;
  --fx-bg-hover: #f0f7f0;
  --fx-border: #e0e0e0;
  --fx-border-light: #f0f0f0;
  --fx-text: #2d3436;
  --fx-text-muted: #636e72;
  --fx-text-dim: #b2bec3;
  --fx-primary: #2D5A3D;
  --fx-primary-light: #4A7A5A;
  --fx-primary-dark: #1B4332;
  --fx-primary-glow: rgba(45, 90, 61, 0.2);
  --fx-accent: #2D5A3D;
  --fx-accent-hover: #1B4332;
  --fx-warning: #ffaa00;
  --fx-gradient-primary: linear-gradient(135deg, #2D5A3D, #4A7A5A);
  --fx-gradient-accent: linear-gradient(135deg, #ff6b6b, #ff5252);
  --fx-font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --fx-radius: 20px;
  --fx-radius-lg: 32px;
  --fx-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --fx-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* BACKGROUND CON PARTICELLE */
.shopify-section--bordered#shopify-section-recently-viewed-products {
  border-top: none !important;
}
.fx-recently-viewed-section.Section--spacingNormal {
  padding-top: 0 !important;
}
.fx-recently-viewed-section {
  position: relative;
  z-index: 10;
  background: #FBFDFB;
  overflow: visible !important;
  padding-bottom: 2rem;
  min-height: auto;
  border-top: none !important;
}

.fx-recently-viewed-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  background: #FBFDFB;
}

.fx-recently-viewed-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fx-recently-viewed-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--fx-primary);
  border-radius: 50%;
  animation: fx-recently-viewed-float 15s linear infinite;
}

.fx-recently-viewed-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.fx-recently-viewed-particle:nth-child(2) { top: 50%; right: 10%; animation-delay: 5s; }
.fx-recently-viewed-particle:nth-child(3) { bottom: 20%; left: 50%; animation-delay: 10s; }
.fx-recently-viewed-particle:nth-child(4) { top: 80%; left: 80%; animation-delay: 3s; }
.fx-recently-viewed-particle:nth-child(5) { top: 30%; right: 30%; animation-delay: 8s; }
.fx-recently-viewed-particle:nth-child(6) { bottom: 60%; left: 20%; animation-delay: 12s; }

@keyframes fx-recently-viewed-float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* HEADER */
.fx-recently-viewed-section .fx-recently-viewed-header {
  position: relative;
  z-index: 10;
  margin-bottom: 3rem;
}

/* ICONA OCCHIO (not heart) */
.fx-recently-viewed-section .fx-recently-viewed-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: eyeBlink 3s ease-in-out infinite;
}

.fx-recently-viewed-section .fx-recently-viewed-icon svg {
  color: var(--fx-primary);
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(45, 90, 61, 0.2));
}

.fx-recently-viewed-section .fx-recently-viewed-icon:hover svg {
  color: var(--fx-primary-dark);
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(45, 90, 61, 0.3));
}

/* ANIMAZIONE BLINK DELL'OCCHIO */
@keyframes eyeBlink {
  0%, 90%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  95% {
    transform: scaleY(0.1);
    opacity: 0.8;
  }
}

.fx-recently-viewed-section .fx-recently-viewed-title {
  font-family: var(--fx-font) !important;
  font-size: 2.5rem !important;
  font-weight: 900 !important;
  font-style: normal !important;
  color: #1a1a2e !important;
  margin: 0 0 0.75rem 0 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
  text-shadow: none !important;
  text-transform: none !important;
}

.fx-recently-viewed-subtitle {
  font-family: var(--fx-font);
  font-size: 1rem;
  font-style: normal;
  color: var(--fx-text-muted);
  margin: 0;
  font-weight: 400;
  text-align: center;
}

/* WRAPPER */
.fx-recently-viewed-section .fx-recently-viewed-wrapper {
  position: relative;
  z-index: 1;
  padding: 0 30px 30px 30px;
  overflow: visible;
  max-width: 100vw;
}

/* CONTENITORE */
.fx-recently-viewed-section .fx-recently-viewed-container {
  position: relative;
  overflow: visible !important;
  border-radius: 20px;
  z-index: 2;
  padding-bottom: 20px;
}

/* CAROUSEL */
.fx-recently-viewed-section .fx-recently-viewed-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
  min-height: 440px;
  padding-left: 0;
  padding-right: 0;
}

.fx-recently-viewed-section .fx-recently-viewed-carousel::-webkit-scrollbar {
  display: none;
}

/* CELLE DEL CAROUSEL - MOBILE 250px */
.fx-recently-viewed-section .fx-recently-viewed-cell {
  flex: 0 0 auto;
  width: 250px; /* Mobile 250px */
  padding: 0 0 20px 0;
  overflow: visible !important;
}

/* DESKTOP: 280px cards */
@media screen and (min-width: 750px) {
  .fx-recently-viewed-section .fx-recently-viewed-cell {
    width: 280px;
  }
}

/* CARDS PRODOTTO - IDENTICHE ALLA FEATURED V2 */
.fx-recently-viewed-section .fx-product-standard-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 400px;
  width: 100%; /* Width from cell */
  animation: fadeInUp 0.5s ease forwards;
  margin-bottom: 10px;
  will-change: transform;
  transform: translateZ(0);
}

.fx-recently-viewed-section .fx-product-standard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  margin-bottom: 16px;
}

@media (hover: none) and (pointer: coarse) {
  .fx-recently-viewed-section .fx-product-standard-card:hover {
    transform: none;
    margin-bottom: 10px;
  }
}

.fx-recently-viewed-section .fx-product-standard-card a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* CONTENITORE IMMAGINI - 60% */
.fx-recently-viewed-section .fx-card-image-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 60%;
  background: var(--fx-bg-secondary);
  flex-shrink: 0;
  transform: translateZ(0);
}

.fx-recently-viewed-section .fx-card-image-primary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: all 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.fx-recently-viewed-section .fx-card-image-secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: all 0.4s ease;
  opacity: 0;
  z-index: 2;
}

/* EFFETTI HOVER IDENTICI AL COLLECTION TEMPLATE */
.fx-recently-viewed-section .fx-product-standard-card:hover .fx-card-image-primary {
  transform: translateZ(0) scale(1.05);
  opacity: 0;
}

.fx-recently-viewed-section .fx-product-standard-card:hover .fx-card-image-secondary {
  opacity: 1;
  transform: translateZ(0) scale(1.05);
}

/* CONTENUTO CARTA - 40% */
.fx-recently-viewed-section .fx-product-card-content {
  height: 40%;
  padding: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  overflow: visible;
}

.fx-recently-viewed-section .fx-product-card-content h5,
.fx-recently-viewed-section .fx-product-title {
  margin: 0 0 0.5rem 0;
  color: var(--fx-text);
  font-size: 0.95rem !important;
  line-height: 1.2;
  text-align: center;
  font-family: var(--fx-font) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  text-transform: uppercase !important;
  display: block;
  width: 100%;
}

/* PREZZI - STILE IDENTICO ALLA FEATURED V2 */
.fx-recently-viewed-section .fx-price-container {
  margin-top: 0.25rem;
  text-align: center;
  background: rgba(248, 249, 250, 0.95);
  border-radius: 12px;
  padding: 0.5rem;
  border: 1px solid var(--fx-border-light);
  position: relative;
  overflow: visible;
  transition: var(--fx-transition);
}

.fx-recently-viewed-section .fx-product-standard-card:hover .fx-price-container {
  background: rgba(45, 90, 61, 0.05);
  border-color: var(--fx-primary);
  transform: translateY(-2px);
}

.fx-recently-viewed-section .fx-box-price {
  font-size: 0.85rem;
  color: #636e72;
  font-weight: 700;
  text-align: center;
  margin-top: 0.25rem;
  line-height: 1.2;
}
.fx-recently-viewed-section .fx-box-separator {
  margin: 0 0.15rem;
  opacity: 0.5;
}

.fx-recently-viewed-section .fx-starting-from {
  display: inline-block;
  font-size: 0.6rem;
  color: #2e7d32;
  font-weight: 700;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  background: #e8f5e9;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  border: none;
  font-family: var(--fx-font);
}

.fx-recently-viewed-section .fx-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.fx-recently-viewed-section .fx-price {
  font-weight: 800;
  color: var(--fx-primary);
  font-size: 1.3rem;
  line-height: 1;
  font-family: var(--fx-font);
}

.fx-recently-viewed-section .fx-original-price {
  color: var(--fx-text-dim);
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--fx-font);
}

.fx-recently-viewed-section .fx-discount-badge {
  background: #E12D2D;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: var(--fx-radius);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border: none;
  display: inline-block;
  margin-top: 0.25rem;
  font-family: var(--fx-font);
  position: relative;
  z-index: 1;
}

.fx-recently-viewed-section .fx-soldout-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: var(--fx-radius);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.5rem;
  text-align: center;
  background: var(--fx-accent);
  color: white;
  font-family: var(--fx-font);
}

/* PULSANTE CESTINO - BOTTOM RIGHT */
.fx-recently-viewed-section .fx-product-remove-container {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 100;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}

.fx-recently-viewed-section .fx-product-standard-card:hover .fx-product-remove-container {
  opacity: 1;
  transform: scale(1);
}

.fx-recently-viewed-section .fx-remove-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #999;
  padding: 0;
  outline: none;
  pointer-events: auto;
  position: relative;
  z-index: 100;
}

.fx-recently-viewed-section .fx-remove-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(225, 45, 45, 0.15);
  border-color: #E12D2D;
}

.fx-recently-viewed-section .fx-remove-btn:hover svg {
  color: #E12D2D;
}

/* WISHLIST BUTTON - TOP RIGHT */
.fx-recently-viewed-section .fx-product-wishlist-container {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 100;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}

.fx-recently-viewed-section .fx-product-standard-card:hover .fx-product-wishlist-container,
.fx-recently-viewed-section .fx-product-wishlist-container:has(.fx-wishlist-btn.active) {
  opacity: 1;
  transform: scale(1);
}

.fx-recently-viewed-section .fx-wishlist-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #999;
  padding: 0;
  outline: none;
  pointer-events: auto;
  position: relative;
  z-index: 100;
}

.fx-recently-viewed-section .fx-wishlist-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(225, 45, 45, 0.15);
  border-color: var(--fx-accent);
}

.fx-recently-viewed-section .fx-wishlist-btn.active {
  background: rgba(255, 255, 255, 1);
  border-color: var(--fx-primary);
  box-shadow: 0 3px 10px rgba(45, 90, 61, 0.3);
}

.fx-recently-viewed-section .fx-wishlist-btn.active:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(45, 90, 61, 0.4);
}

.fx-recently-viewed-section .fx-wishlist-icon {
  width: 18px;
  height: 18px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.fx-recently-viewed-section .fx-wishlist-btn:hover .fx-wishlist-icon {
  color: var(--fx-accent);
}

.fx-recently-viewed-section .fx-wishlist-btn.active .fx-wishlist-icon {
  color: var(--fx-primary);
}

.fx-recently-viewed-section .fx-wishlist-btn.active .fx-wishlist-icon path {
  fill: var(--fx-primary);
  stroke: var(--fx-primary);
}

@keyframes wishlistPulseAdd {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.fx-recently-viewed-section .fx-wishlist-btn.fx-wishlist-adding {
  animation: wishlistPulseAdd 0.4s ease-out;
}

/* FRECCE CUSTOM - Stile Collection Template */
.fx-recently-viewed-section .fx-custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid var(--fx-border);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.2s ease;
  background: #ffffff;
  color: var(--fx-text);
}

.fx-recently-viewed-section .fx-custom-arrow:hover {
  border-color: var(--fx-primary);
  color: var(--fx-primary);
  background: #ffffff;
}

.fx-recently-viewed-section .fx-custom-arrow-prev {
  left: 35px;
}

.fx-recently-viewed-section .fx-custom-arrow-next {
  right: 35px;
}

.fx-recently-viewed-section .fx-custom-arrow-prev::after {
  content: '';
  width: 10px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateX(2px);
  transition: all 0.2s ease;
}

.fx-recently-viewed-section .fx-custom-arrow-next::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translateX(-2px);
  transition: all 0.2s ease;
}

/* DOT DI NAVIGAZIONE */
.fx-recently-viewed-section .fx-recently-viewed-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 0;
  position: relative;
  z-index: 10;
}

.fx-recently-viewed-section .fx-recently-viewed-dot {
  width: 10px;
  height: 10px;
  background: var(--fx-border, rgba(0, 0, 0, 0.2));
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  outline: none;
}

.fx-recently-viewed-section .fx-recently-viewed-dot:hover {
  background: var(--fx-primary-light, rgba(0, 0, 0, 0.4));
  transform: scale(1.2);
}

.fx-recently-viewed-section .fx-recently-viewed-dot.active {
  background: var(--fx-primary, #000) !important;
  width: 30px !important;
  border-radius: 5px !important;
}

/* STATO VUOTO */
.fx-recently-viewed-section .fx-recently-viewed-empty {
  text-align: center;
  padding: 4rem 2rem;
  display: none;
}

.fx-recently-viewed-section .fx-recently-viewed-empty.active {
  display: block;
}

.fx-recently-viewed-section .fx-recently-viewed-empty-icon {
  color: #999;
  margin-bottom: 1.5rem;
}

.fx-recently-viewed-section .fx-recently-viewed-empty-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1rem 0;
  font-family: var(--fx-font);
}

.fx-recently-viewed-section .fx-recently-viewed-empty-text {
  font-size: 1rem;
  color: #666;
  margin: 0;
  font-family: var(--fx-font);
}

/* AZIONI RECENTLY VIEWED */
.fx-recently-viewed-section .fx-recently-viewed-actions {
  margin-top: 3rem;
  text-align: center;
  padding: 0;
  display: none;
  position: relative;
  z-index: 10;
}

.fx-recently-viewed-section .fx-recently-viewed-actions.active {
  display: block;
}

.fx-recently-viewed-section .fx-recently-viewed-actions-content {
  max-width: 600px;
  margin: 0 auto;
}

.fx-recently-viewed-section .fx-recently-viewed-actions-title {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: 1.75rem;
  font-family: var(--fx-font);
}

.fx-recently-viewed-section .fx-recently-viewed-actions-subtitle {
  color: #666;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 2rem;
  font-family: var(--fx-font);
}

.fx-recently-viewed-section .fx-recently-viewed-actions-buttons {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.fx-recently-viewed-section .fx-recently-viewed-clear-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #E12D2D;
  background: white;
  color: #E12D2D;
  min-height: 56px;
  font-family: var(--fx-font);
}

.fx-recently-viewed-section .fx-recently-viewed-clear-btn:hover {
  background: #E12D2D;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(225, 45, 45, 0.25);
}

.fx-recently-viewed-section .fx-recently-viewed-clear-btn svg {
  width: 18px;
  height: 18px;
}

/* ANIMAZIONI */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media screen and (max-width: 749px) {
  .fx-recently-viewed-section .fx-recently-viewed-title {
    font-size: 2rem !important;
  }

  .fx-recently-viewed-subtitle {
    font-size: 1rem;
  }

  .fx-recently-viewed-section .fx-custom-arrow {
    display: none !important;
  }

  /* RIMUOVI PADDING LATERALE SU MOBILE */
  .fx-recently-viewed-section .fx-recently-viewed-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* MANTIENI CENTRAGGIO CARD SU MOBILE - 250px */
  .fx-recently-viewed-section .fx-recently-viewed-carousel {
    padding-left: calc((100% - 250px) / 2) !important;
    padding-right: calc((100% - 250px) / 2) !important;
  }

  .fx-recently-viewed-section .fx-recently-viewed-cell {
  }

  .fx-recently-viewed-section .fx-product-wishlist-container,
  .fx-recently-viewed-section .fx-product-remove-container {
    opacity: 1 !important;
    transform: scale(1) !important;
  }

  .fx-recently-viewed-section .fx-product-remove-container {
    bottom: 8px;
    right: 8px;
  }

  .fx-recently-viewed-section .fx-product-wishlist-container {
    top: 8px;
    right: 8px;
  }

  .fx-recently-viewed-section .fx-wishlist-btn,
  .fx-recently-viewed-section .fx-remove-btn {
    width: 32px;
    height: 32px;
  }

  .fx-recently-viewed-section .fx-wishlist-icon {
    width: 16px;
    height: 16px;
  }

  .fx-recently-viewed-section .fx-recently-viewed-actions-title {
    font-size: 1.5rem;
  }

  .fx-recently-viewed-section .fx-recently-viewed-actions-subtitle {
    font-size: 1rem;
  }

  .fx-recently-viewed-section .fx-recently-viewed-clear-btn {
    width: 100%;
    max-width: 300px;
  }

  /* 🔥 FIX SCROLL ORIZZONTALE MOBILE */
  .fx-recently-viewed-section .fx-recently-viewed-carousel {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-x: contain !important;
    touch-action: pan-x pan-y !important;
  }

  .fx-recently-viewed-section .fx-recently-viewed-cell {
    touch-action: pan-x pan-y !important;
  }
}
