/* =====================================================
   RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f6fa;
    color:#222;
}

/* =====================================================
   CONTAINER
===================================================== */

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* =====================================================
   HEADER
===================================================== */

.header{

    width:100%;
    height:80px;

    background:#ffffff;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 40px;

    position:sticky;
    top:0;

    z-index:999;

    box-shadow:
    0 3px 10px rgba(0,0,0,.08);

}

.logo{

    font-size:28px;
    font-weight:700;
    color:#111;

}

.navbar ul{

    list-style:none;

    display:flex;

    gap:25px;

}

.navbar a{

    text-decoration:none;

    color:#222;

    font-size:16px;

    transition:.3s;

}

.navbar a:hover{

    color:#0066ff;

}

.cart-button button{

    border:none;

    background:#0066ff;

    color:#fff;

    padding:12px 20px;

    border-radius:8px;

    cursor:pointer;

    font-size:15px;

    transition:.3s;

}

.cart-button button:hover{

    transform:translateY(-2px);

}

#cartCount{

    background:red;

    color:#fff;

    padding:2px 8px;

    border-radius:50px;

    margin-left:5px;

}

/* =====================================================
   HERO SECTION
===================================================== */

.hero{

    width:100%;

    min-height:550px;

    background:
    linear-gradient(
    rgba(0,0,0,.55),
    rgba(0,0,0,.55)
    ),
    url("images/banner.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

}

.hero-content{

    max-width:800px;

    padding:20px;

}

.hero-content h1{

    font-size:55px;

    color:white;

    margin-bottom:20px;

}

.hero-content p{

    font-size:22px;

    color:white;

    line-height:1.8;

    margin-bottom:30px;

}

.shop-btn{

    border:none;

    background:#0066ff;

    color:white;

    padding:18px 40px;

    border-radius:10px;

    cursor:pointer;

    font-size:18px;

    transition:.3s;

}

.shop-btn:hover{

    transform:scale(1.05);

}

/* =====================================================
   SEARCH SECTION
===================================================== */

.search-section{

    padding:40px 20px;

    background:white;

}

.search-box{

    max-width:700px;

    margin:auto;

}

.search-box input{

    width:100%;

    height:60px;

    border:1px solid #ddd;

    border-radius:10px;

    padding:0 20px;

    font-size:18px;

    outline:none;

}

.search-box input:focus{

    border-color:#0066ff;

}

/* =====================================================
   PRODUCT SECTION
===================================================== */

.products-section{

    padding:80px 40px;

}

.section-title{

    text-align:center;

    font-size:42px;

    margin-bottom:50px;

}

.product-card{

    background:white;

    border-radius:16px;

    overflow:hidden;

    box-shadow:
    0 4px 12px rgba(0,0,0,.08);

    transition:.3s;

}

.product-card:hover{

    transform:translateY(-8px);

}

.product-card img{

    width:100%;
    aspect-ratio:1/1;

    object-fit:contain;

    background:#ffffff;

    padding:10px;

}
.product-card h3{

    font-size:24px;

    padding:15px;

}

.price-box{

    padding:0 15px;

}

.old-price{

    text-decoration:line-through;

    color:red;

    margin-right:10px;

}

.new-price{

    color:green;

    font-size:24px;

    font-weight:bold;

}

.product-card p{

    padding:15px;

    line-height:1.7;

    color:#555;

}

.add-cart{

    width:calc(100% - 30px);

    margin:15px;

    height:50px;

    border:none;

    background:#0066ff;

    color:white;

    border-radius:10px;

    cursor:pointer;

    font-size:16px;

    transition:.3s;

}

.add-cart:hover{

    background:#0052cc;

}




/* =====================================================
   CART SIDEBAR
===================================================== */

.cart-sidebar{

    position:fixed;

    top:0;

    right:-450px;

    width:450px;

    max-width:100%;

    height:100vh;

    background:#ffffff;

    z-index:9999;

    box-shadow:
    -5px 0 20px rgba(0,0,0,.15);

    transition:.4s ease;

    overflow-y:auto;

}

.cart-sidebar.active{

    right:0;

}

.cart-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px;

    border-bottom:1px solid #ddd;

}

.cart-header h2{

    font-size:24px;

}

.cart-header button{

    border:none;

    background:red;

    color:white;

    width:35px;

    height:35px;

    border-radius:50%;

    cursor:pointer;

}

.cart-items{

    padding:20px;

}

.cart-item{

    border:1px solid #eee;

    border-radius:10px;

    padding:15px;

    margin-bottom:15px;

}

.cart-item-name{

    font-weight:bold;

    margin-bottom:10px;

}

.cart-item-price{

    color:green;

    margin-bottom:10px;

}

.cart-controls{

    display:flex;

    align-items:center;

    gap:10px;

}

.cart-controls button{

    width:35px;

    height:35px;

    border:none;

    background:#0066ff;

    color:white;

    border-radius:6px;

    cursor:pointer;

}

.remove-item{

    margin-top:10px;

    background:red !important;

}

.cart-summary{

    padding:20px;

    border-top:1px solid #ddd;

}

.summary-row{

    display:flex;

    justify-content:space-between;

    margin-bottom:15px;

}

.total-row{

    font-size:22px;

    font-weight:bold;

    color:green;

}

/* =====================================================
   CHECKOUT SECTION
===================================================== */

.checkout-section{

    padding:80px 20px;

    background:#ffffff;

}

.checkout-container{

    max-width:900px;

    margin:auto;

    background:#f8f9fb;

    padding:40px;

    border-radius:15px;

}

.checkout-container h2{

    text-align:center;

    margin-bottom:30px;

    font-size:36px;

}

.form-group{

    margin-bottom:20px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:bold;

}

.form-group input{

    width:100%;

    height:55px;

    border:1px solid #ddd;

    border-radius:10px;

    padding:0 15px;

    font-size:16px;

}

.form-group textarea{

    width:100%;

    border:1px solid #ddd;

    border-radius:10px;

    padding:15px;

    font-size:16px;

    resize:none;

}

/* =====================================================
   DELIVERY OPTIONS
===================================================== */

.delivery-options{

    margin-top:30px;

    margin-bottom:30px;

}

.delivery-options h3{

    margin-bottom:15px;

}

.delivery-options label{

    display:block;

    margin-bottom:12px;

    font-size:16px;

}

/* =====================================================
   ORDER SUMMARY
===================================================== */

.order-summary{

    margin-top:30px;

    background:white;

    padding:25px;

    border-radius:12px;

}

.order-summary h3{

    margin-bottom:20px;

}

.summary-box{

    display:flex;

    justify-content:space-between;

    margin-bottom:15px;

}

.grand-total{

    font-size:22px;

    font-weight:bold;

    color:green;

    border-top:1px solid #ddd;

    padding-top:15px;

}

/* =====================================================
   ORDER BUTTON
===================================================== */

.order-btn{

    width:100%;

    height:60px;

    border:none;

    background:#28a745;

    color:white;

    font-size:20px;

    font-weight:bold;

    border-radius:10px;

    margin-top:30px;

    cursor:pointer;

    transition:.3s;

}

.order-btn:hover{

    background:#218838;

}

/* =====================================================
   FOOTER
===================================================== */

.footer{

    background:#111827;

    color:white;

    padding-top:60px;

}

.footer-container{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

    max-width:1200px;

    margin:auto;

    padding:0 20px 40px;

}

.footer-box h3{

    margin-bottom:20px;

}

.footer-box p{

    line-height:1.8;

}

.footer-box a{

    color:#ffffff;

    text-decoration:none;

    line-height:2;

}

.footer-box a:hover{

    text-decoration:underline;

}

.copyright{

    text-align:center;

    border-top:1px solid rgba(255,255,255,.15);

    padding:20px;

}

/* =====================================================
   OVERLAY
===================================================== */

.overlay{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.5);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9998;

}

.overlay.active{

    opacity:1;

    visibility:visible;

}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media(max-width:768px){

    .header{

        flex-direction:column;

        height:auto;

        padding:15px;

        gap:15px;

    }

    .navbar ul{

        flex-wrap:wrap;

        justify-content:center;

    }

    .hero{

        min-height:420px;

    }

    .hero-content h1{

        font-size:34px;

    }

    .hero-content p{

        font-size:18px;

    }

    .section-title{

        font-size:30px;

    }

    .checkout-container{

        padding:20px;

    }

    .checkout-container h2{

        font-size:28px;

    }

    .cart-sidebar{

        width:100%;

    }

}

@media(max-width:480px){

    .hero-content h1{

        font-size:28px;

    }

    .hero-content p{

        font-size:16px;

    }

    .shop-btn{

        width:100%;

    }

    .order-btn{

        font-size:18px;

    }

}


*{
    box-sizing:border-box;
}

img{
    max-width:100%;
    height:auto;
}


@media(max-width:768px){

    body{
        font-size:14px;
    }

    .container{
        width:95%;
    }
}



@media(max-width:768px){

    .product-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .product-card img{
        height:200px;
        object-fit:cover;
    }
}



/* FORCE DESKTOP + TABLET 2 COLUMN */
.product-grid{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:20px !important;
}

/* tablet */
@media(max-width:1024px){
    .product-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }
}

/* mobile (force 2 column even in inspect) */
@media(max-width:768px){
    .product-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }
}

/* very small mobile only 1 column */
@media(max-width:420px){
    .product-grid{
        grid-template-columns:1fr !important;
    }
}



/* =========================
   MOBILE PRODUCT GRID FIX
========================= */

.product-grid{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:10px !important;
}

/* small mobile */
@media(max-width:480px){
    .product-grid{
        grid-template-columns:1fr !important;
    }
}


.hero{
    position:relative;
    height:550px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-align:center;
}

.hero-slider{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
}

.hero-slider img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:1s ease;
}

.hero-slider img.active{
    opacity:1;
}

.hero-content{
    position:relative;
    z-index:2;
    background:rgba(29, 5, 240, 0.5);
    padding:20px;
    border-radius:10px;
}






/* =====================================================
   PREMIUM & MODERN HERO SECTION OVERRIDE New work for all
===================================================== */




/* =====================================================
   PREMIUM & MODERN HERO SECTION OVERRIDE
===================================================== */

/* ১. পেছনের ব্যাকগ্রাউন্ড (খুব সফট ও প্রিমিয়াম গ্রে-ব্লু গ্র্যাডিয়েন্ট) */
.hero {
    background: linear-gradient(135deg, #f6f8fd 0%, #edf2f7 100%) !important; 
    position: relative !important;
    overflow: hidden !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

/* ব্যাকগ্রাউন্ডে একটি সূক্ষ্ম কালার আভা (ডিজাইনকে আরও সুন্দর করতে) */
.hero::before {
    content: "" !important;
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    background: radial-gradient(circle at top right, rgba(0, 82, 204, 0.04), transparent 50%),
                radial-gradient(circle at bottom left, rgba(0, 82, 204, 0.04), transparent 50%) !important;
    pointer-events: none !important;
}

/* ২. মূল নীল বক্স (প্রিমিয়াম ব্লু গ্র্যাডিয়েন্ট ও মডার্ন গ্লাস ইফেক্ট) */
.hero-content {
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%) !important; 
    padding: 60px 50px !important;
    border-radius: 24px !important;
    
    /* বক্সে চমৎকার থ্রিডি লুক ও গ্লোয়িং শ্যাডো */
    box-shadow: 0 25px 50px rgba(0, 82, 204, 0.25), 
                inset 0 1px 0 rgba(255, 255, 255, 0.2) !important; 
    border: 1px solid rgba(255, 255, 255, 0.1) !important; 
    backdrop-filter: blur(10px) !important; 
    
    max-width: 850px !important;
    position: relative !important;
    z-index: 2 !important;
}

/* ৩. বাটনের ডিজাইন (ল্যান্ডিং পেজের জন্য মডার্ন রাউন্ডেড বাটন) */
.hero-content .shop-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    color: #0052cc !important; /* লেখার কালার নীল */
    border-radius: 50px !important; /* বাটনটি গোল/ক্যাপসুলের মতো হবে */
    padding: 16px 45px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

/* বাটনে মাউস নিলে সুন্দর একটি হোভার ইফেক্ট */
.hero-content .shop-btn:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25) !important;
    background: #ffffff !important;
}






/******/



/* =====================================================
   FORCE 2 COLUMNS ON MOBILE (PERFECT VIEW)
===================================================== */

@media (max-width: 768px) {
    /* প্রোডাক্ট গ্রিডকে ২ কলাম করা হলো */
    .product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important; /* মোবাইলের জন্য মাঝখানের ফাঁকা জায়গা কমানো হলো */
        padding: 10px !important;
    }

    /* মোবাইলের স্ক্রিনে ছবি সুন্দরভাবে মানানোর জন্য */
    .product-card img {
        height: 150px !important;
        object-fit: cover !important;
        padding: 5px !important;
    }

    /* মোবাইলে প্রোডাক্টের নামের সাইজ ছোট করা হলো */
    .product-card h3 {
        font-size: 16px !important;
        padding: 10px 10px 5px 10px !important;
        white-space: nowrap !important; 
        overflow: hidden !important;
        text-overflow: ellipsis !important; /* নাম বড় হলে শেষে ... দেখাবে */
    }

    /* মোবাইলে দামের সাইজ */
    .new-price {
        font-size: 18px !important;
    }

    .price-box {
        padding: 0 10px !important;
    }

    /* 'Add to Cart' বাটনটিকে মোবাইলের জন্য পারফেক্ট করা হলো */
    .add-cart {
        width: calc(100% - 20px) !important;
        margin: 10px !important;
        height: 40px !important;
        font-size: 14px !important;
    }
}



/** HERO SLIDER FINAL WORK*/


/* =====================================================
   FINAL SLIDER FIX (HORIZONTAL)
===================================================== */
.hero-slider {
    display: flex !important;
    flex-wrap: nowrap !important;
    transition: transform 0.6s ease-in-out !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

.hero-slider .slide {
    position: relative !important; /* আগের absolute পজিশন বাতিল করবে */
    min-width: 100% !important;
    height: 100% !important;
    opacity: 1 !important; /* আগের ফেইড ইফেক্ট বাতিল করবে */
    background-size: cover !important;
    background-position: center !important;
}




/* =====================================================
   SPACING & PRODUCT IMAGE (1:1) FIX
===================================================== */

/* সার্চ বক্সের চারপাশের অতিরিক্ত ফাঁকা জায়গা কমানো */
.search-section {
    padding: 20px 20px !important; /* আগে 40px ছিল, এখন কমিয়ে 20px করা হলো */
}

/* প্রোডাক্ট সেকশনের ওপরের বিশাল গ্যাপ কমানো */
.products-section {
    padding: 30px 20px !important; /* আগে 80px ছিল, এখন কমিয়ে 30px করা হলো */
}

/* 'Featured Products' লেখার নিচের গ্যাপ কমানো এবং সাইজ ঠিক করা */
.section-title {
    margin-bottom: 25px !important; /* আগে 50px ছিল */
    font-size: 32px !important; /* মোবাইলে ও ডেস্কটপে সুন্দর দেখানোর জন্য */
}

/* প্রোডাক্টের ছবিগুলো একদম পারফেক্ট ১:১ (স্কয়ার) সাইজের করা */
.product-card img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important; /* পারফেক্ট ১:১ রেশিও */
    object-fit: cover !important; /* ছবি না ফেটে পুরো বক্স সুন্দরভাবে ফিল করবে */
    padding: 0 !important; /* আগের প্যাডিং বাদ দেওয়া হলো যাতে ফুল স্কয়ার হয় */
    border-bottom: 1px solid #eee !important; /* ছবির নিচে হালকা একটি বর্ডার */
}




/* =====================================================
   MOBILE SLIDER HEIGHT FIX
===================================================== */

@media (max-width: 768px) {
    /* ট্যাবলেট ও বড় মোবাইলের জন্য স্লাইডারের উচ্চতা */
    .hero {
        height: 220px !important; 
        min-height: 220px !important;
    }

    /* স্লাইডারের ভেতরের নাম ও দামের বক্সটি মোবাইলের জন্য মানানসই করা */
    .hero .slide div {
        bottom: 15px !important;
        padding: 6px 15px !important;
    }

    .hero .slide div h3 {
        font-size: 16px !important;
        margin-bottom: 2px !important;
    }

    .hero .slide div p {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    /* সাধারণ ছোট মোবাইলের জন্য স্লাইডারের উচ্চতা আরও কমানো হলো */
    .hero {
        height: 180px !important; 
        min-height: 180px !important;
    }
}




/* =====================================================
   PREMIUM SEARCH BAR UI
===================================================== */
.search-section {
    padding: 30px 20px 10px !important;
    background: #f5f6fa !important; /* হালকা ব্যাকগ্রাউন্ড যাতে সার্চ বক্সটি ফুটে ওঠে */
}

.search-box {
    max-width: 650px !important;
    margin: auto !important;
    position: relative !important;
}

.search-box input {
    width: 100% !important;
    height: 55px !important;
    border: none !important;
    border-radius: 50px !important; /* মডার্ন রাউন্ডেড শেপ */
    /* সার্চ আইকন যুক্ত করা হয়েছে (SVG) */
    background: #e9dcdc url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23888" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>') no-repeat 20px center !important; 
    padding: 0 25px 0 55px !important; /* আইকনের জন্য জায়গা রাখা */
    font-size: 16px !important;
    color: #333 !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06) !important; /* সুন্দর ফ্লোটিং শ্যাডো */
    transition: all 0.3s ease !important;
    outline: none !important;
}

/* সার্চ বক্সে ক্লিক করলে সুন্দর একটি গ্লো (Glow) আসবে */
.search-box input:focus {
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15) !important;
    border: 1px solid rgba(0, 102, 255, 0.3) !important;
}

/* =====================================================
   PREMIUM SLIDER CARD LOOK
===================================================== */
.hero {
    width: 95% !important; /* ফুল স্ক্রিন না করে একটু ছোট করা হলো */
    max-width: 1200px !important;
    margin: 10px auto 30px !important; /* চারদিকে সুন্দর গ্যাপ */
    border-radius: 16px !important; /* কোণাগুলো রাউন্ড করে স্মার্ট লুক */
    overflow: hidden !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1) !important; /* কার্ডের মতো ভাসমান ইফেক্ট */
}

/* মোবাইলের জন্য স্লাইডারের ডিজাইন অ্যাডজাস্টমেন্ট */
@media (max-width: 768px) {
    .hero {
        width: 92% !important;
        border-radius: 12px !important;
        margin: 15px auto 25px !important;
    }
}


/* =====================================================
   SMALLER SQUARE SLIDER (1:1)
===================================================== */

.hero {
    aspect-ratio: 1 / 1 !important; 
    height: auto !important; 
    min-height: auto !important;
    
    /* ডেস্কটপে সাইজ কমানো হলো (আগে 450px ছিল, এখন 350px করা হলো) */
    max-width: 350px !important; 
    
    margin: 20px auto 30px !important; 
}

.hero-slider .slide {
    background-size: cover !important; 
    background-position: center !important;
}

/* মোবাইলের জন্য স্লাইডারের সাইজ অ্যাডজাস্টমেন্ট */
@media (max-width: 768px) {
    .hero {
        /* মোবাইলে সাইজ কমানো হলো (আগে 92% ছিল, এখন 75% করা হলো) */
        max-width: 75% !important; 
        aspect-ratio: 1 / 1 !important; 
        height: auto !important;
    }
}



/* =====================================================
   BOTTOM FLOATING NAVIGATION BAR (APP STYLE)
===================================================== */
/* ডেস্কটপে এটি হাইড থাকবে, শুধু মোবাইলে দেখাবে */
.bottom-nav {
    display: none; 
}

@media (max-width: 768px) {
    body {
        padding-bottom: 90px !important; /* নিচে যেন কোনো প্রোডাক্ট ঢাকা না পড়ে যায় */
    }

    .bottom-nav {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: fixed !important;
        bottom: 20px !important; /* নিচ থেকে ২০ পিক্সেল উপরে ভাসবে */
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 92% !important;
        background: #f48721 !important; /* স্ক্রিনশটের মতো ডার্ক ব্লু/ব্ল্যাক ব্যাকগ্রাউন্ড */
        padding: 8px 12px !important;
        border-radius: 20px !important; /* দ্বীপের মতো গোল শেপ */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
        z-index: 9999 !important;
    }

    .nav-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-decoration: none !important;
        color: #ffffff !important; /* সাধারণ বাটনের কালার */
        font-size: 11px !important;
        font-weight: bold !important;
        padding: 8px 14px !important;
        border-radius: 15px !important;
        transition: 0.3s ease !important;
    }

    .nav-item .icon {
        font-size: 18px !important;
        margin-bottom: 4px !important;
    }

    /* অ্যাকটিভ বাটন (Home) এর ডিজাইন স্ক্রিনশটের মতো */
    .nav-item.active {
        background: #7bf1c7 !important; /* মিন্ট গ্রিন কালার */
        color: #111 !important; /* টেক্সট কালো */
    }

    .nav-item.active .icon {
        filter: grayscale(100%) brightness(0) !important; /* ইমোজিকে কালো করার জন্য */
    }
}



/* =====================================================
   HIDE TOP MENU ON MOBILE (APP LOOK)
===================================================== */
@media (max-width: 768px) {
    /* উপরের টেক্সট লিংক এবং কার্ট বাটন হাইড করা হলো */
    .navbar, .cart-button {
        display: none !important;
    }
    
    /* লোগোটিকে একদম মাঝখানে নিয়ে আসার জন্য */
    .header {
        justify-content: center !important;
        padding: 15px !important;
    }
}


/* =====================================================
   PERFECT LOGO SIZING & ALIGNMENT
===================================================== */
/* হেডারের ডিজাইন - যাতে সবকিছু বাম পাশে থাকে */
/* =====================================================
   HEADER & LOGO PERFECT ALIGNMENT (DESKTOP & MOBILE)
===================================================== */

/* ডেস্কটপ ভিউ: লোগো ও লেখা বাম পাশে এবং লম্বালম্বি মাঝখানে থাকবে */
.header {
    display: flex !important;
    align-items: center !important; /* উপরে লেগে থাকার সমস্যা সমাধান করবে */
    height: 70px !important;
    padding: 0 20px !important;
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    position: relative !important;
}

.logo {
    display: flex !important;
    align-items: center !important; /* লেখাকেও মাঝখানে রাখবে */
    width: 100% !important;
    gap: 12px !important; /* ডেস্কটপে ছবি ও লেখার গ্যাপ */
}

.logo img {
    width: 45px !important;
    height: 45px !important;
    object-fit: contain !important;
    display: block !important;
}

.logo span {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #111 !important;
}

/* মোবাইল ভিউ: ছবি বামে এবং লেখা ঠিক সেন্টারে */
@media (max-width: 768px) {
    .header {
        height: 60px !important;
        padding: 0 15px !important;
    }

    .logo {
        position: relative !important; /* ছবিকে পজিশন করার জন্য */
        justify-content: center !important; /* লেখাকে স্ক্রিনের ঠিক মাঝখানে আনবে */
    }

    .logo img {
        position: absolute !important;
        left: 0 !important; /* ছবিকে একদম বাম পাশে আটকে রাখবে */
        top: 50% !important; 
        transform: translateY(-50%) !important; /* ছবিকে লম্বালম্বি একদম মাঝখানে রাখবে (উপরে যাবে না) */
        width: 35px !important;
        height: 35px !important;
    }

    .logo span {
        font-size: 18px !important;
    }

    /* মোবাইলে উপরের মেনু হাইড থাকবে */
    .navbar, .cart-button {
        display: none !important;
    }
}



/* =========================
   PREMIUM WEBSITE BACKGROUND
========================= */

body{
    background:
    linear-gradient(180deg,#f8fbff 0%,#eef5ff 45%,#ffffff 100%) !important;
}

.header{
    background:rgba(255, 255, 255, 0.85) !important;
    backdrop-filter:blur(15px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.products-section{
    background:transparent;
}

.checkout-section{
    background:#ffffff;
    border-radius:30px 30px 0 0;
}

.footer{
    background:#0f172a !important;
}

.product-card{
    border:1px solid #edf2f7;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,102,255,.18);
}

.section-title{
    color:#0f172a;
    font-weight:700;
}




/* হেডার ও এর ভেতরের এলিমেন্ট এক লাইনে রাখা */
.header {
    width: 100% !important;
    background: #ffffff !important;
    padding: 10px 15px !important;
    display: flex !important;
    align-items: center !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
}

.header-main {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 10px !important;
}

.logo-side { display: flex !important; align-items: center !important; gap: 5px !important; flex-shrink: 0; }
.logo-side img { width: 30px !important; height: 30px !important; }
.logo-side span { font-size: 14px !important; font-weight: 700; white-space: nowrap; }

.search-side { flex-grow: 1 !important; margin: 0 10px !important; }
.search-side input {
    width: 100% !important;
    height: 35px !important;
    border: 1px solid #ddd !important;
    border-radius: 20px !important;
    padding: 0 15px !important;
    font-size: 13px !important;
    outline: none;
}

.cart-side { flex-shrink: 0; }


/* প্রোডাক্ট কার্ডের new color code work স্টাইল */
/* প্রোডাক্ট কার্ডের new color code work স্টাইল */
/* প্রোডাক্ট কার্ডের new color code work স্টাইল */
/* প্রোডাক্ট কার্ডের new color code work স্টাইল */

/* সেকশন ব্যাকগ্রাউন্ড - হালকা গ্রে/বেজ কালার */
.products-section {
    background: #f4f1ed !important; /* রেফারেন্সের সাথে মিল রেখে */
    padding: 40px 15px !important;
}






/* প্রোডাক্ট কার্ডের স্টাইল */


.product-card {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    box-shadow: none !important; /* রেফারেন্সের মতো শ্যাডো সরিয়ে বর্ডার দেওয়া হলো */
    padding: 10px !important;
}

/* প্রোডাক্ট টাইটেল ও প্রাইস */
.product-card h3 {
    font-size: 15px !important;
    color: #666 !important;
    margin: 10px 0 !important;
}

.new-price {
    color: #f48721 !important; /* রেফারেন্সের মতো গাঢ় কমলা/মরিচ কালার */
    font-weight: bold !important;
}




/* Add to Cart বাটন */
.add-cart {
    background: #f48721 !important; /* গাঢ় কমলা */
    border-radius: 4px !important;
    font-weight: 600 !important;
}

.add-cart:hover {
    background: #a34a2a !important;
}


/* হেডার বক্স স্টাইল */
.section-title {
    background: #ffffff !important;
    border-left: 5px solid #c05a33 !important; /* বামে রঙের স্ট্রিপ */
    padding: 15px !important;
    text-align: left !important;
    font-size: 20px !important;
    margin-bottom: 20px !important;
    border-radius: 4px !important;
}



/* =====================================================
   PREMIUM MATCHING HEADER (Based on your theme)
===================================================== */
.header {
    background: #ffffff !important; /* একদম ক্লিন সাদা */
    border-bottom: 2px solid #f4f1ed !important; /* হালকা বেজ বর্ডার */
    box-shadow: none !important; /* শ্যাডো সরিয়ে ফেলেছি রেফারেন্সের মতো */
    height: 65px !important;
}

/* লোগো ও টেক্সটের কালার */
.logo-side span {
    color: #333 !important; /* গাঢ় ধূসর, একদম কালো নয় */
    font-weight: 800 !important;
}

/* সার্চ বক্সের বর্ডার ও কালার */
.search-side input {
    border: 1px solid #e0e0e0 !important;
    background: #e6e1dc !important;
    color: #666 !important;
}

/* কার্ট আইকন কালার */
.cart-side button {
    color: #333 !important;
}



.hero {
    width: 100% !important; /* ৯৫% থেকে বাড়িয়ে ১০০% করা হলো */
    max-width: 100% !important; 
    border-radius: 0 !important; /* কোণা গোল না রেখে একদম সমান করা হলো */
    margin: 0 auto 20px !important;
    aspect-ratio: auto !important; /* ১:১ রেশিও বদলে অটো করা হলো */
    height: 250px !important; /* মোবাইলের জন্য একটি নির্দিষ্ট উচ্চতা */
}



.hero {
    width: 100% !important; /* ফুল উইডথ */
    height: 350px !important; /* ডেস্কটপে বড় হাইট */
    max-width: 100% !important;
    margin: 0 auto 20px !important;
    padding: 0 !important;
    border-radius: 0 !important; /* চারপাশের বর্ডার বাদ */
    overflow: hidden !important;
}

.hero-slider {
    width: 100% !important;
    height: 100% !important;
}

.hero-slider .slide {
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important; /* ছবি কাটবে না কিন্তু পুরোটা জুড়ে থাকবে */
    background-position: center center !important;
    background-color: transparent !important;
}