@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

html{
scroll-behavior:smooth;
}

body{
background:#fff;
color:#222;
overflow-x:hidden;
}

/*==================================
        VARIABLES
==================================*/

:root{

--primary:#FF6B00;
--secondary:#6F2DBD;
--dark:#0A1F44;
--light:#ffffff;
--gray:#666;
--border:#ececec;

}

/*==================================
        HEADER
==================================*/
html,body{
    width:100%;
    overflow-x:hidden;
}

.products{
    width:100%;
    max-width:100%;
    margin:0;
    padding:20px 15px;
}

.header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 5%;
    box-sizing:border-box;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    margin-bottom:0;
    margin:0;
}
.logo img{

height:40px;

}

.search-box{

flex:1;
display:flex;
align-items:center;
margin:0 18px;
background:#f7f7f7;
border-radius:50px;
padding:12px 18px;

}

.search-box i{

color:#777;
margin-right:10px;
font-size:18px;

}

.search-box input{

width:100%;
border:none;
outline:none;
background:transparent;
font-size:15px;

}

.header-icons{

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

}

.header-icons a{

text-decoration:none;
color:#222;
font-size:26px;

}

/*==================================
          HERO
==================================*/

/*==================================
      SECTION TITLE
==================================*/


section h2{

font-size:34px;
text-align:center;
margin-bottom:40px;
color:var(--dark);

}

/*==================================
      CATEGORY GRID
==================================*/

.category-grid{

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

}

.category-card{

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

}

.category-card:hover{

transform:translateY(-8px);

}

.category-card img{

width:100%;
height:180px;
object-fit:contain;
margin-bottom:18px;

}

.category-card h3{

font-size:18px;
color:#222;
font-weight:600;

}

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

@media(max-width:768px){

.header{

padding:10px 15px;

}

.logo img{

height:30px;

}

.search-box{

margin:0 10px;
padding:10px 15px;

}

.hero{

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

}

.hero-content h1{

font-size:32px;

}

.hero-content p{

font-size:16px;

}

.hero-btn{

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

}



section h2{

font-size:28px;

}

.category-grid{

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

}

.category-card img{

height:120px;

}

.category-card h3{

font-size:15px;

}

}
/*==================================
        PRODUCTS
==================================*/

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

.product-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    cursor:pointer;
}

.product-card img{
    width:100%;
    height:180px;
    object-fit:contain;
    display:block;
    background:#fff;
    padding:10px;
}

.product-card h3{
    display:none;
}
  @media (max-width:768px){

.products{
    padding:20px 15px;
}

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

.product-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    cursor:pointer;
}

.product-card img{
    width:100%;
    height:180px;
    object-fit:contain;
    display:block;
    background:#fff;
    padding:10px;
}

.product-card h3{
    display:none;
}

.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;
}

  }

/*==================================
   RESTAURANT ESSENTIALS
==================================*/

.restaurant-essentials{

background:#fafafa;

}

/*==================================
      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
==================================*/

/*==================================
        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;
}

}

/* ==========================
HERO
========================== */

/*==========================
HOTEL HERO
==========================*/

.hotel-hero{
    width:100%;
    margin:0;
    padding:0;
    overflow:hidden;
    position:relative;
    line-height:0;
}

.hotel-hero img{
    width:100%;
    height:auto;
    display:block;
}

/*==========================
HERO OVERLAY
==========================*/

.hero-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:20px;
    background:linear-gradient(to top,
    rgba(0,0,0,.65),
    transparent);
}

.hero-overlay h1{
    color:#fff;
    font-size:30px;
    font-weight:700;
    margin-bottom:10px;
}

.hero-overlay p{
    color:#fff;
    font-size:16px;
    line-height:1.6;
}

/*==========================
HOTEL CATEGORIES
==========================*/

.hotel-categories{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    padding:14px;
    margin:0;
}

.category-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

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

.category-card img{
    width:100%;
    height:170px;
    object-fit:cover;
    display:block;
}

.category-card h3{
    padding:12px;
    font-size:16px;
    font-weight:600;
    color:#222;
    text-align:center;
    line-height:1.4;
}

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

@media(max-width:768px){

html,
body{
    margin:0;
    padding:0;
}

.header{
    margin:0;
    padding:10px 15px;
}

.hotel-hero{
    width:100%;
    margin:0;
    padding:0;
}

.hotel-hero img{
    width:100%;
    height:auto;
    display:block;
}

.hero-overlay{
    padding:15px;
}

.hero-overlay h1{
    font-size:20px;
}

.hero-overlay p{
    font-size:13px;
}

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

.category-card{
    border-radius:12px;
}

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

.category-card h3{
    font-size:13px;
    padding:8px;
}

}
