.collection-carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.collection-carousel-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.collection-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.collection-carousel {
  display: inline-flex;
  gap: 24px;
  padding: 10px 0;
  min-width: 100%;
  justify-content: center;
}

@supports (width: max-content) {
  .collection-carousel {
    min-width: max(100%, max-content);
    justify-content: safe center;
  }
}

.collection-category-card {
  flex-shrink: 0;
  width: 200px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .collection-category-card {
    width: calc(50vw - 32px);
    min-width: 140px;
    max-width: 180px;
  }
}

.collection-category-card:hover {
  transform: scale(1.01); /* Zoom in by 5% */
}
.collection-card-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5; /* Makes it taller - portrait orientation */
  border-radius: 16px;
  overflow: hidden;
  background: #09233A;
  display: block;
  text-decoration: none;
}

.collection-card-overlay {
  position: absolute;
  inset: 0;
  transition: background 0.3s ease;
}

.collection-category-card:hover .collection-card-overlay {
  background: #07141F;
}
.collection-icon-wrapper svg {
  width: 100%;
  height: 100%;
  display: block;
}



.collection-jewelry-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-icon-wrapper {
  width: 200px;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


@media (max-width: 768px) {
  .collection-icon-wrapper {
    width: 170px;
    height: 170px;
  }
}

.collection-icon-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.15) 0%,
    transparent 70%
  );
  filter: blur(20px);
}

.collection-category-title {
  position: absolute;
  font-family: 'EditorsNoteRegular', sans-serif;
  font-weight: 400;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: #FFF9F0;
}

@media (max-width: 768px) {
  .collection-category-title {
    font-size: 16px;
    bottom: 16px;
  }
}

.collection-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.2s ease;
  opacity: 0;
  pointer-events: none;
}

.collection-arrow-btn.collection-show {
  opacity: 1;
  pointer-events: all;
}

.collection-arrow-btn:hover {
  background: #f9fafb;
}

.collection-arrow-btn.collection-arrow-left {
  left: 0;
}

.collection-arrow-btn.collection-arrow-right {
  right: 0;
}

@media (max-width: 768px) {
  .collection-arrow-btn {
    width: 40px;
    height: 40px;
  }

  .collection-arrow-btn.collection-arrow-left {
    left: 8px;
  }

  .collection-arrow-btn.collection-arrow-right {
    right: 8px;
  }

  .collection-arrow-icon {
    width: 20px;
    height: 20px;
  }
}

.collection-arrow-icon {
  width: 24px;
  height: 24px;
  stroke: #1f2937;
  stroke-width: 2;
  fill: none;
}
