@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@300;400;500;600;700&display=swap');

:root {
    --primary-green: #066759;
    --light-green: #A1F6CC;
    --pale-green: #ADF6D2;
    --dark-green: #044d42;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans Bengali', 'SolaimanLipi', Arial, sans-serif;
    font-weight: 600;
}


body {
    font-family: 'Noto Sans Bengali', 'SolaimanLipi', 'Siyam Rupali', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.navbar {
    background-color: #2c3e50;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand, .navbar-nav .nav-link {
    font-family: 'Noto Sans Bengali', 'SolaimanLipi', Arial, sans-serif;
    color: white !important;
}

.navbar-nav .nav-link:hover {
    color: var(--light-green) !important;
}

.hero-section {
    position: relative;
    background-image: url(./assets/sukunbazar_jaynamaj_jaynamaz.webp);
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    color: white;
    overflow: hidden;
}


.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: auto;
    z-index: 1;
    opacity: 0.9;
}

.product-image {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-card {
    border-radius: 15px;
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
}

.order-section {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 25px;
    margin-bottom: 20px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    font-weight: bold;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.benefit-icon {
    color: var(--primary-green);
    margin-right: 10px;
    font-size: 1.2rem;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-green);
}

.guarantee-badge {
    background-color: var(--light-green);
    color: var(--dark-green);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .hero-image {
        width: 300px;
        position: relative;
        margin-top: 30px;
        opacity: 0.8;
    }
    
    .hero-section {
        text-align: center;
    }
}

/* Floating Chat Buttons */
.chat-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 15px;
    text-decoration: none;
}

.chat-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: white;
}

.whatsapp-button {
    background-color: #25D366;
}

.messenger-button {
    background-color: #0084FF;
}

/* Chat Tooltip */
.chat-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.chat-button:hover .chat-tooltip {
    opacity: 1;
}

/* Discount Marquee Banner */
.discount-banner {
    background: #2c3e50;
    padding: 12px 0;
    color: white;
    border-bottom: 2px solid var(--light-green);
}

.discount-banner marquee {
    font-size: 1.0rem;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    margin-bottom: 30px;
    border: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid var(--light-green);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-green);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.product-code {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-green);
}

.original-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
}

.discount-percent {
    background: #ff4444;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Small Product Card */
/* Products Section with Gap */
.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.products-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 5px;
    margin: 0 -2.5px;
}

/* Alternative using Bootstrap grid with custom gap */
.row.custom-gap {
    margin: 0 -2.5px;
}

.row.custom-gap > [class*='col-'] {
    padding: 0 2.5px;
    margin-bottom: 5px;
}

/* Small Product Card with tight design */
.product-card-small {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.product-card-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.product-image-small {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    margin: 12px auto 8px;
    display: block;
    border: 1px solid #f0f0f0;
}

.product-content-small {
    padding: 10px 12px 12px;
    text-align: center;
}

.product-title-small {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
    line-height: 1.2;
    height: 2.4rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-code-small {
    color: #666;
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.product-price-small {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.current-price-small {
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-green);
}

.original-price-small {
    font-size: 0.8rem;
    color: #999;
    text-decoration: line-through;
}

.product-btn-small {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background 0.3s;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
}

.product-btn-small:hover {
    background: var(--dark-green);
    color: white;
    text-decoration: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .products-row {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 5px;
    }
    
    .product-image-small {
        width: 70px;
        height: 70px;
    }
    
    .product-content-small {
        padding: 8px 10px 10px;
    }
}

/* Product Details Page Styles */
.product-details-section {
    background: #f8f9fa;
}

.product-image-main {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.product-thumbnails .thumbnail {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    padding: 5px;
    background: white;
}

.product-thumbnails .thumbnail.active,
.product-thumbnails .thumbnail:hover {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.product-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: fit-content;
}

.product-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.product-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.product-code-detail {
    background: var(--light-green);
    color: var(--dark-green);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.product-stock {
    font-size: 0.9rem;
}

/* Price Section */
.price-section {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.current-price-detail {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.price-comparison {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.original-price-detail {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
}

.discount-badge {
    background: #ff4444;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Description & Features */
.section-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--light-green);
    padding-bottom: 5px;
}

.description-text {
    line-height: 1.8;
    color: #666;
    font-size: 1rem;
}

.feature-item {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

/* Order Button */
.order-now-btn {
    background: var(--primary-green);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.order-now-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

/* Terms & Conditions */
.terms-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.terms-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
    height: 100%;
    margin-bottom: 20px;
}

.terms-title {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 20px;
}

.terms-list li:before {
    content: "•";
    color: var(--primary-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.terms-list li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-detail-title {
        font-size: 1.5rem;
    }
    
    .current-price-detail {
        font-size: 2rem;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .terms-card {
        margin-bottom: 15px;
    }
}
/* Order Instructions Styles */
.order-instructions {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border-left: 5px solid var(--primary-green);
}

.instructions-title {
    color: var(--primary-green);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.instruction-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.step-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    background: var(--primary-green);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-title {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.whatsapp-template {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 2px dashed var(--primary-green);
    margin-top: 20px;
}

.template-title {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.template-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    white-space: pre-wrap;
    line-height: 1.6;
    color: #333;
    border-left: 4px solid var(--primary-green);
}

.copy-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 15px;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: background 0.3s;
}

.copy-btn:hover {
    background: var(--dark-green);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.payment-method {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--primary-green);
    transform: scale(1.02);
}

.payment-icon {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.important-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    color: #856404;
}

.note-icon {
    color: #f39c12;
    margin-right: 10px;
}
