/*==================================================
    WEE ALL CAPITOL
    Premium Landing Page
    Clean Version
==================================================*/


/*==================================================
    GOOGLE FONT
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==================================================
    CSS VARIABLES
==================================================*/
:root{

    --primary:#D71920;
    --primary-dark:#B31217;

    --white:#FFFFFF;
    --black:#181818;

    --text:#444444;
    --light:#777777;

    --bg:#F8F9FC;
    --border:#ECECEC;

    --radius:22px;

    --shadow:
        0 18px 45px rgba(0,0,0,.08);

    --transition:.35s ease;

}


/*==================================================
    RESET
==================================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    color:var(--black);

    background:var(--white);

    line-height:1.5;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;

}

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    color:inherit;
    text-decoration:none;
}

ul,
ol{
    list-style:none;
}

button,
input,
textarea,
select{
    font:inherit;
}

button{
    cursor:pointer;
    border:none;
    background:none;
}

input,
textarea{
    outline:none;
}


/*==================================================
    COMMON LAYOUT
==================================================*/

.container{

    width:min(92%,1400px);

    margin-inline:auto;

}


/*==================================================
    COMMON UTILITIES
==================================================*/

.section-head{

    max-width:720px;

    margin:0 auto 60px;

    text-align:center;

}

.section-head h2{

    font-size:42px;

    font-weight:800;

    color:var(--black);

    margin-bottom:15px;

}

.section-head p{

    font-size:18px;

    line-height:30px;

    color:var(--light);

}

.tag,
.section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 24px;

    margin-bottom:20px;

    border-radius:50px;

    background:#FFF2F3;

    border:1px solid rgba(215,25,32,.12);

    color:var(--primary);

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}


/*==================================================
    SCROLLBAR
==================================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:50px;

}

/*==================================================
                HEADER
==================================================*/

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    background:rgba(255,255,255,.98);

    backdrop-filter:blur(18px);

    border-bottom:1px solid #ececec;

    box-shadow:0 6px 20px rgba(0,0,0,.06);

    z-index:1000;

    transition:all .3s ease;

}


/*==================================================
    NAVBAR
==================================================*/

.navbar{

    height:88px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:25px;

}


/*==================================================
    LOGO
==================================================*/

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    width:190px;

}


/*==================================================
    DESKTOP NAVIGATION
==================================================*/

.desktop-nav{

    flex:1;

    display:flex;

    justify-content:center;

}

.desktop-nav ul{

    display:flex;

    align-items:center;

    gap:40px;

}

.desktop-nav a{

    position:relative;

    font-size:16px;

    font-weight:600;

    color:#222;

    transition:var(--transition);

}

.desktop-nav a:hover,
.desktop-nav a.active{

    color:var(--primary);

}

.desktop-nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:var(--transition);

}

.desktop-nav a:hover::after,
.desktop-nav a.active::after{

    width:100%;

}


/*==================================================
    NAV RIGHT
==================================================*/

.nav-right{

    display:flex;

    align-items:center;

    gap:14px;

    

}




/*==================================================
    WISHLIST
==================================================*/

.wishlist-nav{

    position:relative;

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    color:#222;

    transition:var(--transition);

}

.wishlist-nav:hover{

    background:#f5f5f5;

}

#wishlistCount{

    position:absolute;

    top:-5px;

    right:-5px;

    width:18px;

    height:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:11px;

}


/*==================================================
    NAV BUTTONS
==================================================*/

.cart-btn{

    position:relative;

    height:52px;

    padding:0 22px;

    display:flex;

    align-items:center;

    gap:12px;

    border:2px solid var(--primary);

    border-radius:50px;

    background:#fff;

    color:var(--primary);

    font-weight:600;

    transition:var(--transition);

}

.cart-btn:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-3px);

}


/*==================================================
    CART BADGE
==================================================*/

.cart-badge{

    width:30px;

    height:30px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20%;

    background:var(--primary);

    color:#fff;

    font-size:12px;

    font-weight:700;

    transition:var(--transition);

}

.cart-btn:hover .cart-badge{

    background:#fff;

    color:var(--primary);

}


/*==================================================
    USER DROPDOWN
==================================================*/

.user-dropdown{

    position:relative;

}

.dropdown-menu{

    position:absolute;

    top:60px;

    right:0;

    width:230px;

    display:none;

    overflow:hidden;

    border-radius:14px;

    background:#fff;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.dropdown-menu a{

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 18px;

    transition:var(--transition);

}

.dropdown-menu a:hover{

    background:#f7f7f7;

}


/*==================================================
    HAMBURGER
==================================================*/

.hamburger{

    display:none;

    width:46px;

    height:46px;

    align-items:center;

    justify-content:center;

    font-size:28px;

    color:#222;

}


/*==================================================
    MOBILE MENU
==================================================*/

.mobile-menu{

    position:fixed;

    top:0;

    right:-320px;

    width:300px;

    max-width:85%;

    height:100vh;

    padding:90px 25px 30px;

    overflow-y:auto;

    background:#fff;

    box-shadow:-8px 0 30px rgba(0,0,0,.15);

    transition:right var(--transition);

    z-index:9999;

}

.mobile-menu.active{

    right:0;

}

.mobile-menu a{

    display:block;

    padding:14px 0;

    font-weight:600;

    color:#222;

    border-bottom:1px solid #ececec;

}

.mobile-menu hr{

    margin:18px 0;

    border:none;

    border-top:1px solid #ddd;

}

/*==================================================
    HERO SECTION
==================================================*/

.hero{

    position:relative;

    display:flex;
    align-items:center;

    min-height:100vh;

    padding:110px 0 220px;

    overflow:visible;

    background:url("../images/hero-bg.png") no-repeat right center;
    background-size:contain;

}


/*==================================================
    HERO OVERLAY
==================================================*/

.hero-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(255,255,255,.96) 0%,
        rgba(255,255,255,.88) 28%,
        rgba(255,255,255,.45) 50%,
        rgba(255,255,255,0) 70%
    );

    z-index:1;

}


/*==================================================
    HERO CONTENT
==================================================*/

.hero .container{

    position:relative;
    z-index:5;

}

.hero-content{

    position:relative;
    z-index:5;

    width:650px;
    max-width:100%;

}


/*==================================================
    HERO HEADING
==================================================*/

.hero-content h1{

    margin-bottom:18px;

    font-size:66px;
    font-weight:800;
    line-height:1.05;

}

.hero-content h1 span{

    color:var(--primary);

}


/*==================================================
    HERO SUB TITLE
==================================================*/

.hero-content h3{

    margin-bottom:18px;

    font-size:24px;
    font-weight:600;

    color:#555;

}


/*==================================================
    DECORATIVE LINE
==================================================*/

.small-line{

    width:90px;
    height:5px;

    margin-bottom:28px;

    border-radius:30px;

    background:var(--primary);

}


/*==================================================
    HERO DESCRIPTION
==================================================*/

.hero-content p{

    max-width:560px;

    margin-bottom:28px;

    font-size:17px;
    line-height:30px;

    color:#555;

}


/*==================================================
    RATING
==================================================*/

.rating{

    display:flex;
    align-items:center;

    gap:16px;

    margin-bottom:28px;

}

.stars{

    display:flex;
    gap:4px;

}

.stars i{

    color:#FFC107;

}

.rating span{

    font-size:15px;

    color:#666;

}


/*==================================================
    HERO FEATURES
==================================================*/

.hero-features{

    display:grid;

    grid-template-columns:repeat(2,max-content);

    column-gap:40px;
    row-gap:18px;

    margin-bottom:35px;

}

.hero-features div{

    display:flex;
    align-items:center;

    gap:12px;

    font-weight:600;

}

.hero-features i{

    color:#16A34A;

}


/*==================================================
    HERO BUTTONS
==================================================*/

.hero-buttons{

    display:flex;
    gap:18px;

}

.btn-primary,
.btn-secondary{

    display:flex;
    align-items:center;
    justify-content:center;

    gap:12px;

    width:190px;
    height:58px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    color:#fff;

    background:linear-gradient(135deg,#D71920,#F44336);

    box-shadow:0 18px 35px rgba(215,25,32,.22);

}

.btn-primary:hover{

    transform:translateY(-5px);

}

.btn-secondary{

    background:#fff;

    border:2px solid #ECECEC;

}

.btn-secondary:hover{

    color:var(--primary);

    border-color:var(--primary);

}

.btn-secondary i{

    display:flex;
    align-items:center;
    justify-content:center;

    width:34px;
    height:34px;

    border-radius:50%;

    color:#fff;

    background:var(--primary);

}


/*==================================================
    FLOATING BUBBLES
==================================================*/

.bubble{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.55);

    backdrop-filter:blur(5px);

    animation:float 5s ease-in-out infinite;

}

.bubble1{

    width:18px;
    height:18px;

    top:22%;
    left:12%;

}

.bubble2{

    width:30px;
    height:30px;

    top:32%;
    right:15%;

}

.bubble3{

    width:15px;
    height:15px;

    bottom:18%;
    right:28%;

}

.bubble4{

    width:22px;
    height:22px;

    bottom:28%;
    left:32%;

}

.bubble5{

    width:14px;
    height:14px;

    top:60%;
    right:10%;

}

@keyframes float{

    0%,
    100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

}


/*==================================================
    HERO STAT CARD
==================================================*/

.hero-card{

    position:absolute;

    left:50%;
    bottom:-40px;

    transform:translateX(-50%);

    width:92%;
    max-width:1320px;

    display:grid;
    grid-template-columns:repeat(5,1fr);

    background:#fff;

    border-radius:26px;

    box-shadow:0 30px 70px rgba(0,0,0,.08);

    z-index:10;

}


/*==================================================
    HERO CARD ITEM
==================================================*/

.card-item{

    position:relative;

    display:flex;
    align-items:center;

    gap:18px;

    padding:28px 24px;

    transition:var(--transition);

}

.card-item:not(:last-child)::after{

    content:"";

    position:absolute;

    top:50%;
    right:0;

    transform:translateY(-50%);

    width:1px;
    height:60%;

    background:#ECECEC;

}

.card-item:hover{

    background:#FFF8F8;

}

.card-item i{

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    width:58px;
    height:58px;

    border-radius:18px;

    font-size:22px;

    color:var(--primary);

    background:#FFF2F3;

    transition:var(--transition);

}

.card-item:hover i{

    color:#fff;

    background:var(--primary);

}

.card-item h3{

    margin-bottom:4px;

    font-size:18px;
    font-weight:700;

    color:#111;

}

.card-item p{

    font-size:14px;

    color:#777;

}

/*==================================================
    FEATURES SECTION
==================================================*/

.features{

    padding:90px 0 10px;

    background:#fff;

}


/*==================================================
    FEATURE GRID
==================================================*/

.feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}


/*==================================================
    FEATURE CARD
==================================================*/

.feature-box{

    padding:45px 35px;

    background:#fff;

    border:1px solid #F0F0F0;
    border-radius:28px;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    transition:var(--transition);

}

.feature-box:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.10);

}


/*==================================================
    FEATURE ICON
==================================================*/

.feature-box i{

    display:flex;
    align-items:center;
    justify-content:center;

    width:72px;
    height:72px;

    margin-bottom:30px;

    border-radius:22px;

    font-size:28px;

    color:var(--primary);

    background:#FFF2F3;

    transition:var(--transition);

}

.feature-box:hover i{

    color:#fff;

    background:var(--primary);

}


/*==================================================
    FEATURE TITLE
==================================================*/

.feature-box h3{

    margin-bottom:18px;

    font-size:30px;
    font-weight:700;

    color:#111;

}


/*==================================================
    FEATURE DESCRIPTION
==================================================*/

.feature-box p{

    font-size:17px;
    line-height:30px;

    color:#666;

}

/*==================================================
    HOW IT WORKS
==================================================*/

.how-it-works{

    padding:90px 0;

    background:#F8F9FC;

}


/*==================================================
    STEPS GRID
==================================================*/

.steps{

    position:relative;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}


/* Connector Line */

.steps::before{

    content:"";

    position:absolute;

    top:55px;
    left:16%;

    width:68%;
    height:3px;

    background:#E8E8E8;

    z-index:1;

}


/*==================================================
    STEP CARD
==================================================*/

.step{

    position:relative;

    z-index:2;

    padding:50px 35px;

    text-align:center;

    background:#fff;

    border-radius:28px;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    transition:var(--transition);

}

.step:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.10);

}


/*==================================================
    STEP NUMBER
==================================================*/

.step-number{

    display:flex;
    align-items:center;
    justify-content:center;

    width:54px;
    height:54px;

    margin:0 auto 25px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:18px;
    font-weight:700;

}


/*==================================================
    STEP ICON
==================================================*/

.step-icon{

    display:flex;
    align-items:center;
    justify-content:center;

    width:90px;
    height:90px;

    margin:0 auto 30px;

    border-radius:50%;

    background:#FFF2F3;

    transition:var(--transition);

}

.step:hover .step-icon{

    background:var(--primary);

}

.step-icon i{

    font-size:34px;

    color:var(--primary);

    transition:var(--transition);

}

.step:hover .step-icon i{

    color:#fff;

}


/*==================================================
    STEP CONTENT
==================================================*/

.step h3{

    margin-bottom:18px;

    font-size:26px;
    font-weight:700;

}

.step p{

    font-size:17px;
    line-height:30px;

    color:#666;

}

/*==================================================
    SECTION TITLE
==================================================*/

.section-title{

    text-align:center;

    margin-bottom:40px;

}

.section-title h2{

    display:inline-block;

    position:relative;

    font-size:32px;

    font-weight:700;

    color:#222;

    padding-bottom:12px;

}

.section-title h2::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    width:70px;

    height:4px;

    background:var(--primary);

    border-radius:50px;

}

/*==================================================
    PRODUCTS SECTION
==================================================*/

.products{

    padding:35px 0 90px;

    background:var(--bg);

}

.products .container{

    width:min(1400px,95%);

    margin:auto;

}


/*==================================================
    PRODUCT GRID
==================================================*/

.product-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:28px;

}

.best-sellers-section{
    margin-top:40px;
}


/*==================================================
    PRODUCT CARD V2
==================================================*/

.product-card{

    position:relative;

    display:flex;

    flex-direction:column;

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    overflow:hidden;

    transition:.3s ease;

    height:100%;

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.12);

    border-color:#dddddd;

}

/*==================================================
    PRODUCT IMAGE
==================================================*/

.product-image{

    position:relative;

    height:220px;

    background:#fafafa;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px;

    overflow:hidden;

    

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:.35s ease;

}

.product-card:hover .product-image img{

    transform:scale(1.08);

}

/*==================================================
    DISCOUNT BADGE
==================================================*/

.discount-badge{

    position:absolute;

    top:15px;

    left:15px;

    background:#e11d48;

    color:#fff;

    font-size:12px;

    font-weight:700;

    padding:6px 10px;

    border-radius:8px;

    letter-spacing:.3px;

    z-index:6;

}

/*==================================================
    PRODUCT ACTION BUTTONS
==================================================*/

.wishlist-btn,
.quick-view-btn{

    position:absolute;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#fff;

    box-shadow:0 8px 18px rgba(0,0,0,.10);

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.25s;

    z-index:5;

}

.wishlist-btn{

    position:absolute;

    top:15px;

    right:15px;

}

.quick-view-btn{

    position:absolute;

    top:65px;

    right:15px;

}

.wishlist-btn:hover,
.quick-view-btn:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-2px) scale(1.08);

    box-shadow:0 10px 20px rgba(0,0,0,.18);

}

/*==================================================
    PRODUCT INFO
==================================================*/

.product-info{

    display:flex;

    flex-direction:column;

    padding:22px;

    flex:1;

}

.product-title{

    font-size:18px;

    font-weight:700;

    color:#222;

    line-height:1.4;

    margin-bottom:10px;

    min-height:50px;

}

/*==================================================
    PRODUCT RATING
==================================================*/

.product-rating{

    display:flex;

    align-items:center;

    gap:8px;

    margin-bottom:12px;

}

.stars{

    color:#f59e0b;

    font-size:14px;

    letter-spacing:2px;

}

.rating-count{

    font-size:13px;

    color:#666;

    font-weight:500;

}

.product-description{

    font-size:14px;

    color:#666;

    line-height:1.6;

    margin-bottom:18px;

    display:-webkit-box;

    -webkit-box-orient:vertical;

    line-clamp:2;

    -webkit-line-clamp:2;

    overflow:hidden;

    min-height:46px;

}

/*==================================================
    PRICE
==================================================*/

.price{

    display:flex;

    align-items:center;

    gap:12px;

    margin-top:auto;

    margin-bottom:18px;

}

.offer-price{

    font-size:24px;

    font-weight:700;

    color:var(--primary);

}

.mrp{

    font-size:15px;

    color:#999;

    text-decoration:line-through;

}

/*==================================================
    ADD TO CART BUTTON
==================================================*/

.product-btn{

    width:100%;

    height:50px;

    border:none;

    border-radius:12px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    transition:.3s ease;

}

.product-btn:hover{

    transform:translateY(-2px);

    filter:brightness(1.05);

}


/*==================================================
    VIEW ALL BUTTON
==================================================*/

.products-btn{

    margin-top:40px;

    text-align:center;

}

.view-products{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 26px;

    border:2px solid var(--primary);

    border-radius:50px;

    color:var(--primary);

    font-weight:600;

    transition:var(--transition);

}

.view-products:hover{

    background:var(--primary);

    color:#fff;

} i have like this

/*==================================================
    TESTIMONIALS SECTION
==================================================*/

.testimonials{

    padding:90px 0;

    background:#fff;

}


/*==================================================
    TESTIMONIAL GRID
==================================================*/

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

}


/*==================================================
    TESTIMONIAL CARD
==================================================*/

.testimonial-card{

    padding:24px;

    background:#fff;

    border:1px solid var(--border);
    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.testimonial-card:hover{

    transform:translateY(-6px);

}


/*==================================================
    TESTIMONIAL HEADER
==================================================*/

.testimonial-top{

    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:14px;

}


/*==================================================
    USER
==================================================*/

.user{

    display:flex;
    align-items:center;

    gap:12px;

}

.avatar{

    display:flex;
    align-items:center;
    justify-content:center;

    width:42px;
    height:42px;

    border-radius:50%;

    background:#FFF2F3;

    border:1px solid rgba(215,25,32,.15);

    color:var(--primary);

    font-weight:700;

}


/*==================================================
    USER DETAILS
==================================================*/

.user h4{

    font-size:15px;
    font-weight:700;

    color:var(--black);

}

.user span{

    font-size:12px;

    color:var(--light);

}


/*==================================================
    RATING
==================================================*/

.testimonial-card .stars{

    font-size:14px;

    color:#FFC107;

}


/*==================================================
    TESTIMONIAL TEXT
==================================================*/

.testimonial-card p{

    font-size:14px;
    line-height:1.6;

    color:var(--light);

}

/*==================================================
    BEFORE & AFTER SECTION
==================================================*/

.before-after{

    padding:90px 0;

    background:var(--bg);

}


/*==================================================
    BEFORE & AFTER GRID
==================================================*/

.ba-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

}


/*==================================================
    BEFORE & AFTER CARD
==================================================*/

.ba-card{

    padding:20px;

    background:#fff;

    border:1px solid var(--border);
    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.ba-card:hover{

    transform:translateY(-6px);

}


/*==================================================
    CARD TITLE
==================================================*/

.ba-card h3{

    margin-bottom:15px;

    font-size:18px;
    font-weight:700;

    color:var(--black);

}


/*==================================================
    IMAGE GRID
==================================================*/

.ba-images{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:10px;

    margin-bottom:12px;

}


/*==================================================
    BEFORE / AFTER IMAGE BOX
==================================================*/

.ba-box{

    position:relative;

    overflow:hidden;

    border:1px solid var(--border);
    border-radius:12px;

}

.ba-box img{

    display:block;

    width:100%;
    height:140px;

    object-fit:cover;

}


/*==================================================
    IMAGE LABEL
==================================================*/

.ba-box span{

    position:absolute;

    top:8px;
    left:8px;

    padding:4px 8px;

    background:var(--primary);

    border-radius:12px;

    color:#fff;

    font-size:10px;
    font-weight:600;

}


/*==================================================
    DESCRIPTION
==================================================*/

.ba-card p{

    font-size:13px;
    line-height:1.5;

    color:var(--light);

}

/*==================================================
    FAQ SECTION
==================================================*/

.faq{

    padding:90px 0;

    background:#fff;

}


/*==================================================
    FAQ GRID
==================================================*/

.faq-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}


/*==================================================
    FAQ ITEM
==================================================*/

.faq-item{

    padding:22px;

    background:#fff;

    border:1px solid var(--border);
    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.faq-item:hover{

    transform:translateY(-5px);

}


/*==================================================
    QUESTION
==================================================*/

.faq-item h3{

    position:relative;

    padding-left:18px;

    margin-bottom:10px;

    font-size:17px;
    font-weight:700;

    color:var(--black);

}


/*==================================================
    RED DOT ACCENT
==================================================*/

.faq-item h3::before{

    content:"";

    position:absolute;

    top:7px;
    left:0;

    width:8px;
    height:8px;

    border-radius:50%;

    background:var(--primary);

}


/*==================================================
    ANSWER
==================================================*/

.faq-item p{

    font-size:14px;
    line-height:1.6;

    color:var(--light);

}

/*==================================================
    FINAL CTA SECTION
==================================================*/

.final-cta{

    padding:90px 0;

    background:linear-gradient(135deg,#D71920,#B31217);

}


/*==================================================
    CTA BOX
==================================================*/

.cta-box{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:30px;

    padding:40px;

    background:#fff;

    border-radius:var(--radius);

    box-shadow:0 25px 60px rgba(0,0,0,.25);

}


/*==================================================
    CTA CONTENT
==================================================*/

.cta-content h2{

    margin-bottom:12px;

    font-size:34px;
    font-weight:800;

    color:var(--black);

}

.cta-content p{

    margin-bottom:18px;

    font-size:16px;
    line-height:1.6;

    color:var(--light);

}


/*==================================================
    CTA FEATURES
==================================================*/

.cta-features{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    margin-bottom:25px;

}

.cta-features div{

    display:flex;
    align-items:center;

    gap:8px;

    font-size:14px;
    font-weight:600;

    color:var(--black);

}

.cta-features i{

    color:var(--primary);

}


/*==================================================
    CTA BUTTONS
==================================================*/

.cta-buttons{

    display:flex;

    gap:15px;

}

.cta-btn{

    display:inline-flex;
    align-items:center;

    gap:10px;

    padding:14px 26px;

    border-radius:50px;

    font-weight:600;

    text-decoration:none;

    transition:var(--transition);

}

.cta-btn.primary{

    color:#fff;

    background:linear-gradient(135deg,#D71920,#F44336);

    box-shadow:0 15px 35px rgba(215,25,32,.25);

}

.cta-btn.primary:hover{

    transform:translateY(-5px);

}

.cta-btn.secondary{

    background:#fff;

    border:2px solid var(--border);

    color:var(--black);

}

.cta-btn.secondary:hover{

    border-color:var(--primary);

    color:var(--primary);

}


/*==================================================
    CTA HIGHLIGHT
==================================================*/

.cta-highlight{

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:25px;

    text-align:center;

    color:#fff;

    background:linear-gradient(135deg,#D71920,#B31217);

    border-radius:var(--radius);

}


/*==================================================
    OFFER BADGE
==================================================*/

.offer-badge{

    display:inline-block;

    margin-bottom:15px;

    padding:6px 12px;

    background:#fff;

    border-radius:20px;

    color:var(--primary);

    font-size:12px;
    font-weight:700;

}


/*==================================================
    HIGHLIGHT CONTENT
==================================================*/

.cta-highlight h3{

    margin-bottom:10px;

    font-size:28px;
    font-weight:800;

}

.cta-highlight p{

    margin-bottom:15px;

    font-size:14px;

    opacity:.9;

}


/*==================================================
    COUNTDOWN TIMER
==================================================*/

.timer{

    padding:10px;

    background:rgba(255,255,255,.15);

    border-radius:10px;

    font-size:13px;

}

/*==================================================
    FOOTER
==================================================*/

.footer{

    margin-top:100px;
    padding:80px 0 30px;

    background:linear-gradient(
        135deg,
        #07142A,
        #10294B,
        #0F172A
    );

    color:#CBD5E1;

}

.footer a{

    color:#CBD5E1;

    transition:var(--transition);

}

.footer a:hover{

    color:var(--primary);

}


/*==================================================
    FOOTER TOP
==================================================*/

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:50px;

    padding-bottom:60px;

    border-bottom:1px solid rgba(255,255,255,.08);

}


/*==================================================
    COMPANY
==================================================*/

.footer-logo{

    width:180px;

    margin-bottom:25px;

}

.footer-about p{

    margin-bottom:25px;

    line-height:1.9;

    color:#94A3B8;

}


/*==================================================
    SOCIAL
==================================================*/

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    display:flex;
    align-items:center;
    justify-content:center;

    width:45px;
    height:45px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    font-size:18px;

}

.footer-social a:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-6px);

    box-shadow:0 0 25px rgba(0,153,255,.45);

}


/*==================================================
    FOOTER COLUMNS
==================================================*/

.footer-column h3{

    position:relative;

    margin-bottom:25px;

    color:#fff;

    font-size:20px;

}

.footer-column h3::after{

    content:"";

    display:block;

    width:45px;
    height:3px;

    margin-top:10px;

    background:var(--primary);

    border-radius:20px;

    transition:var(--transition);

}

.footer-column:hover h3::after{

    width:90px;

}

.footer-column ul{

    list-style:none;

}

.footer-column ul li{

    margin-bottom:15px;

}

.footer-column ul li a{

    color:#94A3B8;

}

.footer-column ul li a:hover{

    padding-left:8px;

    color:#fff;

}


/*==================================================
    CONTACT
==================================================*/

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:15px;

    line-height:1.7;

    color:#94A3B8;

}

.footer-contact i{

    margin-top:4px;

    color:var(--primary);

    font-size:18px;

}


/*==================================================
    NEWSLETTER
==================================================*/

.footer-newsletter{

    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:30px;

    margin:60px 0;

    padding:35px 40px;

    background:linear-gradient(
        135deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.03)
    );

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

}

.footer-newsletter h3{

    margin-bottom:8px;

    color:#fff;

}

.footer-newsletter p{

    color:#94A3B8;

}

.footer-newsletter form{

    display:flex;

    width:500px;
    max-width:100%;

}

.footer-newsletter input{

    flex:1;

    height:56px;

    padding:0 20px;

    border:none;
    outline:none;

    border-radius:10px 0 0 10px;

    font-size:15px;

}

.footer-newsletter button{

    width:170px;

    border:none;

    background:var(--primary);

    color:#fff;

    border-radius:0 10px 10px 0;

    font-weight:600;

    cursor:pointer;

    transition:var(--transition);

}

.footer-newsletter button:hover{

    opacity:.9;

}


/*==================================================
    PAYMENT
==================================================*/

.footer-payment{

    display:flex;

    align-items:center;
    justify-content:space-between;

    padding-bottom:35px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.footer-payment span{

    color:#fff;

    font-weight:600;

}

.payment-icons{

    display:flex;

    gap:18px;

}

.payment-icons i{

    color:#fff;

    font-size:42px;

    transition:var(--transition);

}

.payment-icons i:hover{

    color:var(--primary);

    transform:translateY(-4px);

}


/*==================================================
    FOOTER BOTTOM
==================================================*/

.footer-bottom{

    display:flex;

    align-items:center;
    justify-content:space-between;

    padding-top:30px;

}

.footer-bottom p{

    color:#94A3B8;

    font-size:15px;

}

.footer-bottom strong{

    color:#fff;

}


/*==================================================
    TRUST BAR
==================================================*/

.footer-trust{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin:60px 0;

}

.trust-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:25px;

    background:rgba(255,255,255,.05);

    border-radius:18px;

    transition:var(--transition);

}

.trust-item:hover{

    background:var(--primary);

    transform:translateY(-8px);

}

.trust-item i{

    color:var(--primary);

    font-size:34px;

    transition:var(--transition);

}

.trust-item:hover i{

    color:#fff;

}

.trust-item h4{

    margin-bottom:5px;

    color:#fff;

}

.trust-item span{

    color:#CBD5E1;

    font-size:14px;

}







/* =====================================
   Products Search Bar
===================================== */

.products-search{
    width:100%;
    display:flex;
    justify-content:center;
    margin-bottom:40px;
}

.search-wrapper{
    position:relative;
    width:100%;
    max-width:560px;
}

.search-wrapper i{
    position:absolute;
    left:20px;
    top:50%;
    transform:translateY(-50%);

    color:#777;
    font-size:18px;
}

.search-wrapper input{

    width:100%;
    height:58px;

    padding:0 22px 0 52px;

    border-radius:50px;

    border:1px solid rgba(0,0,0,0.10);

    background:#ffffff;

    font-size:16px;

    color:var(--text-color);

    box-shadow:
        0 8px 25px rgba(0,0,0,0.06);

    transition:.3s ease;
}


.search-wrapper input::placeholder{
    color:#999;
}


.search-wrapper input:focus{

    outline:none;

    border-color:#000;

    box-shadow:
        0 10px 30px rgba(0,0,0,.10),
        0 0 0 3px rgba(0,0,0,.08);

}




/*==================================================
        SEARCH EMPTY STATE
==================================================*/

.search-empty{

    display:none;

    text-align:center;

    padding:50px 20px;

    color:var(--text);

}


.search-empty i{

    font-size:55px;

    color:#ddd;

    margin-bottom:15px;

}


.search-empty h3{

    font-size:24px;

    margin-bottom:8px;

    color:#222;

}


.search-empty p{

    color:var(--light);

    font-size:15px;

}

/*==================================================
        LIVE SEARCH SUGGESTIONS
==================================================*/

.search-suggestions{

    position:absolute;

    top:calc(100% + 8px);

    left:0;

    width:100%;

    background:#fff;

    border:1px solid #e5e5e5;

    border-radius:12px;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

    display:none;

    z-index:9999;

    max-height:350px;

    overflow-y:auto;

}

.search-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px 15px;

    cursor:pointer;

    transition:.2s;

}

.search-item:hover{

    background:#f8f8f8;

}

.search-item img{

    width:48px;

    height:48px;

    object-fit:cover;

    border-radius:8px;

    flex-shrink:0;

}

.search-info{

    flex:1;

}

.search-name{

    font-size:14px;

    font-weight:600;

    color:#222;

}

.search-price{

    font-size:13px;

    color:#666;

    margin-top:3px;

}

.search-view-all{

    padding:14px;

    text-align:center;

    font-weight:600;

    border-top:1px solid #eee;

    cursor:pointer;

    background:#fafafa;

}

.search-view-all:hover{

    background:#f2f2f2;

}

.search-no-results{

    padding:18px;

    text-align:center;

    color:#777;

}


/*==================================================
            QUICK VIEW MODAL
==================================================*/


.quick-view-overlay{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.65);

    opacity:0;
    visibility:hidden;

    transition:.35s ease;

    z-index:10000;

}



.quick-view-modal{

    position:fixed;

    top:50%;
    left:50%;

    width:min(900px,92%);

    max-height:90vh;

    overflow-y:auto;

    background:#fff;

    border-radius:24px;

    transform:translate(-50%,-50%) scale(.96);

    opacity:0;
    visibility:hidden;

    transition:.35s ease;

    box-shadow:
    0 25px 70px rgba(0,0,0,.25);

    z-index:10001;

}



.quick-open .quick-view-overlay{

    opacity:1;

    visibility:visible;

}



.quick-open .quick-view-modal{

    opacity:1;

    visibility:visible;

    transform:translate(-50%,-50%) scale(1);

}



/*==================================================
            QUICK VIEW CONTENT
==================================================*/


.quick-view-content{

    display:flex;

    align-items:center;

    gap:40px;

    padding:40px;

}



/*==================================================
            QUICK VIEW IMAGE
==================================================*/


.quick-image{

    width:45%;

    display:flex;

    justify-content:center;

    align-items:center;

}



.quick-image img{

    width:100%;

    max-width:320px;

    transition:.35s ease;

}



.quick-image img:hover{

    transform:scale(1.06);

}



/*==================================================
            QUICK VIEW DETAILS
==================================================*/


.quick-details{

    flex:1;

}



.quick-rating{

    display:inline-flex;

    align-items:center;

    background:#fff7df;

    color:#f5a623;

    padding:6px 14px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:15px;

}



.quick-details h2{

    font-size:32px;

    line-height:1.3;

    color:#222;

    margin-bottom:18px;

}



.quick-price{

    font-size:34px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:20px;

}



.quick-details p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}



.quick-features{

    list-style:none;

    padding:0;

    margin:0 0 30px;

}



.quick-features li{

    color:#444;

    margin-bottom:12px;

}



/*==================================================
            QUICK CART BUTTON
==================================================*/


.quick-cart-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:14px;

    background:var(--primary);

    color:#fff;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.3s ease;

}



.quick-cart-btn:hover{

    transform:translateY(-2px);

}



/*==================================================
            QUICK CLOSE BUTTON
==================================================*/


.quick-close{

    position:absolute;

    top:18px;

    right:18px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#f4f4f4;

    cursor:pointer;

    transition:.3s ease;

    z-index:2;

}



.quick-close:hover{

    background:var(--primary);

    color:#fff;

}





/*==================================================
                CHECKOUT LAYOUT
==================================================*/

.checkout-section{
    padding:150px 0;
    background:#f8f8f8;
    min-height:100vh;
}

.checkout-section .container{
    width:min(1400px,92%);
    margin:auto;
}

/*==================================================
                HEADER
==================================================*/

.checkout-header{
    text-align:center;
    margin-bottom:50px;
    margin-top:30px;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    border:1px solid #111;
    border-radius:50px;
    font-size:.8rem;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.checkout-header h1{
    font-size:2.7rem;
    font-weight:700;
    margin-bottom:12px;
    color:#111;
}

.checkout-header p{
    max-width:620px;
    margin:auto;
    color:#666;
    line-height:1.7;
}

/*==================================================
                WRAPPER
==================================================*/

.checkout-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
    align-items:start;
}

/*==================================================
                LEFT / RIGHT
==================================================*/

.checkout-left,
.checkout-right{
    display:flex;
    flex-direction:column;
    gap:28px;
}

/*==================================================
                CARD
==================================================*/

.checkout-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
    border:1px solid #ececec;
    transition:.3s ease;
}

.checkout-card:hover{
    box-shadow:0 12px 40px rgba(0,0,0,.08);
}

.checkout-card h2{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:1.2rem;
    font-weight:700;
    color:#111;
    margin-bottom:28px;
}

.checkout-card h2 i{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#111;
    color:#fff;
    font-size:16px;
}

/*========================================
        SAVED ADDRESSES
========================================*/

.saved-addresses{

    display:flex;
    flex-direction:column;
    gap:15px;
    margin:20px 0;

}

.saved-address-card{

    border:2px solid #e5e5e5;
    border-radius:12px;
    padding:18px;
    cursor:pointer;
    transition:.3s ease;
    background:#fff;

}

.saved-address-card:hover{

    border-color:#d71920;
    transform:translateY(-2px);

}

.saved-address-card strong{

    display:block;
    margin-bottom:8px;
    color:#d71920;
    font-size:16px;

}

.saved-address-card.active{

    border-color:#d71920;
    background:#fff5f5;

}

.address-divider{

    margin:20px 0;
    border:none;
    border-top:1px solid #eee;

}

/*==================================================
            ORDER SUMMARY STICKY
==================================================*/

.checkout-right{
    position:sticky;
    top:110px;
}

/*==================================================
                FORM GRID
==================================================*/

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group.full{
    grid-column:1/-1;
}

/*==================================================
                LABELS
==================================================*/

.form-group label{
    font-size:.95rem;
    font-weight:600;
    color:#222;
    margin-bottom:8px;
}

/*==================================================
                INPUTS
==================================================*/

.form-group input{
    width:100%;
    height:52px;
    padding:0 16px;
    border:1px solid #ddd;
    border-radius:12px;
    background:#fff;
    font-size:15px;
    transition:.25s ease;
    outline:none;
}

.form-group input:hover{
    border-color:#999;
}

.form-group input:focus{
    border-color:#111;
    box-shadow:0 0 0 4px rgba(0,0,0,.06);
}

/* Readonly */

.form-group input[readonly]{
    background:#f6f6f6;
    cursor:not-allowed;
}

/*==================================================
                ERROR
==================================================*/

.error-message{
    margin-top:6px;
    font-size:.82rem;
    color:#d93025;
    min-height:18px;
}

/*==================================================
            DELIVERY STATUS
==================================================*/

.delivery-status{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:10px;
    padding:18px;
    border-radius:14px;
    background:#f8f8f8;
    border:1px solid #e5e5e5;
}

.delivery-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.delivery-text h4{
    font-size:1rem;
    margin-bottom:4px;
    color:#111;
}

.delivery-text p{
    font-size:.9rem;
    color:#666;
    line-height:1.5;
    margin:0;
}

/*==================================================
            PAYMENT METHOD
==================================================*/

.payment-option{
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px;
    margin-bottom:14px;
    border:1px solid #ddd;
    border-radius:14px;
    cursor:pointer;
    transition:.3s;
    background:#fff;
}

.payment-option:last-child{
    margin-bottom:0;
}

.payment-option:hover{
    border-color:#111;
    background:#fafafa;
}

.payment-option input[type="radio"]{
    width:18px;
    height:18px;
    accent-color:#111;
    cursor:pointer;
}

.payment-option:has(input:checked){
    border-color:#111;
    background:#f5f5f5;
}

.payment-option:has(input:disabled){
    opacity:.5;
    cursor:not-allowed;
    background:#f7f7f7;
    border:1px dashed #d8d8d8;
}

.payment-option:has(input:disabled):hover{
    border:1px dashed #d8d8d8;
    background:#f7f7f7;
}

/*==================================================
                ORDER SUMMARY
==================================================*/

#checkoutItems{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:25px;
}

#checkoutItems:empty{
    display:none;
}

.checkout-card hr{
    border:none;
    border-top:1px solid #ececec;
    margin:25px 0;
}

/*==================================================
                SUMMARY ROWS
==================================================*/

.summary-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
    font-size:.96rem;
}

.summary-row span{
    color:#666;
}

.summary-row strong{
    color:#111;
    font-weight:600;
}

.grand-total{
    margin-top:12px;
    padding-top:20px;
    border-top:1px solid #e6e6e6;
    font-size:1.15rem;
}

.grand-total span,
.grand-total strong{
    color:#111;
    font-weight:700;
}

/*==================================================
                PLACE ORDER BUTTON
==================================================*/

.place-order-btn{
    width:100%;
    height:56px;
    margin-top:28px;
    border:none;
    border-radius:14px;
    background:#111;
    color:#fff;
    font-size:1rem;
    font-weight:600;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition:.3s ease;
}

.place-order-btn:hover{
    background:#000;
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(0,0,0,.18);
}

.place-order-btn:active{
    transform:scale(.98);
}

/*==================================================
            CHECKOUT PRODUCTS
==================================================*/

.checkout-product{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:16px 0;
    border-bottom:1px solid #ececec;
}

.checkout-product:last-child{
    border-bottom:none;
    padding-bottom:0;
}

.checkout-product-left{
    display:flex;
    align-items:center;
    gap:15px;
    flex:1;
}

.checkout-product img{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:12px;
    border:1px solid #e5e5e5;
    background:#fff;
}

.checkout-product h4{
    font-size:15px;
    font-weight:600;
    color:#111;
    margin-bottom:6px;
    line-height:1.4;
}

.checkout-product span{
    display:inline-block;
    font-size:13px;
    color:#666;
    padding:4px 10px;
    background:#f5f5f5;
    border-radius:20px;
}

.checkout-product strong{
    font-size:16px;
    font-weight:700;
    color:#111;
    white-space:nowrap;
}


/*==================================================
        CART + WISHLIST DRAWERS
==================================================*/


/*==================================================
        CART OVERLAY
==================================================*/

.cart-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    opacity:0;

    visibility:hidden;

    transition:.35s ease;

    z-index:9998;

}



/*==================================================
        CART DRAWER
==================================================*/

.cart-drawer{

    position: fixed;

    top: 0;

    right: 0;

    width: 430px;

    max-width: 100%;

    height: 100vh;

    background: #fff;

    display: flex;

    flex-direction: column;

    transform: translateX(100%);

    transition: .35s ease;

    z-index: 9999;

    overflow: hidden;

    box-shadow: -12px 0 40px rgba(0,0,0,.18);

}



body.cart-open .cart-overlay{

    opacity:1;

    visibility:visible;

}


body.cart-open .cart-drawer{

    transform:translateX(0);

}



/*==================================================
        CART HEADER
==================================================*/

.cart-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    padding:20px 25px;

    border-bottom:1px solid #eee;

}

.cart-header-left{

    display:flex;

    flex-direction:column;

    gap:8px;

}

.add-more-items-btn{

    background:none;

    border:none;

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    cursor:pointer;

    padding:0;

    text-align:left;

    transition:.3s;

}

.add-more-items-btn:hover{

    color:#0B6E4F;

    text-decoration:underline;

}



.cart-header h2{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:22px;

    color:#0b3c88;

}



.cart-header h2 i{

    color:#ff9800;

}



.close-cart{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#f4f4f4;

    cursor:pointer;

    transition:.3s;

}



.close-cart:hover{

    background:var(--primary);

    color:#fff;

    transform:rotate(90deg);

}



/*==================================================
        CART ITEMS
==================================================*/

.cart-items{

    flex:1;

    min-height:0;

    overflow-y:auto;

    overflow-x:hidden;

    padding:15px 15px 5px;

}



.cart-item{

    display:flex;

    align-items:center;

    gap:16px;

    padding:16px;

    margin-bottom:15px;

    background:#fff;

    border:1px solid #ececec;

    border-radius:14px;

    box-shadow:0 6px 18px rgba(0,0,0,.05);

    transition:.3s;

}



.cart-item:hover{

    transform:translateY(-2px);

}



.cart-item-image{

    width:90px;

    height:90px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f8f9fa;

    border-radius:12px;

    overflow:hidden;

}



.cart-item-image img{

    width:78px;

    height:78px;

    object-fit:contain;

}



.cart-item-details{

    flex:1;

}



.cart-item-details h4{

    font-size:16px;

    font-weight:700;

    margin-bottom:8px;

    color:#222;

}



.cart-item-price{

    color:var(--primary);

    font-size:20px;

    font-weight:700;

    margin-bottom:12px;

}

.cart-more-items{

    padding:12px 20px;

    border-top:1px solid #eee;

}

.add-more-items-btn{

    width:100%;

    padding:12px;

    border:none;

    background:#f5f5f5;

    color:var(--primary);

    font-weight:600;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;

}

.add-more-items-btn:hover{

    background:var(--primary);

    color:#fff;

}



/*==================================================
        QUANTITY
==================================================*/

.cart-qty{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#f5f7fb;

    padding:6px;

    border-radius:30px;

}



.qty-btn{

    width:34px;

    height:34px;

    border:none;

    border-radius:50%;

    background:#fff;

    cursor:pointer;

    transition:.3s;

}



.qty-btn:hover{

    background:var(--primary);

    color:#fff;

}



.cart-qty span{

    min-width:24px;

    text-align:center;

    font-weight:700;

}



/*==================================================
        REMOVE BUTTON
==================================================*/

.remove-item{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#fff5f5;

    color:#dc3545;

    cursor:pointer;

    transition:.3s;

}



.remove-item:hover{

    background:#dc3545;

    color:#fff;

}



/*==================================================
        EMPTY CART
==================================================*/

.empty-cart{

    flex:1;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:40px 25px;

}



.empty-cart i{

    font-size:70px;

    color:var(--primary);

    margin-bottom:20px;

}



.empty-cart h3{

    font-size:28px;

    margin-bottom:10px;

}



.empty-cart p{

    color:#777;

    margin-bottom:25px;

}



/*==================================================
        CART SUMMARY
==================================================*/

.cart-summary{

    flex-shrink:0;

    background:#fff;

    border-top:1px solid #eee;

    padding:16px;

    box-shadow:0 -5px 20px rgba(0,0,0,.05);

}



.summary-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:8px;

}



.summary-row span{

    color:#555;

}



.total-row{

    border-top:2px dashed #ddd;

    padding-top:10px;

    margin-top:8px;

    font-size:18px;

}



.total-row strong{

    color:var(--primary);

    font-size:20px;

}



/*==================================================
        CHECKOUT
==================================================*/

.checkout-btn{

    width:100%;

    height:52px;

    margin-top:20px;

    border:none;

    border-radius:10px;

    background:var(--primary);

    color:#fff;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}



.checkout-btn:hover{

    transform:translateY(-2px);

}



.clear-cart{

    width:100%;

    height:48px;

    margin-top:12px;

    border:2px solid #ddd;

    border-radius:10px;

    background:#fff;

    cursor:pointer;

}



.clear-cart:hover{

    background:var(--primary);

    color:#fff;

    border-color:var(--primary);

}

.add-more-items-btn{
    width:100%;
    padding:14px;
    margin-bottom:12px;

    border:2px solid #0B6E4F;
    background:#fff;
    color:#0B6E4F;

    border-radius:10px;

    font-size:15px;
    font-weight:600;

    cursor:pointer;
    transition:.3s;
}

.add-more-items-btn:hover{
    background:#0B6E4F;
    color:#fff;
}



/*==================================================
        WISHLIST DRAWER
==================================================*/

.wishlist-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    opacity:0;

    visibility:hidden;

    transition:.35s ease;

    z-index:9998;

}



.wishlist-drawer{

    position:fixed;

    top:0;

    right:0;

    width:430px;

    max-width:100%;

    height:100vh;

    background:#fff;

    display:flex;

    flex-direction:column;

    transform:translateX(100%);

    transition:.35s ease;

    z-index:9999;

}



.wishlist-open .wishlist-overlay{

    opacity:1;

    visibility:visible;

}



.wishlist-open .wishlist-drawer{

    transform:translateX(0);

}



/*==================================================
        WISHLIST HEADER
==================================================*/

.wishlist-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px;

    border-bottom:1px solid #eee;

}



.wishlist-header h2{

    font-size:22px;

}



.wishlist-header i{

    color:#ff4d6d;

}



.close-wishlist{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#f5f5f5;

    cursor:pointer;

}



/*==================================================
        WISHLIST ITEMS
==================================================*/

.wishlist-items{

    flex:1;

    overflow-y:auto;

    padding:20px;

}



.wishlist-empty{

    display:none;

    text-align:center;

    padding:60px 20px;

}



.wishlist-empty i{

    font-size:65px;

    color:#ddd;

}

/*==================================================
        WISHLIST PRODUCT ITEM
==================================================*/

.wishlist-item{

    display:flex;

    align-items:center;

    gap:14px;

    padding:15px;

    margin-bottom:15px;

    background:#fff;

    border:1px solid #ececec;

    border-radius:14px;

    box-shadow:0 6px 18px rgba(0,0,0,.05);

}


.wishlist-item img{

    width:70px;

    height:70px;

    object-fit:contain;

    background:#f8f9fa;

    border-radius:12px;

}


.wishlist-info{

    flex:1;

}


.wishlist-info h4{

    font-size:15px;

    font-weight:700;

    line-height:1.4;

    color:#222;

    margin-bottom:8px;

}


.wishlist-info span{

    display:block;

    color:var(--primary);

    font-size:18px;

    font-weight:700;

}



/*==================================================
        WISHLIST ACTION BUTTONS
==================================================*/

.wishlist-actions{

    display:flex;

    gap:8px;

}


.wishlist-actions button{

    width:36px;

    height:36px;

    border:none;

    border-radius:50%;

    background:#f5f5f5;

    cursor:pointer;

    transition:.3s;

}


.wishlist-actions button:first-child{

    color:var(--primary);

}


.wishlist-actions button:last-child{

    color:#dc3545;

}


.wishlist-actions button:hover{

    background:var(--primary);

    color:#fff;

}



/*==================================================
        WISHLIST FOOTER
==================================================*/

.wishlist-footer{

    padding:20px;

    border-top:1px solid #eee;

}



.wishlist-cart-btn{

    width:100%;

    height:52px;

    border:none;

    border-radius:10px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    cursor:pointer;

    margin-bottom:12px;

}



.wishlist-clear-btn{

    width:100%;

    height:50px;

    border:2px solid #ddd;

    border-radius:10px;

    background:#fff;

    cursor:pointer;

}



/*==================================================
        CART TOAST
==================================================*/

.cart-toast{

    position:fixed;

    left:50%;

    bottom:30px;

    transform:translateX(-50%) translateY(100px);

    background:#222;

    color:#fff;

    padding:14px 22px;

    border-radius:50px;

    display:flex;

    align-items:center;

    gap:10px;

    opacity:0;

    transition:.35s;

    z-index:10000;

}



.cart-toast.show{

    opacity:1;

    transform:translateX(-50%) translateY(0);

}




/*==================================================
                PRODUCTS PAGE
==================================================*/

.page-hero{

    padding:140px 0 70px;

    background:#f8f9fc;

    margin-top: 90px;

}

.page-hero .container{

    max-width:1200px;

    margin:auto;

    padding:0 20px;

    text-align:center;

}

.breadcrumb{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin-bottom:22px;

    font-size:15px;

}

.breadcrumb a{

    color:var(--primary);

    text-decoration:none;

    font-weight:600;

}

.breadcrumb span{

    color:#888;

}

.page-hero h1{

    font-size:52px;

    font-weight:700;

    color:#222;

    margin-bottom:18px;

}

.page-hero p{

    max-width:720px;

    margin:auto;

    font-size:17px;

    line-height:1.8;

    color:#666;

}


/*==================================================
                SEARCH
==================================================*/

.product-search-section{

    margin-top:-35px;

    margin-bottom:60px;

}

.search-box{

    width:100%;

    max-width:700px;

    height:65px;

    margin:auto;

    background:#fff;

    border-radius:60px;

    display:flex;

    align-items:center;

    padding:0 25px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.search-box i{

    color:#999;

    font-size:18px;

}

.search-box input{

    flex:1;

    border:none;

    outline:none;

    padding:0 18px;

    font-size:16px;

    background:transparent;

}

.clear-search{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#f5f5f5;

    cursor:pointer;

    transition:.3s;

}

.clear-search:hover{

    background:var(--primary);

    color:#fff;

}

/*==================================================
                PRODUCTS PAGE GRID
==================================================*/

.products-page{

    padding:20px 0 90px;

}

/*==================================================
                PRODUCTS HEADING
==================================================*/

.products-heading{

    text-align:center;

    max-width:800px;

    margin:120px auto 60px;

}

.section-tag{

    display:inline-block;

    padding:8px 20px;

    border-radius:30px;

    background:#ffe9ea;

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}

.products-heading h2{

    font-size:42px;

    color:#222;

    margin-bottom:18px;

}

.products-heading p{

    color:#666;

    line-height:1.8;

    font-size:16px;

}

/*==================================================
                PRODUCTS CTA
==================================================*/

.products-cta{

    padding:90px 0;

    background:#f8f9fc;

}

.products-cta-box{

    max-width:900px;

    margin:auto;

    background:#fff;

    border-radius:28px;

    padding:70px 50px;

    text-align:center;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.products-cta-box h2{

    font-size:42px;

    color:#222;

    margin:20px 0;

}

.products-cta-box p{

    max-width:650px;

    margin:0 auto 40px;

    color:#666;

    line-height:1.8;

}

.products-cta-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

.products-cta-buttons .cta-btn{

    min-width:220px;

}

/*==================================================
            WEEALL ACCOUNT PAGE
            NEW CLEAN VERSION
==================================================*/


.account-page{

    padding:120px 0 80px;

    background:var(--bg);

    min-height:100vh;

}


.account-wrapper{

    display:flex;

    gap:30px;

    align-items:stretch;

    margin-top:50px;

    height:calc(100vh - 150px);

    min-height:650px;

}



/*==================================================
            ACCOUNT SIDEBAR
==================================================*/


.account-sidebar{

    width:280px;

    flex:0 0 280px;

    background:var(--white);

    border-radius:20px;

    box-shadow:var(--shadow);

    border:1px solid var(--border);

    overflow:hidden;

    position:relative;

    height:100%;

}



.account-user{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    text-align:center;

    padding:35px 20px;

}



.user-avatar{

    width:90px;

    height:90px;

    border-radius:50%;

    margin:0 auto 18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.15);

    border:3px solid rgba(255,255,255,.3);

}



.user-avatar i{

    font-size:40px;

}



.account-user h3{

    margin:0;

    font-size:22px;

}



.account-user p{

    margin-top:8px;

    font-size:14px;

    opacity:.9;

}



/*==================================================
            ACCOUNT MENU
==================================================*/


.account-menu{

    list-style:none;

    padding:15px 0;

    margin:0;

}



.account-menu li{

    display:flex;

    align-items:center;

    gap:15px;

    padding:16px 25px;

    cursor:pointer;

    font-weight:600;

    transition:.3s;

    border-left:4px solid transparent;

}



.account-menu li i{

    width:22px;

    color:var(--primary);

}



.account-menu li:hover,
.account-menu li.active{

    background:#fff2f2;

    color:var(--primary);

    border-left-color:var(--primary);

}





/*==================================================
            ACCOUNT CONTENT
==================================================*/


.account-content{

    flex:1;

    min-width:0;

    height:100%;

    overflow-y:auto;

    overflow-x:hidden;

    background:var(--white);

    border-radius:20px;

    box-shadow:var(--shadow);

    border:1px solid var(--border);

    padding:35px;

    min-height:0;

}



.account-content h2{

    margin:0 0 25px;

    color:var(--primary);

    font-size:26px;

}

/*==================================================
        ACCOUNT DASHBOARD CONTENT
==================================================*/


.account-dashboard h2{

    margin-bottom:10px;

}


.dashboard-cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:35px;

}



.dashboard-card{

    background:var(--white);

    border:1px solid var(--border);

    border-radius:18px;

    padding:30px;

    box-shadow:var(--shadow);

    transition:.3s;

}



.dashboard-card:hover{

    transform:translateY(-5px);

}



.dashboard-card h3{

    margin:0 0 12px;

    font-size:20px;

    color:var(--black);

}



.dashboard-card p{

    color:var(--text);

    line-height:1.7;

    margin-bottom:20px;

}




/*==================================================
            ACCOUNT BUTTONS
==================================================*/


.account-content button{

    background:var(--primary);

    color:#fff;

    border:none;

    padding:12px 24px;

    border-radius:10px;

    cursor:pointer;

    font-weight:600;

    transition:.3s;

}



.account-content button:hover{

    background:var(--primary-dark);

}


.orders-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

.account-cart-btn{

    padding:12px 24px;

    border:none;

    border-radius:8px;

    background:#222;

    color:#fff;

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.account-cart-btn:hover{

    background:#000;

}





/*=========================================
        ORDER STATUS COLORS
=========================================*/

.order-status{

    display:inline-block;

    padding:6px 12px;

    border-radius:20px;

    font-size:13px;

    font-weight:600;

}


/* Pending */

.order-status.pending{
    background:#fff4e5;
    color:#d97706;
}


/* Confirmed */

.order-status.confirmed{
    background:#e8f1ff;
    color:#2563eb;
}



/* Processing */

.order-status.processing{
    background:#f3e8ff;
    color:#9333ea;
}


/* Shipped */

.order-status.shipped{
    background:#e0f2fe;
    color:#0284c7;
}


/* Delivered */

.order-status.delivered{
    background:#e8f8ef;
    color:#1b8f4d;
}


/* Cancelled */

.order-status.cancelled{
    background:#fee2e2;
    color:#dc2626;
}





/*==================================================
            PROFILE SECTION
==================================================*/


.profile-section,
.password-section{

    max-width:650px;

}



.profile-section form,
.password-section form{

    display:flex;

    flex-direction:column;

    gap:18px;

}



.profile-section label{

    font-weight:600;

}



.profile-section input,
.password-section input,
.address-form input{

    width:100%;

    height:52px;

    padding:0 16px;

    border:1px solid var(--border);

    border-radius:12px;

    font-size:15px;

    outline:none;

    box-sizing:border-box;

}



.profile-section input:focus,
.password-section input:focus,
.address-form input:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(215,25,32,.1);

}



#profileMessage,
#passwordMessage{

    margin-top:15px;

    font-weight:600;

    color:var(--primary);

}

/*==================================================
            ADDRESS SECTION
==================================================*/


.address-section{

    width:100%;

}



.section-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}



.section-header h2{

    margin:0;

}





/*==================================================
            ADDRESS CARDS
==================================================*/


#addressList{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}



.address-card{

    position:relative;

    background:var(--white);

    border:1px solid var(--border);

    border-radius:18px;

    padding:25px;

    box-shadow:var(--shadow);

}



.address-card h3{

    margin:0 0 15px;

    font-size:20px;

}



.address-card p{

    margin:8px 0;

    line-height:1.6;

}





.default-badge{

    position:absolute;

    top:18px;

    right:18px;

    background:var(--primary);

    color:#fff;

    padding:6px 14px;

    border-radius:50px;

    font-size:12px;

    font-weight:600;

}





.address-actions{

    display:flex;

    gap:10px;

    margin-top:20px;

    flex-wrap:wrap;

}



.address-actions button{

    padding:9px 18px;

    font-size:14px;

}





/*==================================================
            ADDRESS FORM
==================================================*/


.address-form{

    max-width:650px;

}



.address-form h2{

    margin-bottom:25px;

}



.address-form form{

    display:flex;

    flex-direction:column;

    gap:18px;

}


/*==================================================
            ORDERS SECTION
==================================================*/


.orders-section{

    width:100%;

}




#ordersList{

    display:flex;

    flex-direction:column;

    gap:25px;

}





/*==================================================
            ORDERS SECTION
==================================================*/

.orders-section{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.orders-section h2{

    font-size:32px;

    margin-bottom:10px;

}


/*==================================================
            ORDER CARD
==================================================*/

.order-card{

    background:#fff;

    border:1px solid #e8e8e8;

    border-radius:18px;

    padding:25px;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    transition:.3s;

}

.order-card:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}


/*==================================================
            ORDER HEADER
==================================================*/

.order-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;

    padding-bottom:18px;

    border-bottom:1px solid #eee;

}

.order-header h3{

    margin:0;

    font-size:22px;

}

.order-header p{

    margin:8px 0 0;

    color:#777;

    font-size:14px;

}


/*==================================================
            STATUS BADGES
==================================================*/

.order-status{

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

}

.order-status.pending{

    background:#fff6db;

    color:#c68a00;

}

.order-status.processing{

    background:#e9f4ff;

    color:#0072ce;

}

.order-status.shipped{

    background:#f0eaff;

    color:#6d28d9;

}

.order-status.delivered{

    background:#eaf8ef;

    color:#1b8f4d;

}

.order-status.cancelled{

    background:#ffe8e8;

    color:#d93025;

}


/*==================================================
            ORDER BODY
==================================================*/

.order-body{

    display:flex;

    align-items:center;

    gap:25px;

    padding:25px 0;

}

.order-image{

    width:90px;

    height:90px;

    border-radius:14px;

    background:#f7f7f7;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    color:var(--primary);

    flex-shrink:0;

}

.order-details{

    flex:1;

}

.order-details h4{

    margin:0 0 10px;

    font-size:20px;

}

.order-details p{

    margin:6px 0;

    color:#666;

}

.more-items{

    color:var(--primary);

    font-weight:600;

}

.order-details h3{

    margin-top:15px;

    color:var(--primary);

}


/*==================================================
            ACTION BUTTONS
==================================================*/

.order-actions{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

    padding-top:20px;

    border-top:1px solid #eee;

}

.order-actions button{

    border:none;

    border-radius:10px;

    padding:12px 20px;

    cursor:pointer;

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.view-order-btn{

    background:var(--primary);

    color:#fff;

}

.view-order-btn:hover{

    opacity:.9;

}

.invoice-btn{

    background:#f4f4f4;

    color:#333;

}

.invoice-btn:hover{

    background:#e8e8e8;

}

.cancel-btn{

    background:#ffe8e8;

    color:#d93025;

}

.cancel-btn:hover{

    background:#ffd4d4;

}


/*==================================================
            MOBILE
==================================================*/

@media(max-width:768px){

    .order-header{

        flex-direction:column;

        align-items:flex-start;

    }

    .order-body{

        flex-direction:column;

        align-items:flex-start;

    }

    .order-actions{

        flex-direction:column;

    }

    .order-actions button{

        width:100%;

    }

}




























/*==================================================
            BACK TO TOP
==================================================*/

#backToTop{

    position: fixed;

    right: 30px;

    bottom: 30px;

    width: 55px;

    height: 55px;

    border: none;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

    font-size: 18px;

    cursor: pointer;

    display: flex;

    justify-content: center;

    align-items: center;

    box-shadow: 0 10px 30px rgba(0,0,0,.18);

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: .35s ease;

    z-index: 999;

}

#backToTop.show{

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

#backToTop:hover{

    transform: translateY(-5px);

    background: #111;

}

/*==================================================
        WHATSAPP FLOAT BUTTON
==================================================*/

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:90px;

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    font-size:32px;

    text-decoration:none;

    box-shadow:0 12px 30px rgba(0,0,0,.18);

    z-index:9997;

    transition:.35s ease;

}


.whatsapp-float:hover{

    transform:translateY(-5px) scale(1.05);

    box-shadow:0 18px 35px rgba(0,0,0,.25);

    color:#fff;

}


/*==================================================
                ORDER SUCCESS
==================================================*/

.order-success{

    padding:100px 0 80px;

    background:var(--bg);

    min-height:100vh;

}

.order-success .container{

    width:min(900px,92%);

    margin:auto;

}

.success-card{

    background:var(--white);

    border:1px solid var(--border);

    border-radius:22px;

    padding:55px;

    box-shadow:var(--shadow);

    text-align:center;

}

.success-icon{

    width:100px;

    height:100px;

    margin:0 auto 30px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eaf8ef;

    color:#28a745;

    font-size:52px;

}

.success-card h1{

    font-size:42px;

    color:var(--black);

    margin-bottom:10px;

}

.success-card h2{

    font-size:24px;

    color:var(--text);

    margin-bottom:20px;

}

.success-card>p{

    max-width:620px;

    margin:0 auto 40px;

    color:var(--light);

    line-height:1.8;

}

/*==================================================
                ORDER INFO
==================================================*/

.order-info{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:40px;

}

.order-info div{

    padding:24px;

    background:#fafafa;

    border:1px solid var(--border);

    border-radius:16px;

    text-align:center;

    transition:var(--transition);

}

.order-info div:hover{

    border-color:#d8d8d8;

    transform:translateY(-2px);

}

.order-info span{

    display:block;

    margin-bottom:10px;

    font-size:14px;

    font-weight:500;

    color:var(--light);

    text-transform:uppercase;

    letter-spacing:1px;

}

.order-info strong{

    display:block;

    font-size:20px;

    font-weight:700;

    color:var(--black);

}

/*==================================================
                ORDER DETAILS
==================================================*/

.order-details{

    margin-top:20px;

    text-align:left;

}

.order-details h3{

    margin-bottom:25px;

    font-size:24px;

    font-weight:700;

    color:var(--black);

    text-align:center;

}

.success-section{

    margin-bottom:25px;

    padding:25px;

    background:var(--white);

    border:1px solid var(--border);

    border-radius:16px;

    box-shadow:0 5px 20px rgba(0,0,0,.04);

}

.success-section:last-child{

    margin-bottom:0;

}

.success-section h4{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:18px;

    font-size:18px;

    font-weight:600;

    color:var(--primary);

}

.success-section h4 i{

    font-size:16px;

}

.success-section p{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:12px;

    padding-bottom:12px;

    border-bottom:1px solid var(--border);

    color:var(--text);

    line-height:1.6;

}

.success-section p:last-child{

    margin-bottom:0;

    padding-bottom:0;

    border-bottom:none;

}

/*==================================================
                SUCCESS PRODUCTS
==================================================*/

.success-product{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:18px 0;

    border-bottom:1px solid var(--border);

}

.success-product:last-child{

    border-bottom:none;

    padding-bottom:0;

}

.success-product-left{

    display:flex;

    align-items:center;

    gap:16px;

    flex:1;

}

.success-product img{

    width:75px;

    height:75px;

    object-fit:cover;

    border-radius:12px;

    border:1px solid var(--border);

    background:#fff;

    flex-shrink:0;

}

.success-product h4{

    margin-bottom:6px;

    font-size:16px;

    font-weight:600;

    color:var(--black);

    line-height:1.4;

}

.success-product span{

    display:inline-block;

    padding:4px 10px;

    border-radius:20px;

    background:#f5f5f5;

    font-size:13px;

    color:var(--light);

}

.success-product strong{

    font-size:17px;

    font-weight:700;

    color:var(--black);

    white-space:nowrap;

}

/*==================================================
                ORDER TOTALS
==================================================*/

#successTotals{

    margin-top:25px;

    padding-top:20px;

    border-top:1px solid var(--border);

}

#successTotals .summary-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:10px 0;

    font-size:15px;

}

#successTotals .summary-row span{

    color:var(--light);

}

#successTotals .summary-row strong{

    color:var(--black);

    font-weight:600;

}

#successTotals .grand-total{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:18px;

    padding-top:18px;

    border-top:2px solid var(--border);

    font-size:20px;

}

#successTotals .grand-total span,

#successTotals .grand-total strong{

    font-size:20px;

    font-weight:700;

    color:var(--primary);

}

/*==================================================
                SUCCESS ACTIONS
==================================================*/

.success-buttons,
.success-actions{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

    margin-top:40px;

}

.btn-primary,
.btn-secondary,
.primary-btn,
.secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-width:220px;

    height:54px;

    padding:0 30px;

    border:none;

    border-radius:14px;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:var(--transition);

}

.btn-primary,
.primary-btn{

    background:var(--primary);

    color:var(--white);

}

.btn-primary:hover,
.primary-btn:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);

    box-shadow:0 12px 25px rgba(0,0,0,.15);

}

.btn-secondary,
.secondary-btn{

    background:var(--white);

    color:var(--black);

    border:1px solid var(--border);

}

.btn-secondary:hover,
.secondary-btn:hover{

    background:#f7f7f7;

    border-color:#d5d5d5;

    transform:translateY(-2px);

}


/*==================================================
                PRIVACY POLICY
                DESKTOP
==================================================*/


.legal-page{

    padding:100px 0;

    background:var(--bg);

}



.legal-header{

    text-align:center;

    margin-bottom:50px;

}



.legal-header h1{

    font-size:44px;

    font-weight:700;

    color:var(--black);

    margin-bottom:15px;

    margin-top:50px;

}



.legal-header p{

    font-size:15px;

    color:var(--light);

}



.legal-content{

    max-width:900px;

    margin:0 auto;

    background:var(--white);

    padding:50px;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}



.legal-content p{

    font-size:16px;

    line-height:1.8;

    color:var(--text);

    margin-bottom:20px;

}



.legal-content h2{

    font-size:26px;

    font-weight:600;

    color:var(--black);

    margin:35px 0 15px;

}



.legal-content h2:first-child{

    margin-top:0;

}



.legal-content ul{

    padding-left:25px;

    margin-bottom:25px;

}



.legal-content li{

    font-size:16px;

    line-height:1.8;

    color:var(--text);

    margin-bottom:8px;

}


/*=========================================
        ORDER DETAILS MODAL
=========================================*/


.order-modal-overlay{

    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    display:none;
    z-index:9998;

}


.order-modal{

    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    width:90%;
    max-width:600px;

    background:#fff;

    border-radius:20px;

    padding:30px;

    display:none;

    z-index:9999;

    max-height:85vh;
    overflow-y:auto;

}



.order-modal-close{

    position:absolute;

    right:20px;
    top:20px;

    border:none;

    background:none;

    font-size:22px;

    cursor:pointer;

}



.order-item{

    display:flex;

    justify-content:space-between;

    border-bottom:1px solid #eee;

    padding:15px 0;

}



.order-modal.show,
.order-modal-overlay.show{

    display:block;

}


/*=========================================
        ADDRESS ACTION BUTTONS
=========================================*/

.address-actions {

    margin-top:20px;

}


.delete-address-btn {

    background:#D71920;

    color:#fff;

    border:none;

    padding:10px 22px;

    border-radius:10px;

    cursor:pointer;

    font-size:14px;

    font-weight:600;

    transition:.3s ease;

}


.delete-address-btn:hover {

    background:#B31217;

}


/*=========================================
        EDIT ADDRESS BUTTON
=========================================*/

.edit-address-btn {

    background:#181818;

    color:#ffffff;

    border:none;

    padding:10px 22px;

    border-radius:10px;

    cursor:pointer;

    font-size:14px;

    font-weight:600;

    margin-right:10px;

    transition:.3s ease;

}


.edit-address-btn:hover {

    background:#333333;

}


/*==================================================*
*                ANNOUNCEMENT BAR
*==================================================*/

.announcement-bar{

    height:38px;

    background:#111;

    color:#fff;

    display:flex;

    align-items:center;

    border-bottom:1px solid rgba(255,255,255,.08);

    overflow:hidden;

}


.announcement-container{

    width:100%;

    max-width:1400px;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:22px;

    padding:0 20px;

}


.announcement-item{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    font-size:12px;

    font-weight:500;

    letter-spacing:.2px;

    white-space:nowrap;

    line-height:1;

    transition:
        color .25s ease,
        opacity .25s ease;

}


.announcement-item i{

    color:#f7b500;

    font-size:12px;

    transition:
        transform .25s ease,
        color .25s ease;

}


.announcement-item:hover{

    color:#f7b500;

}


.announcement-item:hover i{

    transform:translateY(-1px);

    color:#fff;

}


.announcement-divider{

    width:1px;

    height:14px;

    flex-shrink:0;

    background:rgba(255,255,255,.18);

}



/*==================================================
                HEADER SEARCH
==================================================*/

.header-search{

    flex:1;

    max-width:650px;

    margin:0 40px;

}

.header-search .search-wrapper{

    position:relative;

    display:flex;

    align-items:center;

}

.header-search input{

    width:100%;

    height:46px;

    border:2px solid #ececec;

    border-radius:50px;

    padding:0 20px 0 48px;

    font-size:15px;

    outline:none;

    transition:.3s;

    background:#fff;

}

.header-search input:focus{

    border-color:#000;

    box-shadow:0 0 0 3px rgba(0,0,0,.08);

}

.header-search i{

    position:absolute;

    left:18px;

    color:#888;

    font-size:16px;

}

/*==================================================
            ADVERTISEMENT SECTION
==================================================*/

.ads-section{

    margin-top:135px;

    margin-bottom:10px;

}



.leaderboard-banner{

    width:100%;

    height:160px;

    border-radius:14px;

    overflow:hidden;

    background:#f5f5f5;

}



.leaderboard-banner img{

    width:100%;

    height:100%;

    object-fit:cover;

}





/*==================================================
            STICKY ADS
==================================================*/

.left-ad,
.right-ad{

    position:fixed;

    top:220px;

    width:160px;

    height:600px;

    border-radius:12px;

    overflow:hidden;

    background:#f5f5f5;

    z-index:100;

}



.left-ad{

    left:15px;

}



.right-ad{

    right:15px;

}



.left-ad img,
.right-ad img{

    width:100%;

    height:100%;

    object-fit:cover;

}


/*==================================================
            SHOP BY CATEGORY
==================================================*/

.shop-category{

    padding:35px 0;

}

.section-heading{

    text-align:center;

    margin-bottom:30px;

}

.section-heading h2{

    font-size:34px;

    font-weight:700;

    color:#222;

    margin-bottom:10px;

}

.section-heading p{

    color:#777;

    font-size:15px;

}

.category-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.category-chip{

    padding:8px 18px;

    border:1px solid #dddddd;

    background:#fff;

    border-radius:30px;

    cursor:pointer;

    font-size:14px;

    font-weight:500;

    color:#444;

    transition:all .3s ease;

}

.category-chip:hover{

    background:#111;

    color:#fff;

    border-color:#111;

    transform:translateY(-2px);

}

.category-chip.active{

    background:#111;

    color:#fff;

    border-color:#111;

}


/*==================================================
            DELIVERY LOCATION
===================================================*/

.delivery-location {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 7px 10px;

    margin-left: 12px;

    min-width: 175px;

    cursor: pointer;

    border-radius: 8px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;

}


.delivery-location:hover {

    background: #f5f5f5;

}


.delivery-location > i:first-child {

    font-size: 18px;

    color: #D71920;

}


.delivery-location-text {

    display: flex;

    flex-direction: column;

    min-width: 0;

}


.delivery-label {

    font-size: 11px;

    line-height: 14px;

    color: #777;

    white-space: nowrap;

}


#deliveryLocationValue {

    font-size: 13px;

    line-height: 17px;

    color: #111;

    font-weight: 600;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

    max-width: 125px;

}


.delivery-location-arrow {

    font-size: 10px;

    color: #555;

    margin-left: auto;

}

/*==================================================
        DELIVERY LOCATION MODAL
===================================================*/

.delivery-location-overlay {

    position: fixed;

    inset: 0;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.55);

    z-index: 9999;

}


.delivery-location-overlay.active {

    display: flex;

}


.delivery-location-modal {

    width: 100%;

    max-width: 480px;

    background: #ffffff;

    border-radius: 14px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);

    overflow: hidden;

    animation: deliveryModalOpen 0.25s ease;

}


@keyframes deliveryModalOpen {

    from {

        opacity: 0;

        transform: translateY(15px) scale(0.97);

    }

    to {

        opacity: 1;

        transform: translateY(0) scale(1);

    }

}


/*==================================================
        MODAL HEADER
===================================================*/

.delivery-modal-header {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    padding: 22px 24px;

    border-bottom: 1px solid #eeeeee;

}


.delivery-modal-header h2 {

    margin: 0 0 5px;

    font-size: 20px;

    font-weight: 700;

    color: #111111;

}


.delivery-modal-header p {

    margin: 0;

    font-size: 13px;

    line-height: 20px;

    color: #777777;

}


.delivery-modal-close {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 34px;

    height: 34px;

    flex-shrink: 0;

    border: none;

    border-radius: 50%;

    background: #f5f5f5;

    color: #333333;

    cursor: pointer;

    transition: 0.2s ease;

}


.delivery-modal-close:hover {

    background: #eeeeee;

    color: #D71920;

}


/*==================================================
        MODAL BODY
===================================================*/

.delivery-modal-body {

    padding: 24px;

}


/*==================================================
        CURRENT LOCATION
===================================================*/

.delivery-current-location {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 15px;

    border: 1px solid #eeeeee;

    border-radius: 10px;

    background: #fafafa;

}


.delivery-current-location > i {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 40px;

    height: 40px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #fff1f1;

    color: #D71920;

    font-size: 17px;

}


.delivery-current-location div {

    display: flex;

    flex-direction: column;

    gap: 3px;

}


.delivery-current-location strong {

    font-size: 14px;

    color: #222222;

}


.delivery-current-location span {

    font-size: 13px;

    color: #777777;

}


/*==================================================
        DIVIDER
===================================================*/

.delivery-modal-divider {

    display: flex;

    align-items: center;

    gap: 12px;

    margin: 22px 0;

    color: #999999;

    font-size: 11px;

    font-weight: 600;

}


.delivery-modal-divider::before,
.delivery-modal-divider::after {

    content: "";

    flex: 1;

    height: 1px;

    background: #eeeeee;

}


/*==================================================
        PINCODE
===================================================*/

.delivery-pincode-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.delivery-pincode-section label {
    font-size: 13px;
    font-weight: 600;
    color: #333333;
}

.delivery-pincode-row {
    display: flex;
    flex-direction: row; /* Force side-by-side */
    align-items: center;
    gap: 10px;
    width: 100%;
}

.delivery-pincode-row input {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    height: 44px;
    padding: 0 13px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    color: #222222;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.delivery-pincode-row input:focus {
    border-color: #D71920;
}

.delivery-pincode-row button {
    flex: 0 0 auto; /* Prevents button from stretching or collapsing */
    width: auto;    /* Overrides any global button width */
    height: 44px;
    padding: 0 24px;
    border: none;
    border-radius: 8px;
    background: #D71920;
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    box-sizing: border-box;
    transition: 0.2s ease;
}

.delivery-pincode-row button:hover {
    background: #b9151b;
}

#deliveryPincodeMessage {
    min-height: 18px;
    font-size: 12px;
}

/*==================================================
        USE CURRENT LOCATION
===================================================*/

.use-current-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 44px;
    margin-top: 18px;
    border: 1px solid #D71920;
    border-radius: 8px;
    background: #ffffff;
    color: #D71920;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    box-sizing: border-box;
    transition: 0.2s ease;
}

.use-current-location:hover {
    background: #fff5f5;
}

/*==================================================
        MOBILE
===================================================*/

@media (max-width: 767px) {
    .delivery-location-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .delivery-location-modal {
        width: 100%;
        max-width: none;
        border-radius: 16px 16px 0 0;
        animation: deliveryMobileModalOpen 0.25s ease;
    }

    @keyframes deliveryMobileModalOpen {
        from {
            opacity: 0;
            transform: translateY(100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .delivery-modal-header {
        padding: 18px 20px;
    }

    .delivery-modal-body {
        padding: 20px;
    }
}


/*==================================================
    ZEPTO-STYLE COUPON CARDS & UI EFFECTS
==================================================*/

.coupon-ticket-card {
    position: relative;
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.25s ease;
    overflow: hidden;
}

.coupon-ticket-card.unlocked {
    background: #f0fdf4;
    border-color: #86efac;
    box-shadow: 0 2px 8px rgba(22, 128, 60, 0.06);
}

.coupon-ticket-card.applied {
    background: #ecfdf5;
    border: 1.5px solid #10b981;
}

/* Side Perforations */
.coupon-ticket-card::before,
.coupon-ticket-card::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    background: #f8fafc; /* Matches checkout box background */
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    transform: translateY(-50%);
}

.coupon-ticket-card::before { left: -6px; }
.coupon-ticket-card::after { right: -6px; }

/* Progress Bar on Locked Coupons */
.coupon-progress-track {
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-top: 6px;
    overflow: hidden;
}

.coupon-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #D71920);
    border-radius: 4px;
    transition: width 0.4s ease;
}

/* Highlight Flash Animation on Savings */
@keyframes savingsFlash {
    0% { transform: scale(1); background-color: transparent; }
    50% { transform: scale(1.03); background-color: #dcfce7; }
    100% { transform: scale(1); background-color: transparent; }
}

.highlight-savings {
    animation: savingsFlash 0.8s ease-in-out;
    border-radius: 4px;
}

/* Applied Floating Tag Badge */
.applied-coupon-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}



































/*==================================================
                RESPONSIVE DESIGN
==================================================*/

/*==================================================
            LARGE LAPTOP
==================================================*/

@media (max-width:1200px){

}








/*==================================================
                TABLET
==================================================*/

@media (max-width:992px){

    .container{

    width:92%;

}


/*==================================================
                NAVBAR
==================================================*/

.header{

    padding:12px 0;

}

.navbar{

    min-height:70px;

}

.logo img{

    width:160px;

    height:auto;

}

.desktop-nav{

    display:none;

}

.nav-right{

    display:none;

}

.hamburger{

    display:flex;

    align-items:center;

    justify-content:center;

    width:48px;

    height:48px;

    font-size:30px;

    background:none;

    border:none;

    color:var(--black);

    cursor:pointer;

}

.mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:320px;

    max-width:85%;

    height:100vh;

    background:var(--white);

    padding:90px 25px 30px;

    overflow-y:auto;

    transition:.35s ease;

    box-shadow:-10px 0 30px rgba(0,0,0,.12);

    z-index:9999;

}

.mobile-menu.active{

    right:0;

}

.mobile-menu a{

    display:block;

    padding:16px 0;

    color:var(--black);

    font-size:16px;

    font-weight:600;

    border-bottom:1px solid var(--border);

}

.mobile-menu hr{

    margin:20px 0;

    border:none;

    border-top:1px solid var(--border);

}

/*==================================================
                HERO
==================================================*/

.hero{

        min-height:auto;

        padding:120px 0 180px;

        background-size:48%;

        background-position:right center;

    }

    .hero-overlay{

        background:linear-gradient(
            90deg,
            rgba(255,255,255,.96) 0%,
            rgba(255,255,255,.92) 45%,
            rgba(255,255,255,.65) 70%,
            rgba(255,255,255,.15) 100%
        );

    }

    .hero-content{

        width:58%;

    }

    .hero-content h1{

        font-size:52px;

        line-height:1.1;

    }

    .hero-content h3{

        font-size:22px;

    }

    .hero-content p{

        font-size:16px;

        line-height:28px;

    }

    .hero-features{

        column-gap:25px;

    }

    .hero-buttons{

        gap:15px;

    }

    .btn-primary,
    .btn-secondary{

        width:180px;

    }

    .hero-card{

        width:94%;

        grid-template-columns:repeat(2,1fr);

    }

    .card-item{

        padding:24px 20px;

    }

    .card-item:nth-child(even)::after{

        display:none;

    }

    /*==================================================
            FEATURES - TABLET
    ==================================================*/


    .features{

        padding:80px 0;

    }

    .feature-grid{

        grid-template-columns:repeat(2,1fr);

        gap:28px;

    }

    .feature-box{

        padding:38px 30px;

    }

    .feature-box i{

        width:68px;

        height:68px;

        font-size:26px;

        margin-bottom:24px;

    }

    .feature-box h3{

        font-size:26px;

    }

    .feature-box p{

        font-size:16px;

        line-height:28px;

    }

    /*==================================================
        HOW IT WORKS - TABLET
    ==================================================*/

    .how-it-works{

        padding:80px 0;

    }

    .steps{

        grid-template-columns:repeat(2,1fr);

        gap:28px;

        margin-top:60px;

    }

    .steps::before{

        display:none;

    }

    .step{

        padding:40px 30px;

    }

    .step-number{

        width:50px;

        height:50px;

        font-size:17px;

        margin-bottom:22px;

    }

    .step-icon{

        width:82px;

        height:82px;

        margin-bottom:25px;

    }

    .step-icon i{

        font-size:30px;

    }

    .step h3{

        font-size:24px;

    }

    .step p{

        font-size:16px;

        line-height:28px;

    }

    /*==================================================
            PRODUCTS - TABLET
    ==================================================*/

    .products{

        padding:80px 0;

    }

    .products .container{

        width:94%;

    }

    .product-grid{

        grid-template-columns:repeat(2,1fr);

        gap:22px;

    }

    .product-card{

        padding:16px;

    }

    .product-content{

        gap:14px;

    }

    .product-image img{

        max-width:110px;

    }

    .product-info h3{

        font-size:15px;

    }

    .product-info p{

        font-size:13px;

    }

    .offer-price{

        font-size:17px;

    }

    /*==================================================
        QUICK VIEW - TABLET
    ==================================================*/

    .quick-view-modal{

        width:94%;

        max-height:88vh;

    }

    .quick-view-content{

        gap:30px;

        padding:30px;

    }

    .quick-image{

        width:42%;

    }

    .quick-image img{

        max-width:260px;

    }

    .quick-details h2{

        font-size:28px;

    }

    .quick-price{

        font-size:30px;

    }

    /*==================================================
        TESTIMONIALS - TABLET
    ==================================================*/

    .testimonials{

        padding:80px 0;

    }

    .testimonial-grid{

        grid-template-columns:repeat(2,1fr);

        gap:22px;

    }

    .testimonial-card{

        padding:22px;

    }

    .user h4{

        font-size:14px;

    }

    .user span{

        font-size:11px;

    }

    .testimonial-card p{

        font-size:14px;

        line-height:1.7;

    }

    /*==================================================
        BEFORE & AFTER - TABLET
    ==================================================*/

    .before-after{

        padding:80px 0;

    }

    .ba-grid{

        grid-template-columns:repeat(2,1fr);

        gap:22px;

    }

    .ba-card{

        padding:18px;

    }

    .ba-card h3{

        font-size:17px;

    }

    .ba-box img{

        height:130px;

    }

    .ba-card p{

        font-size:14px;

        line-height:1.6;

    }

    /*==================================================
                FAQ - TABLET
    ==================================================*/

    .faq{

        padding:80px 0;

    }

    .faq-grid{

        grid-template-columns:repeat(2,1fr);

        gap:18px;

    }

    .faq-item{

        padding:20px;

    }

    .faq-item h3{

        font-size:16px;

    }

    .faq-item p{

        font-size:14px;

        line-height:1.7;

    }

    /*==================================================
            FINAL CTA - TABLET
    ==================================================*/

    .final-cta{

        padding:80px 0;

    }

    .cta-box{

        grid-template-columns:1fr;

        gap:25px;

        padding:35px;

    }

    .cta-content h2{

        font-size:30px;

    }

    .cta-content p{

        font-size:15px;

        line-height:28px;

    }

    .cta-highlight{

        padding:30px;

    }

    .cta-highlight h3{

        font-size:26px;

    }

    /*==================================================
                FOOTER - TABLET
    ==================================================*/

    .footer{

        margin-top:80px;

        padding:70px 0 30px;

    }

    .footer-top{

        grid-template-columns:repeat(2,1fr);

        gap:40px;

    }

    .footer-newsletter{

        flex-direction:column;

        align-items:flex-start;

        padding:30px;

        gap:25px;

    }

    .footer-newsletter form{

        width:100%;

    }

    .footer-trust{

        grid-template-columns:repeat(2,1fr);

        gap:20px;

    }

    .footer-payment{

        flex-direction:column;

        gap:20px;

        text-align:center;

    }

    .footer-bottom{

        flex-direction:column;

        gap:15px;

        text-align:center;

    }

    /*==================================================
        ACCOUNT - TABLET
    ==================================================*/

    .account-page{

        padding:110px 0 60px;

    }



    .account-wrapper{

    flex-direction:column;

    gap:25px;

    height:auto;

    min-height:0;

}



    .account-sidebar{

    width:100%;

    position:static;

    flex:initial;

    height:auto;

}



    .account-menu{

        display:flex;

        flex-wrap:wrap;

        justify-content:center;

    }



    .account-menu li{

        width:auto;

    }



    .account-content{

    width:100%;

    height:auto;

    min-height:auto;

    overflow:visible;

}



    .dashboard-cards{

        grid-template-columns:repeat(2,1fr);

    }



    #addressList{

        grid-template-columns:1fr;

    }



    .profile-section,
    .password-section,
    .address-form{

        max-width:100%;

    }


    /*==================================================
        CHECKOUT - TABLET
    ==================================================*/


    .checkout-section{

        padding:70px 0;

    }

    .checkout-header{

        margin-bottom:40px;

    }

    .checkout-header h1{

        font-size:2.3rem;

    }

    .checkout-wrapper{

        grid-template-columns:1.5fr 1fr;

        gap:25px;

    }

    .checkout-left,
    .checkout-right{

        gap:22px;

    }

    .checkout-card{

        padding:25px;

    }

    .checkout-right{

        top:90px;

    }

    .checkout-product img{

        width:70px;

        height:70px;

    }


/*==================================================
        ORDER-SUCCESS - TABLET
    ==================================================*/

    .order-success{

        padding:90px 0 70px;

    }

    .success-card{

        padding:45px;

    }

    .success-icon{

        width:90px;

        height:90px;

        font-size:46px;

        margin-bottom:25px;

    }

    .success-card h1{

        font-size:36px;

    }

    .success-card h2{

        font-size:22px;

    }

    .order-info{

        gap:18px;

    }

    .success-buttons,
    .success-actions{

        gap:15px;

    }


    /*==================================================
                PRIVACY POLICY
                TABLET
==================================================*/

    .legal-page{

        padding:120px 0;
        

    }



    .legal-header{

        margin-bottom:40px;

    }



    .legal-header h1{

        font-size:38px;

    }



    .legal-content{

        max-width:850px;

        padding:40px;

    }



    .legal-content h2{

        font-size:24px;

    }



    .legal-content p,
    .legal-content li{

        font-size:16px;

    }

    .header-search{

        margin:0 20px;

        max-width:none;

    }



}









    



















/*==================================================
                MOBILE
==================================================*/

@media (max-width:768px){

    .container{

    width:94%;

}

section{

    padding:70px 0;

}

h1{

    font-size:38px;

}

h2{

    font-size:32px;

}

h3{

    font-size:24px;

}

p{

    font-size:15px;

    line-height:1.8;

}

img{

    max-width:100%;

    height:auto;

}

.cart-btn,
.btn,
button{

    width:100%;

}

/*==================================================
                HERO
==================================================*/

 .hero{

        display:block;

        min-height:auto;

        padding:120px 0 40px;

        background:none;

        overflow:visible;

    }

/*==================================================
                HERO STATS
==================================================*/

.hero-stats{

    margin-top:-40px;

    position:relative;

    z-index:5;

}

    .hero-overlay{

        background:#fff;

    }

    .hero-content{

    width:100%;

    max-width:100%;

    text-align:center;

    margin-top:40px;

}

    .hero-content h1{

        font-size:38px;

        line-height:1.15;

        margin-bottom:15px;

    }

    .hero-content h3{

        font-size:20px;

        margin-bottom:15px;

    }

    .small-line{

        margin:0 auto 22px;

    }

    .hero-content p{

        max-width:100%;

        font-size:16px;

        line-height:28px;

        margin-bottom:22px;

    }

    .rating{

        justify-content:center;

        margin-bottom:22px;

    }

    .hero-features{

        grid-template-columns:1fr;

        gap:14px;

        margin-bottom:25px;

    }

    .hero-features div{

        justify-content:center;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

        gap:15px;

        margin-bottom:45px;

    }

    .btn-primary,

    .btn-secondary{

        width:280px;

    }

    .bubble{

        display:none;

    }

    .hero-card{

        position:relative;

        left:auto;

        bottom:auto;

        transform:none;

        width:100%;

        max-width:100%;

        margin-top:30px;

        display:grid;

        grid-template-columns:1fr;

        border-radius:20px;

    }

    .card-item{

        display:flex;

        align-items:center;

        gap:15px;

        padding:18px 20px;

    }

    .card-item::after{

        display:none;

    }

    /*==================================================
            FEATURES - MOBILE
    ==================================================*/

    .features{

        padding:70px 0;

    }

    .feature-grid{

        grid-template-columns:1fr;

        gap:22px;

    }

    .feature-box{

        padding:32px 24px;

        text-align:center;

    }

    .feature-box i{

        margin:0 auto 22px;

    }

    .feature-box h3{

        font-size:24px;

    }

    .feature-box p{

        font-size:15px;

        line-height:28px;

    }

    /*==================================================
        HOW IT WORKS - MOBILE
    ==================================================*/

    .how-it-works{

        padding:70px 0;

    }

    .steps{

        grid-template-columns:1fr;

        gap:22px;

        margin-top:45px;

    }

    .steps::before{

        display:none;

    }

    .step{

        padding:35px 24px;

    }

    .step-number{

        width:48px;

        height:48px;

        font-size:16px;

        margin-bottom:20px;

    }

    .step-icon{

        width:76px;

        height:76px;

        margin-bottom:22px;

    }

    .step-icon i{

        font-size:28px;

    }

    .step h3{

        font-size:22px;

    }

    .step p{

        font-size:15px;

        line-height:28px;

    }

    /*==================================================
            PRODUCTS - MOBILE
    ==================================================*/

    .products{

        padding:70px 0;

    }

    .products .container{

        width:94%;

    }

    .product-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .product-card{

        padding:20px;

    }

    .product-content{

        flex-direction:column;

        align-items:center;

        text-align:center;

        gap:20px;

    }

    .product-image{

        width:100%;

    }

    .product-image img{

        max-width:150px;

    }

    .product-info{

        width:100%;

    }

    .product-rating{

        justify-content:center;

    }

    .product-info h3{

        font-size:20px;

    }

    .product-info p{

        font-size:15px;

        line-height:26px;

    }

    .product-bottom{

        flex-direction:column;

        gap:18px;

        text-align:center;

    }

    .price{

        align-items:center;

    }

    .offer-price{

        font-size:22px;

    }

    .mrp{

        font-size:13px;

    }

    .product-btn{

        width:100%;

        justify-content:center;

        padding:14px 20px;

        font-size:14px;

    }

    /*==================================================
        QUICK VIEW - MOBILE
    ==================================================*/

    .quick-view-modal{

        width:94%;

        max-height:90vh;

        border-radius:20px;

    }

    .quick-view-content{

        flex-direction:column;

        align-items:center;

        gap:25px;

        padding:25px;

        text-align:center;

    }

    .quick-image{

        width:100%;

    }

    .quick-image img{

        max-width:220px;

    }

    .quick-details{

        width:100%;

    }

    .quick-rating{

        margin:0 auto 15px;

    }

    .quick-details h2{

        font-size:24px;

    }

    .quick-price{

        font-size:28px;

        margin-bottom:18px;

    }

    .quick-details p{

        font-size:15px;

        line-height:28px;

    }

    .quick-features{

        text-align:left;

        margin-bottom:25px;

    }

    .quick-features li{

        font-size:15px;

    }

    .quick-cart-btn{

        height:54px;

        font-size:16px;

    }

    .quick-close{

        top:14px;

        right:14px;

    }

    /*==================================================
        TESTIMONIALS - MOBILE
    ==================================================*/

    .testimonials{

        padding:70px 0;

    }

    .testimonial-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .testimonial-card{

        padding:22px;

    }

    .testimonial-top{

        gap:15px;

    }

    .avatar{

        width:46px;

        height:46px;

    }

    .user h4{

        font-size:15px;

    }

    .user span{

        font-size:12px;

    }

    .testimonial-card .stars{

        font-size:15px;

    }

    .testimonial-card p{

        font-size:15px;

        line-height:28px;

    }

    /*==================================================
        BEFORE & AFTER - MOBILE
    ==================================================*/

    .before-after{

        padding:70px 0;

    }

    .ba-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .ba-card{

        padding:18px;

    }

    .ba-card h3{

        font-size:18px;

        text-align:center;

    }

    .ba-images{

        gap:12px;

    }

    .ba-box img{

        height:160px;

    }

    .ba-card p{

        font-size:15px;

        line-height:28px;

        text-align:center;

    }

    /*==================================================
                FAQ - MOBILE
    ==================================================*/

    .faq{

        padding:70px 0;

    }

    .faq-grid{

        grid-template-columns:1fr;

        gap:18px;

    }

    .faq-item{

        padding:20px;

    }

    .faq-item h3{

        padding-left:18px;

        font-size:16px;

        line-height:1.5;

    }

    .faq-item h3::before{

        top:8px;

    }

    .faq-item p{

        font-size:15px;

        line-height:28px;

    }

    /*==================================================
            FINAL CTA - MOBILE
    ==================================================*/

    .final-cta{

        padding:70px 0;

    }

    .cta-box{

        grid-template-columns:1fr;

        gap:25px;

        padding:25px;

        text-align:center;

    }

    .cta-content h2{

        font-size:26px;

    }

    .cta-content p{

        font-size:15px;

        line-height:28px;

    }

    .cta-features{

        justify-content:center;

        gap:15px;

    }

    .cta-features div{

        justify-content:center;

    }

    .cta-buttons{

        flex-direction:column;

        align-items:center;

        gap:15px;

    }

    .cta-btn{

        width:100%;

        justify-content:center;

    }

    .cta-highlight{

        padding:25px;

    }

    .cta-highlight h3{

        font-size:24px;

    }

    .cta-highlight p{

        font-size:15px;

    }

    /*==================================================
                FOOTER - MOBILE
    ==================================================*/

    .footer{

        margin-top:70px;

        padding:60px 0 30px;

    }

    .footer-top{

        grid-template-columns:1fr;

        gap:35px;

        text-align:center;

    }

    .footer-logo{

        margin:0 auto 25px;

    }

    .footer-social{

        justify-content:center;

    }

    .footer-column h3::after{

        margin:10px auto 0;

    }

    .footer-contact li{

        justify-content:center;

        text-align:left;

    }

    .footer-newsletter{

        padding:25px;

        text-align:center;

        align-items:center;

    }

    .footer-newsletter form{

        flex-direction:column;

        gap:12px;

    }

    .footer-newsletter input{

        width:100%;

        border-radius:10px;

    }

    .footer-newsletter button{

        width:100%;

        height:54px;

        border-radius:10px;

    }

    .footer-trust{

        grid-template-columns:1fr;

        gap:18px;

    }

    .trust-item{

        justify-content:center;

        text-align:left;

    }

    .payment-icons{

        justify-content:center;

        flex-wrap:wrap;

    }

    /*==================================================
        ACCOUNT - MOBILE
    ==================================================*/

    .account-page{

        padding:100px 0 50px;

    }



    .account-wrapper{

        gap:20px;

    }



    .account-user{

        padding:25px 20px;

    }



    .user-avatar{

        width:75px;

        height:75px;

    }



    .user-avatar i{

        font-size:34px;

    }



    .account-user h3{

        font-size:20px;

    }



    .account-menu{

        display:block;

    }



    .account-menu li{

        padding:15px 20px;

        font-size:15px;

    }



    .account-content{

        padding:25px;

        border-radius:18px;

    }



    .account-content h2{

        font-size:24px;

    }





    /* Dashboard */


    .dashboard-cards{

        grid-template-columns:1fr;

        gap:18px;

    }



    .dashboard-card{

        padding:22px;

        text-align:center;

    }





    /* Profile */


    .profile-section,
    .password-section{

        width:100%;

    }



    .profile-section input,
    .password-section input,
    .address-form input{

        height:50px;

    }





    /* Address */


    #addressList{

        grid-template-columns:1fr;

    }



    .section-header{

        flex-direction:column;

        align-items:flex-start;

        gap:15px;

    }



    .address-actions button{

        width:100%;

    }





    /* Orders */


    .order-header{

        flex-direction:column;

        align-items:flex-start;

        gap:12px;

    }



    .order-card{

        padding:20px;

    }


    /*=========================================
    MOBILE ACCOUNT SIDEBAR
=========================================*/

.account-sidebar{

    position: fixed;
    top: 0;
    left: -280px;

    width: 280px;
    height: 100vh;

    background: #fff;

    z-index: 1000;

    overflow-y: auto;

    transition: left 0.3s ease;

    box-shadow: 0 0 20px rgba(0,0,0,0.15);

}

.account-sidebar.active{

    left: 0;

}

.hamburger{

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 1100;

}

    /*=========================================
        MY ORDERS RESPONSIVE
=========================================*/


    .order-card{

        padding:20px;

    }

    .order-header{

        flex-direction:column;

        align-items:flex-start;

        gap:10px;

    }

    .order-item{

        flex-direction:column;

        align-items:flex-start;

        gap:5px;

    }

    .order-card h4{

        margin-top:15px;

    }

    .order-card button{

        width:100%;

        margin-top:15px;

    }




/*==================================================
        CHECKOUT - MOBILE
    ==================================================*/



    .checkout-section{

        padding:120px 0 60px;

    }

    .checkout-section .container{

        width:94%;

    }

    .checkout-header{

        margin:0 0 35px;

    }

    .checkout-header h1{

        font-size:2rem;

        line-height:1.3;

    }

    .checkout-header p{

        font-size:15px;

    }

    .checkout-wrapper{

        grid-template-columns:1fr;

        gap:25px;

    }

    .checkout-left,
    .checkout-right{

        gap:20px;

    }

    .checkout-right{

        position:static;

    }

    .checkout-card{

        padding:22px;

        border-radius:16px;

    }

    .checkout-card h2{

        font-size:1.1rem;

        margin-bottom:22px;

    }

    .form-grid{

        grid-template-columns:1fr;

        gap:18px;

    }

    .form-group.full{

        grid-column:auto;

    }

    .delivery-status{

        align-items:flex-start;

    }

    .payment-option{

        padding:16px;

    }

    .checkout-product{

        align-items:flex-start;

    }

    .checkout-product img{

        width:70px;

        height:70px;

    }

    .checkout-product-left{

        align-items:flex-start;

    }

    .checkout-product strong{

        font-size:15px;

    }

    .summary-row{

        font-size:15px;

    }

    .grand-total{

        font-size:1.05rem;

    }

    .place-order-btn{

        height:54px;

    }

/*==================================================
        ORDER-SUCCESS - MOBILE
    ==================================================*/


    .order-success{

        padding:110px 0 60px;

    }

    .order-success .container{

        width:94%;

    }

    .success-card{

        padding:30px 22px;

        border-radius:18px;

    }

    .success-icon{

        width:80px;

        height:80px;

        font-size:40px;

        margin-bottom:22px;

    }

    .success-card h1{

        font-size:30px;

    }

    .success-card h2{

        font-size:20px;

        line-height:1.4;

    }

    .success-card > p{

        font-size:15px;

        margin-bottom:30px;

    }

    .order-info{

        grid-template-columns:1fr;

        gap:15px;

        margin-bottom:30px;

    }

    .order-details{

        margin-top:10px;

    }

    .order-details h3{

        font-size:22px;

        margin-bottom:20px;

    }

    .success-section{

        padding:20px;

    }

    .success-product{

        align-items:flex-start;

        gap:15px;

    }

    .success-product-left{

        align-items:flex-start;

        gap:14px;

    }

    .success-product img{

        width:65px;

        height:65px;

    }

    #successTotals .grand-total{

        font-size:18px;

    }

    #successTotals .grand-total span,

    #successTotals .grand-total strong{

        font-size:18px;

    }

    .success-buttons,

    .success-actions{

        flex-direction:column;

        gap:15px;

    }

    .btn-primary,

    .btn-secondary,

    .primary-btn,

    .secondary-btn{

        width:100%;

        min-width:100%;

    }


    /*==================================================
                PRIVACY POLICY
                MOBILE
==================================================*/

    .legal-page{

        padding:70px 0;

    }



    .legal-header{

        margin-bottom:35px;

    }



    .legal-header h1{

        font-size:34px;

    }



    .legal-header p{

        font-size:14px;

    }



    .legal-content{

        padding:30px;

        border-radius:18px;

    }



    .legal-content h2{

        font-size:22px;

        margin:28px 0 12px;

    }



    .legal-content p{

        font-size:15px;

        line-height:1.7;

    }



    .legal-content ul{

        padding-left:20px;

    }



    .legal-content li{

        font-size:15px;

        line-height:1.7;

        margin-bottom:6px;

    }

    
    .announcement-bar{

        height:36px;

    }


    .announcement-container{

        position:relative;

        height:100%;

        display:block;

        padding:0;

        overflow:hidden;

    }


    .announcement-item{

        position:absolute;

        top:0;

        left:0;

        width:100%;

        height:100%;

        display:flex;

        align-items:center;

        justify-content:center;

        gap:8px;

        opacity:0;

        visibility:hidden;

        transform:translateY(8px);

        transition:
            opacity .4s ease,
            transform .4s ease,
            visibility .4s ease;

    }


    .announcement-item.active{

        opacity:1;

        visibility:visible;

        transform:translateY(0);

    }


    .announcement-divider{

        display:none;

    }



    .header-search{

        display:none;

    }

    .section-heading h2{

        font-size:28px;

    }

    .category-buttons{

        justify-content:flex-start;

        overflow-x:auto;

        flex-wrap:nowrap;

        padding-bottom:10px;

        scrollbar-width:none;

    }

    .category-buttons::-webkit-scrollbar{

        display:none;

    }

    .category-chip{

    flex:0 0 auto;

    white-space:nowrap;

    padding:8px 16px;

    font-size:13px;

    }


}




















/*==================================================
            SMALL MOBILE
==================================================*/

@media (max-width:576px){

    .container{

    width:95%;

}

h1{

    font-size:32px;

}

h2{

    font-size:28px;

}

h3{

    font-size:22px;

}

section{

    padding:60px 0;

}

.logo img{

    width:135px;

}

.mobile-menu{

    width:100%;

    max-width:100%;

    padding:85px 20px 25px;

}

.hamburger{

    width:44px;

    height:44px;

    font-size:26px;

}

/*==================================================
                HERO
==================================================*/

.hero{

        padding:100px 0 60px;

    }

    .hero-content h1{

        font-size:34px;

    }

    .hero-content h3{

        font-size:18px;

    }

    .hero-content p{

        font-size:15px;

        line-height:26px;

    }

    .rating{

        flex-direction:column;

        gap:10px;

    }

    .btn-primary,
    .btn-secondary{

        width:100%;

        max-width:320px;

    }

    /*==================================================
        FEATURES - SMALL MOBILE
    ==================================================*/


    .features{

        padding:60px 0;

    }

    .feature-grid{

        gap:18px;

    }

    .feature-box{

        padding:28px 20px;

    }

    .feature-box i{

        width:62px;

        height:62px;

        font-size:24px;

        margin-bottom:18px;

    }

    .feature-box h3{

        font-size:22px;

    }

    .feature-box p{

        font-size:14px;

        line-height:26px;

    }

    /*==================================================
    HOW IT WORKS - SMALL MOBILE
    ==================================================*/

    .how-it-works{

        padding:60px 0;

    }

    .steps{

        gap:18px;

        margin-top:35px;

    }

    .step{

        padding:30px 20px;

    }

    .step-number{

        width:44px;

        height:44px;

        font-size:15px;

        margin-bottom:18px;

    }

    .step-icon{

        width:68px;

        height:68px;

        margin-bottom:18px;

    }

    .step-icon i{

        font-size:24px;

    }

    .step h3{

        font-size:20px;

    }

    .step p{

        font-size:14px;

        line-height:26px;

    }

    /*==================================================
        PRODUCTS - SMALL MOBILE
    ==================================================*/

    .products{

        padding:60px 0;

    }

    .product-card{

        padding:18px;

    }

    .product-content{

        gap:18px;

    }

    .product-image img{

        max-width:130px;

    }

    .product-info h3{

        font-size:18px;

    }

    .product-info p{

        font-size:14px;

        line-height:24px;

    }

    .offer-price{

        font-size:20px;

    }

    .product-btn{

        padding:13px 18px;

        font-size:13px;

    }

    .view-products{

        width:100%;

        justify-content:center;

    }

    /*==================================================
    QUICK VIEW - SMALL MOBILE
    ==================================================*/

    .quick-view-modal{

        width:95%;

        border-radius:18px;

    }

    .quick-view-content{

        padding:20px;

        gap:20px;

    }

    .quick-image img{

        max-width:180px;

    }

    .quick-details h2{

        font-size:22px;

    }

    .quick-price{

        font-size:24px;

    }

    .quick-details p{

        font-size:14px;

        line-height:26px;

    }

    .quick-features li{

        font-size:14px;

        margin-bottom:10px;

    }

    .quick-cart-btn{

        height:50px;

        font-size:15px;

    }

    .quick-close{

        width:38px;

        height:38px;

    }

    /*==================================================
    TESTIMONIALS - SMALL MOBILE
    ==================================================*/

    .testimonials{

        padding:60px 0;

    }

    .testimonial-grid{

        gap:18px;

    }

    .testimonial-card{

        padding:20px;

    }

    .testimonial-top{

        flex-direction:column;

        align-items:flex-start;

        gap:12px;

    }

    .user{

        gap:10px;

    }

    .avatar{

        width:42px;

        height:42px;

    }

    .user h4{

        font-size:14px;

    }

    .testimonial-card .stars{

        font-size:14px;

    }

    .testimonial-card p{

        font-size:14px;

        line-height:26px;

    }

    /*==================================================
    BEFORE & AFTER - SMALL MOBILE
    ==================================================*/

    .before-after{

        padding:60px 0;

    }

    .ba-grid{

        gap:18px;

    }

    .ba-card{

        padding:16px;

    }

    .ba-card h3{

        font-size:17px;

    }

    .ba-images{

        gap:10px;

    }

    .ba-box img{

        height:130px;

    }

    .ba-box span{

        font-size:9px;

        padding:3px 7px;

    }

    .ba-card p{

        font-size:14px;

        line-height:26px;

    }

    /*==================================================
            FAQ - SMALL MOBILE
    ==================================================*/

    .faq{

        padding:60px 0;

    }

    .faq-grid{

        gap:16px;

    }

    .faq-item{

        padding:18px;

    }

    .faq-item h3{

        font-size:15px;

        padding-left:16px;

    }

    .faq-item h3::before{

        width:7px;

        height:7px;

        top:7px;

    }

    .faq-item p{

        font-size:14px;

        line-height:26px;

    }

    /*==================================================
        FINAL CTA - SMALL MOBILE
    ==================================================*/

    .final-cta{

        padding:60px 0;

    }

    .cta-box{

        padding:20px;

    }

    .cta-content h2{

        font-size:22px;

    }

    .cta-content p{

        font-size:14px;

        line-height:26px;

    }

    .cta-features{

        flex-direction:column;

        align-items:flex-start;

        gap:12px;

    }

    .cta-buttons{

        gap:12px;

    }

    .cta-btn{

        padding:13px 20px;

        font-size:15px;

    }

    .cta-highlight{

        padding:22px;

    }

    .cta-highlight h3{

        font-size:22px;

    }

    .cta-highlight p{

        font-size:14px;

    }

    .offer-badge{

        font-size:11px;

    }

    .timer{

        font-size:12px;

        padding:8px;

    }

    /*==================================================
            FOOTER - SMALL MOBILE
    ==================================================*/

    .footer{

        margin-top:60px;

        padding:50px 0 25px;

    }

    .footer-top{

        gap:30px;

    }

    .footer-column h3{

        font-size:18px;

    }

    .footer-about p{

        font-size:14px;

        line-height:26px;

    }

    .footer-newsletter{

        padding:20px;

    }

    .footer-newsletter h3{

        font-size:20px;

    }

    .footer-newsletter p{

        font-size:14px;

    }

    .footer-newsletter input{

        height:52px;

        font-size:14px;

    }

    .footer-newsletter button{

        height:52px;

        font-size:15px;

    }

    .trust-item{

        padding:20px;

        gap:15px;

    }

    .trust-item i{

        font-size:30px;

    }

    .trust-item h4{

        font-size:16px;

    }

    .trust-item span{

        font-size:13px;

    }

    .payment-icons{

        gap:15px;

    }

    .payment-icons i{

        font-size:34px;

    }

    .footer-bottom p{

        font-size:14px;

        line-height:24px;

    }
    
    /*==================================================
        ACCOUNT - SMALL MOBILE
    ==================================================*/

    .account-page{

        padding:90px 0 40px;

    }



    .account-content{

        padding:20px;

        border-radius:16px;

    }



    .account-user{

        padding:22px 15px;

    }



    .user-avatar{

        width:65px;

        height:65px;

    }



    .user-avatar i{

        font-size:30px;

    }



    .account-user h3{

        font-size:18px;

    }



    .account-user p{

        font-size:13px;

    }





    .account-menu li{

        padding:14px 16px;

        font-size:14px;

        gap:10px;

    }





    .account-content h2{

        font-size:22px;

    }





    .dashboard-card{

        padding:20px;

    }



    .dashboard-card h3{

        font-size:17px;

    }



    .dashboard-card p{

        font-size:14px;

    }





    .account-content button{

        width:100%;

    }





    .address-card{

        padding:20px;

    }



    .address-card h3{

        font-size:18px;

    }



    .default-badge{

        font-size:11px;

        padding:5px 10px;

    }





    .order-card{

        padding:18px;

    }



    .order-header h3{

        font-size:17px;

    }



    .order-status{

        font-size:12px;

        padding:6px 12px;

    }



    .order-item{

        font-size:14px;

    }

    /*=========================================
        MY ORDERS RESPONSIVE
=========================================*/

    .orders-section{

        padding:20px 15px;

    }

    .orders-section h2{

        font-size:24px;

    }

    .order-card{

        padding:15px;

    }

    .order-header h3{

        font-size:18px;

    }

    .order-status{

        font-size:12px;

        padding:5px 10px;

    }

    .order-item{

        font-size:14px;

    }

    .order-card h4{

        font-size:18px;

    }


    


/*==================================================
    CHECKOUT - SMALL MOBILE
    ==================================================*/

    .checkout-section{

        padding:120px 0 50px;

    }

    .checkout-header{

        margin-bottom:30px;

    }

    .checkout-header h1{

        font-size:1.7rem;

    }

    .checkout-header p{

        font-size:14px;

        line-height:1.6;

    }

    .section-tag{

        font-size:.7rem;

        padding:7px 16px;

        letter-spacing:1px;

    }

    .checkout-card{

        padding:18px;

        border-radius:16px;

    }

    .checkout-card h2{

        font-size:1rem;

        gap:10px;

    }

    .checkout-card h2 i{

        width:38px;

        height:38px;

        font-size:14px;

    }

    .form-group label{

        font-size:14px;

    }

    .form-group input{

        height:48px;

        font-size:14px;

        padding:0 14px;

    }

    .delivery-status{

        gap:14px;

        padding:15px;

    }

    .delivery-icon{

        width:45px;

        height:45px;

        font-size:18px;

    }

    .delivery-text h4{

        font-size:.95rem;

    }

    .delivery-text p{

        font-size:.85rem;

    }

    .payment-option{

        padding:14px;

        gap:12px;

    }

    .checkout-product{

        gap:12px;

    }

    .checkout-product-left{

        gap:12px;

    }

    .checkout-product img{

        width:60px;

        height:60px;

    }

    .checkout-product h4{

        font-size:14px;

    }

    .checkout-product span{

        font-size:12px;

    }

    .checkout-product strong{

        font-size:15px;

    }

    .summary-row{

        font-size:14px;

    }

    .grand-total{

        font-size:1rem;

    }

    .place-order-btn{

        height:50px;

        font-size:15px;

    }



/*==================================================
    ORDER-SUCCESS - SMALL MOBILE
    ==================================================*/


    .order-success{

        padding:100px 0 50px;

    }

    .success-card{

        padding:24px 18px;

        border-radius:16px;

    }

    .success-icon{

        width:70px;

        height:70px;

        margin-bottom:20px;

        font-size:34px;

    }

    .success-card h1{

        font-size:26px;

    }

    .success-card h2{

        font-size:18px;

        margin-bottom:16px;

    }

    .success-card > p{

        font-size:14px;

        line-height:1.7;

        margin-bottom:25px;

    }

    .order-info{

        gap:12px;

        margin-bottom:25px;

    }

    .order-info div{

        padding:18px;

    }

    .order-info span{

        font-size:13px;

    }

    .order-info strong{

        font-size:17px;

    }

    .order-details h3{

        font-size:20px;

    }

    .success-section{

        padding:18px;

    }

    .success-section h4{

        font-size:16px;

    }

    .success-section p{

        font-size:14px;

        line-height:1.5;

    }

    .success-product{

        gap:12px;

    }

    .success-product-left{

        gap:12px;

    }

    .success-product img{

        width:55px;

        height:55px;

    }

    .success-product h4{

        font-size:14px;

    }

    .success-product span{

        font-size:12px;

        padding:3px 8px;

    }

    .success-product strong{

        font-size:15px;

    }

    #successTotals .summary-row{

        font-size:14px;

    }

    #successTotals .grand-total{

        font-size:16px;

    }

    #successTotals .grand-total span,

    #successTotals .grand-total strong{

        font-size:16px;

    }

    .btn-primary,

    .btn-secondary,

    .primary-btn,

    .secondary-btn{

        height:50px;

        font-size:14px;

        padding:0 18px;

    }


    /*==================================================
                PRIVACY POLICY
                SMALL MOBILE
==================================================*/

    .legal-page{

        padding:60px 0;

    }



    .legal-header{

        margin-bottom:30px;
        margin-top: 60px;

    }



    .legal-header h1{

        font-size:30px;

    }



    .legal-header p{

        font-size:13px;

    }



    .legal-content{

        padding:22px;

        border-radius:16px;

    }



    .legal-content h2{

        font-size:20px;

        margin:25px 0 10px;

    }



    .legal-content p{

        font-size:14px;

        line-height:1.65;

        margin-bottom:16px;

    }



    .legal-content ul{

        padding-left:18px;

        margin-bottom:18px;

    }



    .legal-content li{

        font-size:14px;

        line-height:1.65;

        margin-bottom:5px;

    }

}















@media(max-width:1300px){

.left-ad,
.right-ad{

display:none;

}

}




html,
body{
    overflow-x:hidden;
}




