:root {
  --levain-blue: #0033a0;
  --text-color: #2d2d2d;
}

.fan-favorites {
  padding: 60px 0; /* Removed side padding so scroll hits edges */
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.section-header h2 {
  font-family: "Times New Roman", serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: var(--levain-blue);
  margin: 0;
}

/* Scroll Container Setup */
.product-scroll-container {
  display: flex;
  gap: 0px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-behavior: smooth;
  /* Snap behavior */
  scroll-snap-type: x mandatory;
  /* Hide scrollbar for Chrome/Safari */
  -webkit-overflow-scrolling: touch;
}

/* Optional: Custom Scrollbar Styling */
.product-scroll-container::-webkit-scrollbar {
  height: 4px;
}
.product-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.product-scroll-container::-webkit-scrollbar-thumb {
  background: var(--levain-blue);
  border-radius: 10px;
}

/* Product Card Sizing */
.product-card {
  flex: 0 0 320px; /* Cards won't shrink, fixed width of 320px */
  scroll-snap-align: start;
  position: relative;
  margin-right: -20px;
}

.image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
  margin-left: -20px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-wrapper, 
.image-wrapper:hover, 
.image-wrapper:focus {
  text-decoration: none;     /* Removes underlines */
  outline: none;             /* Removes the selection box */
  box-shadow: none !important; /* Forces any Bootstrap shadows to disappear */
  background-color: transparent !important;
}

.product-card:hover img {
  transform: scale(1.10);
}

.badge {
  position: absolute;
  top: 27px;
  left: 13px;
  background: var(--levain-blue);
  color: white;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 20px;
  z-index: 10;
}

.product-title {
  font-family: "Times New Roman", serif;
  font-size: 1.25rem;
  margin: 0 0 5px 0;
}

.product-price {
  font-family: Arial, sans-serif;
  color: #555;
  margin: 0;
}
.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: center;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #555;
}

.col-content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}