/* ========================================
   FRAGNIS - Main Stylesheet
   ডিজাইন পরিবর্তন করতে এই ফাইল এডিট করুন
   ======================================== */

/* CSS Variables - কালার এবং ফন্ট সেটিংস */
:root {
    /* Primary Colors - প্রধান রং */
    --primary: #069342;
    --primary-dark: #057a38;
    --primary-light: #0ab050;
    
    /* Gold Accent - গোল্ড এক্সেন্ট */
    --gold: #d4a853;
    --gold-light: #e5c77a;
    --gold-dark: #b8923f;
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #1a2e1a;
    --gray-50: #f5f7f5;
    --gray-100: #e5e9e5;
    --gray-200: #d1d5d1;
    --gray-300: #b0b5b0;
    --gray-400: #8a918a;
    --gray-500: #6b7c6b;
    --gray-600: #4a5a4a;
    --gray-700: #3a4a3a;
    --gray-800: #2a3a2a;
    --gray-900: #1a2e1a;
    
    /* Font Families */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    /* Spacing */
    --container-width: 1280px;
    --section-padding: 5rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 32px rgba(0,0,0,0.1);
    --shadow-primary: 0 4px 20px rgba(6,147,66,0.25);
    --shadow-gold: 0 4px 20px rgba(212,168,83,0.25);
    
    /* Transitions */
    --transition: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

/* ========================================
   BUTTONS - বাটন স্টাইল
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-500);
}

.btn-ghost:hover {
    background: rgba(6,147,66,0.05);
    color: var(--primary);
}

.btn-white {
    background: var(--white);
    color: var(--gray-900);
}

.btn-white:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-full);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ========================================
   NAVBAR - নেভিগেশন বার
   ======================================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition);
}

#navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition);
}

.logo-link:hover .nav-logo {
    transform: scale(1.05);
}

.logo-text {
    display: none;
}

@media (min-width: 640px) {
    .logo-text {
        display: flex;
        flex-direction: column;
    }
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition);
}

#navbar.scrolled .brand-name {
    color: var(--primary);
}

.tagline {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

#navbar.scrolled .tagline {
    color: var(--gray-500);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    transition: color var(--transition);
}

#navbar.scrolled .nav-links a {
    color: var(--gray-700);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn { display: none; }
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: background var(--transition);
}

#navbar.scrolled .mobile-menu-btn span {
    background: var(--gray-700);
}

/* Mobile Menu */
#mobileOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

#mobileOverlay.active {
    opacity: 1;
    visibility: visible;
}

#mobileMenu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
}

#mobileMenu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-logo {
    height: 40px;
}

.mobile-brand {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    flex: 1;
}

.mobile-close {
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-links a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-800);
    padding: 0.5rem 0;
}

.mobile-menu-links a:hover {
    color: var(--primary);
}

.mobile-cta {
    margin-top: 1.5rem;
    width: 100%;
}

/* ========================================
   HERO SECTION - হিরো সেকশন
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26,46,26,0.75),
        rgba(26,46,26,0.5),
        rgba(26,46,26,0.85)
    );
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slider-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slider-item.active {
    opacity: 1;
}

.hero-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-decoration {
    position: absolute;
    border-radius: var(--radius-full);
    filter: blur(60px);
    animation: float 3s ease-in-out infinite;
}

.dec-1 {
    top: 80px;
    left: 40px;
    width: 128px;
    height: 128px;
    background: rgba(212,168,83,0.1);
}

.dec-2 {
    bottom: 160px;
    right: 80px;
    width: 160px;
    height: 160px;
    background: rgba(6,147,66,0.1);
    animation-delay: 1s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem 1rem;
}

.hero-logo-wrapper {
    margin-bottom: 2rem;
}

.hero-logo {
    height: 128px;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

@media (min-width: 768px) {
    .hero-logo { height: 160px; }
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
}

.premium-badge svg {
    color: var(--gold);
}

.premium-badge span {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.9);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

@media (min-width: 640px) { .hero-title { font-size: 3.5rem; } }
@media (min-width: 768px) { .hero-title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 5rem; } }

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) { .hero-tagline { font-size: 1.5rem; } }

.hero-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

@media (min-width: 768px) { .hero-description { font-size: 1.125rem; } }

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons { flex-direction: row; justify-content: center; }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 400px;
    margin: 4rem auto 0;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
}

@media (min-width: 768px) { .stat-value { font-size: 2rem; } }

.stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    animation: bounce 2s infinite;
    transition: all var(--transition);
}

.scroll-indicator:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

/* ========================================
   PRODUCTS SECTION - প্রোডাক্ট সেকশন
   ======================================== */
.products-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(6,147,66,0.05);
    border: 1px solid rgba(6,147,66,0.1);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.section-badge svg {
    color: var(--primary);
}

.section-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

.section-badge.gold {
    background: rgba(212,168,83,0.1);
    border-color: rgba(212,168,83,0.2);
}

.section-badge.gold svg,
.section-badge.gold span {
    color: var(--gold-dark);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 768px) { .section-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }

.text-primary {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) { .section-subtitle { font-size: 1.125rem; } }

/* Category Filters */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
}

.category-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

@media (min-width: 1024px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

/* Product Card */
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(6,147,66,0.16);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-100);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,46,26,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.product-badge.air-freshener {
    background: rgba(6,147,66,0.1);
    color: var(--primary);
    border: 1px solid rgba(6,147,66,0.2);
}

.product-badge.candle {
    background: rgba(212,168,83,0.1);
    color: var(--gold-dark);
    border: 1px solid rgba(212,168,83,0.2);
}

.product-badge.soap {
    background: rgba(59,130,246,0.1);
    color: #1d4ed8;
    border: 1px solid rgba(59,130,246,0.2);
}

.sale-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    background: #dc2626;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.product-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    transition: color var(--transition);
}

.product-card:hover .product-name {
    color: var(--primary);
}

.product-description {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-current {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.price-original {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

/* ========================================
   ABOUT SECTION - আমাদের সম্পর্কে
   ======================================== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.about-images {
    position: relative;
}

.about-img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-img.tall {
    grid-row: span 2;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge-float {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-primary);
    animation: float 3s ease-in-out infinite;
}

@media (min-width: 768px) {
    .about-badge-float { bottom: 2rem; right: 0; }
}

.badge-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
}

.badge-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.about-content {
    
}

.about-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) { .about-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .about-title { font-size: 3rem; } }

.about-text {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-text.secondary {
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(6,147,66,0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 0.75rem;
    transition: all var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
}

.feature-item h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ========================================
   REVIEWS SECTION - রিভিউ সেকশন
   ======================================== */
.reviews-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    transition: all var(--transition);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.review-quote {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(6,147,66,0.2);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.review-stars {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 1rem;
}

.review-stars .star {
    width: 20px;
    height: 20px;
}

.review-stars .star.filled {
    fill: var(--gold);
    color: var(--gold);
}

.review-stars .star.empty {
    fill: none;
    stroke: var(--gray-300);
}

.review-comment {
    font-size: 1rem;
    color: var(--gray-900);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.author-name {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gray-900);
}

.author-date {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: rgba(6,147,66,0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary);
}

/* ========================================
   CONTACT SECTION - যোগাযোগ সেকশন
   ======================================== */
.contact-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-heading {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    cursor: pointer;
    transition: all var(--transition);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-card.primary {
    background: var(--primary);
    border: none;
    color: var(--white);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-card:not(.primary) .contact-card-icon {
    background: rgba(6,147,66,0.1);
    color: var(--primary);
}

.contact-card:not(.primary):hover .contact-card-icon {
    background: var(--primary);
    color: var(--white);
}

.contact-card h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-card:not(.primary) h4 {
    color: var(--gray-900);
}

.contact-card p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.75rem;
}

.contact-card:not(.primary) p {
    color: var(--gray-500);
}

.contact-cta {
    font-size: 0.875rem;
    font-weight: 500;
}

.contact-cta.primary {
    color: var(--primary);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(6,147,66,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-item h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.125rem;
}

.contact-info-item p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Order CTA Card */
.order-cta-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.order-cta-img {
    position: relative;
    height: 192px;
}

.order-cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--white), transparent);
}

.order-cta-content {
    padding: 2rem;
    margin-top: -4rem;
    position: relative;
}

.order-cta-box {
    background: rgba(212,168,83,0.1);
    border: 1px solid rgba(212,168,83,0.2);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.order-cta-box h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.order-cta-box p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.order-cta-box ul {
    list-style: none;
}

.order-cta-box li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.bullet {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: var(--radius-full);
}

/* ========================================
   FOOTER - ফুটার সেকশন
   ======================================== */
.footer {
    background: var(--gray-900);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0 4rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 64px;
    width: auto;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.footer-desc {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--gray-400);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ========================================
   MODAL - প্রোডাক্ট মোডাল (অনলাইনের মতো ডিজাইন)
   ======================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(26,46,26,0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform var(--transition);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    cursor: pointer;
    transition: all var(--transition);
}

.modal-close:hover {
    background: var(--white);
    color: var(--gray-900);
}

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

@media (min-width: 768px) {
    .modal-grid { 
        grid-template-columns: 1fr 1fr; 
    }
}

/* Modal Image - Fixed size, not taking more space than content */
.modal-image {
    position: relative;
    background: var(--gray-100);
    overflow: hidden;
}

/* Mobile: Image takes limited height */
.modal-image {
    height: 280px;
    max-height: 40vh;
}

@media (min-width: 768px) {
    .modal-image {
        height: auto;
        max-height: none;
        aspect-ratio: 1;
    }
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

/* Modal Info - Scrollable content area */
.modal-info {
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Mobile: Limited height for scrolling */
.modal-info {
    max-height: calc(90vh - 280px);
}

@media (min-width: 768px) {
    .modal-info { 
        padding: 2rem; 
        max-height: 90vh;
    }
}

.modal-info h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) { 
    .modal-info h2 { 
        font-size: 1.75rem; 
    } 
}

@media (min-width: 1024px) { 
    .modal-info h2 { 
        font-size: 2rem; 
    } 
}

/* Price wrapper for displaying current and original price */
.modal-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.modal-price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

@media (min-width: 768px) {
    .modal-price {
        font-size: 2rem;
    }
}

.modal-price-original {
    font-size: 1.25rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.modal-discount-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: #dc2626;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-left: 0.5rem;
}

.modal-section {
    margin-bottom: 1.5rem;
}

.modal-section h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.modal-section p {
    font-size: 0.9375rem;
    color: var(--gray-900);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .modal-section p {
        font-size: 1rem;
    }
}

.modal-section ul {
    list-style: none;
}

.modal-section li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.feature-check {
    width: 20px;
    height: 20px;
    background: rgba(6,147,66,0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 600;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
}

/* Outline dark button for modal */
.btn-outline-dark {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.btn-outline-dark:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ========================================
   ANIMATIONS - অ্যানিমেশন
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.3s ease-out forwards;
}

/* Staggered delays */
.animate-slide-up:nth-child(1) { animation-delay: 0s; }
.animate-slide-up:nth-child(2) { animation-delay: 0.05s; }
.animate-slide-up:nth-child(3) { animation-delay: 0.1s; }
.animate-slide-up:nth-child(4) { animation-delay: 0.15s; }
.animate-slide-up:nth-child(5) { animation-delay: 0.2s; }

/* ========================================
   UTILITIES - ইউটিলিটি ক্লাস
   ======================================== */
.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-50);
}

::-webkit-scrollbar-thumb {
    background: rgba(6,147,66,0.3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(6,147,66,0.5);
}
