/* =========================================================
   DREAM বাজার — Premium Landing Page Stylesheet
   Palette: Emerald Green + Warm Amber Gold + Deep Charcoal
   ========================================================= */

:root {
    --primary: #0f7a5a;        /* Deep Emerald */
    --primary-dark: #0a5d44;
    --primary-light: #16a37a;
    --accent: #f59e0b;         /* Warm Amber */
    --accent-dark: #d97706;
    --accent-light: #fcd34d;
    --dark: #0f1f1a;
    --text: #1f2937;
    --muted: #6b7280;
    --light-bg: #f5fbf8;
    --soft: #ecf7f2;
    --white: #ffffff;
    --border: #e5e7eb;

    --grad-primary: linear-gradient(135deg, #0f7a5a 0%, #16a37a 100%);
    --grad-accent: linear-gradient(135deg, #f59e0b 0%, #fcd34d 100%);
    --grad-hero: linear-gradient(135deg, #0a5d44 0%, #0f7a5a 50%, #16a37a 100%);
    --grad-cta: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);

    --shadow-sm: 0 2px 8px rgba(15, 122, 90, 0.08);
    --shadow-md: 0 8px 24px rgba(15, 122, 90, 0.12);
    --shadow-lg: 0 20px 50px rgba(15, 122, 90, 0.18);
    --shadow-amber: 0 10px 30px rgba(245, 158, 11, 0.35);

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --font-en: 'Poppins', system-ui, sans-serif;
    --font-bn: 'Hind Siliguri', 'Poppins', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-bn);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0;
    background: var(--grad-accent);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--grad-hero);
    color: #fff;
    font-size: 13px;
    padding: 10px 0;
    position: relative;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.top-bar-info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.top-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.92);
    transition: var(--transition);
}
.top-link:hover { color: var(--accent-light); }
.top-link i { color: var(--accent-light); }
.divider {
    width: 1px; height: 14px;
    background: rgba(255,255,255,0.25);
}

.pos-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grad-cta);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.45);
    transition: var(--transition);
    font-family: var(--font-en);
    letter-spacing: 0.3px;
}
.pos-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(245, 158, 11, 0.65);
    filter: brightness(1.08);
}

/* ============ NAVBAR ============ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.85);
    box-shadow: var(--shadow-md);
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-sm);
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-en {
    font-family: var(--font-en);
    font-weight: 800;
    color: var(--primary);
    font-size: 18px;
    letter-spacing: 1px;
}
.logo-bn {
    font-family: var(--font-bn);
    font-weight: 700;
    color: var(--accent-dark);
    font-size: 16px;
}

.nav-menu {
    display: flex;
    gap: 6px;
    align-items: center;
}
.nav-link {
    display: inline-block;
    padding: 9px 18px;
    font-weight: 500;
    font-family: var(--font-en);
    color: var(--text);
    border-radius: var(--radius-pill);
    transition: var(--transition);
    position: relative;
    font-size: 15px;
}
.nav-link:hover { color: var(--primary); background: var(--soft); }
.nav-link.active {
    color: #fff;
    background: var(--grad-primary);
    box-shadow: var(--shadow-sm);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ============ HERO ============ */
.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--grad-hero);
    color: #fff;
    padding: 80px 0 100px;
    min-height: 92vh;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.25), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(22, 163, 122, 0.3), transparent 40%);
}
.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    animation: float 8s ease-in-out infinite;
}
.shape.s1 { width: 180px; height: 180px; top: 8%; left: -40px; animation-delay: 0s; }
.shape.s2 { width: 120px; height: 120px; top: 60%; left: 12%; animation-delay: 1.5s; background: rgba(252, 211, 77, 0.12); }
.shape.s3 { width: 220px; height: 220px; top: 20%; right: -60px; animation-delay: 3s; }
.shape.s4 { width: 90px; height: 90px; bottom: 12%; right: 18%; animation-delay: 4.5s; background: rgba(245, 158, 11, 0.15); }
.shape.s5 { width: 60px; height: 60px; top: 45%; right: 8%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-30px) rotate(8deg); }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}
.hero-badge i { color: var(--accent-light); }

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    font-family: var(--font-bn);
}
.gradient-text {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.88);
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

/* SHOP NOW — main CTA */
.btn-shop-now {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--grad-cta);
    color: #fff !important;
    padding: 18px 38px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 17px;
    font-family: var(--font-en);
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-amber);
    transition: var(--transition);
    position: relative;
    animation: pulseCTA 2.2s ease-in-out infinite;
}
.btn-shop-now:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 40px rgba(245, 158, 11, 0.55);
    filter: brightness(1.1);
}
.btn-shop-now.small {
    padding: 14px 28px;
    font-size: 15px;
}
@keyframes pulseCTA {
    0%, 100% { box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35); }
    50% { box-shadow: 0 10px 30px rgba(245, 158, 11, 0.7), 0 0 0 8px rgba(245, 158, 11, 0.12); }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--grad-primary);
    color: #fff !important;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-family: var(--font-en);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    color: #fff !important;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-family: var(--font-en);
    border: 2px solid rgba(255,255,255,0.4);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.7);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    padding: 14px 22px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-family: var(--font-en);
    transition: var(--transition);
}
.btn-ghost:hover { color: var(--accent-light) !important; }

.hero-highlights {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}
.hl {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.92);
}
.hl i {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    color: var(--accent-light);
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-card-main {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(20px);
    padding: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    animation: floatSlow 6s ease-in-out infinite;
}
.hero-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.4);
}
@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-badge {
    position: absolute;
    background: #fff;
    color: var(--primary);
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-en);
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    animation: floatBadge 4s ease-in-out infinite;
}
.floating-badge i { color: var(--accent-dark); }
.fb1 { top: 10%; left: -30px; animation-delay: 0s; }
.fb2 { bottom: 18%; right: -20px; animation-delay: 1.5s; }
.fb3 { bottom: -5px; left: 20%; animation-delay: 2.5s; background: var(--grad-cta); color: #fff; }
.fb3 i { color: #fff; }

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

/* ============ STATS STRIP ============ */
.stats-strip {
    background: var(--white);
    padding: 50px 0;
    margin-top: -50px;
    position: relative;
    z-index: 5;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.stat {
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat i {
    font-size: 32px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}
.stat h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-en);
    line-height: 1;
}
.stat p { color: var(--muted); font-size: 14px; margin-top: 6px; }

/* ============ SECTIONS COMMON ============ */
.section { padding: 90px 0; }
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.section-tag {
    display: inline-block;
    background: var(--soft);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-en);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 14px;
}
.section-title .gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-lead {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

/* ============ ABOUT ============ */
.about-section { background: var(--light-bg); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}
.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    object-fit: cover;
}
.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    padding: 18px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
}
.about-image-badge i {
    font-size: 32px;
    color: var(--accent-dark);
}
.about-image-badge strong {
    display: block;
    color: var(--primary);
    font-size: 18px;
    font-family: var(--font-en);
}
.about-image-badge span {
    font-size: 13px;
    color: var(--muted);
}

.about-content .section-title { text-align: left; }
.about-list {
    margin: 24px 0 32px;
    display: grid;
    gap: 12px;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}
.about-list i { color: var(--primary); font-size: 18px; }

/* ============ FEATURES ============ */
.features-section { background: var(--white); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.feature-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover h3,
.feature-card:hover p { color: #fff; position: relative; z-index: 1; }
.feature-card:hover .feature-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.feature-card > * { position: relative; z-index: 1; }

.feature-icon {
    width: 72px; height: 72px;
    background: var(--soft);
    color: var(--primary);
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 30px;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: var(--font-en);
    transition: var(--transition);
}
.feature-card p {
    color: var(--muted);
    font-size: 15px;
    transition: var(--transition);
}

/* ============ CATEGORIES ============ */
.categories-section { background: var(--light-bg); }
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.cat-card {
    background: #fff;
    padding: 32px 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.cat-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.cat-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.cat-card:hover::after { transform: scaleX(1); }
.cat-card:hover .cat-icon {
    transform: rotate(-8deg) scale(1.1);
    background: var(--grad-primary);
    color: #fff;
}
.cat-icon {
    width: 80px; height: 80px;
    margin: 0 auto 16px;
    background: var(--soft);
    color: var(--primary);
    border-radius: 24px;
    display: grid;
    place-items: center;
    font-size: 34px;
    transition: var(--transition);
}
.cat-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    font-family: var(--font-en);
}
.cat-card span {
    font-size: 13px;
    color: var(--muted);
}

/* ============ OFFER BANNER ============ */
.offer-banner {
    margin: 60px 0;
    padding: 0;
}
.offer-inner {
    background: var(--grad-hero);
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.offer-inner::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245,158,11,0.3), transparent 70%);
    top: -50%;
    right: -10%;
    animation: float 8s ease-in-out infinite;
}
.offer-text { position: relative; z-index: 2; }
.flash-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--grad-cta);
    color: #fff;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-en);
    letter-spacing: 1px;
    margin-bottom: 16px;
    animation: flashPulse 1.5s infinite;
}
@keyframes flashPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}
.offer-text h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 14px;
}
.offer-text p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    font-size: 16px;
}
.offer-discount {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.disc-circle {
    width: 200px; height: 200px;
    background: var(--grad-cta);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: var(--font-en);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.5);
    animation: spin 12s linear infinite, floatSlow 4s ease-in-out infinite;
    border: 4px dashed rgba(255,255,255,0.4);
}
@keyframes spin {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}
.disc-top { font-size: 13px; letter-spacing: 2px; font-weight: 600; animation: spinReverse 12s linear infinite; }
.disc-num { font-size: 60px; font-weight: 800; line-height: 1; animation: spinReverse 12s linear infinite; }
.disc-num small { font-size: 28px; }
.disc-bot { font-size: 18px; font-weight: 700; letter-spacing: 4px; animation: spinReverse 12s linear infinite; }
@keyframes spinReverse {
    from { transform: rotate(0); }
    to { transform: rotate(-360deg); }
}

/* ============ WHY US ============ */
.why-section { background: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    padding: 32px 28px;
    background: var(--light-bg);
    border-radius: var(--radius);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}
.why-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent);
}
.why-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 14px;
}
.why-card:hover i { color: var(--accent-dark); }
.why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: var(--font-en);
}
.why-card p { color: var(--muted); font-size: 15px; }

/* ============ GALLERY ============ */
.gallery-section { background: var(--light-bg); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,122,90,0.85), rgba(245,158,11,0.7));
    display: grid;
    place-items: center;
    opacity: 0;
    transition: var(--transition);
    color: #fff;
    font-size: 32px;
}
.gallery-item:hover .g-overlay { opacity: 1; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--white); }
.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 10px 4px;
}
.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--light-bg);
    padding: 34px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 0;
    right: 24px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--accent);
    line-height: 1;
    opacity: 0.3;
}
.t-stars { color: var(--accent); margin-bottom: 14px; }
.testimonial-card p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
    font-style: italic;
}
.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t-avatar {
    width: 48px; height: 48px;
    background: var(--grad-primary);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 20px;
}
.t-author strong {
    display: block;
    color: var(--dark);
    font-size: 15px;
}
.t-author span { font-size: 13px; color: var(--muted); }

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}
.slider-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 16px;
    transition: var(--transition);
}
.slider-btn:hover {
    background: var(--grad-primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* ============ CONTACT ============ */
.contact-section { background: var(--light-bg); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}
.contact-info .section-title { text-align: left; }
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin: 22px 0;
}
.ci-icon {
    width: 52px; height: 52px;
    background: var(--grad-primary);
    color: #fff;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.contact-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 4px;
    font-family: var(--font-en);
}
.contact-item a, .contact-item p {
    color: var(--muted);
    font-size: 15px;
}
.contact-item a:hover { color: var(--primary); }

.contact-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.contact-buttons .btn-outline,
.contact-buttons .btn-ghost {
    color: var(--primary) !important;
    background: #fff;
    border: 2px solid var(--primary);
}
.contact-buttons .btn-outline:hover,
.contact-buttons .btn-ghost:hover {
    background: var(--grad-primary);
    color: #fff !important;
    border-color: transparent;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 450px;
    box-shadow: var(--shadow-lg);
}
.contact-map iframe { display: block; }

/* ============ FOOTER ============ */
.footer {
    background: linear-gradient(180deg, #0a1f18 0%, #051410 100%);
    color: #cbd5d3;
    padding-top: 70px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-col h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-en);
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--grad-accent);
    border-radius: 2px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col ul a {
    color: #cbd5d3;
    font-size: 14px;
    transition: var(--transition);
}
.footer-col ul a:hover { color: var(--accent-light); padding-left: 6px; }
.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 10px; }
.footer-col p i { color: var(--accent); margin-right: 8px; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.footer-logo img {
    width: 54px; height: 54px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    object-fit: cover;
}
.footer-logo div { display: flex; flex-direction: column; line-height: 1.1; }
.footer-logo .logo-en { color: #fff; }
.footer-logo .logo-bn { color: var(--accent-light); }

.socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.socials a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: grid;
    place-items: center;
    color: #fff;
    transition: var(--transition);
}
.socials a:hover {
    background: var(--grad-accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    text-align: center;
    font-size: 13px;
}
.footer-bottom i { color: #ef4444; }

/* ============ FLOATING ELEMENTS ============ */
.floating-call {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--grad-cta);
    color: #fff !important;
    display: grid;
    place-items: center;
    font-size: 22px;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
    z-index: 999;
    transition: var(--transition);
}
.floating-call:hover { transform: scale(1.1); }
.floating-call .ripple {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid var(--accent);
    animation: ripple 1.8s infinite;
}
@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.back-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 16px;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-card-main { width: 320px; height: 320px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: none; }
    .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); padding-bottom: 30px; }
    .stat:nth-child(3), .stat:nth-child(4) { padding-top: 30px; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-content .section-title,
    .contact-info .section-title { text-align: center; }
    .features-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .offer-inner { grid-template-columns: 1fr; text-align: center; padding: 40px 30px; }
    .testimonial-card { flex: 0 0 calc(50% - 12px); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar-info { font-size: 12px; gap: 10px; }
    .top-bar-info .divider { display: none; }
    .top-bar-inner { justify-content: center; }
    .pos-login-btn { padding: 7px 16px; font-size: 12px; }

    .nav-menu {
        position: fixed;
        top: 78px;
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        clip-path: inset(0 0 100% 0);
        transition: clip-path 0.4s ease;
    }
    .nav-menu.active { clip-path: inset(0 0 0 0); }
    .nav-menu li { width: 100%; }
    .nav-link { width: 100%; text-align: center; padding: 12px; }
    .hamburger { display: flex; }

    .hero-section { padding: 50px 0 80px; min-height: auto; }
    .hero-title { font-size: 32px; }
    .hero-buttons { justify-content: center; }
    .btn-shop-now { width: 100%; justify-content: center; }
    .hero-card-main { width: 260px; height: 260px; }
    .floating-badge { font-size: 11px; padding: 8px 12px; }
    .hero-highlights { justify-content: center; }

    .section { padding: 60px 0; }
    .section-head { margin-bottom: 40px; }

    .features-grid, .why-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }
    .gallery-item.large, .gallery-item.tall {
        grid-column: span 2;
        grid-row: span 1;
    }
    .testimonial-card { flex: 0 0 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .about-image-badge { right: 10px; bottom: -25px; padding: 14px 18px; }
    .disc-circle { width: 160px; height: 160px; }
    .disc-num { font-size: 48px; }

    .floating-call { width: 54px; height: 54px; bottom: 20px; right: 20px; }
    .back-top { bottom: 86px; right: 20px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .stats-grid { padding: 18px; }
    .stat { padding: 14px 6px; }
    .stat h3 { font-size: 28px; }
    .categories-grid { gap: 14px; }
    .cat-card { padding: 22px 12px; }
    .cat-icon { width: 64px; height: 64px; font-size: 28px; }
    .contact-buttons { flex-direction: column; }
    .contact-buttons a { width: 100%; justify-content: center; }
}
