:root {
    --primary: #1b5e20;
    --primary-light: #4caf50;
    --accent: #e65100;
    --accent-light: #ffb74d;
    --bg-light: #f9fbf9;
    --text-dark: #1e272e;
    --text-muted: #57606f;
    --white: #ffffff;
    --red-alert: #d32f2f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SolaimanLipi', 'Hind Siliguri', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
}

/* Top Bar */
.top-announcement {
    background-color: #0c7257;
    color: var(--white);
    text-align: center;
    padding: 10px 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand img {
    height: 65px;
    width: auto;
}

.brand-text h1 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
   
}

.brand-text p {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
   
}
/* ব্র্যান্ডের ভেতরের কোনো লিঙ্কেই আন্ডারলাইন শো করবে না */
.brand, .brand a, .brand-text a {
    text-decoration: none !important;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366 0%, #075e54 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgb(6 4 4 / 80%) 0%, rgba(56, 142, 60, 0.75) 100%), url(../img/odc3.png) no-repeat center center / cover;
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 97%, 0% 100%);
}
.hero-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #fff;
}

.hero-section h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #fff;
}

.sub-header-text {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #fffde7;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* অফার ব্যানার মূল বক্স কন্টেইনার */
.offer-banner-box {
    background: var(--white);
    border: 3px dashed var(--accent);
    border-radius: 15px;
    padding: 25px;
    margin: 0 auto;
    max-width: 950px; /* ইমেজ যোগ করার কারণে কন্টেইনারের উইডথ একটু বাড়ানো হয়েছে */
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    color: var(--text-dark);
    overflow: hidden;
}

/* বাম ও ডান সাইডকে পাশাপাশি নেওয়ার ফ্লেক্স লেআউট */
.offer-flex-container {
    display: flex;
    gap: 25px;
    align-items: stretch; /* বাম ও ডানের উচ্চতা বা হাইট সমান রাখার জন্য */
    text-align: left; /* কনটেন্ট বাম থেকে শুরু করার জন্য */
}

/* বাম পাশের কনটেন্ট উইডথ */
.offer-content-side {
    flex: 1.2; /* লেখাকে কিছুটা বেশি জায়গা দেওয়া হয়েছে */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ডান পাশের ইমেজ উইডথ ও সমান হাইট লক */
.offer-image-side {
    flex: 0.8;
    border-radius: 10px;
    overflow: hidden;
    height: 100%; /* বামের কনটেন্টের সমান হাইট নিবে */
}

.offer-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ইমেজ যাতে চ্যাপ্টা বা নষ্ট না হয়ে ফ্রেমের সাথে নিখুঁতভাবে ফিট হয় */
    display: block;
}

/* রেসপন্সিভ মোবাইল লেআউট */
@media (max-width: 850px) {
    .offer-flex-container {
        flex-direction: column; /* মোবাইলে উপর-নিচ দেখাবে */
        text-align: center; /* মোবাইলে লেখাগুলো মাঝে থাকবে */
    }
    
    .offer-image-side {
        width: 100%;
        height: 250px; /* মোবাইলে ইমেজের জন্য একটি স্ট্যান্ডার্ড ফিক্সড হাইট */
        order: -1; /* কাস্টমার যাতে মোবাইলে আগে অফার বা প্রোডাক্টের ছবি দেখে */
    }
}
.gift-notice {
    background: #e8f5e9;
    color: var(--primary);
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    margin-bottom: 15px;
    border: 1px solid #c8e6c9;
    font-size: 1.15rem;
}

.price-container {
    background: linear-gradient(180deg, #fffde7, #fff9c4);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid #fbc02d;
}

.price-container p { font-size: 1.1rem; margin-bottom: 5px; }
.price-container .old-price { text-decoration: line-through; color: #7f8c8d; font-weight: 600; }
.price-container .new-price { font-size: 2.2rem; color: #d32f2f; font-weight: 700; }

/* Countdown Timer */
.timer-strip {
    background: #d32f2f;
    color: var(--white);
    padding: 12px;
    border-radius: 8px;
    margin: 20px 0;
}

.timer-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 5px;
}

.timer-box {
    background: rgba(0,0,0,0.25);
    padding: 6px 15px;
    border-radius: 4px;
    min-width: 65px;
}

.timer-num { font-size: 1.4rem; font-weight: 700; display: block; }
.timer-label { font-size: 0.8rem; }

.order-btn-trigger {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(46,204,113,0.4);
}

.badge-strip {
    background: #fff3cd;
    color: #856404;
    padding: 12px;
    text-align: center;
    font-weight: 700;
    margin: 20px 0;
    border-radius: 6px;
    border: 1px solid #ffeeba;
    font-size: 1.1rem;
}
/* Why Us Section Base Layout */
.why-us-section { 
    padding: 50px 0; 
    background: #f1f8f2; 
}

/* সমান দুই ভাগে ভাগ করার মেইন গ্রিড */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* সমান দুই ভাগে ভাগ */
    gap: 30px;
    align-items: stretch; /* বাম ও ডানের হাইট সমান রাখার জন্য */
}

/* বাম পাশের কনটেন্ট ও লিস্ট স্টাইল */
.why-us-content {
    display: flex;
    flex-direction: column;
    justify-content: center; /* কনটেন্টগুলোকে লম্বালম্বিভাবে মাঝে রাখবে */
}

.features-list { 
    list-style: none; 
    width: 100%;
}

.features-list li { 
    background: var(--white); 
    padding: 15px 20px; 
    margin-bottom: 12px; 
    border-radius: 8px; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.02); 
    display: flex; 
    gap: 15px; 
    align-items: center; 
    font-size: 1.05rem; 
    font-weight: 500; 
}

.features-list li:last-child {
    margin-bottom: 0; /* শেষ আইটেমের এক্সট্রা মার্জিন রিমুভ */
}

.features-list li i { 
    color: #2ecc71; 
    font-size: 1.3rem; 
    flex-shrink: 0;
}

/* ডান পাশের ইমেজ গ্রিড স্টাইল (বামের সমান হাইট লক) */
.why-us-gallery {
    width: 100%;
}

.why-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ২ কলামের গ্রিড (৪টি ইমেজ) */
    gap: 12px;
    height: 100%; /* মেইন গ্রিডের সমান হাইট নিবে */
}

.why-img-item {
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    height: 100%; /* কন্টেইনারের সমান হাইট লক */
}

.why-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ইমেজ স্ট্রেচ বা নষ্ট না হয়ে সমান হাইটে পারফেক্ট দেখাবে */
    display: block;
}

/* রেসপন্সিভ মোবাইল ডিজাইন */
@media (max-width: 850px) {
    .why-us-grid { 
        grid-template-columns: 1fr; /* মোবাইলে উপর-নিচ হয়ে যাবে */
        gap: 20px;
    }
    
    .why-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        height: 250px; /* মোবাইলে ইমেজের জন্য একটি স্ট্যান্ডার্ড ফিক্সড হাইট */
    }
}
/* Detail Section */
.details-section { padding: 50px 0; background: var(--white); }
.section-heading { text-align: center; font-size: 2rem; color: var(--primary); margin-bottom: 30px; font-weight: 700; }

.info-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 30px; align-items: center; }
.info-list { list-style: none; }
.info-list li { position: relative; padding-left: 30px; margin-bottom: 12px; font-size: 1.1rem; }
.info-list li i { position: absolute; left: 0; top: 5px; color: var(--primary); font-size: 1.2rem; }

/* CSS Automatic Slider */
.slider-container-box {
    width: 100%;
    height: 100%;
    min-height: 380px; 
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 3px solid #e8f5e9;
    position: relative;
}

.image-pure-slider {
    display: flex;
    width: 300%; 
    height: 100%;
    animation: autoSlideScroll 12s infinite ease-in-out;
}

.slide-item {
    width: 33.33%;
    height: 100%;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

@keyframes autoSlideScroll {
    0%, 25% { transform: translateX(0); }
    33%, 58% { transform: translateX(-33.33%); }
    66%, 91% { transform: translateX(-66.66%); }
    100% { transform: translateX(0); }
}

/* Why Us Section */
.why-us-section { padding: 50px 0; background: #f1f8f2; }
.features-list { max-width: 750px; margin: 0 auto; list-style: none; }
.features-list li { background: var(--white); padding: 15px 20px; margin-bottom: 10px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.02); display: flex; gap: 15px; align-items: center; font-size: 1.1rem; font-weight: 500; }
.features-list li i { color: #2ecc71; font-size: 1.3rem; }

/* Checkout Section */
.checkout-section { padding: 50px 0; background: #e8f5e9; }
.checkout-wrapper { background: var(--white); border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); overflow: hidden; }
.checkout-title-bar { background: var(--primary); color: var(--white); padding: 15px; text-align: center; font-size: 1.3rem; font-weight: 600; }

.checkout-grid { display: grid; grid-template-columns: 1.2fr 1fr; }

.billing-details-pane { padding: 30px; border-right: 1px solid #edf2f7; }
.order-review-pane { padding: 30px; background: #fcfcfc; }
.pane-heading { font-size: 1.25rem; color: var(--primary); margin-bottom: 20px; border-bottom: 2px solid #e2e8f0; padding-bottom: 8px; font-weight: 700; }

.form-row { margin-bottom: 15px; }
.form-row label { display: block; margin-bottom: 6px; font-weight: 600; }
.form-row input, .form-row textarea, .form-row select { width: 100%; padding: 11px 12px; border: 1px solid #cbd5e1; border-radius: 6px; font-family: inherit; font-size: 1rem; }

.product-select-card { border: 2px solid #e2e8f0; border-radius: 8px; padding: 14px; margin-bottom: 10px; display: flex; gap: 12px; align-items: center; background: var(--white); cursor: pointer; }
.product-select-card.active { border-color: var(--primary); background: #f1f8f2; }

.woo-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; margin-top: 15px; }
.woo-table th, .woo-table td { padding: 12px; text-align: left; border-bottom: 1px solid #e2e8f0; }
.woo-table tr.total-row th, .woo-table tr.total-row td { font-weight: 700; color: var(--accent); font-size: 1.2rem; }

.payment-box { background: #fff3cd; padding: 12px; border-radius: 6px; margin-bottom: 20px; font-size: 0.95rem; border: 1px solid #ffeeba; line-height: 1.5; }
.final-submit-btn { background: #e65100; color: var(--white); width: 100%; padding: 15px; border: none; border-radius: 6px; font-size: 1.3rem; font-weight: 700; cursor: pointer; }

/* FAQ Section */
.faq-section { padding: 50px 0; background: #fafafa; }
.faq-container { max-width: 850px; margin: 0 auto; }
.faq-item { background: #fff; padding: 20px; border-radius: 8px; margin-bottom: 15px; box-shadow: 0 2px 4px rgba(0,0,0,0.02); border-left: 4px solid var(--primary); }
.faq-item h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 8px; }
.faq-item p { color: var(--text-muted); font-size: 1rem; }

/* Footer */
footer { background: #1e272e; color: #ced6e0; padding: 35px 0; text-align: center; font-size: 1rem; border-top: 4px solid var(--primary); }

/* Responsive Media Queries */
@media (max-width: 850px) {
    .checkout-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .slider-container-box {
        min-height: 280px; 
        margin-top: 15px;
    }
}
