/* Container */
.container-custom {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  @media (min-width: 640px) {
    .container-custom {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .container-custom {
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }
  
  @media (min-width: 1280px) {
    .container-custom {
      max-width: 1400px;
    }
  }
  
  /* Hover Scale */
  .hover-scale {
    transition: transform 0.3s ease;
  }
  
  .hover-scale:hover {
    transform: scale(1.05);
  }
  
  /* Banner Gradient */
  .banner-gradient {
    background: linear-gradient(to right, rgba(214, 119, 38, 0.8), rgba(214, 119, 38, 0.2));
  }
  
  /* Product Card */
  .product-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .product-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  /* Font Classes */
  .font-playfair {
    font-family: 'Playfair Display', serif;
  }
  
  .font-sans {
    font-family: 'Inter', sans-serif;
  }
  
  /* Slider Styles */
  .slider-container {
    position: relative;
    overflow: hidden;
  }
  
  .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slider-nav {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    z-index: 10;
  }
  
  .slider-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .slider-dot.active {
    background-color: white;
  }
  
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.4);
  }
  
  .slider-arrow-left {
    left: 1rem;
  }
  
  .slider-arrow-right {
    right: 1rem;
  }
  
  /* Search Overlay */
  .search-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  
  .search-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  .search-container {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    width: 100%;
    max-width: 42rem;
    transform: scale(0.95);
    transition: transform 0.3s;
  }
  
  .search-overlay.active .search-container {
    transform: scale(1);
  }
  
  /* Category Buttons */
  .category-button {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
  }
  
  .category-button:hover {
    background-color: rgba(214, 119, 38, 0.1);
    color: hsl(30, 84%, 45%);
  }
  
  .category-button.active {
    background-color: hsl(30, 84%, 45%);
    color: white;
  }
  
  /* Grid View Switcher */
  .grid-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: background-color 0.3s ease;
  }
  
  .grid-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  
  .grid-button.active {
    background-color: hsl(60, 4.8%, 95.9%);
  }
  
  /* Active Navigation Link */
  .nav-link.active {
    color: hsl(30, 84%, 45%);
  }