.gradient-header {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.gradient-custom {
    background: linear-gradient(90deg, #4F46E5 0%, #7C3AED 100%);
}

.gradient-bundle {
    background: linear-gradient(90deg, #FBBF24 0%, #F97316 100%);
}

.gradient-popular {
    background: linear-gradient(90deg, #FF6B6B 0%, #EE5A24 100%);
}

.card-transition {
    transition: all 0.3s ease;
}

.card-transition:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.button-transition {
    transition: all 0.3s ease;
}

.button-transition:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.link-hover {
    transition: all 0.3s ease;
}

.link-hover:hover {
    transform: translateX(5px);
}

.pattern-bg {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.05'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Carousel styles */
.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 100%;
    width: 100%;
}

@media (min-width: 768px) {
    .carousel-item {
        flex: 0 0 50%;
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .carousel-item {
        flex: 0 0 33.333333%;
        width: 33.333333%;
    }
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E5E7EB;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-indicator.active {
    background-color: #3B82F6;
}

/* Company tag styles */
.company-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
}

/* Country flag styles */
.flag-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 6px;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.1);
}





#top-filters {
    size: 2px;
    padding: 10px;
    border-radius: 8px;
    ;
}


.filter-dropdown {
    max-height: 300px;
    overflow-y: auto;
}

.filter-dropdown::-webkit-scrollbar {
    width: 6px;
}

.filter-dropdown::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.filter-dropdown::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.verified-badge {
    background: linear-gradient(135deg, #10B981, #059669);
}

.premium-badge {
    background: linear-gradient(135deg, #FBBF24, #F97316);
}


.hero-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

.floating-animation:nth-child(2) {
    animation-delay: -2s;
}

.floating-animation:nth-child(3) {
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    from {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }

    to {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    }
}

.typewriter {
    overflow: hidden;
    border-right: 3px solid #3B82F6;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #3B82F6;
    }
}

.stats-counter {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-button {
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.secondary-button {
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: #F9FAFB;
    transform: translateY(-2px);
}



.carousel-scroll {
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.carousel-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.carousel-inner {
    display: flex;
    gap: 0.1rem;
    /* Space between items */
}

/* --- Tab Functionality --- */

/* Hide all tab content panels by default */
.tab-content {
    display: none;
}

/* Show only the active tab content panel */
.tab-content.active {
    display: block;
}

/* --- Active Tab Button Styling --- */

/* Style for the currently selected button in the sidebar */
.tab-button.active {
    background-color: #eef2ff;
    /* Tailwind's indigo-50 */
    color: #4338ca;
    /* Tailwind's indigo-700 */
    font-weight: 600;
}

/* Style for the SVG icon inside the active button */
.tab-button.active svg {
    color: #4338ca;
    /* Tailwind's indigo-700 */
}

.carousel-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.draggable-scroller {
    scroll-behavior: smooth;
    transition: scroll-left 0.5s ease;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.draggable-scroller::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}



.scroller__inner {
    display: flex;
    gap: 1.5rem;
    scroll-snap-align: start;
    scroll-behavior: smooth;
}

.hero-gradient {
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .filter-card:hover {
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }

        .solution-card {
            transition: all 0.3s ease;
        }

        .solution-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .custom-btn {
            transition: all 0.3s ease;
        }

        .custom-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .checkbox-item:hover {
            background-color: rgba(59, 130, 246, 0.05);
        }

        .range-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #3B82F6;
            cursor: pointer;
        }

        .range-slider::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #3B82F6;
            cursor: pointer;
        }

        .filter-section {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .filter-section.open {
            max-height: 300px;
            overflow-y: auto;
        }

        .filter-toggle {
            transition: transform 0.3s ease;
        }

        .filter-toggle.open {
            transform: rotate(180deg);
        }

        .filter-sidebar {
            height: calc(100vh - 270px);
            overflow-y: auto;
            scrollbar-width: thin;
            padding-bottom: 80px;
            /* Space for sticky button */
        }

        .filter-sidebar::-webkit-scrollbar {
            width: 6px;
        }

        .filter-sidebar::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .filter-sidebar::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 3px;
        }

        .filter-sidebar::-webkit-scrollbar-thumb:hover {
            background: #a1a1a1;
        }

        .sticky-new{
            position: sticky;
            top: 150px;
            background: white;
            padding: 16px 0;
            border-top: 1px solid #E5E7EB;
            border-bottom: 1px solid #E5E7EB;
            z-index: 10;
            height: calc(100vh - 150px);
            overflow-y: auto;
        }

        .sticky-filter-buttons {
            /* position: sticky; */
            /* bottom: 0; */
            /* background: white; */
            /* padding: 16px 0; */
            /* border-top: 1px solid #E5E7EB; */
            /* z-index: 10; */
        }

        .compare-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #3B82F6;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }

        .tooltip {
            position: relative;
        }

        .tooltip .tooltip-text {
            visibility: hidden;
            width: 200px;
            background-color: #1F2937;
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 8px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .tooltip:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
        }

        .filter-quick-select {
            transition: all 0.2s ease;
        }

        .filter-quick-select:hover {
            background-color: #EFF6FF;
            border-color: #3B82F6;
        }