/* Google Font */
@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{
    width:100%;
    background:#ffffff;
    color:#222;
}

/* HEADER */

#header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 80px;
    background:#ffffff;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    left:0;
    z-index:999;
}

.logo{
    width:140px;
}

#navbar{
    display:flex;
    align-items:center;
    list-style:none;
}

#navbar li{
    margin-left:30px;
}

#navbar li a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

#navbar li a:hover,
#navbar li a.active{
    color:#088178;
}

/* HERO */

#hero{
    background:linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)),
    url("images/baner1.jpg");
    background-size:cover;
    background-position:center;
    height: 90vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;

    padding:0 80px;

    color:#fff;
}

#hero h4{
    font-size:22px;
    margin-bottom:10px;
}

#hero h1{
    font-size:60px;
    margin-bottom:10px;
}

#hero h2{
    font-size:40px;
    margin-bottom:15px;
}

#hero p{
    font-size:18px;
    margin-bottom:25px;
}

#hero button{
    background:#088178;
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:8px;
    cursor:pointer;
    font-size:17px;
    transition:.3s;
}

#hero button:hover{
    background:#06645e;
}

/* FEATURE */

#feature{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    padding:60px 80px;
    gap:20px;
}

.fe-box{
    width:220px;
    text-align:center;
    border:1px solid #ddd;
    border-radius:10px;
    padding:25px;
    transition:.3s;
}

.fe-box:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 20px rgba(0,0,0,.12);
}

.fe-box img{
    width:70px;
    margin-bottom:15px;
}

.fe-box h6{
    color:#088178;
}

/* PRODUCTS */
.products-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    padding:15px;
}

.product-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-4px);
}

.product-card img{
    width:100%;
    height:170px;
    object-fit:cover;
}

.product-info{
    padding:10px;
}

.product-info h3{
    font-size:15px;
    margin-bottom:5px;
}

.price{
    color:#00a9c7;
    font-size:20px;
    font-weight:bold;
}

.add-cart{
    width:100%;
    margin-top:10px;
    padding:10px;
    border:none;
    border-radius:8px;
    background:#00bcd4;
    color:#fff;
    font-weight:bold;
}

/* BANNER */

#banner{
    background:#088178;
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

#banner h2{
    font-size:40px;
    margin-bottom:20px;
}

#banner span{
    color:#ffd700;
}

#banner button{
    padding:15px 35px;
    border:none;
    background:#fff;
    color:#088178;
    border-radius:8px;
    font-weight:bold;
    cursor:pointer;
}

/* ==========================
FOOTER
========================== */

#footer{

background:#111;

color:#fff;

padding:70px 40px 20px;

margin-top:80px;

}

.footer-container{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:40px;

}

.footer-box h2,
.footer-box h3{

margin-bottom:20px;

}

.footer-box p{

line-height:1.8;

color:#ccc;

}

.footer-box ul{

list-style:none;

padding:0;

}

.footer-box ul li{

margin-bottom:12px;

}

.footer-box ul li a{

color:#ccc;

text-decoration:none;

transition:.3s;

}

.footer-box ul li a:hover{

color:#088178;

padding-left:5px;

}

.social-icons{

margin-top:20px;

display:flex;

gap:15px;

}

.social-icons a{

width:42px;

height:42px;

background:#222;

color:white;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

font-size:18px;

transition:.3s;

text-decoration:none;

}

.social-icons a:hover{

background:#088178;

}

.footer-bottom{

text-align:center;

padding-top:20px;

color:#aaa;

font-size:14px;

}

#footer hr{

border:none;

height:1px;

background:#333;

margin:40px 0 20px;

}

.newsletter-footer{

margin-top:50px;

text-align:center;

}

.newsletter-footer p{

margin:15px 0;

}

.newsletter-box{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:10px;

margin-top:20px;

}

.newsletter-box input{

width:320px;

max-width:100%;

padding:14px;

border:none;

border-radius:8px;

}

.newsletter-box button{

padding:14px 30px;

background:#088178;

color:white;

border:none;

border-radius:8px;

cursor:pointer;

}

.newsletter-box button:hover{

background:#06665f;

}

/* ==========================
   MOBILE RESPONSIVE
========================== */

@media screen and (max-width: 768px){

#header{
    padding:15px;
    flex-wrap:wrap;
}

.logo{
    font-size:20px;
}

.search-bar{
    width:100%;
    margin-top:10px;
    order:3;
}

.search-bar input{
    width:100%;
}

#navbar{
    position:fixed;
    top:70px;
    right:-100%;
    width:250px;
    height:100vh;
    background:#fff;
    display:flex;
    flex-direction:column;
    transition:.4s;
    padding:30px;
}

#navbar.active{
    right:0;
}

#mobile{
    display:block;
}

#hero{
    height:250px;
    padding:20px;
    background-position:center;
}

#hero h1{
    font-size:32px;
}

#hero h2{
    font-size:22px;
}

.pro-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.pro{
    width:100%;
    min-width:0;
}

.pro img{
    width:100%;
    height:170px;
    object-fit:cover;
}

.banner-box{
    width:100%;
    margin-bottom:15px;
}
}
/* Products */

.pro-container,
.flash-products,
.arrival-container,
.product-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:15px;
}

.product,
.pro,
.arrival-box{

    width:100%;

}

/* Product Details */

#prodetails{

    flex-direction:column;

    margin:20px;

}

.single-pro-image,
.single-pro-details{

    width:100%;

}

/* Checkout */

#checkout{

    display:block;

}

.order-summary{

    margin-top:30px;

}

/* Newsletter */

#newsletter{

    display:block;

    text-align:center;

}

.news-form{

    display:block;

}

.news-form input{

    width:100%;

    margin-bottom:15px;

}

.news-form button{

    width:100%;

}

/* Contact */

#contact{

    grid-template-columns:1fr;

}

/* Admin */

#admin{

    flex-direction:column;

}

.sidebar{

    width:100%;

}

/* Invoice */

.invoice-box{

    width:100%;

}

/* WhatsApp */

.whatsapp{

    width:55px;

    height:55px;

    font-size:28px;

}

.chat-text{

    display:none;

}



/* NEW ARRIVALS */

#new-arrivals{

padding:80px;

text-align:center;

}

.arrival-container{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:25px;

margin-top:40px;

}

.arrival-box{

width:250px;

background:#fff;

border-radius:15px;

padding:20px;

box-shadow:0 10px 20px rgba(0,0,0,.1);

transition:.3s;

}

.arrival-box:hover{

transform:translateY(-10px);

}

.arrival-box img{

width:100%;

height:230px;

object-fit:cover;

border-radius:10px;

}

.arrival-box h4{

margin-top:15px;

}

.arrival-box h3{

margin:10px 0;

color:#088178;

}

.arrival-box button{

width:100%;

padding:12px;

border:none;

background:#088178;

color:white;

border-radius:6px;

cursor:pointer;

font-weight:600;

}

.arrival-box button:hover{

background:#06665f;

}

/* =====================
TOP BRANDS
===================== */

#brands{

padding:80px;

text-align:center;

background:#fff;

}

.brand-container{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:30px;

margin-top:40px;

}

.brand-box{

width:170px;

height:100px;

background:#fff;

border-radius:10px;

display:flex;

justify-content:center;

align-items:center;

box-shadow:0 8px 20px rgba(0,0,0,.08);

transition:.3s;

}

.brand-box:hover{

transform:translateY(-8px);

}

.brand-box img{

width:120px;

}

/* =====================
SPECIAL OFFER
===================== */

#offer{

margin:80px;

padding:80px;

background:linear-gradient(135deg,#0a8f73,#06665f);

border-radius:15px;

text-align:center;

color:white;

}

#offer h2{

font-size:48px;

margin:20px 0;

}

#offer span{

color:#ffd54f;

}

#offer p{

color:#fff;

margin-bottom:30px;

}

#offer button{

padding:16px 40px;

background:#fff;

color:#088178;

border:none;

border-radius:8px;

font-size:17px;

font-weight:bold;

cursor:pointer;

transition:.3s;

}

#offer button:hover{

background:#222;

color:white;

}

/* NEWSLETTER */

#newsletter{

background:#088178;

padding:70px 80px;

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

}

.news-text h2{

color:white;

}

.news-text p{

color:#f1f1f1;

margin-top:10px;

}

.news-form{

display:flex;

margin-top:20px;

}

.news-form input{

width:320px;

padding:14px;

border:none;

outline:none;

border-radius:6px 0 0 6px;

}

.news-form button{

padding:14px 25px;

border:none;

background:#222;

color:white;

cursor:pointer;

border-radius:0 6px 6px 0;

}

.news-form button:hover{

background:#000;

}

/* PRODUCT DETAILS */

#prodetails{
display:flex;
margin:80px;
gap:60px;
}

.single-pro-image{
width:40%;
}

.single-pro-details{
width:50%;
padding-top:30px;
}

.single-pro-details h4{
padding:20px 0;
}

.single-pro-details h2{
font-size:30px;
color:#088178;
}

.single-pro-details select,
.single-pro-details input{

display:block;
padding:10px;
margin-bottom:20px;
}

.single-pro-details input{
width:70px;
}

.single-pro-details .normal{

background:#088178;
color:white;
padding:15px 35px;
border:none;
cursor:pointer;
border-radius:6px;
}

.single-pro-details p{
line-height:28px;
}

/* PRODUCT ICONS */

.product-icons{

display:flex;

justify-content:space-between;

padding:15px;

}

.product-icons i{

width:45px;

height:45px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

cursor:pointer;

font-size:18px;

transition:.3s;

}

.product-icons .fa-heart{

background:#ffe5e5;

color:#ff3b3b;

}

.product-icons .fa-shopping-cart{

background:#e8f6ea;

color:#088178;

}

.product-icons i:hover{

transform:scale(1.1);

}

/* Popular Categories */

#popular-categories{
padding:80px;
text-align:center;
background:#fff;
}

.category-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:25px;
margin-top:40px;
}

.category-card{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,.08);
transition:.3s;
cursor:pointer;
}

.category-card:hover{
transform:translateY(-10px);
}

.category-card img{
width:100%;
height:180px;
object-fit:cover;
}

.category-card h3{
padding:18px;
font-size:20px;
}

/* ==========================
IMAGE SLIDER
========================== */

#slider{

position:relative;

width:100%;

height:600px;

overflow:hidden;

}

.slide{

display:none;

position:absolute;

width:100%;

height:100%;

}

.slide.active{

display:block;

animation:fade 1s;

}

.slide img{

width:100%;

height:600px;

object-fit:cover;

}

.caption{

position:absolute;

top:50%;

left:80px;

transform:translateY(-50%);

color:white;

}

.caption h1{

font-size:60px;

margin-bottom:20px;

}

.caption p{

font-size:22px;

margin-bottom:30px;

color:white;

}

.caption button{

padding:15px 40px;

background:#088178;

color:white;

border:none;

border-radius:8px;

font-size:18px;

cursor:pointer;

}

.caption button:hover{

background:#06665f;

}

@keyframes fade{

from{

opacity:.3;

}

to{

opacity:1;

}

}

/* FLASH SALE */

#flash-sale{

padding:70px 80px;

background:#f7f7f7;

}

.flash-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:35px;

}

.countdown{

background:#e63946;

color:white;

padding:12px 25px;

border-radius:8px;

font-size:24px;

font-weight:bold;

}

.flash-products{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}

.product{

background:white;

padding:20px;

border-radius:12px;

box-shadow:0 8px 20px rgba(0,0,0,.08);

position:relative;

transition:.3s;

}

.product:hover{

transform:translateY(-8px);

}

.product img{

width:100%;

height:240px;

object-fit:cover;

}

.discount{

position:absolute;

top:15px;

left:15px;

background:red;

color:white;

padding:6px 12px;

border-radius:20px;

font-size:14px;

font-weight:bold;

}

.product h3{

margin:15px 0 10px;

}

.product h4{

color:#088178;

margin-bottom:10px;

}

.product button{

width:100%;

padding:14px;

border:none;

background:#088178;

color:white;

border-radius:8px;

cursor:pointer;

font-size:16px;

}

/* SEARCH BAR */

.search-bar{

display:flex;

width:450px;

height:50px;

background:#fff;

border-radius:40px;

overflow:hidden;

border:2px solid #088178;

}

.search-bar input{

flex:1;

border:none;

outline:none;

padding:15px;

font-size:16px;

}

.search-bar button{

width:60px;

border:none;

background:#088178;

color:#fff;

cursor:pointer;

font-size:18px;

}

/* CART BADGE */

.cart-link{

position:relative;

}

#cart-count{

position:absolute;

top:-10px;

right:-12px;

width:22px;

height:22px;

background:red;

color:white;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:12px;

font-weight:bold;

}

/* PROMOTIONAL BANNERS */

#promo{
    display:flex;
    justify-content:center;
    gap:25px;
    padding:70px 80px;
    flex-wrap:wrap;
}

.promo-box{
    flex:1;
    min-width:320px;
    background:linear-gradient(135deg,#088178,#0fa58f);
    color:white;
    padding:50px;
    border-radius:15px;
}

.promo-box h4{
    font-size:22px;
}

.promo-box h2{
    margin:15px 0;
}

.promo-box p{
    color:white;
    margin-bottom:25px;
}

.promo-box button{
    padding:14px 35px;
    border:none;
    border-radius:8px;
    background:white;
    color:#088178;
    cursor:pointer;
    font-weight:bold;
}

/* CUSTOMER REVIEWS */

#reviews{
    padding:80px;
    text-align:center;
    background:#f8f8f8;
}

.review-container{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-top:40px;
}

.review{
    background:white;
    width:320px;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.review img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin:auto;
    margin-bottom:20px;
}

.review h3{
    margin-bottom:10px;
}

/* SHOP PAGE */

#page-header{

background:#088178;

color:white;

text-align:center;

padding:80px 20px;

}

#shop-products{

padding:70px;

}

.product-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.product{

background:white;

border-radius:12px;

padding:20px;

text-align:center;

box-shadow:0 8px 20px rgba(0,0,0,.08);

transition:.3s;

}

.product:hover{

transform:translateY(-10px);

}

.product img{

width:100%;

height:250px;

object-fit:cover;

border-radius:10px;

}

.product h3{

margin-top:15px;

}

.product h2{

margin:10px 0;

color:#088178;

}

.product button{

width:100%;

padding:14px;

border:none;

background:#088178;

color:white;

border-radius:8px;

cursor:pointer;

font-size:16px;

}

.product button:hover{

background:#06665f;

}

/* =====================
SHOP FILTER
===================== */

#shop-filter{
    padding:20px 10px;
    text-align:center;
}

.filter-buttons{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin-top:20px;
    width:100%;
}

.filter-buttons button{
    width:100%;
    padding:10px 5px;
    border:none;
    border-radius:8px;
    background:#f1f1f1;
    cursor:pointer;
    font-size:12px;
    font-weight:600;
    transition:.3s;
}

.filter-buttons button:hover,
.filter-buttons button.active{
    background:#088178;
    color:#fff;
}

.sale{

position:absolute;

top:15px;

left:15px;

background:#ff3b30;

color:white;

padding:6px 14px;

font-size:13px;

font-weight:bold;

border-radius:20px;

}

.product{

position:relative;

}

/* PAGINATION */

#pagination{

text-align:center;

padding:50px;

}

#pagination a{

display:inline-block;

padding:14px 22px;

margin:5px;

background:#088178;

color:white;

border-radius:6px;

font-weight:bold;

transition:.3s;

}

#pagination a:hover{

background:#06665f;

}

/* LOGIN & REGISTER */

#login{

width:100%;

height:100vh;

display:flex;

justify-content:center;

align-items:center;

background:#f5f5f5;

}

.login-box{

width:420px;

background:white;

padding:40px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.1);

text-align:center;

}

.login-box h2{

margin-bottom:10px;

}

.login-box p{

margin-bottom:25px;

}

.login-box input{

width:100%;

padding:15px;

margin-bottom:18px;

border:1px solid #ddd;

border-radius:8px;

font-size:15px;

}

.login-box button{

width:100%;

padding:15px;

background:#088178;

color:white;

border:none;

border-radius:8px;

font-size:16px;

cursor:pointer;

}

.login-box button:hover{

background:#06665f;

}

.bottom-text{

margin-top:20px;

}

.bottom-text a{

color:#088178;

font-weight:bold;

}

/* CHECKOUT */

#checkout{

display:grid;

grid-template-columns:2fr 1fr;

gap:40px;

padding:80px;

}

.checkout-form{

background:white;

padding:40px;

border-radius:15px;

box-shadow:0 10px 20px rgba(0,0,0,.08);

}

.checkout-form h2{

margin-bottom:25px;

}

.checkout-form input,

.checkout-form select{

width:100%;

padding:15px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:8px;

font-size:16px;

}

.checkout-form button{

width:100%;

padding:16px;

background:#088178;

color:white;

border:none;

border-radius:8px;

font-size:17px;

cursor:pointer;

}

.checkout-form button:hover{

background:#06665f;

}

.order-summary{

background:white;

padding:30px;

border-radius:15px;

box-shadow:0 10px 20px rgba(0,0,0,.08);

}

.order-summary h2{

margin-bottom:20px;

}

@media(max-width:799px){

#checkout{

grid-template-columns:1fr;

padding:20px;

}

}

/* ADMIN DASHBOARD */

#admin{
display:flex;
min-height:100vh;
}

.sidebar{
width:260px;
background:#088178;
color:#fff;
padding:30px 20px;
}

.sidebar h2{
margin-bottom:40px;
}

.sidebar ul{
list-style:none;
}

.sidebar ul li{
margin:20px 0;
}

.sidebar ul li a{
color:#fff;
text-decoration:none;
font-size:18px;
display:block;
}

.sidebar ul li a:hover{
padding-left:10px;
transition:.3s;
}

.main-content{
flex:1;
padding:40px;
background:#f5f5f5;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.card{
background:#fff;
padding:25px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.card h3{
color:#666;
margin-bottom:10px;
}

.card h2{
color:#088178;
}

table{
width:100%;
border-collapse:collapse;
margin-top:20px;
background:#fff;
}

table th,
table td{
padding:15px;
border:1px solid #ddd;
text-align:left;
}

table th{
background:#088178;
color:#fff;
}

@media(max-width:768px){

#admin{
flex-direction:column;
}

.sidebar{
width:100%;
}

}

/* ADD PRODUCT */

#add-product{

display:flex;

justify-content:center;

padding:80px 20px;

background:#f7f7f7;

min-height:100vh;

}

.product-form{

background:white;

width:600px;

padding:40px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.product-form h2{

margin-bottom:30px;

text-align:center;

}

.product-form input,

.product-form textarea{

width:100%;

padding:15px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:8px;

font-size:16px;

}

.product-form button{

width:100%;

padding:16px;

background:#088178;

color:white;

border:none;

border-radius:8px;

font-size:18px;

cursor:pointer;

}

.product-form button:hover{

background:#06665f;

}

/* PROFILE */

#profile{

padding:80px 20px;

display:flex;

justify-content:center;

background:#f5f5f5;

min-height:100vh;

}

.profile-card{

width:450px;

background:white;

padding:40px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

text-align:center;

}

.profile-card img{

width:130px;

height:130px;

border-radius:50%;

margin-bottom:20px;

}

.profile-card h2{

margin-bottom:10px;

}

.profile-card p{

margin-bottom:30px;

color:#666;

}

.profile-buttons{

display:grid;

gap:15px;

}

.profile-buttons button{

width:100%;

padding:15px;

border:none;

border-radius:8px;

background:#088178;

color:white;

font-size:16px;

cursor:pointer;

}

.profile-buttons button:hover{

background:#06665f;

}

.logout{

background:#dc3545 !important;

}

.logout:hover{

background:#b02a37 !important;

}

/* ORDERS */

#orders{

padding:80px;

}

#orders h1{

margin-bottom:30px;

}

#orders table{

width:100%;

border-collapse:collapse;

background:white;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

#orders th{

background:#088178;

color:white;

padding:15px;

}

#orders td{

padding:15px;

border:1px solid #eee;

}

/* COUPON */

.coupon-box{

margin:25px 0;

}

.coupon-input{

display:flex;

gap:10px;

}

.coupon-input input{

flex:1;

}

.coupon-input button{

width:130px;

background:#088178;

color:white;

border:none;

border-radius:8px;

cursor:pointer;

}

#coupon-message{

margin-top:10px;

font-weight:bold;

}

/* CONTACT */

#contact{

display:grid;

grid-template-columns:1fr 1fr;

gap:40px;

padding:80px;

}

.contact-info{

background:#088178;

color:white;

padding:40px;

border-radius:15px;

}

.contact-info p{

margin:20px 0;

color:white;

}

.contact-form{

background:white;

padding:40px;

border-radius:15px;

box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.contact-form input,

.contact-form textarea{

width:100%;

padding:15px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:8px;

}

.contact-form button{

width:100%;

padding:15px;

background:#088178;

color:white;

border:none;

border-radius:8px;

font-size:16px;

cursor:pointer;

}

.contact-form button:hover{

background:#06665f;

}

@media(max-width:799px){

#contact{

grid-template-columns:1fr;

padding:20px;

}

}


/* ORDER TRACKING */

#tracking{

padding:80px 20px;

text-align:center;

min-height:70vh;

background:#f7f7f7;

}

.tracking-box{

display:flex;

justify-content:center;

gap:15px;

margin-top:30px;

flex-wrap:wrap;

}

.tracking-box input{

width:320px;

padding:15px;

border:1px solid #ddd;

border-radius:8px;

font-size:16px;

}

.tracking-box button{

padding:15px 30px;

background:#088178;

color:white;

border:none;

border-radius:8px;

cursor:pointer;

}

#tracking-result{

margin-top:40px;

background:white;

max-width:600px;

margin-left:auto;

margin-right:auto;

padding:25px;

border-radius:12px;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

/* INVOICE */

#invoice{

background:#f5f5f5;

padding:60px 20px;

display:flex;

justify-content:center;

}

.invoice-box{

background:white;

width:850px;

padding:40px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.invoice-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:25px;

}

.invoice-details{

margin:25px 0;

line-height:2;

}

.invoice-box table{

width:100%;

border-collapse:collapse;

margin-top:20px;

}

.invoice-box table th{

background:#088178;

color:white;

padding:15px;

}

.invoice-box table td{

padding:15px;

border:1px solid #ddd;

}

.invoice-total{

text-align:right;

margin-top:30px;

}

.invoice-box button{

margin-top:30px;

padding:15px 35px;

background:#088178;

color:white;

border:none;

border-radius:8px;

cursor:pointer;

font-size:16px;

}

.invoice-box button:hover{

background:#06665f;

}

@media print{

button{

display:none;

}

body{

background:white;

}

}

/* MOBILE MENU */

#mobile{

display:none;

align-items:center;

}

#mobile i{

font-size:28px;

cursor:pointer;

color:#222;

}

#close{

display:none;

}

@media (max-width:768px){

#mobile{

display:flex;

}

#navbar{

display:flex;

flex-direction:column;

align-items:flex-start;

justify-content:flex-start;

position:fixed;

top:0;

right:-320px;

height:100vh;

width:300px;

background:#ffffff;

padding:90px 30px;

box-shadow:-5px 0 20px rgba(0,0,0,.15);

transition:.3s;

z-index:9999;

}

#navbar.active{

right:0;

}

#navbar li{

margin-bottom:25px;

list-style:none;

}

#close{

display:block;

position:absolute;

top:25px;

left:25px;

font-size:24px;

color:#222;

text-decoration:none;

}

}

/* PRODUCT REVIEWS */

#product-reviews{

padding:80px;

}

.review-card{

background:#fff;

padding:20px;

margin-bottom:20px;

border-radius:10px;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.review-form{

margin-top:40px;

}

.review-form input,
.review-form select,
.review-form textarea{

width:100%;

padding:15px;

margin-bottom:15px;

border:1px solid #ddd;

border-radius:8px;

}

.review-form button{

padding:15px 35px;

background:#088178;

color:white;

border:none;

border-radius:8px;

cursor:pointer;

}

/* ==========================
RELATED PRODUCTS
========================== */

#related-products{

padding:80px 40px;

background:#f8f8f8;

text-align:center;

}

#related-products h2{

margin-bottom:40px;

font-size:32px;

color:#222;

}

.related-container{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

gap:25px;

}

.related-card{

background:#fff;

padding:20px;

border-radius:12px;

box-shadow:0 8px 20px rgba(0,0,0,.08);

transition:.3s;

}

.related-card:hover{

transform:translateY(-8px);

}

.related-card img{

width:100%;

height:220px;

object-fit:cover;

border-radius:10px;

}

.related-card h3{

margin:15px 0 10px;

}

.related-card h4{

color:#088178;

margin-bottom:15px;

}

.related-card button{

width:100%;

padding:12px;

border:none;

background:#088178;

color:white;

border-radius:8px;

cursor:pointer;

font-size:15px;

}

.related-card button:hover{

background:#06665f;

}

/* DELIVERY INFO */

.delivery-info{

margin-top:35px;

padding:20px;

background:#f4fdfc;

border-left:5px solid #088178;

border-radius:8px;

}

.delivery-info h3{

margin-bottom:15px;

}

.delivery-info ul{

padding-left:20px;

line-height:2;

}

/* ==========================
QUICK VIEW POPUP
========================== */

.quick-view{

display:none;

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.6);

justify-content:center;

align-items:center;

z-index:99999;

}

.quick-content{

background:#fff;

width:420px;

max-width:90%;

padding:30px;

border-radius:15px;

text-align:center;

position:relative;

animation:popup .3s ease;

}

.quick-content img{

width:220px;

height:220px;

object-fit:cover;

border-radius:10px;

margin-bottom:20px;

}

.close-popup{

position:absolute;

top:15px;

right:20px;

font-size:32px;

cursor:pointer;

}

.quick-content h2{

margin-bottom:10px;

}

.quick-content h3{

color:#088178;

margin-bottom:20px;

}

.quick-content button{

width:100%;

padding:15px;

background:#088178;

color:white;

border:none;

border-radius:8px;

cursor:pointer;

}

@keyframes popup{

from{

transform:scale(.8);

opacity:0;

}

to{

transform:scale(1);

opacity:1;

}

}

/* ==========================
WISHLIST
========================== */

#wishlist{

padding:80px;

}

.wishlist-item{

display:flex;

align-items:center;

background:#fff;

padding:20px;

margin-bottom:20px;

border-radius:12px;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.wishlist-item img{

width:130px;

height:130px;

object-fit:cover;

border-radius:10px;

margin-right:20px;

}

.wishlist-details{

flex:1;

}

.wishlist-details h3{

margin-bottom:10px;

}

.wishlist-details h4{

color:#088178;

margin-bottom:20px;

}

.wishlist-buttons{

display:flex;

gap:15px;

flex-wrap:wrap;

}

.cart-btn{

background:#088178;

color:white;

border:none;

padding:12px 25px;

border-radius:8px;

cursor:pointer;

}

.remove-btn{

background:#e63946;

color:white;

border:none;

padding:12px 25px;

border-radius:8px;

cursor:pointer;

}

@media(max-width:799px){

.wishlist-item{

flex-direction:column;

text-align:center;

}

.wishlist-item img{

margin-right:0;

margin-bottom:20px;

}

}

/* ==========================
SHOPPING CART
========================== */

#cart-page{

padding:80px 40px;

}

.cart-container{

overflow-x:auto;

}

table{

width:100%;

border-collapse:collapse;

background:#fff;

}

table th{

background:#088178;

color:#fff;

padding:15px;

}

table td{

padding:20px;

border-bottom:1px solid #eee;

}

.cart-product{

display:flex;

align-items:center;

gap:15px;

}

.cart-product img{

width:90px;

height:90px;

object-fit:cover;

border-radius:8px;

}

.quantity-box{

display:flex;

align-items:center;

gap:10px;

}

.quantity-box button{

width:35px;

height:35px;

border:none;

background:#088178;

color:white;

cursor:pointer;

border-radius:6px;

}

.quantity-box input{

width:45px;

text-align:center;

border:none;

font-weight:bold;

}

.delete-btn{

background:#dc3545;

color:white;

border:none;

padding:10px 15px;

border-radius:6px;

cursor:pointer;

}

.cart-summary{

margin-top:40px;

max-width:350px;

margin-left:auto;

padding:25px;

background:#f8f8f8;

border-radius:12px;

}

.cart-summary h2{

margin-bottom:20px;

}

.cart-summary p{

margin:15px 0;

}

.checkout-btn{

width:100%;

padding:15px;

background:#088178;

color:white;

border:none;

border-radius:8px;

cursor:pointer;

font-size:16px;

margin-top:20px;

}

/* ==========================
BLOG PAGE
========================== */

#blog-header{

background:#031f1d;

color:white;

text-align:center;

padding:100px 20px;

}

#blog-header h1{

font-size:48px;

margin-bottom:15px;

}

#blog{

padding:80px 40px;

}

.blog-box{

display:flex;

align-items:center;

width:100%;

margin-bottom:80px;

position:relative;

gap:40px;

}

.blog-img{

width:50%;

}

.blog-img img{

width:100%;

height:320px;

object-fit:cover;

border-radius:12px;

}

.blog-details{

width:50%;

}

.blog-details h2{

margin-bottom:20px;

}

.blog-details p{

line-height:1.8;

color:#555;

margin-bottom:20px;

}

.blog-details a{

color:#088178;

font-weight:bold;

text-decoration:none;

}

.blog-box h1{

position:absolute;

top:-40px;

left:0;

font-size:70px;

color:#e6e6e6;

z-index:-1;

}

@media(max-width:799px){

.blog-box{

flex-direction:column;

}

.blog-img,

.blog-details{

width:100%;

}

.blog-box h1{

font-size:50px;

}

}

/* ==========================
BLOG POST
========================== */

#post-header img{

width:100%;

height:500px;

object-fit:cover;

}

#post-content{

max-width:900px;

margin:auto;

padding:70px 20px;

}

#post-content h1{

font-size:42px;

margin-bottom:25px;

}

.post-info{

display:flex;

flex-wrap:wrap;

gap:25px;

margin-bottom:35px;

color:#666;

}

#post-content p{

line-height:2;

margin-bottom:25px;

color:#444;

}

#post-content ul{

padding-left:25px;

line-height:2;

margin-bottom:30px;

}

blockquote{

background:#f8f8f8;

padding:25px;

border-left:5px solid #088178;

font-style:italic;

margin:40px 0;

border-radius:8px;

}

.share-post{

margin-top:50px;

}

.share-post a{

display:inline-flex;

justify-content:center;

align-items:center;

width:45px;

height:45px;

background:#088178;

color:white;

border-radius:50%;

margin-right:10px;

text-decoration:none;

}

#comments{

max-width:900px;

margin:auto;

padding:40px 20px 80px;

}

#comments form input,

#comments form textarea{

width:100%;

padding:15px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:8px;

}

#comments button{

padding:15px 35px;

background:#088178;

color:white;

border:none;

border-radius:8px;

cursor:pointer;

}

@media(max-width:799px){

#post-header img{

height:260px;

}

#post-content h1{

font-size:30px;

}

.post-info{

gap:15px;

}

}

/* ==========================
ABOUT PAGE
========================== */

#about-header{

background:#088178;

color:white;

text-align:center;

padding:100px 20px;

}

#about-header h1{

font-size:50px;

margin-bottom:15px;

}

#about-main{

display:flex;

align-items:center;

gap:50px;

padding:80px 40px;

}

.about-image{

flex:1;

}

.about-image img{

width:100%;

border-radius:15px;

}

.about-text{

flex:1;

}

.about-text h2{

margin-bottom:20px;

font-size:38px;

}

.about-text p{

line-height:2;

color:#555;

margin-bottom:20px;

}

#mission{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

padding:40px;

background:#f8f8f8;

}

.mission-box{

background:white;

padding:30px;

text-align:center;

border-radius:12px;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.mission-box i{

font-size:40px;

color:#088178;

margin-bottom:20px;

}

#why-us{

padding:80px 40px;

text-align:center;

}

.why-container{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:30px;

margin-top:40px;

}

.why-box{

padding:30px;

background:white;

border-radius:12px;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.why-box i{

font-size:38px;

color:#088178;

margin-bottom:15px;

}

#team{

padding:80px 40px;

background:#f8f8f8;

text-align:center;

}

.team-container{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

margin-top:40px;

}

.team-box{

background:white;

padding:25px;

border-radius:12px;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.team-box img{

width:150px;

height:150px;

border-radius:50%;

object-fit:cover;

margin-bottom:20px;

}

@media(max-width:799px){

#about-main{

flex-direction:column;

padding:40px 20px;

}

#about-header h1{

font-size:36px;

}

}

/* ==========================
FAQ PAGE
========================== */

#faq-header{

background:#088178;

color:#fff;

text-align:center;

padding:100px 20px;

}

#faq{

max-width:900px;

margin:auto;

padding:70px 20px;

}

.faq-item{

margin-bottom:20px;

border-radius:10px;

overflow:hidden;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.faq-question{

width:100%;

padding:20px;

background:#fff;

border:none;

display:flex;

justify-content:space-between;

align-items:center;

font-size:18px;

cursor:pointer;

font-weight:600;

}

.faq-answer{

display:none;

padding:20px;

background:#f8f8f8;

line-height:1.8;

color:#555;

}

.faq-item.active .faq-answer{

display:block;

}

#popular-brands{
    text-align:center;
    padding:40px 5%;
}

.brands-container{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
    margin-top:30px;
}

.brand-card{
    width:150px;
    background:#fff;
    border-radius:12px;
    padding:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.brand-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.brand-card img{
    width:80px;
    height:80px;
    object-fit:contain;
}

.brand-card a{
    text-decoration:none;
    color:#222;
}

.brand-card h4{
    margin-top:15px;
    font-size:16px;
}


/* Fix category images size */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.category-grid a {
  text-decoration: none;
  text-align: center;
}

.category-grid img {
  width: 100%;
  height: 200px;        /* Force same height for all */
  object-fit: cover;    /* Crop nicely instead of stretching */
  border-radius: 10px;
  margin-bottom: 10px;
}

.category-grid h3 {
  font-size: 16px;
  color: #222;
}

/* CHECKOUT PRODUCTS */

.checkout-product{

display:flex;
align-items:center;
justify-content:space-between;
gap:15px;
padding:15px 0;
border-bottom:1px solid #ddd;

}


.checkout-product img{

width:70px;
height:70px;
object-fit:cover;
border-radius:8px;

}


.checkout-product h4{

margin-bottom:5px;

}


.payment-method{

margin:25px 0;

}


.payment-method label{

display:block;
padding:12px;
background:#f8f8f8;
margin-bottom:10px;
border-radius:8px;
cursor:pointer;

}


.payment-method input{

margin-right:10px;

}

/* FIX CART SUMMARY OVERLAP */

.cart-summary{

    margin-top:40px;
    padding:30px;
    background:#f8f8f8;
    border-radius:12px;
    position:relative;
}


.cart-summary p,
.cart-summary h2{

    margin-bottom:20px;

}


.cart-summary .checkout-btn{

    display:block;
    margin-top:25px;
    position:relative;
}

#products{
    width:95%;
    margin:40px auto;
}

#products h2{
    text-align:center;
    margin-bottom:30px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.product-card{
    background:#fff;
    border-radius:15px;
    padding:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    text-align:center;
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
}

.product-card h3{
    margin:10px 0;
}

.product-card p{
    font-weight:bold;
    color:#00a9b8;
}

.product-card select{
    width:100%;
    padding:8px;
    margin:10px 0;
}

.buttons{
    display:flex;
    gap:10px;
}

.buy-now,
.add-cart{
    flex:1;
    border:none;
    padding:10px;
    border-radius:8px;
    cursor:pointer;
    color:#fff;
}

.buy-now{
    background:#ff6600;
}

.add-cart{
    background:#00a9b8;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
    padding:20px;
}

.product{
    background:#fff;
    border-radius:10px;
    padding:10px;
    text-align:center;
    box-shadow:0 2px 8px rgba(0,0,0,.1);
}

.product img:first-child{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:8px;
}

.product h3{
    font-size:16px;
    margin:10px 0;
}

.product button{
    width:100%;
    padding:10px;
    border:none;
    border-radius:6px;
    background:#ff6600;
    color:#fff;
    cursor:pointer;
}

.product button:hover{
    background:#e65c00;
}


.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:20px;
padding:20px;
}

.product{
background:#fff;
border-radius:10px;
padding:15px;
text-align:center;
box-shadow:0 2px 8px rgba(0,0,0,.1);
transition:.3s;
}

.product:hover{
transform:translateY(-5px);
}

.product img{
width:150px;
height:150px;
object-fit:cover;
border-radius:8px;
}

.product h3{
font-size:16px;
margin:10px 0;
}

.product h2{
color:#ff4949;
font-size:20px;
}

.product button{
width:100%;
padding:10px;
border:none;
background:#088178;
color:#fff;
border-radius:6px;
cursor:pointer;
font-weight:bold;
}

.product button:hover{
background:#066d67;
}



@media (max-width: 768px) {

    #product1 .pro-container{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    #product1 .pro{
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 6px;
    }

    #product1 .pro img{
        width: 100%;
        height: 90px;
        object-fit: cover;
    }

    #product1 .pro h5{
        font-size: 11px;
    }

    #product1 .pro h4{
        font-size: 12px;
    }

    #product1 .pro button{
        font-size: 10px;
        padding: 5px;
    }
}

/* Featured Products */
#product1 .pro-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
}

#product1 .product{
    width:100%;
    min-width:0;
    margin:0;
    padding:6px;
    box-sizing:border-box;
}

#product1 .product img{
    width:100%;
    height:90px;
    object-fit:cover;
    border-radius:8px;
}

#product1 .product h3{
    font-size:11px;
}

#product1 .product h2{
    font-size:12px;
}

#product1 .product button{
    width:100%;
    font-size:10px;
    padding:5px;
}

@media (max-width:768px){
    #product1 .pro-container{
        grid-template-columns:repeat(3,1fr);
    }
}

.arrival-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin-top:40px;
}

.arrival-box{
    width:100%;
    padding:8px;
    box-sizing:border-box;
}

.arrival-box img{
    width:100%;
    height:90px;
    object-fit:cover;
    border-radius:8px;
}

.arrival-box h4{
    font-size:11px;
}

.arrival-box h3{
    font-size:12px;
}

.arrival-box button{
    width:100%;
    font-size:10px;
    padding:5px;
}

#popular-categories{
    padding:30px 10px;
    text-align:center;
    background:#fff;
}

#popular-categories .category-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

#popular-categories .category-card,
#popular-categories .category-grid a{
    display:block;
    width:100%;
}

#popular-categories .category-grid img{
    width:100%;
    height:90px;
    object-fit:cover;
    border-radius:8px;
}

#popular-categories .category-grid h3{
    font-size:11px;
    margin-top:5px;
}

.brands-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin-top:30px;
}

.brand-card{
    width:100%;
    text-align:center;
}

.brand-card img{
    width:100%;
    height:80px;
    object-fit:contain;
    border-radius:8px;
}

.brand-card h4{
    font-size:11px;
    margin-top:5px;
}

.slide img{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:10px;
}


#flash-sale{
    padding:30px 10px;
    background:#f7f7f7;
}

#flash-sale .flash-products{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

#flash-sale .product{
    width:100%;
    padding:8px;
    box-sizing:border-box;
    text-align:center;
}

#flash-sale .product img{
    width:100%;
    height:90px;
    object-fit:cover;
    border-radius:8px;
}

#flash-sale .product h3{
    font-size:11px;
}

#flash-sale .product h4{
    font-size:12px;
}

#flash-sale .product button{
    width:100%;
    padding:5px;
    font-size:10px;
}



#promo{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    padding:20px 10px;
}

#promo .promo-box{
    width:100%;
    margin:0;
    padding:10px;
    box-sizing:border-box;
}

#reviews{
    padding:30px 10px;
    text-align:center;
    background:#f8f8f8;
}

#reviews .review-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

#reviews .review{
    width:100%;
    padding:8px;
    box-sizing:border-box;
}

#reviews .review img{
    width:100%;
    height:80px;
    object-fit:cover;
    border-radius:50%;
}

#reviews .review h3{
    font-size:11px;
}

#reviews .review p{
    font-size:10px;
}

#related-products{
    padding:30px 10px;
    background:#f8f8f8;
    text-align:center;
}

#related-products .related-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

#related-products .related-card{
    width:100%;
    padding:8px;
    box-sizing:border-box;
}

#related-products .related-card img{
    width:100%;
    height:90px;
    object-fit:cover;
    border-radius:8px;
}

#related-products .related-card h3{
    font-size:11px;
}

#related-products .related-card h4{
    font-size:12px;
}

#related-products .related-card button{
    width:100%;
    padding:5px;
    font-size:10px;
}

#feature{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    padding:20px 10px;
}

#feature .fe-box{
    width:100%;
    padding:8px;
    box-sizing:border-box;
    text-align:center;
}

#feature .fe-box img{
    width:100%;
    height:80px;
    object-fit:cover;
    border-radius:8px;
}

#feature .fe-box h6{
    font-size:11px;
    margin-top:5px;
}

#header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 15px;
    background:#fff;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    left:0;
    width:100%;
    box-sizing:border-box;
    z-index:999;
    gap:10px;
}

#header .logo img{
    width:120px;
    height:auto;
}

#navbar{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

#navbar li{
    list-style:none;
}

#navbar a{
    font-size:13px;
    padding:6px 8px;
    text-decoration:none;
}

@media (max-width:768px){
    #header{
        padding:8px 10px;
    }

    #header .logo img{
        width:90px;
    }

    #navbar{
        gap:6px;
    }

    #navbar a{
        font-size:11px;
        padding:4px 6px;
    }
}

/* Prevent horizontal scrolling */
html, body{
    width:100%;
    overflow-x:hidden;
}

*{
    box-sizing:border-box;
}

img{
    max-width:100%;
    height:auto;
}

#shop-products{
    padding:20px 10px;
}

#shop-products .product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

#shop-products .product-card,
#shop-products .product{
    width:100%;
    box-sizing:border-box;
    padding:6px;
}

#shop-products .product-card img,
#shop-products .product img{
    width:100%;
    height:90px;
    object-fit:cover;
    border-radius:8px;
}

#shop-products .product-card h3,
#shop-products .product h3{
    font-size:11px;
}

#shop-products .product-card h4,
#shop-products .product h4{
    font-size:12px;
}

#shop-products .product-card button,
#shop-products .product button{
    width:100%;
    padding:5px;
    font-size:10px;
}


.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    padding:10px;
    width:100%;
    box-sizing:border-box;
}

.product-grid .product{
    width:100%;
    min-width:0;
}

.product-grid img{
    width:100%;
    height:110px;
    object-fit:cover;
    border-radius:8px;
}





.product-grid {

display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
padding:20px;

}


.card {

border:1px solid #ddd;
padding:15px;
border-radius:10px;
text-align:center;

}


.card img {

width:100%;
height:250px;
object-fit:cover;

}