        /* Carousel Styles */
        .carousel-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin-bottom: 30px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            background: #ffffff;
        }
        .carousel-track {
            display: flex;
            transition: transform 0.4s ease-in-out;
            width: 100%;
        }
        .carousel-slide {
            min-width: 100%;
            height: 450px;
            object-fit: contain;
            background-color: #f9f9f9;
            display: block;
        }
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            color: #333;
            border: 1px solid rgba(255, 255, 255, 0.5);
            width: 48px;
            height: 48px;
            cursor: pointer;
            font-size: 20px;
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .carousel-btn:hover {
            background: rgba(255, 255, 255, 0.95);
            color: #ff724c;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transform: translateY(-50%) scale(1.05);
        }
        .prev-btn { left: 15px; }
        .next-btn { right: 15px; }
        .carousel-indicators {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }
        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(0,0,0,0.2);
            cursor: pointer;
            transition: background 0.3s;
        }
        .indicator.active {
            background: #ff724c;
        }
