.products-grid {
            row-gap: 30px;
        }

        .product-card {
            background: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.09);
            transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .product-card:hover {
            /* No hover effect - simple design */
        }

        /* Image Carousel Styles */
        .carousel-wrapper {
            position: relative;
            width: 100%;
            /*aspect-ratio: 1;*/
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-container {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .carousel-slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0px;
        }

        .carousel-image {
            width: 100%;
            height: 100%;
            /*object-fit: contain;*/
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
            transition: transform 0.4s ease-out;
        }

        .carousel-slide.active .carousel-image {
            animation: imageZoom 0.4s ease-out;
        }

        @keyframes imageZoom {
            from {
                transform: scale(0.95);
                opacity: 0.8;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .product-card:hover .carousel-image {
            /* No hover effect */
        }

        /* Carousel Controls */
        .carousel-controls {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .carousel-dot.active {
            background: #10a0a6;
            width: 24px;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
        }

        .carousel-dot:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.85);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: #10a0a6;
            font-size: 1.1rem;
            z-index: 9;
            opacity: 0;
            visibility: hidden;
        }

        .carousel-nav:hover {
            background: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transform: translateY(-50%) scale(1.1);
        }

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

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

        .carousel-wrapper:hover .carousel-nav {
            opacity: 1;
            visibility: visible;
        }

        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
            z-index: 8;
            animation: slideIn 0.4s ease-out 0.2s forwards;
            opacity: 0;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .product-content {
            padding: 10px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 10px;
            line-height: 1.3;
            transition: color 0.3s ease;
            text-align: center;
        }

        .product-card:hover .product-title {
            /* No hover effect */
        }

        .product-price {
            font-size: 1rem;
            color: #ff6b35;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

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

        .star {
            color: #ff6b35;
            font-size: 0.9rem;
            transition: transform 0.2s ease;
        }

        .product-rating:hover .star {
            /* No hover effect */
        }

        .rating-count {
            font-size: 0.85rem;
            color: #999;
            margin-left: 8px;
        }

        .add-to-cart-btn {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            margin-top: auto;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .add-to-cart-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .add-to-cart-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .add-to-cart-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        .add-to-cart-btn:active {
            transform: translateY(0);
        }

        /* Product Card Load Animation */
        .product-card {
            animation: slideUp 0.6s ease-out backwards;
        }

        .product-card:nth-child(1) { animation-delay: 0.1s; }
        .product-card:nth-child(2) { animation-delay: 0.2s; }
        .product-card:nth-child(3) { animation-delay: 0.3s; }
        .product-card:nth-child(4) { animation-delay: 0.4s; }
        .product-card:nth-child(5) { animation-delay: 0.5s; }
        .product-card:nth-child(6) { animation-delay: 0.6s; }
        .product-card:nth-child(7) { animation-delay: 0.7s; }
        .product-card:nth-child(8) { animation-delay: 0.8s; }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .products-grid > .col-lg-4 {
                flex: 0 0 calc(50% - 15px);
                max-width: calc(50% - 15px);
            }
        }

        @media (max-width: 768px) {
            .header-section h1 {
                font-size: 1.8rem;
            }

            .products-grid > .col-md-6 {
                flex: 0 0 calc(50% - 15px);
                max-width: calc(50% - 15px);
            }

            .carousel-nav {
                width: 36px;
                height: 36px;
                font-size: 0.95rem;
            }

            .product-content {
                padding: 20px;
            }

            .carousel-wrapper:hover .carousel-nav {
                opacity: 0.7;
            }
        }

        @media (max-width: 576px) {
           

            .container-main {
                max-width: 100%;
                padding: 0;
            }

            .header-section h1 {
                font-size: 1.5rem;
            }

            .header-section p {
                font-size: 0.95rem;
            }

            .header-section {
                margin-bottom: 30px;
            }

            .products-grid {
                row-gap: 20px;
                column-gap: 5px;
            }

            .products-grid > [class*="col-"] {
                flex: 0 0 calc(50% - 5px);
                max-width: calc(50% - 5px);
            }

            .carousel-wrapper {
                /*aspect-ratio: 1;*/
            }

            .carousel-nav {
                width: 32px;
                height: 32px;
                font-size: 0.85rem;
                opacity: 0.6;
                visibility: visible;
                display: none;
            }
            
            .row > * {
              flex-shrink: 0;
              width: 100%;
              max-width: 100%;
              padding-right: calc(var(--bs-gutter-x) * 0.2);
              padding-left: calc(var(--bs-gutter-x) * 0.2);
              margin-top: var(--bs-gutter-y);
            }

            .carousel-nav:hover {
                opacity: 1;
            }

            .carousel-controls {
                bottom: 8px;
            }

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

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

            .product-content {
                padding: 5px;
            }

            .product-title {
                font-size: 12px;
                margin-bottom: 8px;
            }

            .product-price {
                font-size: 0.9rem;
                margin-bottom: 8px;
            }

            .product-rating {
                margin-bottom: 16px;
            }

            .star {
                font-size: 0.85rem;
            }

            .rating-count {
                font-size: 0.75rem;
            }

            .add-to-cart-btn {
                padding: 10px 16px;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 400px) {
            

            .header-section h1 {
                font-size: 1.3rem;
            }

            .header-section p {
                font-size: 0.9rem;
            }

            .products-grid {
                row-gap: 15px;
            }

            .product-content {
                padding: 14px;
            }

            .product-title {
                font-size: 0.9rem;
            }

            .carousel-nav {
                width: 28px;
                height: 28px;
                font-size: 0.75rem;
            }

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

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