* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

@media screen and (min-width: 320px) {
    .main-header {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 95px;
        background-color: #091023;
    }

    .banner-hero {
        width: 100%;
        height: 291px;
        background: url("../img/banner-hero.webp") center center no-repeat;
        background-size: cover;
    }

    .banner-hero .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 100%;
    }

    .banner-hero h1 {
        color: #00E5FF;
        font-size: 28px;
    }

    .banner-hero p {
        color: #fff;
        font-size: 14px;
    }

    .driver-section {
        width: 100%;
        background-color: #F4F4F4;
        padding: 83px 0;
    }

    .driver-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-bottom: 35px;
        gap: 20px;
    }

    .driver-section h2 {
        color: #1F1F1F;
        font-size: 28px;
        width: auto;
        margin: 0;
        text-align: center;
    }

    .search-box {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        width: 100%;
        margin-left: 0;
    }

    .input-wrapper {
        position: relative !important;
        display: inline-flex;
        align-items: center;
        width: fit-content;
    }

    .input-wrapper input {
        background-color: #fff;
        border: 1px solid #E0E0E0;
        border-radius: 20px;
        padding: 10px 40px 10px 18px;
        font-size: 14px;
        color: #333;
        outline: none;
        width: 240px;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .input-wrapper input::placeholder {
        color: #A0A0A0;
    }

    .input-wrapper input:focus {
        border-color: #FE4811;
    }

    .search-icon {
        position: absolute !important;
        right: 14px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        pointer-events: none;
    }

    .product-count {
        display: none;
    }

    .container {
        max-width: 497px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .image-card-product img {
        background-repeat: no-repeat;
        background-size: cover;
        height: 171px;
    }

    .wrap-card {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 16px;
        justify-content: center;
        width: 100%;
    }

    .card-product {
        display: flex;
        text-align: center;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        max-width: 280px;
        height: 350px;
        padding: 20px;
        border-radius: 26px;
        gap: 12px;
        background-color: #fff;
        margin: 0 auto;
    }

    .card-product h3 {
        font-weight: 600;
        font-size: 14px;
        line-height: 1;
        width: 100%;
        color: #1F1F1F;
    }

    .btn-driver {
        background-color: #FE4811;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        color: #fff;
        border: none;
        gap: 12px;
        font-size: 14px;
        width: 100%;
        border-radius: 12px;
        padding: 8px 0;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.1s ease;
    }

    .btn-driver:hover {
        background-color: #F98341;
    }

    .btn-driver:active {
        background-color: #D63300;
        transform: scale(0.98);
    }

    .btn-driver img {
        height: 14px;
    }

    .section-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #2a2e37;
        padding: 45px 0;
        gap: 16px;
    }

    .section-footer p {
        font-size: 10px;
    }

    .social-icons {
        display: flex;
        gap: 10px;
    }
}

@media screen and (min-width: 768px) {

    .banner-hero .container {
        align-items: flex-start;
        text-align: left;
    }

    .banner-hero h1 {
        font-size: 32px;
    }

    .container {
        max-width: 733px;
    }

    .driver-header {
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 45px;
    }

    .driver-section h2 {
        font-size: 32px;
        text-align: left;
    }

    .search-box {
        width: auto;
        margin-left: auto;
    }

    .input-wrapper input {
        width: 240px;
    }

    .product-count {
        display: inline-block;
        font-size: 14px;
        color: #888888;
        white-space: nowrap;
    }

    .wrap-card {
        grid-template-columns: repeat(auto-fit, 220px);
        gap: 14px;
    }

    .card-product {
        width: 217px;
        max-width: none;
        padding: 23px;
    }
}

@media screen and (min-width: 992px) {
    .container {
        max-width: 967px;
    }
}

@media screen and (min-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}