select.error, input.error{border:1px solid #FF2323;background-color: #ffcaca}
.carousel-control-prev-icon.custom-icon,
.carousel-control-next-icon.custom-icon {
  background-color: black;
  background-image: none;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.354a.5.5 0 0 1 0 .708L5.707 8l5.647 5.938a.5.5 0 1 1-.708.708l-6-6.313a.5.5 0 0 1 0-.708l6-6.313a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
  mask-size: cover;
  -webkit-mask-size: cover;}
.carousel-control-next-icon.custom-icon{transform: rotate(180deg);}
.nav-pills .nav-link.active{background-color: #000;color: #fff;}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
}

.category-links {
  display: flex;
  gap: 1rem;
}

    .table thead th {
      background-color: #000;
      color: #fff;
    }
    .paypal-button-container {
      max-width: 400px;
      margin: auto;
    }
    
#cart-icon {
  position: fixed;
  top: 70px;
  left: 10px;
  font-size: 24px;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 50px;
  z-index: 999;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
#cart-icon .cart-count {
  background: red;
  border-radius: 50%;
  padding: 2px 8px;
  font-size: 14px;
  font-weight: bold;
  color: white;
}
    /* Swatch styling */
    .swatch {
      width: 2rem;
      height: 2rem;
      border: 2px solid #444;
      border-radius: 50%;
      cursor: pointer;
      flex-shrink: 0;
    }
    .swatch.active {
      box-shadow: 0 0 0 3px #000 inset;
    }
    /* Thumbnail styling */
    .thumb {
      width: 3.5rem;
      height: 3.5rem;
      object-fit: cover;
      cursor: pointer;
      margin: 0.25rem;
      border: 2px solid transparent;
      flex-shrink: 0;
    }
    .thumb.active {
      border-color: #0d6efd;
    }
    /* Carousel images */
    .carousel-item img {
      width: 100%;
      height: auto;
      max-height: 80vh;
      object-fit: contain;
    }
    /* Price */
    #priceDisplay {
      font-size: 1.75rem;
      font-weight: 600;
      color: #28a745;
    }

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .category-links {
    display: none;
    flex-direction: column;
    background-color: #f8f9fa;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 1rem;
    z-index: 1000;
    text-align: center;
  }
  .category-links.show {
    display: flex;
  }
}
