.home-products-section{
    width:100%;
    padding:30px 16px;
}

.home-products-container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
}

.home-products-header{
    text-align:center;
    margin-bottom:22px;
}

.home-products-header h2{
    margin:0 0 6px;
    color:#ffffff;
    font-size:26px;
    font-weight:900;
}

.home-products-header p{
    margin:0;
    color:#b0b3b8;
    font-size:14px;
}

.home-products-grid{
    width:100%;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(210px, 240px));
    justify-content:center;
    gap:18px;
}

.home-product-card{
    width:100%;
    background:#1f2023;
    border:1px solid #303136;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.25);
    transition:.2s;
}

.home-product-card:hover{
    transform:translateY(-4px);
    border-color:#2374e1;
}

.home-product-image{
    width:100%;
    aspect-ratio:1/1;
    display:block;
    background:#242526;
    overflow:hidden;
}

.home-product-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
}

.home-product-info{
    padding:13px;
}

.home-product-price{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:8px;
    flex-wrap:wrap;
}

.home-product-price strong{
    color:#ffffff;
    font-size:18px;
    font-weight:900;
}

.home-product-price span{
    color:#8a8d91;
    font-size:13px;
    text-decoration:line-through;
}

.home-product-info h3{
    margin:0 0 8px;
    color:#ffffff;
    font-size:14px;
    font-weight:800;
    line-height:1.35;
    min-height:38px;
}

.home-product-location{
    margin:0 0 12px;
    color:#b0b3b8;
    font-size:12px;
    line-height:1.4;
}

.home-product-btn{
    width:100%;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:#2374e1;
    color:#ffffff;
    font-size:13px;
    font-weight:900;
    text-decoration:none;
}

.home-product-btn:hover{
    filter:brightness(1.08);
}

.home-empty-products,
.home-error{
    max-width:520px;
    margin:0 auto;
    background:#1f2023;
    border:1px solid #303136;
    border-radius:16px;
    padding:24px;
    text-align:center;
    color:#ffffff;
}

.home-empty-products h3{
    margin:0 0 8px;
    font-size:20px;
}

.home-empty-products p{
    margin:0;
    color:#b0b3b8;
    line-height:1.5;
}

.home-error{
    background:#4a0000;
}

@media(max-width:768px){
    .home-products-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:12px;
    }

    .home-products-header h2{
        font-size:22px;
    }
}

@media(max-width:420px){
    .home-products-section{
        padding:22px 10px;
    }

    .home-product-info{
        padding:10px;
    }

    .home-product-price strong{
        font-size:16px;
    }

    .home-product-info h3{
        font-size:13px;
    }
}













.home-more-area{
    width:100%;
    display:flex;
    justify-content:center;
    margin-top:28px;
}

.home-more-btn{
    min-width:220px;
    height:46px;
    border:none;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:#2374e1;
    color:#ffffff;
    font-size:14px;
    font-weight:900;
    text-decoration:none;
    cursor:pointer;
    box-shadow:0 8px 22px rgba(35,116,225,.25);
}

.home-more-btn:hover{
    filter:brightness(1.08);
    transform:translateY(-2px);
}