/* SAFE_VETCARE_SHOP_HOME_V1 */

*{
    box-sizing:border-box;
}

:root{
    --blue:#0b64b7;
    --deep:#123a6d;
    --teal:#078f9e;
    --orange:#f58220;
    --text:#172033;
    --muted:#667085;
    --soft:#f5f8fc;
    --line:#e6ebf2;
    --white:#fff;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:#fff;
    color:var(--text);

    font-family:
        "Noto Sans Bengali",
        "Hind Siliguri",
        "Segoe UI",
        Arial,
        sans-serif;

    line-height:1.55;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input{
    font:inherit;
}

.wrap{
    width:min(1180px, calc(100% - 32px));
    margin:auto;
}

/* TOP BAR */

.topbar{
    background:#102b4e;
    color:#fff;
    font-size:13px;
}

.topbar-inner{
    min-height:38px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.top-links{
    display:flex;
    gap:18px;
}

/* HEADER */

.header{
    background:#fff;
    border-bottom:1px solid var(--line);
}

.header-row{
    min-height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.brand-mark{
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    border-radius:14px;
    background:linear-gradient(135deg,#097fc7,#1548ba);
    color:#fff;
    font-size:26px;
}

.brand strong{
    display:block;
    font-size:23px;
    font-weight:900;
    color:#102c54;
}

.brand small{
    display:block;
    color:#667085;
}

.desktop-actions{
    display:flex;
    gap:18px;
    font-weight:700;
    font-size:14px;
}

.search-row{
    padding-bottom:15px;
}

.search-box{
    display:flex;
    align-items:center;
    gap:10px;
    min-height:54px;
    padding:6px 7px 6px 17px;
    border:2px solid #dfe8f3;
    border-radius:14px;
    background:#f9fbfd;
}

.search-box input{
    flex:1;
    min-width:0;
    border:0;
    outline:0;
    background:transparent;
    font-size:15px;
}

.search-box button{
    border:0;
    border-radius:10px;
    padding:11px 21px;
    background:var(--blue);
    color:#fff;
    font-weight:800;
    cursor:pointer;
}

/* NAV */

.nav{
    border-bottom:1px solid var(--line);
    background:#fff;
}

.nav-inner{
    min-height:48px;
    display:flex;
    align-items:center;
    gap:30px;
    font-size:14px;
    font-weight:700;
}

/* HERO */

.hero{
    padding:42px 0;
    background:
        radial-gradient(circle at 90% 5%,rgba(255,255,255,.10),transparent 28%),
        linear-gradient(120deg,#078f9d,#0b6bac 55%,#184aa0);
    color:#fff;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.45fr .75fr;
    gap:50px;
    align-items:center;
}

.hero-tag{
    display:inline-flex;
    padding:7px 12px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:999px;
    background:rgba(255,255,255,.10);
    font-size:13px;
}

.hero h1{
    max-width:700px;
    margin:16px 0 15px;
    font-size:44px;
    line-height:1.18;
}

.hero h1 span{
    display:block;
    color:#ffe3a6;
}

.hero p{
    max-width:690px;
    margin:0;
    color:rgba(255,255,255,.91);
    font-size:17px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:26px;
}

.btn{
    min-height:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 20px;
    border-radius:12px;
    font-weight:800;
}

.btn-primary{
    background:var(--orange);
    color:#fff;
}

.btn-light{
    background:#fff;
    color:#135198;
}

.hero-animals{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.hero-animals div{
    min-height:116px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.19);
    border-radius:18px;
    background:rgba(255,255,255,.11);
    backdrop-filter:blur(5px);
    font-size:38px;
}

.hero-animals span{
    margin-top:5px;
    font-size:13px;
    font-weight:800;
}

/* QUICK ACTION */

.quick-section{
    position:relative;
    margin-top:-18px;
}

.quick-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    background:#fff;
    border-radius:16px;
    box-shadow:0 12px 35px rgba(16,44,84,.12);
    overflow:hidden;
}

.quick-grid a{
    min-height:94px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;
    border-right:1px solid var(--line);
}

.quick-grid span{
    font-size:26px;
}

.quick-grid strong{
    font-size:14px;
}

/* SECTIONS */

.section{
    padding:60px 0;
}

.soft{
    background:var(--soft);
}

.section-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:26px;
}

.section-head h2{
    margin:4px 0 0;
    font-size:29px;
}

.section-head > a{
    color:var(--blue);
    font-weight:800;
}

.eyebrow{
    color:var(--orange);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.8px;
}

/* ANIMALS */

.animal-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:14px;
}

.animal-grid a{
    min-height:120px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    border:1px solid var(--line);
    border-radius:16px;
    background:#fff;
    box-shadow:0 5px 16px rgba(16,44,84,.05);
}

.animal-grid span{
    font-size:38px;
}

/* CATEGORY */

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.category-grid a{
    min-height:150px;
    padding:22px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    border-radius:17px;
    background:#fff;
    border:1px solid var(--line);
}

.category-grid span{
    font-size:30px;
}

.category-grid strong{
    margin-top:7px;
    font-size:18px;
}

.category-grid small{
    margin-top:6px;
    color:var(--blue);
    font-weight:800;
}

/* PRODUCTS */

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.product-card{
    position:relative;
    padding:14px;
    border:1px solid var(--line);
    border-radius:17px;
    background:#fff;
    overflow:hidden;
}

.product-image{
    height:190px;
    display:grid;
    place-items:center;
    border-radius:13px;
    background:linear-gradient(145deg,#f6f9fd,#eaf3fb);
    font-size:58px;
}

.stock{
    display:inline-block;
    margin-top:12px;
    padding:4px 8px;
    border-radius:7px;
    background:#eaf8ed;
    color:#198743;
    font-size:11px;
    font-weight:800;
}

.product-card h3{
    min-height:48px;
    margin:8px 0 3px;
    font-size:16px;
}

.product-card small{
    color:var(--muted);
}

.product-price{
    margin:12px 0;
    color:#0b579f;
    font-size:20px;
    font-weight:900;
}

.product-card button{
    width:100%;
    min-height:44px;
    border:0;
    border-radius:10px;
    background:var(--blue);
    color:#fff;
    font-weight:800;
    cursor:pointer;
}

/* SERVICES */

.service-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.service-card{
    min-height:210px;
    padding:30px;
    display:flex;
    align-items:flex-start;
    gap:20px;
    border-radius:20px;
    color:#fff;
}

.diagnostic{
    background:linear-gradient(135deg,#078c98,#0768a4);
}

.vet{
    background:linear-gradient(135deg,#174d9b,#593b9c);
}

.service-icon{
    font-size:46px;
}

.service-card h2{
    margin:0 0 8px;
}

.service-card p{
    color:rgba(255,255,255,.88);
}

.service-card a{
    font-weight:900;
}

/* FARM */

.farm-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.farm-grid a{
    min-height:130px;
    padding:22px;
    display:flex;
    align-items:center;
    gap:16px;
    border:1px solid var(--line);
    border-radius:17px;
}

.farm-grid > a > span{
    font-size:42px;
}

.farm-grid strong{
    display:block;
    font-size:18px;
}

.farm-grid small{
    display:block;
    margin-top:4px;
    color:var(--muted);
}

/* WHY */

.why{
    padding:55px 0;
    background:#102e58;
    color:#fff;
}

.light-head h2{
    color:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.why-grid div{
    padding:20px;
    display:flex;
    align-items:center;
    gap:10px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:13px;
    background:rgba(255,255,255,.06);
}

.why-grid span{
    width:30px;
    height:30px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#1eaa65;
}

/* CTA */

.cta{
    padding:38px 0;
    background:#fff5ea;
}

.cta-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.cta h2{
    margin:0 0 3px;
}

.cta p{
    margin:0;
    color:var(--muted);
}

.cta-buttons{
    display:flex;
    gap:10px;
}

.cta-buttons a{
    min-height:46px;
    padding:0 18px;
    display:flex;
    align-items:center;
    border-radius:10px;
    background:#168c4d;
    color:#fff;
    font-weight:800;
}

.cta-buttons a:last-child{
    background:#155da6;
}

/* FOOTER */

.footer{
    padding:45px 0 88px;
    background:#0b1d36;
    color:#fff;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:30px;
}

.footer h3,
.footer h4{
    margin-top:0;
}

.footer p{
    color:#a9b8cd;
}

.footer a{
    display:block;
    margin:7px 0;
    color:#bbc8da;
}

.copyright{
    width:min(1180px,calc(100% - 32px));
    margin:32px auto 0;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,.10);
    color:#93a6c0;
    font-size:13px;
}

/* MOBILE NAV */

.mobile-nav{
    display:none;
}

/* TABLET */

@media(max-width:900px){

    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero-animals{
        max-width:520px;
    }

    .quick-grid{
        grid-template-columns:repeat(5,150px);
        overflow-x:auto;
    }

    .animal-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .category-grid,
    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* MOBILE */

@media(max-width:600px){

    body{
        padding-bottom:66px;
    }

    .wrap{
        width:min(100% - 24px,1180px);
    }

    .topbar{
        display:none;
    }

    .header-row{
        min-height:65px;
    }

    .brand-mark{
        width:40px;
        height:40px;
        border-radius:11px;
        font-size:21px;
    }

    .brand strong{
        font-size:18px;
    }

    .brand small{
        font-size:10px;
    }

    .desktop-actions,
    .desktop-only{
        display:none !important;
    }

    .search-row{
        padding-bottom:12px;
    }

    .search-box{
        min-height:50px;
        border-width:1px;
    }

    .search-box input{
        font-size:13px;
    }

    .search-box button{
        padding:10px 13px;
        font-size:13px;
    }

    .hero{
        padding:30px 0 45px;
    }

    .hero-grid{
        gap:26px;
    }

    .hero h1{
        margin-top:13px;
        font-size:30px;
    }

    .hero p{
        font-size:14px;
    }

    .hero-buttons{
        display:grid;
        grid-template-columns:1fr;
    }

    .btn{
        width:100%;
    }

    .hero-animals{
        grid-template-columns:repeat(4,1fr);
        gap:8px;
    }

    .hero-animals div{
        min-height:78px;
        font-size:27px;
        border-radius:13px;
    }

    .hero-animals span{
        font-size:9px;
    }

    .quick-section{
        margin-top:-22px;
    }

    .quick-grid{
        grid-template-columns:repeat(5,112px);
        border-radius:14px;
    }

    .quick-grid a{
        min-height:84px;
    }

    .quick-grid strong{
        font-size:11px;
    }

    .section{
        padding:42px 0;
    }

    .section-head{
        margin-bottom:18px;
        align-items:center;
    }

    .section-head h2{
        font-size:22px;
    }

    .section-head > a{
        font-size:12px;
    }

    .animal-grid{
        grid-template-columns:repeat(3,1fr);
        gap:9px;
    }

    .animal-grid a{
        min-height:98px;
    }

    .animal-grid span{
        font-size:30px;
    }

    .animal-grid strong{
        font-size:12px;
    }

    .category-grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .category-grid a{
        min-height:125px;
        padding:16px;
    }

    .product-grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .product-card{
        padding:9px;
        border-radius:13px;
    }

    .product-image{
        height:125px;
        font-size:43px;
    }

    .product-card h3{
        min-height:42px;
        font-size:13px;
    }

    .product-price{
        font-size:17px;
    }

    .product-card button{
        min-height:40px;
        font-size:11px;
    }

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

    .service-card{
        min-height:auto;
        padding:22px;
    }

    .farm-grid{
        grid-template-columns:1fr;
        gap:10px;
    }

    .farm-grid a{
        min-height:100px;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .cta-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .cta-buttons{
        width:100%;
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .cta-buttons a{
        justify-content:center;
        font-size:12px;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:22px;
    }

    .footer{
        padding-bottom:38px;
    }

    .mobile-nav{
        position:fixed;
        left:0;
        right:0;
        bottom:0;
        z-index:1000;

        min-height:64px;

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

        background:#fff;
        border-top:1px solid #dfe6ef;
        box-shadow:0 -6px 22px rgba(16,44,84,.08);
    }

    .mobile-nav a{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:2px;
        color:#5f6c7e;
    }

    .mobile-nav span{
        font-size:20px;
    }

    .mobile-nav small{
        font-size:10px;
        font-weight:700;
    }

    .mobile-nav .active{
        color:var(--blue);
    }

}

/* SAFE_VETCARE_SHOP_CATALOG_EXACT_V1 */

.stock-out{
    background:#fff0f0 !important;
    color:#c83939 !important;
}

.product-card button:disabled{
    background:#a8b1bd !important;
    cursor:not-allowed !important;
}

.product-empty{
    grid-column:1/-1;
    min-height:180px;
    padding:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    border:1px dashed #cad5e3;
    border-radius:17px;
    background:#f8fbfe;
}

.product-empty > span{
    font-size:45px;
}

.product-empty strong{
    display:block;
    font-size:18px;
}

.product-empty p{
    margin:5px 0 0;
    color:#667085;
}

@media(max-width:600px){

    .product-empty{
        min-height:135px;
        padding:18px;
    }

    .product-empty > span{
        font-size:34px;
    }

    .product-empty strong{
        font-size:14px;
    }

    .product-empty p{
        font-size:12px;
    }
}

