.carousel-section {
            background-color: var(--bg-white);
            padding: var(--spacing-lg) 0;
            position: relative;
            overflow: hidden;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
        }

        .carousel-slide {
            display: none;
            width: 100%;
            position: relative;
            animation: fadeIn 0.5s ease-in-out;
        }

        .carousel-slide.active {
            display: block;
        }

        .carousel-slide picture {
            display: block;
            width: 100%;
            line-height: 0;
        }

        .carousel-slide img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Carousel Navigation Dots */
        .carousel-dots {
            text-align: center;
            padding: var(--spacing-md) 0 0;
        }

        .carousel-dots .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #d0d0d0;
            border: none;
            display: inline-block;
            margin: 0 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .carousel-dots .dot:hover {
            background-color: #a0a0a0;
            transform: scale(1.1);
        }

        .carousel-dots .dot.active {
            background-color: var(--accent-orange);
            width: 14px;
            height: 14px;
        }

        /* Carousel Arrow Navigation */
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #333;
            font-size: 24px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            font-weight: bold;
            line-height: 1;
        }

        .carousel-arrow:hover {
            background-color: rgba(255, 255, 255, 1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
            transform: translateY(-50%) scale(1.05);
        }

        .carousel-arrow:active {
            transform: translateY(-50%) scale(0.95);
        }

        .carousel-arrow.prev {
            left: 20px;
        }

        .carousel-arrow.next {
            right: 20px;
        }

        /* Mobile carousel adjustments */
        @media (max-width: 768px) {
            .carousel-arrow {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .carousel-arrow.prev {
                left: 10px;
            }

            .carousel-arrow.next {
                right: 10px;
            }

            .carousel-dots .dot {
                width: 10px;
                height: 10px;
            }

            .carousel-dots .dot.active {
                width: 12px;
                height: 12px;
            }
        }

        /* Gallery Carousel Styles */
        .gallery-section {
            overflow: hidden;
            background-color: var(--bg-white);
        }

        .gallery-carousel-wrapper {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
        }

        .gallery-carousel-container {
            overflow: hidden;
            width: 100%;
        }

        .gallery-carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            will-change: transform;
        }

        .gallery-item {
            flex: 0 0 33.333%;
            padding: 0 8px;
            box-sizing: border-box;
        }

        .gallery-image {
            width: 100%;
            aspect-ratio: 8 / 9;
            background-color: #e0e0e0;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            overflow: hidden;
        }

        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            border-radius: var(--radius-lg);
        }

        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #333;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .gallery-nav:hover {
            background-color: rgba(255, 255, 255, 1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transform: translateY(-50%) scale(1.05);
        }

        .gallery-nav:active {
            transform: translateY(-50%) scale(0.95);
        }

        .gallery-nav-prev {
            left: 0;
        }

        .gallery-nav-next {
            right: 0;
        }

        .gallery-nav svg {
            width: 20px;
            height: 20px;
        }

        /* Mobile Gallery Styles */
        @media (max-width: 767px) {
            .gallery-carousel-wrapper {
                padding: 0 50px;
            }

            .gallery-item {
                flex: 0 0 100%;
                padding: 0 12px;
            }

            .gallery-nav {
                width: 40px;
                height: 40px;
            }

            .gallery-nav svg {
                width: 18px;
                height: 18px;
            }

            .gallery-nav-prev {
                left: 5px;
            }

            .gallery-nav-next {
                right: 5px;
            }
        }

        /* Tablet adjustments */
        @media (min-width: 768px) and (max-width: 1023px) {
            .gallery-carousel-wrapper {
                padding: 0 55px;
            }
        }
