/* ==========================================
   HOME DIGITAL GOODS
========================================== */
.home-section-header{

    width:93%;
    max-width:1500px;

    margin:20px auto 18px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.home-products-count{

    font-size:14px;

    color:#777;

    font-weight:400;

}

.home-section-header h2{

    margin:0;

    font-size:24px;

    font-weight:600;

    display:flex;

    align-items:baseline;

    gap:8px;

}

.home-section-subtitle{

    font-size: 18px;

    font-weight:500;

    color:#222222;

    

    letter-spacing:.5px;

}

.home-products-title{
    font-size:30px;
    font-weight:600;
    color:#111;
}

.home-products-subtitle{
    margin-top:6px;
    color:#666;
    font-size:15px;
}

.home-products-row{

    width:93%;
    max-width:1500px;

    margin:0 auto;

    display:flex;

    gap:22px;

    justify-content:flex-start;

    overflow-x:auto;
    overflow-y:hidden;

    scroll-behavior:smooth;

    padding:8px 0 18px;

}

.home-products-row::-webkit-scrollbar{
    height:8px;
}

.home-products-row::-webkit-scrollbar-thumb{
    background:#d3d3d3;
    border-radius:999px;
}

.home-products-row::-webkit-scrollbar-track{
    background:transparent;
}

/* ==========================================
   PRODUCT CARD
========================================== */

.home-product-card{

    flex:0 0 190px;

    display:grid;
    grid-template-columns:1fr 1fr;

    border:1px solid rgb(205,205,211);

    border-radius:20px;

    padding:8px;

    background:#fff;

    transition:
        transform .3s,
        box-shadow .3s,
        border-color .3s;

    cursor:pointer;

    box-shadow:none;

    overflow:hidden;

}

.home-product-card:hover{

    transform:translateY(-6px);

    border-color:#8bc9ff;

    box-shadow:
        0 15px 35px rgba(24,119,242,.18);

}

.home-product-image{

    grid-column:span 2;

    margin:-8px -8px 0;

}

.home-product-image img{

    width:100%;

    aspect-ratio:1/1;

    object-fit:cover;

    border-radius:12px 12px 0 0;

    display:block;

}

.home-product-name{

    grid-column:span 2;

    font-size:14px;

    font-weight:500;

    margin:10px 0;

    line-height:1.3;

    height:20px;

    color:#111;

}

.home-product-buy{

    width:100%;
    height:40px;

    border:none;

    border-radius:10px;

    background:rgb(36,71,174);

    color:#fff;

    cursor:pointer;

    display:flex;
    justify-content:center;
    align-items:center;

}

.home-product-price{

    display:flex;

    flex-direction:column;

    align-items:flex-end;

    justify-content:center;

    line-height:1;

    transform:translateX(-4px);

}


.price-number{

    font-size:20px;

    font-weight:600;

}


.price-currency{

    font-size:12px;

    color:#777;

    margin-top:2px;

}

.home-product-price p{

    width:75%;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:0;

    font-size:18px;
    font-weight:500;

    color:#111;

}

/* ==========================================
   VIEW ALL CARD
========================================== */

.home-more-card{

    flex:0 0 190px;

    border:2px dashed rgb(205,205,211);

    border-radius:20px;

    background:#fafafa;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:25px;

    text-decoration:none;

    transition:.3s;

    color:#111;

}

.home-more-card:hover{

    background:white;

    border-color:rgb(36, 71, 174);

    transform:translateY(-6px);

    box-shadow:
        0 15px 35px rgba(24,119,242,.15);

}

.home-more-icon{

    width:64px;
    height:64px;

    border-radius:50%;

    background:rgb(36, 71, 174);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:36px;

    margin-bottom:20px;

}

.home-more-title{

    font-size:22px;

    font-weight:600;

    margin-bottom:10px;

}

.home-more-text{

    color:#666;

    font-size:14px;

    line-height:1.5;

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:900px){

.price-number{

    font-size:18px;

}

.home-products-section{

    width:95%;
    margin:45px auto;

}

.home-products-title{

    font-size:24px;

}

.home-products-subtitle{

    font-size:14px;

}

.home-products-row{

    gap:14px;

    padding-bottom:14px;
    margin-bottom:14px;

}

.home-product-card{

    flex:0 0 190px;

    border-radius:18px;

}

.home-product-name{

    font-size:13px;

    height:14px;

}

.home-product-buy{

    height:36px;

}

.home-product-price{

    font-size:14px;

}

.home-more-card{

    flex:0 0 190px;

    border-radius:18px;

    padding:18px;

}

.home-more-icon{

    width:52px;
    height:52px;

    font-size:28px;

    margin-bottom:14px;

}

.home-more-title{

    font-size:18px;

}

.home-more-text{

    font-size:13px;

}

}

@media(max-width:500px){

.home-products-row{

    gap:12px;

}

.home-product-card{

    flex:0 0 150px;

}

.home-more-card{

    flex:0 0 150px;

}

.home-products-count{

    font-size:13px;

}

}

/* ==========================================
   MOBILE - DISABLE HOVER EFFECTS
========================================== */

@media (hover: none), (max-width: 900px){

    .home-product-card:hover{

        transform:none;
        border-color:rgb(205,205,211);
        box-shadow:none;

    }

    .home-more-card:hover{

        transform:none;
        border-color:rgb(205,205,211);
        background:#fafafa;
        box-shadow:none;

    }

}
