/* Your existing hero styles... */
.premium-hero {
    width: 100%;
    padding: 110px 20px;
    text-align: center;
    background: linear-gradient(to right, #e03636 0%, #355ee6 100%);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 26px 26px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #ffffff;
}

.breadcrumb {
    display: inline-flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 28px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb .current {
    opacity: 0.85;
}

.hero-search {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.hero-search form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 50px;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.hero-search input {
    flex: 1;
    padding: 12px 18px;
    border-radius: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 15px;
    outline: none;
}

.hero-search input::placeholder {
    color: #f1f1f1;
    font-weight: 300;
}

.hero-search button {
    padding: 12px 24px;
    border-radius: 40px;
    border: none;
    background: #fff;
    color: #e03636;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.hero-search button:hover {
    background: #f1f1f1;
}

@media(max-width:768px) {
    .hero-title {
        font-size: 28px;
    }

    .breadcrumb {
        font-size: 14px;
        padding: 8px 20px;
    }

    .premium-hero {
        padding: 80px 15px;
    }

    .hero-search form {
        max-width: 100%;
        padding: 6px 10px;
    }

    .hero-search button {
        padding: 10px 18px;
        font-size: 14px;
    }
}


.filter-top-bar {
        max-width: 1250px;
        margin: auto;
        padding: 0 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        margin-bottom: 22px;
    }

    .filter-label {
        font-size: 18px;
        font-weight: 700;
        color: #1f2330;
    }

    .manufacturer-select {
        appearance: none;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(8px);
        border: 1px solid #d3d7e3;
        padding: 12px 18px;
        border-radius: 18px;
        font-size: 15px;
        font-weight: 600;
        color: #1f2330;
        min-width: 230px;
        cursor: pointer;
        transition: 0.25s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .filter-wrapper {
        max-width: 1250px;
        margin: auto;
        padding: 0 15px;
    }

    .categories-scroll {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding: 12px 0 10px 0;
        scroll-behavior: smooth;

    }

    .categories-scroll::-webkit-scrollbar {
        height: 10px;

    }

    .categories-scroll::-webkit-scrollbar-track {
        background: #dfe6ff;
        border-radius: 30px;
        margin-inline: 40px;
    }

    .categories-scroll::-webkit-scrollbar-thumb {
        background: linear-gradient(to right, #ff4b4b, #4b79ff);
        border-radius: 30px;

    }

    .cat-btn {
        flex-shrink: 0;
        padding: 11px 28px;
        background: #ffffff;
        border-radius: 40px;
        border: 1px solid #d5d5d5;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
        transition: 0.3s ease;
    }

    .cat-btn.active {
        background: linear-gradient(to right, #ff4b4b, #4b79ff);
        color: #fff;
        border-color: transparent;
        transform: translateY(-2px);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    }

    .subcats-scroll {
        margin-top: 20px;
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-behavior: smooth;
    }

    .subcats-scroll::-webkit-scrollbar {
        height: 8px;
    }

    .subcats-scroll::-webkit-scrollbar-track {
        background: #dfe6ff;
        border-radius: 30px;
    }

    .subcats-scroll::-webkit-scrollbar-thumb {
        background: linear-gradient(to right, #ff4b4b, #4b79ff);
        border-radius: 30px;
    }

    .sub-tag {
        flex-shrink: 0;
        padding: 8px 20px;
        background: #eef1ff;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        white-space: nowrap;
        border: 1px solid #dde1ff;
        transition: 0.25s ease;
    }

    .sub-tag:hover {
        background: #d9e0ff;
    }

    @media (max-width: 768px) {
        .filter-top-bar {
            flex-direction: column;
            align-items: flex-start;
            gap: 18px;
        }

        .manufacturer-select {
            width: 100%;
        }
    }