        .carousel-container {
            width: 100%;
            max-width: 1200px;
            background: none;
        }

        .carousel {
            position: relative;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .carousel-button {
            flex-shrink: 0;
            background: none;
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .chevron {
            text-shadow: 0 0 20px rgba(202, 81, 22, 1.0), 0 5px 25px rgba(202, 81, 22, 0.9);
            transition: transform 0.3s ease;
        }

        .carousel-button:hover .chevron {
            transform: scale(1.1);
        }

        .carousel-button:active .chevron {
            transform: scale(0.95);
        }

        .carousel-button.prev {
            order: -1;
        }

        .carousel-wrapper {
            flex: 1;
            overflow: hidden;
            border-radius: 8px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 20px;
        }

        .card {
            flex: 0 0 calc(33.333% - 14px);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .card-image-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 100%;
            overflow: hidden;
            background: #f0f0f0;
        }

        .card-image-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: white;
            z-index: 5;
        }

        .badge-new {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
        }

        .badge-vegan {
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
        }

        .card-content {
            padding: 16px;
            background: none;
        }

        .card-description {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.5;
            text-align: left;
        }

        .card-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 8px;
            font-family: Playfair Display;
            text-align: left;
        }

        /* Responsive design */
        @media (max-width: 1024px) {
            .card {
                flex: 0 0 calc(50% - 10px);
            }
        }

        @media (max-width: 768px) {
            .carousel-container {
                padding: 20px 10px;
            }

            .carousel {
                gap: 10px;
            }

            .carousel-button {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .card {
                flex: 0 0 100%;
            }
        }

        .carousel-title {
            text-align: center;
            margin-bottom: 30px;
            font-size: 28px;
            font-weight: 700;
            color: #333;
        }