@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #ff7800;
    --primary-dark: #e66b00;
    --primary: #ff7800; 
    --dark: #130f40;    
    --text-color: #2c3e50;
    --bg-color: #f4f7f6;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 

       --primary: #ff7800;
    --primary-dark: #e66b00;
    --dark: #130f40;
    --text-color: #2c3e50;
    --bg-color: #f4f7f6;
    --white: #ffffff;
    --light-gray: #f1f2f6;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --footer-bg: #111;
    --text-gray: #b0b0b0;

}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Hind Siliguri", sans-serif;
    text-decoration: none;
    outline: none;
    border: none;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
      

   display: flex;
    flex-direction: column;
    min-height: 100vh; /* পুরো স্ক্রিনের উচ্চতা নিবে */
    margin: 0;
        background-color: #000;

}



/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 7%;
    background: #ff7800;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    padding: 1rem 7%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header .logo {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .logo i {
    color: #fff;
}

.header .navbar a {
    font-size: 1.7rem;
    margin: 0 1.2rem;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.header .navbar a:hover {
    color: #000;
}

.header .navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.header .navbar a:hover::after {
    width: 100%;
}

/* --- ICONS & PROFILE ICON FIX --- */
.header .icons {
    display: flex;
    align-items: center;
    color: #fff;
}

.header .icons a,
.header .icons div {
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    font-size: 2rem;
    background: #000;
    color: #fff;
    border-radius: 50%;
    margin-left: .8rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.header .icons div,
.header .icons a div {
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    font-size: 2rem;
    background: #000;
    color: #fff;
    border-radius: 50%;
    margin-left: .8rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    display: inline-block;
}

.header .icons div:hover,
.header .icons a div:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 120, 0, 0.3);
}

/* Cart Badge */
#cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: #ff4757;
    color: #fff;
    font-size: 1.1rem;
    height: 2rem;
    width: 2rem;
    line-height: 1.7rem;
    border-radius: 50%;
    font-weight: bold;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- SEARCH FORM --- */
.header .search-form {
    position: absolute;
    top: -120%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    background: var(--white);
    height: 6rem;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    border-radius: 5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header .search-form.active {
    top: 110%;
}

.header .search-form input {
    width: 100%;
    font-size: 1.6rem;
    color: var(--dark);
    padding: 1rem;
    background: transparent;
}

/* --- Desktop Default (ডেক্সটপে মেনু আইকন হাইড থাকবে) --- */
#menu-btn {
    display: none;
    /* ডেক্সটপে মেনু বাটন দেখা যাবে না */
}

/* --- Mobile & Tablet Responsive (৭৬৮ পিক্সেল বা তার নিচে) --- */
@media (max-width: 768px) {

    html {
        font-size: 50%;
    }

    /* ফন্ট সাইজ আরও একটু ছোট করা হয়েছে */

    .header {
        padding: 1.5rem 2rem;
    }

    .header .logo {
        font-size: 2.3rem;
        gap: 5px;
    }

    #menu-btn {
        display: inline-block;
    }

    .header .navbar {
        position: fixed;
        top: 0;
        right: -110%;
     
        width: 28rem;
        height: 100vh;
        background: var(--white);
        display: flex;
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 1rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }

    .header .navbar.active {
        right: 0;
      
    }

    .header .navbar a {
        font-size: 2rem;
        display: block;
        padding: 1.5rem;
        margin: 0;
        border-bottom: 1px solid #f1f2f6;
        width: 100%;
        color: var(--dark);
    }

    .header .navbar a:hover {
        background: var(--light-gray);
        padding-left: 2.5rem;
       
    }


    .header .icons div,
    .header .icons a div {
        height: 5rem;
        width: 5rem;
        line-height: 5rem;
        font-size: 2rem;
    }

    .header .search-form {
        width: 90%;
        height: 5.5rem;
    }
}


@media (max-width: 450px) {
    .header .logo span {
        display: none;
    }

   
}







.offer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 80px; /* header height অনুযায়ী */
    position: relative;
    z-index: 999;
}

.offer-bar {
    display: flex;
    align-items: center;
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 0 0 15px 15px;
    overflow: hidden; /* marquee overflow এর জন্য */
    position: relative;
}

.offer-badge {
    background: #000;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 2.0rem;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.offer-track {
    overflow: hidden;
    width: 100%;
}

.offer-text {
    display: inline-block;
    white-space: nowrap;
     font-size: 1.7rem;
    padding-left: 100%;
    animation: scrollText 15s linear infinite;
}

.offer-bar:hover .offer-text {
    animation-play-state: paused;
}

@keyframes scrollText {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}















/* SLIDER */
/* স্লাইডার কন্টেইনার */


/* Slider - Fixed for Desktop */
.slider {
    margin: 20px auto 0px; /* Reduced margin for desktop */
    max-width: 1400px;
    width: 95%;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    display: block !important; /* Forces display */
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dots {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px;
}
.dot { width: 12px; height: 12px; background: rgba(255,255,255,0.5); border-radius: 50%; cursor: pointer; }
.dot.active { background: var(--primary); width: 30px; border-radius: 10px; }

/* Responsive */
@media (max-width: 768px) {
    .slider { height: 250px; margin-top: 20px; }
    .header .navbar { display: none; } /* Add logic for mobile menu toggle */
    .header .navbar.active { display: flex; position: fixed; top:7rem; right:0; background:#fff; flex-direction: column; width: 20rem; }
}












.products-section {
    padding-top: 80px; 
    max-width: 1400px;
    margin: 30px auto;
        padding: 0 20px;
}

header + .products-section {
    margin-top: 80px;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 50px;
}

/* Grid Layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 🔥 5 Column */
    gap: 25px;
}


/* Product Card Design */
.product-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

/* Image Wrapper for Zoom Effect */
.product-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 150px;
    margin-bottom: 15px;
    background: #f1f1f1;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* or contain, depending on image type */
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.1); /* Zoom Effect */
}

/* Sale Badge */
.discount-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #ff4757;
    color: white;
    padding: 5px 10px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
}

/* Typography */
.product-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 10px 0;
    color: var(--text-color);
    line-height: 1.4;
    height: 40px; /* Limits to 2 lines usually */
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

/* Pricing Area */
/* প্রাইস কন্টেইনার আপডেট (বাম থেকে শুরু হবে) */
.price-container {
    display: flex;
    justify-content: flex-start; /* এটি বাম দিক থেকে শুরু করবে */
    align-items: center;
    gap: 10px;
    margin: 10px 0 15px 0;
    padding-left: 5px; /* হালকা একটু মার্জিন */
}

.current-price {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
}

.old-price {
    color: #999;
    font-size: 1rem;
    text-decoration: line-through;
    font-weight: 400;
}

/* পার্সেন্টেজ টেক্সট ডিজাইন */
.discount-percentage {
    background: #fff0f0; /* হালকা লালচে ব্যাকগ্রাউন্ড */
    color: #ff4757;      /* গাড় লাল ফন্ট */
    font-size: 0.85rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px dashed #ff4757; /* সুন্দর ড্যাশ বর্ডার */
}

/* প্রোডাক্ট টাইটেল বামে আনতে চাইলে এটি ব্যবহার করুন */
.product-card h3 {
    text-align: left;
    padding-left: 5px;
}

/* Add to Cart Button */
.add-to-cart {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px; /* Pill shape */
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 10px rgba(255, 120, 0, 0.3);
}

.add-to-cart i {
    margin-right: 8px;
    transition: transform 0.3s;
}

.add-to-cart:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    box-shadow: 0 6px 15px rgba(255, 120, 0, 0.4);
    transform: translateY(-2px);
}

.add-to-cart:hover i {
    transform: translateX(3px);
}

/* Pagination */
.pagination {
    margin-top: 50px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    padding: 10px 18px;
    margin: 0 6px;
    border-radius: 50px;
    background: var(--white);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: 0.3s;
    border: 1px solid #eee;
}

.pagination a.active,
.pagination a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}


@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}





.category-section {
    padding: 80px 7% 20px; /* এখানে ৮০ পিক্সেল হলো টপ প্যাডিং, আপনি চাইলে বাড়াতে বা কমাতে পারেন */
    max-width: 1200px;
    margin: 0 auto;
}

.category-filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.cat-filter-btn {
    padding: 10px 25px;
    background: #fff;
    color: var(--dark);
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.cat-filter-btn:hover, 
.cat-filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 120, 0, 0.2);
}

@media (max-width: 768px) {
    .cat-filter-btn { padding: 8px 18px; font-size: 1.2rem; }
}

.cat-card {
    padding: 1.2rem 2.5rem;
    background: var(--white);
    color: var(--dark);
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

.cat-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}







.reviews {
    max-width: 1400px;
    margin: auto;
    padding: 100px 20px 80px;
    background-color: #000;
}

.section-title {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 60px;
    color: #fff;
}

.reviews-container {
    display: grid;
   grid-template-columns: repeat(5, 1fr); /* 🔥 5 Column */
    gap: 30px;

}




/* Card */
.review-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

/* User Icon */
.user-icon {
    height: 70px;
    width: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* Review Text */
.review-card p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Name */
.review-card h3 {
    font-size: 1.9rem;
    color: var(--dark);
    margin-bottom: 8px;
}

/* Stars */
.stars {
    font-size: 1.6rem;
    color: #ff7800;
    letter-spacing: 2px;
}


@media (max-width: 768px) {
    .section-title {
        font-size: 2.6rem;
    }

    .review-card {
        padding: 25px 20px;
    }
}






.blogs {
    max-width: 1400px;
    margin: auto;
    padding: 100px 20px 80px;
    background: #000;
}

.blogs-container {
    display: grid;
     grid-template-columns: repeat(3, 1fr); /* 🔥 5 Column */
    gap: 30px;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    border: 1px solid #eee;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Image */
.blog-img {
    height: 220px;
    overflow: hidden;
    background: #f1f1f1;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.blog-card:hover img {
    transform: scale(1.08);
}

/* Content */
.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    color: #777;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--dark);
}

.blog-content p {
    font-size: 1.45rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Read more */
.read-more {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-radius: 50px;
    font-size: 1.4rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.read-more:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
}





/* --- REVIEWS RESPONSIVE --- */
@media (max-width: 1200px) {
    .reviews-container {
        grid-template-columns: repeat(3, 1fr); /* 3 column */
    }
}

@media (max-width: 900px) {
    .reviews-container {
        grid-template-columns: repeat(2, 1fr); /* 2 column */
    }
}

@media (max-width: 600px) {
    .reviews-container {
        grid-template-columns: 1fr; /* 1 column */
    }

    .review-card {
        padding: 20px;
    }

    .review-card p {
        font-size: 1.3rem;
    }

    .review-card h3 {
        font-size: 1.7rem;
    }

    .stars {
        font-size: 1.4rem;
    }
}

/* --- BLOGS RESPONSIVE --- */
@media (max-width: 1200px) {
    .blogs-container {
        grid-template-columns: repeat(2, 1fr); /* 2 column */
    }
}

@media (max-width: 768px) {
    .blogs-container {
        grid-template-columns: 1fr; /* 1 column */
    }

    .blog-content h3 {
        font-size: 1.8rem;
    }

    .blog-content p {
        font-size: 1.35rem;
    }

    .read-more {
        font-size: 1.3rem;
        padding: 8px 20px;
    }

    .blog-meta {
        font-size: 1.2rem;
    }
}




/* Footer Styles */
:root {
    --primary: #ff7800; /* আপনার মেইন কালার */
    --footer-dark: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.05);
}


.footer {
    background: var(--footer-dark);
    padding-top: 50px;
    position: relative;
    overflow: hidden;
}

/* Newsletter Style */
.newsletter-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary), #e66a00);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.newsletter-text h3 { color: #fff; font-size: 2.2rem; }
.newsletter-text p { color: #f0f0f0; font-size: 1.4rem; }

.newsletter-form {
    display: flex;
    background: #fff;
    padding: 5px;
    border-radius: 50px;
    width: 100%;
    max-width: 450px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 1.4rem;
    border-radius: 50px;
}

.newsletter-form button {
    background: var(--footer-dark);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.4rem;
    transition: 0.3s;
}

.newsletter-form button:hover { background: #333; }






/* Container & Boxes */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 7%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-logo {
    font-size: 2.2rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-logo i { color: var(--primary); }

.footer-box h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-box h3::after {
    content: '';
    position: absolute;
    left: 0; bottom: -8px;
    width: 40px; height: 3px;
    background: var(--primary);
}

/* Links & Icons */
.footer-links li { margin-bottom: 12px; }
.footer-links li a {
    color: #bbb;
    font-size: 1.5rem;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    height: 40px; width: 40px;
    background: var(--glass);
    display: flex;
    align-items: center; justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.6rem;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--color);
    transform: rotate(360deg) scale(1.1);
    border-color: var(--color);
}

/* Contact Info */
.contact-info p {
    color: #bbb;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-info i { color: var(--primary); }

/* Footer Bottom */
.footer-bottom {
    margin-top: 60px;
    background: #000;
    padding: 25px 7%;
    border-top: 1px solid var(--glass);
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.bottom-container p { font-size: 1.4rem; color: #888; }
.bottom-container p span { color: var(--primary); }

.payment-icons { display: flex; gap: 15px; opacity: 0.7; }

/* Responsive */
@media (max-width: 768px) {
    .newsletter-section { text-align: center; justify-content: center; margin: 0 20px 40px; }
    .bottom-container { justify-content: center; text-align: center; }
}


