/* =========================================================
   ACTIVEGO STORE
========================================================= */

.store-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
}

.store-card{
    display:flex;
    flex-direction:column;

    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:16px;

    overflow:hidden;

    transition:.25s;
    cursor:pointer;

    box-shadow:0 4px 14px rgba(0,0,0,.05);
}

.store-card:hover{
    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.store-image{

    position:relative;

    aspect-ratio:1/1;

    background:#f5f5f5;
}

.store-image img{

    width:100%;
    height:100%;

    object-fit:cover;
}

.store-badge{

    position:absolute;

    top:12px;
    left:12px;

    background:#ff3b30;
    color:#fff;

    padding:5px 10px;

    border-radius:20px;

    font-size:12px;
    font-weight:600;
}

.store-content{

    display:flex;
    flex-direction:column;

    gap:8px;

    padding:16px;
}

.store-brand{

    color:#888;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:.5px;
}

.store-title{
    font-size:16px;
    font-weight:600;
    color:#222;

    display:-webkit-box;
    -webkit-box-orient:vertical;

    -webkit-line-clamp:2;
    line-clamp:2;

    overflow:hidden;
}

.store-price-box{

    margin-top:auto;
}

.store-old-price{

    color:#999;

    text-decoration:line-through;

    font-size:14px;
}

.store-price{

    font-size:24px;

    font-weight:700;

    color:#111;
}

.store-footer{

    margin-top:12px;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.store-stock{

    font-size:13px;

    color:#16a34a;

    font-weight:600;
}
#productsContainer{

    display:grid;

    grid-template-columns:repeat(4,minmax(0,1fr));

    gap:24px;

    align-items:start;
}
.service-layout{
    display:grid;
    grid-template-columns:2fr 420px;
    gap:40px;
    align-items:start;
    margin:40px 0;
}

@media(max-width:900px){

    .service-layout{
        grid-template-columns:1fr;
    }

}
.product-gallery{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.product-main-image{
    aspect-ratio:1/1;
    background:#f7f7f7;
    border-radius:16px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.product-main-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.product-thumbnails{
    display:flex;
    gap:10px;
}

.product-thumbnails img{
    width:80px;
    height:80px;
    border-radius:10px;
    border:2px solid transparent;
    object-fit:cover;
    cursor:pointer;
}

.product-thumbnails img.active{
    border-color:#28a745;
}
.booking-box{

    position:sticky;
    top:90px;

    padding:28px;

    border:1px solid #e5e5e5;
    border-radius:18px;

    background:#fff;

    box-shadow:
        0 10px 35px rgba(0,0,0,.05);

}
.booking-price{

    font-size:42px;
    font-weight:700;
    margin-bottom:20px;

}

.old-price{

    color:#999;
    text-decoration:line-through;
    margin-bottom:5px;

}
.product-stock{

    margin:20px 0;

    font-size:18px;

}

.in-stock{

    color:#17a34a;

}

.out-stock{

    color:#d32f2f;

}
.product-qty{

    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:20px;

}

.product-qty button{

    width:42px;
    height:42px;

    font-size:20px;

    border:none;
    border-radius:10px;

    cursor:pointer;

}

.product-qty input{

    width:90px;
    text-align:center;

}
.product-description{

    margin-top:25px;

    line-height:1.8;

    font-size:17px;

    color:#444;

}
#similarProducts{

    margin-top:70px;

}

.services-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fill,minmax(260px,1fr));

    gap:24px;

}
.service-card{

    display:flex;
    flex-direction:column;

    text-decoration:none;
    color:inherit;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    transition:.2s;

    border:1px solid #ececec;

}

.service-card:hover{

    transform:translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.08);

}

.service-image{

    aspect-ratio:1/1;

    background:#f4f4f4;

}

.service-image img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.service-content{

    padding:18px;

}

.service-footer{

    margin-top:12px;

    font-size:22px;

    font-weight:700;

}
.store-card{

    display:flex;
    flex-direction:column;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    border:1px solid #e8e8e8;

    transition:.2s;

    height:100%;

}

.store-card:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.store-link{

    text-decoration:none;

    color:inherit;

    display:block;

    flex:1;

}

.store-description{

    color:#666;

    font-size:14px;

    line-height:1.5;

    margin:10px 0;

    display:-webkit-box;

    -webkit-line-clamp:2;
    line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

    min-height:42px;

}

.store-add-cart{

    width:calc(100% - 24px);

    margin:0 12px 12px;

    padding:14px;

    border:none;

    border-radius:12px;

    background:#19c414;

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.2s;

}

.store-add-cart:hover{

    background:#14a90f;

}
.store-list{

    max-width:1400px;

    margin:0 auto;

}
.store-list #productsContainer{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));

    gap:24px;

}