#product-list {
    background: #060923;
    font-family: 'Segoe UI', Tahoma;
    padding: 5% 5%;
}

.container {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.filter-product {
    position: sticky;
    top: 20px;
    background: #1D2939;
    color: #fff;
    padding: 20px 15px;
    border-radius: 10px;
    width: 260px;
    flex-shrink: 0;
    height: fit-content;
}

.filter-section {
    border-bottom: 2px solid #344054;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.title-filter,
.type-choose,
.price-choose {
    font-size: 1.25rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 10px;
    color: #fff;
}



.filter-product-mobile,
.product-mobile {
    color: #fff;
}


#price-dropdown {
    height: 40px;
    width: 100%;
    border: 2px solid #fff;
    border-radius: 5px;
    outline: none;
    background: #fff;   
}

.accept input {
    height: 40px;
    width: 100%;
    border-radius: 5px;
    border: none;
    background: #0865FE;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
}

.accept input:hover {
    background: #1877F2;
}


.close {
    height: 40px;
    width: 100%;
    border-radius: 5px;
    border: none;
    background: red;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    background: #FF6666;
}

.close p {
    padding: 10px;
    text-align: center;
}

.product {
    width: 100%;
}

.total-text {
    display: flex;
}

.total-text p {
    font-size: 1rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 10px;
    display: block;
}

.btn-filter {
    margin-left: auto;
    display: none;
    cursor: pointer;
}

.nav__filter__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
}

.filter-mobile {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    height: 100vh;
    max-width: 100%;
    background-color: #060923;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    will-change: transform;
    z-index: 9999;
    box-sizing: border-box;

}


.filter-input:checked ~ .nav__filter__overlay {
    display: block;
}

.filter-input:checked ~ .filter-mobile {
    transform: translateX(0%);
    transition: transform 0.4s ease;
    will-change: transform;
    overflow-y: hidden;
}



.list-product-item {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    /* flex: 1; */
}

.product-form {
    width: 100%;
    height: 350px;
    padding: 15px;
    border-radius: 10px;
    background: #1D2939;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.9);
    box-sizing: border-box;
    transition: 0.4s;
}

.product-form:hover {
    transform: translateY(-7px);
    border: 1px solid aqua;
}

.title-product {
    font-weight: bold;
    font-size: 1.25rem;
    font-style: italic;
    color: aqua;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.8);
    display: block;
    margin-bottom: 20px;
}

.img-product {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    border: 1.5px solid #fff;
    object-fit: cover;
}

.describe {
    color: #fff;
    font-size: 1rem;
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
}

.price {
    color: aqua;
    font-size: 1rem;
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.8);

}

.software-detail {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    display: block;
    margin-top: 18px;
}

.software-detail p {
    text-align: center;
    padding: 10px;
    background-color: #0865FE;
    border-radius: 5px;
    font-size: 0.845rem;
    margin-top: 15px;
    transition: background 0.3s;
}

.software-detail p:hover {
    background: #1877F2;
}


@media only screen and (max-width: 63.9375em) {
    .filter-product {
        display: none;
    }

    .btn-filter {
        display: block;
    }
}