*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f5f5;
    color:#111;
    overflow-x:hidden;
}

/* ================= HEADER ================= */

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 7%;
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 15px rgba(0,0,0,0.2);
}

.logo a{
    color:#004a57;
    font-size:32px;
    font-weight:700;
    text-decoration:none;
    letter-spacing:1px;
}

.logo span{
    color:black;
}

/* NAVBAR */

.navbar{
    display:flex;
    align-items:center;
    gap:15px;
}

.navbar a{
    color:black;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    padding:10px 16px;
    border-radius:8px;
    transition:0.3s;
}

.navbar a:hover{
    background:#004a57;
    color:#fff;
    transform:translateY(-2px);
}

/* SEARCH BOX */

.search-box{
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    margin-left:10px;
}

.search-box input{
    border:none;
    outline:none;
    padding:10px 15px;
    width:180px;
    font-size:14px;
}

.search-box button{
    border:none;
    background:#004a57;
    color:#fff;
    padding:10px 16px;
    cursor:pointer;
    transition:0.3s;
}

.search-box button:hover{
    background:#004a57;
}

/* MOBILE MENU */

.menu-toggle{
    display:none;
    font-size:28px;
    color:#000000;
    cursor:pointer;
}

/* ================= HERO ================= */

.hero {
    height: 90vh;
    background: 
    linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ),
    /* css folder se bahar nikle, fir seedhe images folder mein gaye */
    url('../images/banner2.jpg');

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}
.hero-content{
    max-width:700px;
    color:#fff;
}

.hero-content h1{
    font-size:65px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-content h1 span{
    color:#004a57;
}

.hero-content p{
    font-size:20px;
    margin-bottom:35px;
    line-height:1.7;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.hero-btn{
    display:inline-block;
    padding:14px 30px;
    background:#004a57;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.hero-btn:hover{
    transform:translateY(-3px);
    background:#fff;
    color:#111;
}

.secondary-btn{
    background:transparent;
    border:2px solid #fff;
}

.secondary-btn:hover{
    background:#fff;
    color:#111;
}

/* ================= COMMON ================= */

.container{
    padding:50px;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
    font-size:35px;
    font-weight:700;
    color:#004a57;
}

/* ================= PRODUCTS ================= */

.products{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.product-link{
    text-decoration:none;
    color:inherit;
}

.card{
position:relative;
overflow:hidden;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,0.18);
}

.card img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.5s;
}

.card:hover img{
    transform:scale(1.08);
}

.card-body{
    padding:18px;
}

.card-body h3{
    font-size:18px;
    margin-bottom:10px;
    color:#111;
    line-height:1.4;
}

.price{
    font-size:20px;
    font-weight:700;
    color:#004a57;
    margin-bottom:15px;
}

/* PRODUCT ICONS */

.card-icons{

position:absolute;

top:15px;

right:-70px;

opacity:0;

visibility:hidden;

transition:0.4s ease;

z-index:20;

}

.card:hover .card-icons{

right:15px;

opacity:1;

visibility:visible;

}

.card-icons a{

width:42px;

height:42px;

display:flex;

align-items:center;

justify-content:center;

background:#fff;

border-radius:50%;

text-decoration:none;

color:#004a57;

font-size:18px;

box-shadow:0 4px 15px rgba(0,0,0,0.15);

transition:0.3s;

}

.card-icons a:hover{

background:#004a57;

color:#fff;

transform:scale(1.1);

}

/* BUTTON */

.btn{
    display:inline-block;
    background:#111;
    color:#fff;
    padding:10px 20px;
    text-decoration:none;
    border-radius:6px;
    transition:0.3s;
    border:none;
    cursor:pointer;
}

.btn:hover{
    background:#004a57;
}

/* ================= CATEGORIES ================= */

.categories-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.category-card{
    position:relative;
    height:220px;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
}

.category-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.category-card:hover img{
    transform:scale(1.08);
}

.category-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.35);
    z-index:1;
}

.category-card h3{
    position:absolute;
    bottom:20px;
    left:20px;
    color:#fff;
    font-size:24px;
    z-index:2;
    font-weight:600;
}

/* ================= PRODUCT DETAILS ================= */

.product-details{
    display:flex;
    gap:50px;
    background:#fff;
    padding:30px;
    border-radius:12px;
}

.product-image img{
    width:400px;
    border-radius:10px;
}

.product-info{
    flex:1;
}

.product-info h2{
    margin-bottom:20px;
    font-size:35px;
}

.product-info p{
    margin:20px 0;
    line-height:1.7;
}

/* ================= AUTH ================= */

.auth-box{
    width:400px;
    margin:auto;
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.auth-box h2{
    margin-bottom:20px;
    text-align:center;
}

.auth-box input,
textarea,
select{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:5px;
    outline:none;
}

/* ================= REVIEW ================= */

.review-box{
    background:#f1f1f1;
    padding:15px;
    border-radius:10px;
    margin-top:15px;
}

/* ALERT */

.alert{
    background:#ffecec;
    color:red;
    padding:15px;
    margin-bottom:20px;
    border-radius:5px;
    font-weight:bold;
}

/* ================= FOOTER ================= */

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:20px;
    margin-top:50px;
}

/* ================= MOBILE ================= */

@media screen and (max-width:768px){

    .header{
        padding:15px;
    }

    .menu-toggle{
        display:block;
    }

    .navbar{
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#111;
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
        display:none;
        gap:15px;
    }

    .navbar.active{
        display:flex;
    }

    .navbar a{
        width:100%;
        border-bottom:1px solid rgba(255,255,255,0.1);
        padding:12px;
        color:white;
    }

    .search-box{
        width:100%;
        margin-left:0;
    }

    .search-box input{
        width:100%;
    }

    .hero{
        height:52vh;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-btn{
        padding:12px 24px;
        font-size:14px;
    }

    .container{
        padding:15px;
    }

    .products{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .card img{
        height:170px;
    }

    .card-body{
        padding:10px;
    }

    .card-body h3{
        font-size:14px;
    }

    .price{
        font-size:15px;
    }

    .btn{
        padding:8px 12px;
        font-size:12px;
    }

    .categories-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .category-card{
        height:160px;
    }

    .category-card h3{
        font-size:18px;
        bottom:12px;
        left:12px;
    }

    .product-details{
        flex-direction:column;
    }

    .product-image img{
        width:100%;
    }

    .auth-box{
        width:100%;
    }

}
/* ================= MY ACCOUNT ================= */

.account-section{

padding:50px 7%;

}

.account-container{

display:flex;

gap:30px;

}

/* SIDEBAR */

.account-sidebar{

width:280px;

background:#fff;

padding:30px;

border-radius:20px;

box-shadow:0 5px 20px rgba(0,0,0,0.08);

height:fit-content;

}

.account-profile{

text-align:center;

margin-bottom:30px;

}

.profile-circle{

width:90px;

height:90px;

background:#004a57;

color:#fff;

font-size:35px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

margin:auto;

margin-bottom:15px;

}

.account-profile h3{

font-size:24px;

margin-bottom:5px;

}

.account-profile p{

font-size:14px;

color:#777;

word-break:break-word;

}

/* MENU */

.sidebar-menu{

display:flex;

flex-direction:column;

gap:12px;

}

.sidebar-menu a{

padding:14px 18px;

border-radius:10px;

text-decoration:none;

color:#111;

font-weight:500;

transition:0.3s;

background:#f5f5f5;

}

.sidebar-menu a:hover,

.active-link{

background:#004a57 !important;

color:#fff !important;

}

/* CONTENT */

.account-content{

flex:1;

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 5px 20px rgba(0,0,0,0.08);

}

.account-content h2{

margin-bottom:30px;

font-size:32px;

}

/* ================= MY ACCOUNT ================= */

.account-page{

padding:50px 7%;

background:#f5f5f5;

min-height:100vh;

}

.account-container{

display:grid;

grid-template-columns:280px 1fr;

gap:30px;

}

.account-sidebar{

background:#111;

padding:30px;

border-radius:18px;

color:#fff;

height:fit-content;

}

.account-user{

text-align:center;

margin-bottom:30px;

}

.account-avatar{

width:90px;

height:90px;

background:#004a57;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:35px;

margin:auto;

margin-bottom:15px;

}

.account-user h3{

font-size:24px;

margin-bottom:8px;

}

.account-user p{

font-size:14px;

color:#bbb;

}

.account-menu{

display:flex;

flex-direction:column;

gap:10px;

}

.account-menu a{

color:#fff;

text-decoration:none;

padding:14px 16px;

border-radius:10px;

transition:0.3s;

font-size:15px;

}

.account-menu a i{

margin-right:10px;

}

.account-menu a:hover,

.account-menu a.active{

background:#004a57;

}

.account-content{

background:#fff;

padding:30px;

border-radius:18px;

}

.account-content h2{

font-size:34px;

margin-bottom:30px;

}

.dashboard-cards{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

margin-bottom:40px;

}

.dashboard-card{

background:#111;

color:#fff;

padding:30px;

border-radius:18px;

text-align:center;

transition:0.3s;

}

.dashboard-card:hover{

transform:translateY(-5px);

}

.dashboard-card i{

font-size:35px;

color:#004a57;

margin-bottom:15px;

}

.dashboard-card h3{

font-size:32px;

margin-bottom:10px;

}

.recent-orders{

overflow-x:auto;

}

.recent-orders table{

width:100%;

border-collapse:collapse;

}

.recent-orders th{

background:#111;

color:#fff;

padding:15px;

text-align:left;

}

.recent-orders td{

padding:15px;

border-bottom:1px solid #eee;

}

.status{

background:#004a57;

color:#fff;

padding:6px 12px;

border-radius:30px;

font-size:13px;

}

/* MOBILE */

@media screen and (max-width:768px){

.account-container{

grid-template-columns:1fr;

}

.dashboard-cards{

grid-template-columns:1fr;

}

.account-content{

padding:20px;

}

}
/* ================= CART COUNT ================= */

.cart-link{

position:relative;

}

.cart-count{

position:absolute;

top:-8px;

right:-10px;

background:#004a57;

color:#fff;

width:20px;

height:20px;

border-radius:50%;

font-size:11px;

display:flex;

align-items:center;

justify-content:center;

font-weight:600;

}
/* ================= AUTH PREMIUM ================= */

.auth-page{

min-height:100vh;

display:flex;

align-items:center;

justify-content:center;

background:

linear-gradient(

rgba(0,0,0,0.6),

rgba(0,0,0,0.6)

),

url('https://images.unsplash.com/photo-1496747611176-843222e1e57c?q=80&w=1470&auto=format&fit=crop');

background-size:cover;

background-position:center;

padding:40px 20px;

}

.auth-container{

width:100%;

max-width:1100px;

display:grid;

grid-template-columns:1fr 1fr;

background:#fff;

border-radius:25px;

overflow:hidden;

box-shadow:0 10px 40px rgba(0,0,0,0.2);

}

.auth-left{

background:#111;

color:#fff;

padding:60px;

display:flex;

flex-direction:column;

justify-content:center;

}

.auth-left h1{

font-size:55px;

margin-bottom:20px;

}

.auth-left span{

color:#004a57;

}

.auth-left p{

font-size:18px;

line-height:1.8;

color:#ccc;

}

.premium-auth{

width:100%;

padding:60px 40px;

box-shadow:none;

border-radius:0;

}

.premium-auth h2{

font-size:35px;

margin-bottom:30px;

text-align:center;

}

.input-box{

position:relative;

margin-bottom:20px;

}

.input-box i{

position:absolute;

top:50%;

left:15px;

transform:translateY(-50%);

color:#888;

}

.input-box input{

width:100%;

padding:14px 14px 14px 45px;

border:1px solid #ddd;

border-radius:10px;

font-size:15px;

outline:none;

transition:0.3s;

}

.input-box input:focus{

border-color:#004a57;

}

.auth-btn{

width:100%;

padding:14px;

border:none;

background:#004a57;

color:#fff;

font-size:16px;

font-weight:600;

border-radius:10px;

cursor:pointer;

transition:0.3s;

}

.auth-btn:hover{

background:#111;

}

.auth-switch{

margin-top:20px;

text-align:center;

font-size:15px;

}

.auth-switch a{

color:#004a57;

font-weight:600;

text-decoration:none;

}

/* MOBILE */

@media screen and (max-width:768px){

.auth-container{

grid-template-columns:1fr;

}

.auth-left{

display:none;

}

.premium-auth{

padding:40px 25px;

}

}
/* ================= TOAST ================= */

.toast-message{

position:fixed;

top:20px;

right:20px;

background:#111;

color:#fff;

padding:15px 22px;

border-left:5px solid #004a57;

border-radius:10px;

font-size:15px;

font-weight:500;

z-index:99999;

box-shadow:0 10px 25px rgba(0,0,0,0.2);

opacity:0;

visibility:hidden;

transform:translateY(-20px);

transition:0.4s;

}

.show-toast{

opacity:1;

visibility:visible;

transform:translateY(0);

animation:hideToast 4s forwards;

}

@keyframes hideToast{

0%{

opacity:1;

}

80%{

opacity:1;

}

100%{

opacity:0;

visibility:hidden;

}

}
/* ================= ADMIN LOGIN ================= */

.admin-auth-page{

background:

linear-gradient(

rgba(0,0,0,0.7),

rgba(0,0,0,0.7)

),

url('https://images.unsplash.com/photo-1556740749-887f6717d7e4?q=80&w=1470&auto=format&fit=crop');

background-size:cover;

background-position:center;

}

.admin-left{

background:#0f0f0f;

}

.admin-left h1{

font-size:60px;

}

.admin-left span{

color:#004a57;

}
/* ================= SHOP FILTER PREMIUM ================= */

.shop-filter{

margin-bottom:40px;

}

.shop-filter form{

display:flex;

align-items:center;

gap:20px;

flex-wrap:wrap;

background:#ffffff;

padding:25px;

border-radius:18px;

box-shadow:0 10px 30px rgba(0,0,0,0.08);

}

/* SELECT BOX */

.shop-filter select{

flex:1;

min-width:250px;

padding:14px 18px;

border:2px solid #eee;

border-radius:12px;

font-size:15px;

font-weight:500;

background:#f8fafc;

outline:none;

transition:0.3s;

cursor:pointer;

}

.shop-filter select:focus{

border-color:#004a57;

background:#fff;

}

/* FILTER BUTTON */

.shop-filter .btn{

padding:14px 30px;

border:none;

border-radius:12px;

background:#004a57;

color:#000;

font-weight:600;

font-size:15px;

cursor:pointer;

transition:0.3s;

}

.shop-filter .btn:hover{

background:#004a57;

transform:translateY(-2px);

}

/* MOBILE */

@media(max-width:768px){

.shop-filter form{

flex-direction:column;

align-items:stretch;

}

.shop-filter select{

width:100%;

}

.shop-filter .btn{

width:100%;

}

}
/* ================= SEARCH PAGE ================= */

.search-heading{

margin-bottom:30px;

}

.search-heading span{

color:#004a57;

}

/* NO PRODUCT */

.no-product{

width:100%;

text-align:center;

padding:80px 20px;

background:#fff;

border-radius:20px;

box-shadow:0 5px 25px rgba(0,0,0,0.08);

}

.no-product i{

font-size:70px;

color:#004a57;

margin-bottom:20px;

}

.no-product h2{

font-size:35px;

margin-bottom:10px;

}

.no-product p{

color:#666;

font-size:16px;

}
/* ================= PRODUCT PAGE PREMIUM ================= */

.product-details{

display:flex;

gap:50px;

background:#fff;

padding:40px;

border-radius:25px;

box-shadow:0 10px 40px rgba(0,0,0,0.08);

align-items:flex-start;

}

/* IMAGE */

.product-image{

flex:1;

}

.product-image-box{

background:#f8fafc;

padding:25px;

border-radius:25px;

overflow:hidden;

}

.product-image-box img{

width:100%;

border-radius:20px;

transition:0.4s;

}

.product-image-box:hover img{

transform:scale(1.05);

}

/* INFO */

.product-info{

flex:1;

}

.product-badge{

display:inline-block;

background:#004a57;

color:#111;

padding:8px 18px;

border-radius:50px;

font-size:13px;

font-weight:600;

margin-bottom:18px;

}

.product-info h2{

font-size:42px;

margin-bottom:20px;

line-height:1.3;

}

.product-info .price{

font-size:34px;

font-weight:700;

margin-bottom:20px;

}

.product-info p{

font-size:16px;

line-height:1.8;

color:#555;

margin-bottom:18px;

}

/* BUTTONS */

.product-info .btn{

padding:14px 28px;

border-radius:12px;

font-size:15px;

font-weight:600;

}

/* REVIEW FORM */

.product-info textarea{

min-height:120px;

border-radius:15px;

padding:15px;

}

/* REVIEW CARD */

.review-card{

background:#f8fafc;

padding:25px;

border-radius:18px;

margin-top:20px;

border:1px solid #eee;

}

.review-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:12px;

}

.review-top h4{

font-size:18px;

}

.review-stars{

font-size:18px;

color:#004a57;

}

.review-text{

line-height:1.7;

color:#555;

}

/* MOBILE */

@media(max-width:768px){

.product-details{

flex-direction:column;

padding:20px;

}

.product-info h2{

font-size:30px;

}

.product-info .price{

font-size:26px;

}

}
/* ================= PREMIUM FOOTER ================= */

.premium-footer{

background:#0f172a;

color:#fff;

margin-top:80px;

padding-top:70px;

}

/* CONTAINER */

.footer-container{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:40px;

padding:0 7% 60px;

}

/* FOOTER BOX */

.footer-box h2{

font-size:34px;

margin-bottom:20px;

}

.footer-box h2 span{

color:#004a57;

}

.footer-box h3{

font-size:22px;

margin-bottom:20px;

position:relative;

}

.footer-box h3::after{

content:'';

position:absolute;

left:0;

bottom:-8px;

width:50px;

height:3px;

background:#004a57;

border-radius:10px;

}

.footer-box p{

color:#cbd5e1;

line-height:1.8;

font-size:15px;

}

.footer-box a{

display:block;

color:#cbd5e1;

text-decoration:none;

margin-bottom:14px;

transition:0.3s;

font-size:15px;

}

.footer-box a:hover{

color:#004a57;

padding-left:5px;

}

/* SOCIAL */

.footer-socials{

display:flex;

gap:15px;

margin-top:20px;

}

.footer-socials a{

width:45px;

height:45px;

display:flex;

align-items:center;

justify-content:center;

background:#1e293b;

border-radius:50%;

font-size:18px;

transition:0.3s;

}

.footer-socials a:hover{

background:#004a57;

color:#111;

transform:translateY(-4px);

}

/* COPYRIGHT */

.footer-bottom{

border-top:1px solid rgba(255,255,255,0.08);

text-align:center;

padding:22px;

font-size:14px;

color:#94a3b8;

}

/* MOBILE */

@media(max-width:768px){

.footer-container{

grid-template-columns:1fr;

padding:0 20px 50px;

gap:35px;

}

.footer-box h2{

font-size:28px;

}

}
/* =========================
   PREMIUM CART PAGE
========================= */

.cart-page{
    padding:60px 0;
}

.cart-title{
    text-align:center;
    font-size:48px;
    font-weight:700;
    margin-bottom:50px;
    color:#111;
}

.cart-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
    align-items:start;
}

/* CART CARD */

.cart-card{
    background:#fff;
    border-radius:22px;
    padding:25px;
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.cart-card:hover{
    transform:translateY(-5px);
}

.cart-image img{
    width:140px;
    height:140px;
    object-fit:cover;
    border-radius:18px;
}

.cart-info{
    flex:1;
}

.cart-info h3{
    font-size:24px;
    margin-bottom:10px;
    color:#111;
}

.cart-price{
    color:#004a57;
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

/* QTY */

.qty-box{
    display:flex;
    align-items:center;
    gap:10px;
}

.qty-box button{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
    background:#111;
    color:#fff;
    font-size:18px;
    cursor:pointer;
}

.qty-box input{
    width:60px;
    text-align:center;
    height:38px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}

/* REMOVE */

.cart-remove a{
    color:#004a57;
    font-size:22px;
}

/* SUMMARY */

.cart-summary{
    background:#fff;
    padding:30px;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    position:sticky;
    top:120px;
}

.cart-summary h3{
    font-size:28px;
    margin-bottom:25px;
    color:#111;
}

.summary-line{
    display:flex;
    justify-content:space-between;
    margin-bottom:18px;
    font-size:18px;
}

.summary-line.total{
    font-size:24px;
    font-weight:700;
    border-top:1px solid #ddd;
    padding-top:20px;
    margin-top:20px;
}

/* COUPON */

.coupon-box{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.coupon-box input{
    flex:1;
    height:50px;
    border-radius:12px;
    border:1px solid #ddd;
    padding:0 15px;
    font-size:16px;
}

/* CHECKOUT BUTTON */

.checkout-btn{
    display:block;
    width:100%;
    text-align:center;
    background:linear-gradient(135deg,#004a57,white);
    color:#fff;
    padding:16px;
    border-radius:14px;
    margin-top:25px;
    font-size:18px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

.checkout-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(255,152,0,0.3);
}

/* MOBILE */

@media(max-width:991px){

    .cart-wrapper{
        grid-template-columns:1fr;
    }

    .cart-card{
        flex-direction:column;
        text-align:center;
    }

}
.cart-link{
position:relative;
}

.cart-count{

position:absolute;

top:-8px;

right:-10px;

background:#004a57;

color:#fff;

font-size:12px;

font-weight:600;

width:20px;

height:20px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

}
/* ================= WHY CHOOSE ================= */

.why-choose{

padding:90px 0;

background:#f8fafc;

margin-top:80px;

}

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:50px;

}

.why-box{

background:#fff;

padding:40px 30px;

border-radius:24px;

text-align:center;

transition:0.3s;

box-shadow:0 10px 30px rgba(0,0,0,0.06);

}

.why-box:hover{

transform:translateY(-10px);

}

.why-icon{

width:80px;

height:80px;

margin:auto;

background:linear-gradient(135deg,#004a57,white);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:25px;

}

.why-icon i{

font-size:34px;

color:#fff;

}

.why-box h3{

font-size:24px;

margin-bottom:15px;

color:#111;

}

.why-box p{

color:#666;

line-height:1.8;

font-size:15px;

}

/* MOBILE */

@media(max-width:991px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.why-grid{

grid-template-columns:1fr;

}

}
/* ================= TRENDING SECTION ================= */

.trending-section{

padding:90px 0;

}

.trending-grid{

display:grid;

grid-template-columns:2fr 1fr;

gap:25px;

}

.trend-side{

display:grid;

gap:25px;

}

.trend-card{

position:relative;

overflow:hidden;

border-radius:28px;

height:300px;

box-shadow:0 15px 40px rgba(0,0,0,0.1);

}

.large-card{

height:625px;

}

.trend-card img{

width:100%;

height:100%;

object-fit:cover;

transition:0.5s;

}

.trend-card:hover img{

transform:scale(1.08);

}

.trend-overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:linear-gradient(to top,rgba(0,0,0,0.7),rgba(0,0,0,0.2));

display:flex;

flex-direction:column;

justify-content:flex-end;

padding:40px;

color:#fff;

}

.trend-overlay span{

font-size:14px;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:12px;

color:#004a57;

}

.trend-overlay h2{

font-size:48px;

margin-bottom:20px;

line-height:1.2;

}

.trend-overlay h3{

font-size:30px;

margin-bottom:18px;

}

.trend-overlay a{

display:inline-block;

padding:14px 28px;

background:#fff;

color:#111;

border-radius:40px;

text-decoration:none;

font-weight:600;

width:max-content;

transition:0.3s;

}

.trend-overlay a:hover{

background:#004a57;

color:#fff;

}

/* MOBILE */

@media(max-width:991px){

.trending-grid{

grid-template-columns:1fr;

}

.large-card{

height:400px;

}

}

@media(max-width:768px){

.trend-card{

height:250px;

}

.large-card{

height:300px;

}

.trend-overlay h2{

font-size:34px;

}

}
/* ================= STATS SECTION ================= */

.stats-section{

padding:80px 0;

background:linear-gradient(135deg,#111,#1c1c1c);

margin-top:80px;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.stats-box{

text-align:center;

padding:40px 20px;

background:rgba(255,255,255,0.05);

border:1px solid rgba(255,255,255,0.08);

border-radius:24px;

backdrop-filter:blur(10px);

transition:0.3s;

background-color: white;

}

.stats-box:hover{

transform:translateY(-10px);

background:rgba(255,255,255,0.08);

}

.stats-box h2{

font-size:52px;

font-weight:700;

color:#004a57;

margin-bottom:15px;

}

.stats-box p{

font-size:18px;

color:#004a57;

letter-spacing:0.5px;

}

/* MOBILE */

@media(max-width:991px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.stats-grid{

grid-template-columns:1fr;

}

}
/* ================= TESTIMONIALS ================= */

.testimonial-section{

padding:90px 0;

background:#f8fafc;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:50px;

}

.testimonial-card{

background:#fff;

padding:35px;

border-radius:26px;

box-shadow:0 15px 40px rgba(0,0,0,0.06);

transition:0.3s;

}

.testimonial-card:hover{

transform:translateY(-10px);

}

.stars{

font-size:22px;

margin-bottom:20px;

}

.testimonial-card p{

font-size:16px;

line-height:1.9;

color:#555;

margin-bottom:30px;

}

.testimonial-user{

display:flex;

align-items:center;

gap:15px;

}

.testimonial-user img{

width:60px;

height:60px;

border-radius:50%;

object-fit:cover;

}

.testimonial-user h4{

font-size:18px;

margin-bottom:5px;

color:#111;

}

.testimonial-user span{

font-size:14px;

color:#888;

}

/* MOBILE */

@media(max-width:991px){

.testimonial-grid{

grid-template-columns:1fr;

}

}
/* ================= NEWSLETTER ================= */

.newsletter-section{

padding:100px 0;

background:linear-gradient(135deg,#111,#1e1e1e);

}

.newsletter-box{

max-width:850px;

margin:auto;

text-align:center;

color:#fff;

}

.newsletter-box span{

display:inline-block;

padding:10px 22px;

background:rgba(255,255,255,0.08);

border-radius:40px;

font-size:14px;

letter-spacing:1px;

margin-bottom:25px;

}

.newsletter-box h2{

font-size:52px;

line-height:1.3;

margin-bottom:20px;

}

.newsletter-box p{

font-size:17px;

color:#cfcfcf;

margin-bottom:40px;

line-height:1.8;

}

.newsletter-form{

display:flex;

align-items:center;

justify-content:center;

gap:15px;

max-width:700px;

margin:auto;

}

.newsletter-form input{

flex:1;

height:65px;

border:none;

outline:none;

padding:0 25px;

border-radius:60px;

font-size:16px;

}

.newsletter-form button{

height:65px;

padding:0 35px;

border:none;

border-radius:60px;

background:#004a57;

color:#fff;

font-size:16px;

font-weight:600;

cursor:pointer;

transition:0.3s;

}

.newsletter-form button:hover{

background:#004a57;

transform:translateY(-3px);

}

/* MOBILE */

@media(max-width:768px){

.newsletter-box h2{

font-size:34px;

}

.newsletter-form{

flex-direction:column;

}

.newsletter-form input,

.newsletter-form button{

width:100%;

}

}
