.carousel-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
			position: relative;
        }

        .carousel-container {
			position: relative;
			overflow: hidden;
			padding: 10px 80px;
			margin: 0 -20px;  
        }

        .carousel-track {
            display: flex;
            gap: 20px;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: grab;
            user-select: none;
            will-change: transform;
        }

        .carousel-track:active {
            cursor: grabbing;
        }

        .carousel-item {
            flex: 0 0 calc(25% - 15px);
            background: #fff;
            border: 1px solid #D9DFE2;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .carousel-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .carousel-item-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            cursor: pointer;
            display: block;
        }

        .carousel-item-caption {
            padding: 20px;
            text-align: center;
            font-size: 16px;
            color: #333;
            font-weight: 500;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: #D9002C;
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(217, 0, 44, 0.3);
        }

        .carousel-btn:hover {
            background: #b00024;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn:active {
            transform: translateY(-50%) scale(0.95);
        }

        .carousel-btn:focus-visible {
            outline: 3px solid #D9002C;
            outline-offset: 2px;
        }

        .carousel-btn.prev {
            left: 10px; 
        }

        .carousel-btn.next {
            right: 10px; 
        }

        .carousel-btn:disabled {
            background: #D9DFE2;
            cursor: not-allowed;
            box-shadow: none;
        }

        .carousel-btn:disabled:hover {
            transform: translateY(-50%) scale(1);
        }

        /* Dots indicators */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #D9DFE2;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .carousel-dot:hover {
            background: #b0b7bb;
        }

        .carousel-dot.active {
            background: #D9002C;
            width: 30px;
            border-radius: 6px;
        }

        .carousel-dot:focus-visible {
            outline: 2px solid #D9002C;
            outline-offset: 2px;
        }

        /* Lightbox */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s;
        }

        .lightbox.active {
            display: flex;
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border: 2px solid #D9DFE2;
            border-radius: 4px;
        }

        .lightbox-caption {
            color: white;
            font-size: 20px;
            margin-top: 20px;
            text-align: center;
            font-weight: 500;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: #D9002C;
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 30px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .lightbox-close:hover {
            background: #b00024;
            transform: rotate(90deg);
        }

        .lightbox-close:focus-visible {
            outline: 3px solid #fff;
            outline-offset: 2px;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: #D9002C;
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 28px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .lightbox-nav:hover {
            background: #b00024;
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-nav:focus-visible {
            outline: 3px solid #fff;
            outline-offset: 2px;
        }

        .lightbox-nav.prev {
            left: 30px;
        }

        .lightbox-nav.next {
            right: 30px;
        }

		.carousel-item-desc,
		.lightbox-desc {
		  font-size: 12px;
		  color: #666;
		  margin-top: 6px;
		  line-height: 1.4;
		}

		.lightbox-title {
		  font-size: 22px;
		  font-weight: 600;
		  margin-bottom: 8px;
		}

		.lightbox-nav:disabled {
			background: #6c6c6c;
			opacity: 0.5;
			cursor: not-allowed;
			transform: translateY(-50%);
			box-shadow: none;
		}
		
		.lightbox-nav:disabled:hover {
			transform: translateY(-50%) scale(1);
			background: #6c6c6c;
		}

        /* Responsive */
        @media (max-width: 1200px) {
            .carousel-item {
                flex: 0 0 calc(33.333% - 14px);
            }
        }

        @media (max-width: 768px) {
            .carousel-container {
                padding: 30px;
            }

            .carousel-item {
                flex: 0 0 calc(50% - 10px);
            }

            .carousel-item-image {
                height: 220px;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .lightbox-nav {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .lightbox-nav.prev {
                left: 10px;
            }

            .lightbox-nav.next {
                right: 10px;
            }

            .lightbox-close {
                top: 10px;
                right: 10px;
                width: 40px;
                height: 40px;
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .carousel-container {
                padding: 0 40px;
            }

            .carousel-item {
                flex: 0 0 100%;
            }

            .carousel-item-image {
                height: 250px;
            }

            .carousel-item-caption {
                font-size: 14px;
                padding: 15px;
            }

            .lightbox-caption {
                font-size: 16px;
            }

            .carousel-dot {
                width: 10px;
                height: 10px;
            }

            .carousel-dot.active {
                width: 24px;
            }
        }