/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;

    background:
        linear-gradient(
            rgba(239,242,245,0.80),
            rgba(239,242,245,0.80)
        ),
        url("../images/hero-bg.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;

}
/* ===========================
   NAVBAR
=========================== */

.navbar{

    position:sticky;
    top:0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 20px;

    background:white;

    box-shadow:0 3px 12px rgba(0,0,0,.08);

    z-index:1000;

}

.logo{

    font-size:1.2rem;

    font-weight:bold;

    color:#000000;

    text-decoration:none;

}

.nav-links{

    display:flex;

    gap:25px;

}

.nav-links a{

    text-decoration:none;

    color:#444;

    font-weight:500;

}

.nav-links a.active{

    color:#000000;

}
.menu-btn{

    position:relative;

    z-index:1001;

}

.menu-btn{

    display:none;

    border:none;

    background:none;

    font-size:1.7rem;

    cursor:pointer;

}
/* ===========================
   HEADER
=========================== */

/* ===========================
   HERO
=========================== */

.hero{

    padding:70px 20px 45px;

    background:linear-gradient(135deg,#123c7c,#1f5fbf);

    color:white;

}

.hero-content{

    max-width:1100px;

    margin:auto;

}

.breadcrumb{

    display:inline-block;

    padding:8px 15px;

    background:rgba(255,255,255,.15);

    border-radius:30px;

    font-size:.9rem;

    margin-bottom:18px;

}

.hero h1{

    font-size:2.5rem;

    margin-bottom:15px;

}

.hero p{

    max-width:650px;

    line-height:1.8;

    opacity:.9;

}

@media(max-width:768px){

.hero{

padding:50px 18px 35px;

}

.hero h1{

font-size:2rem;

}

.hero p{

font-size:.95rem;

}

}

/* ===========================
   SEARCH
=========================== */

.search-section{

    margin-top:-40px;

    padding:0 18px 20px;

}

.search-wrapper{

    margin:20px 0 30px;

}

#searchInput{

    width:100%;

    height:52px;

    padding:0 18px;

    border:none;

    border-radius:12px;

    background:#fff;

    font-size:.95rem;

    outline:none;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:.25s;

}

#searchInput::placeholder{

    color:#94a3b8;

}

#searchInput:focus{

    box-shadow:0 0 0 4px rgba(31,95,191,.15);

}

#searchBox{

    width:100%;

    height:58px;

    border:none;

    border-radius:50px;

    padding:0 25px;

    font-size:1rem;

    outline:none;

    background:white;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

}

/* ==========================
   BRAND SECTION
========================== */

.brand-section{

    margin:15px 0;

}

.brand-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    padding:0 18px 20px;

}

.brand-title{

    font-size:2rem;

    color:#000000;

    margin-bottom:6px;

}

.brand-subtitle{

    color:#6b7280;

    font-size:.82rem;

    font-weight:500;

    line-height:1.5;

    margin-top:2px;

}

.view-brand{

    color:#000000;

    text-decoration:none;

    font-weight:700;

}

@media(max-width:768px){

.brand-title{

font-size:1.5rem;

}

.brand-header{

align-items:flex-start;

flex-direction:column;

gap:12px;

}

}
.brand-section{

border-bottom:1px solid rgb(168, 195, 220);

padding-bottom:0px;
}
.view-all-btn{

    display:block;

    width:calc(100% - 36px);

    margin:18px auto 0;

    padding:15px;

    text-align:center;

    text-decoration:none;

    background:#000000;

    color:white;

    border-radius:12px;

    font-weight:600;

    transition:.25s;

}

.view-all-btn:hover{

    background:#020203;

}
.catalogue-btn{

    display:block;

    width:fit-content;

    margin:20px auto;

    padding:12px 22px;

    background:#123c7c;

    color:#fff;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.25s;

}

.catalogue-btn:hover{

    background:#1f5fbf;

}
/* ===========================
   PRODUCTS
=========================== */


/* Desktop */

@media(min-width:768px){

.products-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(min-width:1100px){

.products-grid{

grid-template-columns:repeat(4,1fr);

}

}
/* ===========================
   MOBILE NAVBAR
=========================== */

@media(max-width:768px){

.menu-btn{

display:block;

}

.nav-links{

    position:fixed;

    top:0;

    right:0;

    width:490px;

    height:100vh;

    background:#fff;

    display:flex;

    flex-direction:column;

    justify-content:center;   /* Vertical center */

    align-items:center;       /* Horizontal center */

    gap:35px;

    transform:translateX(100%);

    transition:transform .35s ease;

    box-shadow:-10px 0 30px rgba(0,0,0,.12);

    z-index:1000;

}

    .nav-links.show{

        transform:translateX(0);

    }
    .nav-links a{

    font-size: 0.8rem; font-weight: 700; color: #8A94A6; text-transform: uppercase; letter-spacing: 2px; transition: 0.25s ease;margin:10px;

}

}
/* ===========================
   PRODUCTS
=========================== */

.products-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:16px;

    padding:18px;

}


.product-card{

    background:white;

    border-radius:18px;

    overflow:hidden;

    cursor:pointer;

    transition:.25s;

    box-shadow:0 4px 15px rgba(0,0,0,.08);

}

.product-card:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 25px rgba(0,0,0,.12);

}

.product-image{

    display:flex;

    justify-content:center;

    align-items:center;

    padding:0px;

    background:#f5f7fa;

}

.product-image img{

    max-width:100%;

    max-height:100%;

    object-fit:contain;

    transition:.3s;

}

.product-card:hover img{

    transform:scale(1.05);

}

.product-info{

    padding:14px;

}

.product-info h3{

    font-size:1rem;

    font-weight:600;

    line-height:1.35;

    margin-bottom:4px;

}

.product-info p{

    color:#6b7280;

    font-size:.82rem;

    font-weight:500;

    margin:0;

}

.product-info span{

    display:inline-block;

    background:#eef4ff;

    color:#000000;

    padding:5px 10px;

    border-radius:20px;

    font-size:.75rem;

}
/* ===========================
   PRODUCT PAGE
=========================== */

.product-page{

    max-width:1200px;

    margin:auto;

    padding:30px 20px;

    display:grid;

    gap:40px;

}

@media(min-width:900px){

.product-page{

grid-template-columns:1fr 1fr;

}

}

.product-gallery{

    background:#fff;

    border-radius:20px;

    padding:0px;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.product-gallery img{

    width:100%;

    max-height:500px;

    object-fit:contain;

}
.product-details{

    font-family:'Manrope',sans-serif;

}
.product-details h1{

    font-size:2rem;

    margin-bottom:10px;

}

.product-details p{

    color:#6b7280;

    font-size:.9rem;

    font-weight:500;

    letter-spacing:.3px;

    margin-bottom:28px;

}

#productSpecs{

    font-family:'Poppins',sans-serif;

    font-size:.95rem;

    font-weight:400;

    color:#4b5563;

    line-height:1.9;

    white-space:pre-line;

    margin-top:25px;

    margin-bottom:35px;

}

#whatsappBtn{

    width:100%;

    padding:16px;

    border:none;

    border-radius:12px;

    background:#010201;

    color:white;

    font-size:1rem;

    cursor:pointer;

    font-weight:600;

}

.back-btn{

    color:white;

    text-decoration:none;

    font-weight:600;

}
