:root {
  --accent: #ece81a;
}

.starladder-category {
  overflow: hidden;
}

.cod-blackops {
  background-color: #000;
  position: relative;
  overflow: visible;
}

.cod-blackops .header-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 40px;
}

.cod-blackops .header h5 {
  font-family: Saira;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 2px;
  color: var(--accent);
  padding-top: 0;
  padding-bottom: 8px;
}

.cod-blackops .header h2 {
  padding: 0;
}

.cod-blackops .btn-cta a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: Saira;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 2px;
  color: var(--accent);
}

.carousel-container {
  position: relative;
  width: 100%;
}

.collections-carousel {
  margin-bottom: 100px;
}

.collections-carousel .slick-slide {
  margin: 0 12px;
  height: inherit;
}

.collections-carousel .slick-list {
  margin: 0 -12px;
  overflow: visible;
}

.collections-carousel .slick-track {
  display: flex;
  align-items: stretch;
}

.collections-item-wrapper {
  display: flex !important;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 386px;
  background: radial-gradient(50% 50% at 50% 50%, #303239 0, #191919 100%);
  text-decoration: none;
  transition: transform 0.3s ease;
  outline: none;
  padding: 40px 20px;
  box-sizing: border-box;
}

.collections-item-wrapper:hover {
  transform: translateY(-5px);
}

.collections-item-img-wrapper {
  width: 224px;
  height: 224px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.collections-item-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.collections-item-cta-wrapper {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: white;
}

.shop-now-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ece81a;
  font-size: 1rem;
}

/* Carousel Navigation Arrows */
.carousel-nav-arrows {
  position: absolute;
  bottom: -100px;
  right: 20px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-arrow-btn {
  background: #ece81a;
  border: 2px solid #ece81a;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-arrow-btn svg {
  stroke: #000;
}

.carousel-arrow-btn.slick-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Mobile padding */
@media (max-width: 768px) {
  .cod-blackops .header h5 {
    text-align: center;
    font-size: 12px;
    line-height: 16px;
  }

  .cod-blackops .btn-cta a {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }

  .cod-blackops .header-container {
    gap: 24px;
    margin-bottom: 24px;
  }

  .carousel-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .carousel-nav-arrows {
    right: 16px;
  }
}
