.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .carousel-header {
    text-align: center;
    margin-bottom: 20px;
  }

  .carousel-title {
    font-size: 28px;
    font-weight: bold;
    color: #6F4F37;
    margin: 0 0 8px 0;
  }

  .carousel-subtitle {
    font-size: 16px;
    color: #8B7355;
    margin: 0;
  }
  
  /* gradient fade effect */
  .carousel-wrapper::before,
  .carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;  /* width of the fade */
    pointer-events: none; /* allow clicks through */
    z-index: 3;
  }
  
  .carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fef8e4, rgba(255,255,255,0));
  }
  
  .carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fef8e4, rgba(255,255,255,0));
  }
  
  .carousel-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    padding: 10px 0;
    width: 100%;
  }
  
  .carousel-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  
  .carousel-item {
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    height: 350px;
    background: white;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    cursor: pointer;
  }
  
  .carousel-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  }

  .dish-image {
    height: 180px;
    overflow: hidden;
    position: relative;
  }

  .dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .dish-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .dish-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dish-description {
    font-size: 14px;
    color: #666;
    margin: 0 0 12px 0;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 2.8em;
  }

  .dish-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
  }

  .star {
    color: #ffc107;
    font-size: 16px;
  }

  .rating-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
  }

  .dish-sales {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
  }

  .sales-number {
    font-size: 16px;
    font-weight: bold;
    color: #6F4F37;
  }

  .sales-text {
    font-size: 12px;
    color: #888;
  }

  .dish-price {
    font-size: 20px;
    font-weight: bold;
    color: #6F4F37;
    text-align: right;
  }
  
  .carousel-btn {
    position: absolute;
    top: calc(50% + 175px); /* Center of carousel items */
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 20px;
    width: 50px;
    height: 50px;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    z-index: 4; /* above gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  
  .carousel-btn.left {
    left: 10px;
  }
  
  .carousel-btn.right {
    right: 10px;
  }
  
  .carousel-btn:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .carousel-title {
      font-size: 24px;
    }
    
    .carousel-item {
      width: 280px;
      min-width: 280px;
      max-width: 280px;
      height: 320px;
    }
    
    .dish-image {
      height: 160px;
    }
    
    .dish-name {
      font-size: 16px;
    }
    
    .dish-description {
      font-size: 13px;
    }
    
    .carousel-btn {
      width: 45px;
      height: 45px;
      font-size: 18px;
      top: calc(50% + 160px); /* Center of 320px height items */
    }
  }
  
  @media (max-width: 480px) {
    .carousel-wrapper {
      padding: 10px;
    }
    
    .carousel-title {
      font-size: 20px;
    }
    
    .carousel-item {
      width: 240px;
      min-width: 240px;
      max-width: 240px;
      height: 280px;
    }
    
    .dish-image {
      height: 140px;
    }
    
    .dish-info {
      padding: 12px;
    }
    
    .dish-name {
      font-size: 15px;
    }
    
    .dish-description {
      font-size: 12px;
    }
    
    .dish-price {
      font-size: 18px;
    }
    
    .carousel-btn {
      width: 40px;
      height: 40px;
      font-size: 16px;
      top: calc(50% + 140px); /* Center of 280px height items */
    }
  }
  