   
       *{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f7f8fc;
color:#222;
}

/* HEADER */

.header{
position:sticky;
top:0;
z-index:1000;
display:flex;
align-items:center;
justify-content:space-between;
gap:12px;
padding:12px 15px;
background:#fff;
box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.logo{
height:20px;
}

.search-box{
flex:1;
display:flex;
align-items:center;
background:#f3f4f8;
border-radius:50px;
padding:10px 15px;
}

.search-box i{
font-size:20px;
color:#666;
margin-right:10px;
}

.search-box input{
width:100%;
border:none;
outline:none;
background:transparent;
font-size:15px;
}

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

.icon-btn{
width:42px;
height:42px;
border-radius:50%;
background:#f5f5f5;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
color:#5B21B6;
font-size:22px;
position:relative;
}

.cart-btn span{
position:absolute;
top:-5px;
right:-5px;
background:#ff6600;
color:#fff;
width:20px;
height:20px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:11px;
font-weight:700;
}

/* HERO */

.hero{
padding:15px;
}

.hero-slider{
display:flex;
gap:12px;
overflow-x:auto;
scrollbar-width:none;
}

.hero-slider::-webkit-scrollbar{
display:none;
}

.hero-slider img{
width:100%;
min-width:320px;
height:180px;
object-fit:cover;
border-radius:18px;
box-shadow:0 5px 15px rgba(0,0,0,.12);
}

/* INTRO */

.intro{
padding:20px;
text-align:center;
}

.intro h1{
font-size:34px;
font-weight:700;
color:#222;
margin-bottom:10px;
}

.intro p{
font-size:18px;
line-height:1.6;
color:#666;
}

/* SECTION */

.best-selling,
.top-categories{
padding:20px;
}

.best-selling h2,
.top-categories h2{
font-size:28px;
font-weight:700;
margin-bottom:18px;
color:#333;
}

/* CATEGORY */

.category-scroll{
    display:flex;
    overflow-x:auto;
    gap:15px;
    scrollbar-width:none;
}

.category-scroll::-webkit-scrollbar{
    display:none;
}

.category-card{
    min-width:150px;
    background:#fff;
    border-radius:18px;
    padding:10px;
    text-align:center;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    transition:.3s;
    cursor:pointer;
}

.category-card:hover{
    transform:translateY(-5px);
}

.category-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;      /* Poora square fill karega */
    /* object-fit:contain; */ /* Agar poori image bina crop dikhani ho */
    border-radius:15px;
    display:block;
}

.category-card p{
    margin-top:10px;
    font-size:15px;
    font-weight:600;
}

/* PRODUCTS */

.products-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:8px;
    margin-top:20px;
}
.product-card{
    border:1px solid #e8e8e8;
    border-radius:10px;
    overflow:hidden;
    background:#fff;
}

.product-image{
    width:100%;
    height:160px;
    object-fit:cover;
    object-position:center;
    display:block;
    padding:0;
    background:#fff;
}

.product-info{
    padding:10px 12px 14px;
    text-align:center;
}

.product-title{
    font-size:16px;
    font-weight:500;
    line-height:1.3;
    min-height:48px;
    margin:0 0 10px;
}
.product-price2{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:6px;
}

.product-price2 .price{
    font-size:18px;
    font-weight:700;
    line-height:1.2;
}

.product-price2 .text{
    font-size:15px;
    color:#444;
    line-height:1.4;
    text-align:left;
}

.product-price2 .unit{
    font-size:15px;
    color:#444;
}
.product-btns{
    display:flex;
    gap:10px;
}

.view-btn,
.cart-btn2{
    flex:1;
    border:none;
    border-radius:10px;
    padding:12px 0;
    font-size:17px;
    font-weight:600;
    color:#fff;
    cursor:pointer;
}

.view-btn{
    background:#6a1b9a;
}

.cart-btn2{
    background:#ff6b00;
}

@media(max-width:768px){

.products-grid{
    gap:14px;
}

.product-title{
    font-size:16px;
    min-height:60px;
}
.product-price2 .price{
    font-size:20px;
}

.product-price2 .text{
    font-size:14px;
}

.view-btn,
.cart-btn2{
    font-size:15px;
    padding:10px 0;
}

}

.view-btn,
.cart-btn2{
flex:1;
padding:10px;
border:none;
border-radius:12px;
cursor:pointer;
font-size:15px;
font-weight:600;
}

.view-btn{
background:#5B21B6;
color:#fff;
}

.cart-btn2{
background:#ff6600;
color:#fff;
}

/* LOADER */

.loader{
display:none;
text-align:center;
padding:25px;
font-size:18px;
font-weight:600;
color:#5B21B6;
}

/* MOBILE */

@media(max-width:768px){

.header{
padding:10px;
}

.logo{
height:28px;
}

.search-box{
padding:8px 12px;
}

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

.intro h1{
font-size:28px;
}

.intro p{
font-size:16px;
}





.category-card{
min-width:115px;
}

.category-card img{
height:100px;
}

}
      /*=========================
PRODUCT SECTIONS
=========================*/


      

/*==================================
      WHY PRINTIZY
==================================*/

.why-printizy{

background:#fff;

}

.features-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;

}

.feature-card{

background:#fff;
padding:35px 25px;
border-radius:20px;
text-align:center;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:.35s;

}

.feature-card:hover{

transform:translateY(-8px);

}

.feature-card i{

font-size:55px;
color:#FF6B00;
margin-bottom:18px;

}

.feature-card h3{

font-size:22px;
margin-bottom:12px;
color:#0A1F44;

}

.feature-card p{

font-size:16px;
line-height:1.7;
color:#666;

}

/*==================================
      BULK ORDER
==================================*/

.bulk-order{

display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:50px;
padding:70px 6%;
background:linear-gradient(135deg,#FF6B00,#ff8a2b);

border-radius:25px;
margin:60px 6%;

}

.bulk-content h2{

font-size:40px;
color:#fff;
margin-bottom:20px;

}

.bulk-content p{

font-size:18px;
line-height:1.8;
color:#fff;
margin-bottom:30px;

}

.bulk-btn{

display:inline-block;
padding:15px 35px;
background:#fff;
color:#FF6B00;
text-decoration:none;
font-size:18px;
font-weight:600;
border-radius:50px;
transition:.3s;

}

.bulk-btn:hover{

background:#0A1F44;
color:#fff;

}

.bulk-image img{

width:100%;
display:block;

}

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

@media(max-width:768px){

.products-grid{

grid-template-columns:repeat(2,1fr);
gap:15px;

}

.product-card img{

height:150px;

}

.product-card h3{

font-size:15px;
padding:12px;

}

.features-grid{

grid-template-columns:1fr;
gap:18px;

}

.feature-card{

padding:25px 18px;

}

.feature-card i{

font-size:42px;

}

.feature-card h3{

font-size:18px;

}

.feature-card p{

font-size:14px;

}

.bulk-order{

grid-template-columns:1fr;
text-align:center;
padding:40px 5%;
gap:30px;
margin:40px 5%;

}

.bulk-content h2{

font-size:28px;

}

.bulk-content p{

font-size:16px;

}

.bulk-btn{

padding:12px 28px;
font-size:16px;

}

}
/*==================================
        REVIEWS
==================================*/

.reviews{
background:#fff;
padding:70px 6%;
}

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

.review-photo{
width:100%;
border-radius:20px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
transition:.3s;
cursor:pointer;
}

.review-photo:hover{
transform:translateY(-8px);
}

/*==================================
      TRUSTED BRANDS
==================================*/

.trusted-brands{
background:#fafafa;
padding:70px 6%;
}

.brand-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
align-items:center;
}

.brand-grid img{
width:100%;
height:90px;
object-fit:contain;
background:#fff;
padding:15px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

/*==================================
            FAQ
==================================*/

.faq{
padding:70px 6%;
background:#fff;
}

.faq-item{
background:#fff;
border:1px solid #eee;
border-radius:12px;
margin-bottom:15px;
overflow:hidden;
}

.faq-btn{
width:100%;
padding:18px 20px;
background:#fff;
border:none;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
font-size:18px;
font-weight:600;
}

.faq-content{
display:none;
padding:18px 20px;
color:#555;
line-height:1.8;
}

/*==================================
      CONTACT CTA
==================================*/

.contact-banner{
background:linear-gradient(135deg,#FF6B00,#ff8a2b);
color:#fff;
text-align:center;
padding:70px 6%;
}

.contact-banner h2{
color:#fff;
font-size:36px;
margin-bottom:20px;
}

.contact-banner p{
font-size:18px;
margin-bottom:30px;
}

.cta-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.whatsapp-btn,
.call-btn{
padding:14px 30px;
border-radius:50px;
text-decoration:none;
font-size:18px;
font-weight:600;
transition:.3s;
}

.whatsapp-btn{
background:#25D366;
color:#fff;
}

.call-btn{
background:#fff;
color:#FF6B00;
}

.whatsapp-btn:hover,
.call-btn:hover{
transform:translateY(-4px);
}

/*==================================
          FOOTER
==================================*/

.footer{
background:#0A1F44;
padding:60px 6% 30px;
text-align:center;
color:#fff;
}

.footer-logo{
width:90px;
margin-bottom:20px;
}

.footer h3{
font-size:30px;
margin-bottom:15px;
}

.footer p{
color:#ddd;
line-height:1.7;
margin-bottom:20px;
}

.footer-links{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-bottom:25px;
}

.footer-links a{
color:#fff;
text-decoration:none;
}

.footer-social{
display:flex;
justify-content:center;
gap:18px;
margin-bottom:25px;
}

.footer-social a{
width:45px;
height:45px;
background:#fff;
color:#FF6B00;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
text-decoration:none;
transition:.3s;
}

.footer-social a:hover{
background:#FF6B00;
color:#fff;
}

.copyright{
border-top:1px solid rgba(255,255,255,.2);
padding-top:20px;
color:#bbb;
font-size:14px;
}

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

@media(max-width:768px){

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

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

.brand-grid img{
height:70px;
}

.faq-btn{
font-size:16px;
padding:15px;
}

.contact-banner h2{
font-size:28px;
}

.contact-banner p{
font-size:16px;
}

.whatsapp-btn,
.call-btn{
font-size:16px;
padding:12px 24px;
}

.footer h3{
font-size:24px;
}

.footer-links{
flex-direction:column;
gap:12px;
}

.footer-social a{
width:40px;
height:40px;
font-size:18px;
}

}

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

      section{
    scroll-margin-top:80px;
      }
      /* SECTION COMMON */
.why-printizy h2,
.faq h2{
    width:100%;
    display:block;
    text-align:center !important;
    margin:0 auto 35px !important;
    padding:0 !important;
    color:#0A1F44;
}

.why-printizy h2::after,
.faq h2::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    background:#FF6B00;
    margin:12px auto 0;
    border-radius:20px;
}
.products h2,
.top-categories h2,
.why-printizy h2,
.faq h2,
.contact-banner h2,
.trusted-brands h2,
.reviews h2{

    text-align:center !important;
    width:100%;
    margin:0 auto 35px !important;
    padding:0;

}

.products h2::after,
.why-printizy h2::after{

    margin:12px auto 0 !important;

}
.products{
    width:100%;
    padding:20px 8px;
    box-sizing:border-box;
}



.product-card{
    width:100%;
    max-width:none;
    min-width:0;
}
      #topLoader{
    position:fixed;
    top:0;
    left:0;
    width:0%;
    height:3px;
    background:#ff6b00;
    z-index:999999;
    transition:width .3s ease;
      }
  /* ================= SIGNAGE SECTION ================= */

.signage-section{
    padding:25px 15px 40px;
    background:#fff;
}

.signage-section h2{
    text-align:center;
    font-size:28px;
    font-weight:700;
    color:#222;
    margin-bottom:25px;
}

.signage-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.signage-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    cursor:pointer;
    transition:.3s;
    text-align:center;
}

.signage-card:hover{
    transform:translateY(-5px);
}

.signage-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    display:block;
    border-radius:12px;
}

.signage-card h3{
    margin:12px 10px 6px;
    font-size:17px;
    font-weight:700;
    color:#222;
    line-height:1.35;
}

.signage-card p{
    margin:0 0 14px;
    font-size:15px;
    font-weight:600;
    color:#666;
}

@media(max-width:768px){

.signage-grid{
    gap:15px;
}

.signage-card h3{
    font-size:15px;
}

.signage-card p{
    font-size:14px;
}

}
