
.tab-button {
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: #4b5563;
  background-color: transparent; 
  transition: all 0.2s;
  white-space: nowrap;
  font-weight: 500;
  border: none;
  position: relative;
  overflow: hidden;
}

.tab-button:hover {
  background-color: #0a1942; 
  color: white;
}

.tab-button.active {
  background-color: transparent;
  color: #0a1942;
  font-weight: 700;
  border-bottom: 4px solid #0a1942;
  border-radius: 0; 
}

#category-tabs-container {
  overflow-x: auto; 
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem; 
  scroll-behavior: smooth;
}

#category-tabs-container::-webkit-scrollbar {
  display: none;
}

#category-tabs-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.category-slide {
  width: 100%;
  flex-shrink: 0;
}

.category-banner {
  background: #0a1942;
  padding: 10px 28px;
  color: white;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.category-accent {
  height: 10px;
  background: #0a1942;
  width: 100%;
  margin-top: 8px;
}

/* Carousel Styles */
.carousel-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
  will-change: transform;
}

.carousel-slide {
  width: 220px;
  height: 420px;
  flex-shrink: 0;
}

.product-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-image-container {
  width: 100%;
  height: 315px;
  flex-shrink: 0;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.carousel-prev[style*="display: none"],
.carousel-next[style*="display: none"] {
  display: none !important;
}

.policy-group summary {
  list-style: none;
}
.policy-group summary::-webkit-details-marker {
  display: none;
}
.policy-group summary::after {
  content: "+";
  float: right;
  font-size: 1.5rem;
  font-weight: 300;
  color: #6b7280;
}
.policy-group[open] summary::after {
  content: "−";
}