:root
{
    --bg-primary: #0b0f19;
    --bg-secondary: #111827;
    --bg-tertiary: #1e293b;
    --bg-card: rgba(30, 41, 59, 0.85);
    --bg-glass: rgba(30, 41, 59, 0.6);
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --accent-green: #10b981;
    --accent-gold: #f59e0b;
    --accent-emerald: #059669;
    --accent-lime: #34d399;
    --accent-teal: #14b8a6;
    --gradient-primary: linear-gradient(135deg, #10b981, #f59e0b);
    --gradient-dark: linear-gradient(135deg, #0b0f19 0%, #111827 50%, #0b0f19 100%);
    --gradient-glass: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(245, 158, 11, 0.08));
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.2);
    --border-subtle: rgba(148, 163, 184, 0.12);
    --border-glow: rgba(16, 185, 129, 0.35);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,*::before,*::after
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html
{
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-green) var(--bg-primary);
}

::-webkit-scrollbar
{
    width: 8px;
}

::-webkit-scrollbar-track
{
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb
{
    background: var(--accent-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover
{
    background: var(--accent-emerald);
}

body
{
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection
{
    background: rgba(16, 185, 129, 0.3);
    color: var(--text-primary);
}

img
{
    max-width: 100%;
    height: auto;
    display: block;
}

a
{
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul
{
    list-style: none;
}

.container
{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text
{
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 50px;
}

.section-header
{
    text-align: center;
    margin-bottom: 64px;
}

.section-title
{
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle
{
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.btn
{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn::before
{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before
{
    left: 100%;
}

.btn-primary
{
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover
{
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-secondary
{
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-glow);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover
{
    background: rgba(76, 175, 80, 0.1);
    border-color: var(--accent-green);
    transform: translateY(-2px);
}

.btn-whatsapp
{
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover
{
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-lg
{
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-full
{
    width: 100%;
    justify-content: center;
}

#heroCanvas
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.navbar
{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
    background: transparent;
}

.navbar.scrolled
{
    background: rgba(11, 15, 25, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.nav-container
{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-logo
{
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    flex-shrink: 0;
}

.nav-logo img
{
    height: 48px;
    width: auto;
    max-width: none;
    border-radius: 8px;
}

.nav-brand
{
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-name
{
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    white-space: nowrap;
}

.brand-tagline
{
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    max-width: 200px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-links
{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link
{
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link:hover,.nav-link.active
{
    color: var(--text-primary);
    background: rgba(16, 185, 129, 0.1);
}

.nav-link.active::after
{
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.whatsapp-btn
{
    background: rgba(37, 211, 102, 0.15) !important;
    color: #25d366 !important;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover
{
    background: rgba(37, 211, 102, 0.25) !important;
}

.hamburger
{
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span
{
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1)
{
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2)
{
    opacity: 0;
}

.hamburger.active span:nth-child(3)
{
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero
{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    z-index: 1;
    overflow: visible;
}

.hero::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 70%),                radial-gradient(ellipse at 70% 30%, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
    z-index: 0;
}

.hero-grid
{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content
{
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-badge
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-lime);
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

@keyframes float
{
    0%, 100%
    {
        transform: translateY(0);
    }

    50%
    {
        transform: translateY(-8px);
    }

}

.hero-title
{
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
    color: var(--text-primary);
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.hero-subtitle
{
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 0 16px;
    line-height: 1.7;
}

.hero-subtitle strong
{
    color: var(--accent-lime);
}

.hero-desc
{
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 20px;
    max-width: 600px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-stats
{
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-stat
{
    text-align: center;
    padding: 10px 18px;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius-md);
    min-width: 100px;
    transition: all var(--transition-base);
}

.hero-stat:hover
{
    transform: translateY(-4px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.stat-emoji
{
    font-size: 1.3rem;
    display: block;
    margin-bottom: 2px;
}

.stat-text
{
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-number
{
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-suffix
{
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-label
{
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons
{
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.scroll-indicator
{
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s ease-in-out infinite;
}

.mouse
{
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-wheel
{
    width: 3px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 3px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel
{
    0%
    {
        opacity: 1;
        transform: translateY(0);
    }

    100%
    {
        opacity: 0;
        transform: translateY(10px);
    }

}

@keyframes bounce
{
    0%, 100%
    {
        transform: translateX(-50%) translateY(0);
    }

    50%
    {
        transform: translateX(-50%) translateY(-10px);
    }

}

.scroll-indicator span
{
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-visual
{
    position: relative;
    width: 100%;
    min-height: 400px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-orb
{
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    animation: orb-entrance 1s ease-out 0.3s both;
}

@keyframes orb-entrance
{
    from
    {
        transform: scale(0.8);
        opacity: 0;
    }

    to
    {
        transform: scale(1);
        opacity: 1;
    }

}

.orb-glow
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, rgba(245, 158, 11, 0.12) 50%, transparent 70%);
    box-shadow: 0 0 80px rgba(16, 185, 129, 0.15), 0 0 160px rgba(16, 185, 129, 0.05);
    animation: orb-pulse 4s ease-in-out infinite;
}

@keyframes orb-pulse
{
    0%, 100%
    {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50%
    {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }

}

.orb-ring
{
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(16, 185, 129, 0.12);
}

.ring-1
{
    width: 240px;
    height: 240px;
    transform: translate(-50%, -50%);
    animation: ring-rotate 20s linear infinite;
}

.ring-2
{
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%);
    border-color: rgba(245, 158, 11, 0.1);
    animation: ring-rotate 30s linear infinite reverse;
}

.ring-3
{
    width: 390px;
    height: 390px;
    transform: translate(-50%, -50%);
    border-style: dashed;
    border-color: rgba(16, 185, 129, 0.08);
    animation: ring-rotate 40s linear infinite;
}

@keyframes ring-rotate
{
    from
    {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to
    {
        transform: translate(-50%, -50%) rotate(360deg);
    }

}

.hero-product
{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 5;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.hero-p-1
{
    top: 0;
    left: 50%;
    animation: hero-float-1 5s ease-in-out infinite, product-pop-p1 0.6s ease-out both;
}

.hero-p-2
{
    top: 22%;
    right: 0;
    animation: hero-float 5s ease-in-out infinite 0.8s, product-pop-p2 0.6s ease-out 0.15s both;
}

.hero-p-3
{
    bottom: 22%;
    right: 0;
    animation: hero-float 5s ease-in-out infinite 1.6s, product-pop-p3 0.6s ease-out 0.3s both;
}

.hero-p-4
{
    bottom: 0;
    left: 50%;
    animation: hero-float-1 5s ease-in-out infinite 2.4s, product-pop-p4 0.6s ease-out 0.45s both;
}

.hero-p-5
{
    bottom: 22%;
    left: 0;
    animation: hero-float 5s ease-in-out infinite 3.2s, product-pop-p5 0.6s ease-out 0.6s both;
}

.hero-p-6
{
    top: 22%;
    left: 0;
    animation: hero-float 5s ease-in-out infinite 4s, product-pop-p6 0.6s ease-out 0.75s both;
}

@keyframes product-pop-p1
{
    from
    {
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }

    to
    {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

}

@keyframes product-pop-p2
{
    from
    {
        opacity: 0;
        transform: scale(0);
    }

    to
    {
        opacity: 1;
        transform: scale(1);
    }

}

@keyframes product-pop-p3
{
    from
    {
        opacity: 0;
        transform: scale(0);
    }

    to
    {
        opacity: 1;
        transform: scale(1);
    }

}

@keyframes product-pop-p4
{
    from
    {
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }

    to
    {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

}

@keyframes product-pop-p5
{
    from
    {
        opacity: 0;
        transform: scale(0);
    }

    to
    {
        opacity: 1;
        transform: scale(1);
    }

}

@keyframes product-pop-p6
{
    from
    {
        opacity: 0;
        transform: scale(0);
    }

    to
    {
        opacity: 1;
        transform: scale(1);
    }

}

.hero-product:hover
{
    transform: scale(1.15) !important;
    z-index: 20;
}

.hero-product img
{
    width: 68px;
    height: 68px;
    object-fit: contain;
    border-radius: 50%;
    padding: 6px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(148, 163, 184, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(16, 185, 129, 0.1);
    transition: all var(--transition-base);
}

.hero-product:hover img
{
    border-color: var(--accent-gold);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.2), 0 0 30px rgba(16, 185, 129, 0.15);
}

.hero-p-label
{
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.hero-p-label.hot
{
    color: #ef5350;
    border-color: rgba(244, 67, 54, 0.3);
    background: rgba(244, 67, 54, 0.1);
}

@keyframes hero-float
{
    0%, 100%
    {
        transform: translateY(0);
    }

    50%
    {
        transform: translateY(-10px);
    }

}

.hero-p-1
{
    top: 0;
    left: 50%;
    animation: hero-float-1 5s ease-in-out infinite, product-pop-p1 0.6s ease-out both;
}

.hero-p-4
{
    bottom: 0;
    left: 50%;
    animation: hero-float-1 5s ease-in-out infinite 2.4s, product-pop-p4 0.6s ease-out 0.45s both;
}

@keyframes hero-float-1
{
    0%, 100%
    {
        transform: translateX(-50%) translateY(0);
    }

    50%
    {
        transform: translateX(-50%) translateY(-10px);
    }

}

.featured-products
{
    position: relative;
    padding: 120px 0;
    z-index: 1;
    background: var(--bg-secondary);
}

.featured-products::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--bg-primary), transparent);
    z-index: 0;
    pointer-events: none;
}

.products-showcase
{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.product-card
{
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-slow);
    position: relative;
}

.product-card:hover
{
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.product-image-wrapper
{
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #ffffff;
}

.product-image-wrapper img
{
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image-wrapper img
{
    transform: scale(1.08);
}

.product-overlay
{
    position: absolute;
    top: 16px;
    right: 16px;
}

.product-badge
{
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(10px);
}

.product-badge.hot
{
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.3);
}

.product-info
{
    padding: 24px;
}

.product-info h3
{
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.product-info p
{
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-tags
{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.product-tags span
{
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-lime);
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.product-link
{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
    transition: all var(--transition-base);
}

.product-link:hover
{
    gap: 10px;
    color: var(--accent-lime);
}

.section-cta
{
    text-align: center;
    margin-top: 64px;
}

.about
{
    position: relative;
    padding: 120px 0;
    z-index: 1;
    background: var(--bg-primary);
}

.about-grid
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content
{
    display: flex;
    flex-direction: column;
}

.about-visual
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-text
{
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-features
{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature
{
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.about-feature:hover
{
    border-color: var(--border-glow);
    transform: translateX(8px);
    box-shadow: var(--shadow-glow);
}

.feature-icon-wrap
{
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    color: #fff;
}

.about-feature h4
{
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.about-feature p
{
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.certifications-grid
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cert-card
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px 20px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-spring);
    cursor: default;
}

.cert-card:hover
{
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.15);
    background: rgba(245, 158, 11, 0.06);
}

.cert-card i
{
    font-size: 2.2rem;
    color: var(--accent-gold);
}

.cert-card span
{
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.process
{
    position: relative;
    padding: 120px 0;
    z-index: 1;
    background: var(--bg-secondary);
}

.process-timeline
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.process-step
{
    position: relative;
    padding: 40px 28px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-spring);
    overflow: hidden;
}

.process-step::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.process-step:hover::before
{
    opacity: 1;
}

.process-step:hover
{
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.step-number
{
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(16, 185, 129, 0.06);
    line-height: 1;
}

.step-icon
{
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.process-step h3
{
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.process-step p
{
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.supply-chain
{
    position: relative;
    padding: 120px 0;
    z-index: 1;
    background: var(--bg-primary);
}

.supply-grid
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.supply-card
{
    padding: 36px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-spring);
}

.supply-card:hover
{
    transform: translateY(-4px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.supply-icon
{
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
    font-size: 1.4rem;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.supply-card h3
{
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.supply-list
{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.supply-list span
{
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(16, 185, 129, 0.08);
    color: var(--text-secondary);
    border-radius: 50px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all var(--transition-base);
}

.supply-list span:hover
{
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--border-glow);
    color: var(--accent-lime);
}

.testimonials
{
    position: relative;
    padding: 120px 0;
    z-index: 1;
    background: var(--bg-secondary);
    overflow: hidden;
}

.testimonials-carousel
{
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    min-height: 300px;
}

.testimonial-card
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 48px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-align: center;
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all var(--transition-slow);
    pointer-events: none;
}

.testimonial-card.active
{
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.testimonial-stars
{
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-stars i
{
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.testimonial-text
{
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.testimonial-author
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar
{
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.4rem;
    color: #fff;
}

.testimonial-author h4
{
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-author span
{
    font-size: 0.85rem;
    color: var(--text-muted);
}

.carousel-controls
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.carousel-btn
{
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 0.9rem;
}

.carousel-btn:hover
{
    background: rgba(76, 175, 80, 0.15);
    border-color: var(--border-glow);
    color: var(--accent-green);
}

.carousel-dots
{
    display: flex;
    gap: 8px;
}

.carousel-dots .dot
{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-subtle);
    cursor: pointer;
    transition: all var(--transition-base);
}

.carousel-dots .dot.active
{
    background: var(--accent-green);
    width: 30px;
    border-radius: 5px;
}

.cta-section
{
    position: relative;
    padding: 120px 0;
    z-index: 1;
    background: var(--bg-primary);
    overflow: hidden;
}

.cta-section::before
{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content
{
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2
{
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cta-content > p
{
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons
{
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-contact-info
{
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-contact-info span
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cta-contact-info i
{
    color: var(--accent-green);
}

.footer
{
    position: relative;
    padding: 80px 0 0;
    z-index: 1;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.footer-grid
{
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand img
{
    height: 56px;
    width: auto;
    border-radius: 10px;
    margin-bottom: 16px;
}

.footer-brand h3
{
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.footer-brand p
{
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.footer-tagline
{
    font-style: italic;
    font-size: 0.85rem !important;
    color: var(--text-muted);
    margin-bottom: 20px !important;
}

.footer-social
{
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a
{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.footer-social a:hover
{
    background: var(--accent-green);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.footer-links-section h4
{
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links-section h4::after
{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links-section ul li
{
    margin-bottom: 10px;
}

.footer-links-section ul li a,.footer-links-section ul li
{
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-section ul li a:hover
{
    color: var(--accent-green);
    padding-left: 6px;
}

.footer-contact-list li i
{
    color: var(--accent-lime);
    width: 16px;
}

.footer-bottom
{
    padding: 24px 0;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-bottom p
{
    font-size: 0.85rem;
    color: var(--text-muted);
}

.whatsapp-float
{
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: 50%;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover
{
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp
{
    0%, 100%
    {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50%
    {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

}

.page-hero
{
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 48px;
    z-index: 1;
    background: var(--bg-primary);
    overflow: hidden;
}

.page-hero::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 60%),                radial-gradient(ellipse at 80% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),                radial-gradient(ellipse at 20% 70%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
    z-index: 0;
}

.page-hero::after
{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
    z-index: 1;
}

.page-hero-content
{
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.page-hero-content h1
{
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.page-hero-content > p
{
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-hero::before
{
    background: radial-gradient(ellipse at 30% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 70%),                radial-gradient(ellipse at 70% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 60%) !important;
}

.page-hero-content .section-tag
{
    animation: fade-up-in 0.6s ease-out both;
}

.page-hero-content h1
{
    animation: fade-up-in 0.8s ease-out 0.15s both;
}

.page-hero-content > p
{
    animation: fade-up-in 0.6s ease-out 0.3s both;
}

@keyframes fade-up-in
{
    from
    {
        opacity: 0;
        transform: translateY(20px);
    }

    to
    {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes card-shimmer
{
    0%
    {
        background-position: -200% 0;
    }

    100%
    {
        background-position: 200% 0;
    }

}

.product-detail-card::after
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-green), var(--accent-gold), transparent);
    background-size: 200% 100%;
    animation: card-shimmer 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-detail-card:hover::after
{
    opacity: 1;
}

.products-page-section
{
    position: relative;
    padding: 80px 0 120px;
    z-index: 1;
    background: var(--bg-secondary);
}

.product-filters
{
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn
{
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover
{
    color: var(--text-primary);
    border-color: var(--border-glow);
}

.filter-btn.active
{
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.products-full-grid
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.product-detail-card
{
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-spring);
    position: relative;
    perspective: 1000px;
}

.product-detail-card::before
{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.6s ease;
    z-index: 10;
    pointer-events: none;
}

.product-detail-card:hover::before
{
    left: 120%;
}

.product-detail-card:hover
{
    border-color: var(--accent-green);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(16, 185, 129, 0.1);
    transform: translateY(-6px);
}

.product-detail-card.hidden
{
    display: none;
}

.pdc-image
{
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    min-height: 240px;
    position: relative;
    overflow: hidden;
}

.pdc-image::after
{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.pdc-image img
{
    width: 100%;
    height: 100%;
    max-height: 200px;
    object-fit: contain;
    transition: transform var(--transition-slow);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.product-detail-card:hover .pdc-image img
{
    transform: scale(1.1) rotate(1deg);
}

.pdc-content
{
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.pdc-badges
{
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.pdc-badge
{
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pdc-badge.bestseller
{
    background: rgba(245, 158, 11, 0.12);
    color: var(--accent-gold);
    border-color: rgba(245, 158, 11, 0.3);
}

.pdc-badge.hot
{
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.3);
}

.pdc-badge.herbal
{
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.2);
}

.pdc-badge.culinary
{
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.2);
}

.pdc-badge.nutritional
{
    background: rgba(20, 184, 166, 0.1);
    color: #2dd4bf;
    border-color: rgba(20, 184, 166, 0.2);
}

.pdc-badge.cosmetic
{
    background: rgba(168, 85, 247, 0.1);
    color: #c084fc;
    border-color: rgba(168, 85, 247, 0.2);
}

.pdc-content h3
{
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pdc-content > p
{
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pdc-specs
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.pdc-specs span
{
    font-size: 0.78rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pdc-specs span i
{
    color: var(--accent-green);
    font-size: 0.7rem;
}

.contact-section
{
    position: relative;
    padding: 80px 0 120px;
    z-index: 1;
    background: var(--bg-secondary);
}

.contact-grid
{
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrapper
{
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.contact-form-wrapper h2
{
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-form-wrapper > p
{
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.modern-form .form-row
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group
{
    margin-bottom: 20px;
}

.form-group label
{
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.form-group input,.form-group select,.form-group textarea
{
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    outline: none;
}

.form-group input::placeholder,.form-group textarea::placeholder
{
    color: rgba(148, 163, 184, 0.4);
}

.form-group input:focus,.form-group select:focus,.form-group textarea:focus
{
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    background: rgba(15, 23, 42, 0.8);
}

.form-group select
{
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option
{
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-group textarea
{
    resize: vertical;
    min-height: 120px;
}

.contact-info-wrapper
{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card
{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.contact-info-card:hover
{
    border-color: var(--border-glow);
    transform: translateX(8px);
    box-shadow: var(--shadow-glow);
}

.cic-icon
{
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    color: #fff;
}

.contact-info-card h4
{
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.contact-info-card a,.contact-info-card p
{
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-info-card a:hover
{
    color: var(--accent-green);
}

.business-hours-card
{
    padding: 24px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.business-hours-card h3
{
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.business-hours-card h3 i
{
    color: var(--accent-gold);
}

.hours-row
{
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.hours-row:last-child
{
    border-bottom: none;
}

.social-card
{
    padding: 24px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.social-card h3
{
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.social-links-row
{
    display: flex;
    gap: 12px;
}

.social-circle
{
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all var(--transition-base);
}

.social-circle:hover
{
    background: var(--accent-green);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.map-section
{
    position: relative;
    padding: 0 0 80px;
    z-index: 1;
    background: var(--bg-secondary);
}

.map-container
{
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
}

.map-container iframe
{
    display: block;
    border-radius: var(--radius-lg);
}

[data-aos]
{
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"]
{
    transform: translateY(30px);
}

[data-aos="fade-right"]
{
    transform: translateX(-30px);
}

[data-aos="fade-left"]
{
    transform: translateX(30px);
}

[data-aos="zoom-in"]
{
    transform: scale(0.95);
}

[data-aos].aos-animate
{
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

@media (max-width: 1024px)
{
    .about-grid
    {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual
    {
        order: -1;
    }

    .hero-grid
    {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content
    {
        text-align: center;
    }

    .hero-desc
    {
        margin: 0 auto 32px;
    }

    .hero-stats
    {
        justify-content: center;
    }

    .hero-buttons
    {
        justify-content: center;
    }

    .hero-visual
    {
        display: flex;
        justify-content: center;
        min-height: 320px;
    }

    .hero-orb
    {
        width: 300px;
        height: 300px;
    }

    .hero-product img
    {
        width: 56px;
        height: 56px;
        padding: 5px;
    }

    .orb-ring.ring-1
    {
        width: 180px;
        height: 180px;
    }

    .orb-ring.ring-2
    {
        width: 240px;
        height: 240px;
    }

    .orb-ring.ring-3
    {
        width: 290px;
        height: 290px;
    }

    .process-timeline
    {
        grid-template-columns: repeat(2, 1fr);
    }

    .supply-grid
    {
        grid-template-columns: 1fr;
    }

    .footer-grid
    {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .products-full-grid
    {
        grid-template-columns: 1fr;
    }

    .product-detail-card
    {
        transform-style: preserve-3d;
    }

    .pdc-specs
    {
        grid-template-columns: 1fr;
    }

    .faq-grid
    {
        grid-template-columns: 1fr;
        gap: 32px;
    }

}

@media (max-width: 768px)
{
    .hamburger
    {
        display: flex;
    }

    .nav-links
    {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(11, 15, 25, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right var(--transition-slow);
        border-left: 1px solid var(--border-subtle);
    }

    .nav-links.active
    {
        right: 0;
    }

    .nav-link
    {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .hero
    {
        padding: 100px 16px 60px;
    }

    .hero-title
    {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .hero-orb
    {
        width: 260px;
        height: 260px;
    }

    .hero-visual
    {
        min-height: 280px;
    }

    .hero-product img
    {
        width: 48px;
        height: 48px;
        padding: 4px;
    }

    .hero-p-label
    {
        font-size: 0.6rem;
        padding: 2px 7px;
    }

    .orb-ring.ring-1
    {
        width: 160px;
        height: 160px;
    }

    .orb-ring.ring-2
    {
        width: 210px;
        height: 210px;
    }

    .orb-ring.ring-3
    {
        width: 250px;
        height: 250px;
    }

    .hero-stats
    {
        gap: 12px;
    }

    .hero-stat
    {
        min-width: 90px;
        padding: 10px 14px;
    }

    .stat-number
    {
        font-size: 1.6rem;
    }

    .products-showcase
    {
        grid-template-columns: 1fr;
    }

    .process-timeline
    {
        grid-template-columns: 1fr;
    }

    .certifications-grid
    {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail-card
    {
        grid-template-columns: 1fr;
    }

    .pdc-image
    {
        min-height: 200px;
    }

    .pdc-specs
    {
        grid-template-columns: 1fr;
    }

    .contact-grid
    {
        grid-template-columns: 1fr;
    }

    .modern-form .form-row
    {
        grid-template-columns: 1fr;
    }

    .footer-grid
    {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand
    {
        text-align: center;
    }

    .footer-brand img
    {
        margin: 0 auto 16px;
    }

    .footer-social
    {
        justify-content: center;
    }

    .cta-contact-info
    {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .page-hero
    {
        padding: 120px 16px 36px;
    }

    .testimonial-card
    {
        padding: 32px 20px;
    }

    .testimonial-text
    {
        font-size: 1.1rem;
    }

    .contact-form-wrapper
    {
        padding: 28px 20px;
    }

}

@media (max-width: 480px)
{
    .hero-buttons
    {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn
    {
        width: 100%;
        justify-content: center;
    }

    .hero-stat
    {
        min-width: 80px;
    }

    .stat-number
    {
        font-size: 1.6rem;
    }

    .stat-suffix
    {
        font-size: 1.2rem;
    }

    .btn-lg
    {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .cta-buttons
    {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn
    {
        width: 100%;
        justify-content: center;
    }

    .brand-tagline
    {
        display: none;
    }

    .product-filters
    {
        gap: 8px;
    }

    .filter-btn
    {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

}

@keyframes rotate-slow
{
    from
    {
        transform: rotate(0deg);
    }

    to
    {
        transform: rotate(360deg);
    }

}

.faq-section
{
    position: relative;
    padding: 120px 0;
    z-index: 1;
    background: var(--bg-secondary);
}

.faq-grid
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.faq-column
{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-category
{
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}

.faq-item
{
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover
{
    border-color: var(--border-glow);
}

.faq-item.active
{
    border-color: var(--accent-green);
    box-shadow: var(--shadow-glow);
}

.faq-question
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    line-height: 1.4;
    transition: all var(--transition-base);
}

.faq-question:hover
{
    color: var(--accent-green);
}

.faq-question i
{
    font-size: 0.75rem;
    color: var(--accent-green);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-question i
{
    transform: rotate(180deg);
}

.faq-answer
{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer
{
    max-height: 300px;
}

.faq-answer p
{
    padding: 0 20px 18px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer p strong
{
    color: var(--accent-lime);
}

.pdc-export-info
{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    padding: 10px 14px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(148, 163, 184, 0.08);
}

.pdc-export-info span
{
    font-size: 0.78rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pdc-export-info span i
{
    color: var(--accent-gold);
}

.pdc-img-turmeric,.pdc-img-ashwagandha,.pdc-img-spirulina,.pdc-img-moringa,.pdc-img-neem,.pdc-img-tulsi,.pdc-img-ginger,.pdc-img-beetroot,.pdc-img-chilli,.pdc-img-foxnut,.pdc-img-soap,.pdc-img-spices,.pdc-img-hairoil
{
    background: #ffffff;
}

.pc-turmeric:hover
{
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.1);
}

.pc-ashwagandha:hover
{
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.1);
}

.pc-moringa:hover
{
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
}

.pc-neem:hover
{
    border-color: rgba(5, 150, 105, 0.4);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.12);
}

.pc-spirulina:hover
{
    border-color: rgba(20, 184, 166, 0.4);
    box-shadow: 0 12px 40px rgba(20, 184, 166, 0.1);
}

.pc-tulsi:hover
{
    border-color: rgba(52, 211, 153, 0.4);
    box-shadow: 0 12px 40px rgba(52, 211, 153, 0.1);
}

.pc-ginger:hover
{
    border-color: rgba(251, 146, 60, 0.4);
    box-shadow: 0 12px 40px rgba(251, 146, 60, 0.1);
}

.pc-beetroot:hover
{
    border-color: rgba(248, 113, 113, 0.4);
    box-shadow: 0 12px 40px rgba(248, 113, 113, 0.1);
}

.pc-chilli:hover
{
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.1);
}

.pc-foxnut:hover
{
    border-color: rgba(253, 224, 71, 0.4);
    box-shadow: 0 12px 40px rgba(253, 224, 71, 0.1);
}

.pc-soap:hover
{
    border-color: rgba(192, 132, 252, 0.4);
    box-shadow: 0 12px 40px rgba(192, 132, 252, 0.1);
}

.pc-spices:hover
{
    border-color: rgba(251, 146, 60, 0.4);
    box-shadow: 0 12px 40px rgba(251, 146, 60, 0.1);
}

.hero-stat.stat-green:hover
{
    border-color: rgba(16, 185, 129, 0.4);
}

.hero-stat.stat-orange:hover
{
    border-color: rgba(245, 158, 11, 0.4);
}

.hero-stat.stat-pink:hover
{
    border-color: rgba(244, 114, 182, 0.4);
}

/* ============ ZESHTO PROMO SECTION ============ */
.zeshto-promo
{
    position: relative;
    padding: 120px 0;
    z-index: 1;
    background: var(--bg-primary);
    overflow: hidden;
}

.zeshto-promo::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 60%),                radial-gradient(ellipse at 80% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.zeshto-promo-grid
{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.zeshto-badge
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.zeshto-title
{
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.zeshto-desc
{
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 540px;
}

.zeshto-features
{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.zeshto-features li
{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.zeshto-features li i
{
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    color: var(--accent-green);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.zeshto-cta
{
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.zeshto-url
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.zeshto-url i
{
    color: var(--accent-green);
}

/* 3D Card Stack */
.zeshto-promo-visual
{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.zeshto-3d-scene
{
    position: relative;
    width: 320px;
    height: 400px;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zeshto-card-stack
{
    position: relative;
    width: 220px;
    height: 300px;
    transform-style: preserve-3d;
}

.z-card
{
    position: absolute;
    width: 220px;
    height: 300px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.z-card::before
{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    transition: left 0.7s ease;
    z-index: 2;
    pointer-events: none;
}

.z-card:hover::before
{
    left: 140%;
}

.z-card-shimmer
{
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: z-card-flash 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes z-card-flash
{
    0%, 100%
    {
        left: -100%;
        opacity: 0;
    }

    50%
    {
        left: 200%;
        opacity: 1;
    }

}

.z-card-inner
{
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    text-align: center;
}

.z-card-icon
{
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    margin-bottom: 8px;
}

.z-card h4
{
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.z-card p
{
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Card positioning in stack */
.z-card-1
{
    transform: translateZ(40px) rotateY(-5deg);
    z-index: 5;
    border-color: rgba(245, 158, 11, 0.3);
}

.z-card-2
{
    transform: translateZ(20px) translateX(15px) rotateY(-8deg);
    z-index: 4;
    border-color: rgba(16, 185, 129, 0.25);
}

.z-card-3
{
    transform: translateZ(0px) translateX(30px) rotateY(-12deg);
    z-index: 3;
    border-color: rgba(20, 184, 166, 0.25);
}

.z-card-4
{
    transform: translateZ(-20px) translateX(45px) rotateY(-16deg);
    z-index: 2;
    border-color: rgba(139, 92, 246, 0.25);
}

.z-card-5
{
    transform: translateZ(-40px) translateX(60px) rotateY(-20deg);
    z-index: 1;
    border-color: rgba(244, 114, 182, 0.25);
}

.zeshto-glow
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(245, 158, 11, 0.04) 40%, transparent 70%);
    pointer-events: none;
    animation: z-glow-pulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes z-glow-pulse
{
    0%, 100%
    {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50%
    {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }

}

/* Card animation active state (JS toggles) */
.z-card.active
{
    transform: translateZ(80px) translateX(-20px) rotateY(0deg) scale(1.05);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(245, 158, 11, 0.15);
    z-index: 10;
}

/* When images are added, the image container */
.z-card-img
{
    width: 100%;
    height: 160px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.z-card-img img
{
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

/* ============ BLOG SYSTEM ============ */
.blog-hero
{
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 24px 80px;
    z-index: 1;
    background: var(--bg-primary);
    overflow: hidden;
}

.blog-hero::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 60%),                radial-gradient(ellipse at 80% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.blog-hero-content
{
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.blog-hero-content h1
{
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.2;
}

.blog-hero-content > p
{
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

.blog-section
{
    position: relative;
    padding: 80px 0 120px;
    z-index: 1;
    background: var(--bg-secondary);
}

.blog-layout
{
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

.blog-grid
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.blog-card
{
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-spring);
    position: relative;
}

.blog-card:hover
{
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.blog-card-image
{
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.blog-card-image img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img
{
    transform: scale(1.08);
}

.blog-card-category
{
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    background: var(--gradient-primary);
    color: #fff;
    z-index: 2;
}

.blog-card-body
{
    padding: 22px;
}

.blog-card-meta
{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-card-meta i
{
    color: var(--accent-gold);
    font-size: 0.75rem;
}

.blog-card-body h3
{
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.blog-card-body p
{
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link
{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-gold);
    transition: all var(--transition-base);
}

.blog-card-link:hover
{
    gap: 10px;
    color: var(--accent-lime);
}

/* Blog Sidebar */
.blog-sidebar
{
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 100px;
}

.sidebar-widget
{
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition-base);
}

.sidebar-widget:hover
{
    border-color: var(--border-glow);
}

.sidebar-widget h4
{
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.sidebar-widget h4 i
{
    color: var(--accent-gold);
    font-size: 0.95rem;
}

/* News Ticker Widget */
.news-ticker-list
{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.news-ticker-item
{
    padding: 14px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    cursor: default;
}

.news-ticker-item:hover
{
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.news-ticker-item .news-date
{
    font-size: 0.72rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

.news-ticker-item p
{
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Categories Widget */
.category-list
{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.category-list a
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.category-list a:hover
{
    background: rgba(16, 185, 129, 0.08);
    color: var(--accent-lime);
    padding-left: 18px;
}

.category-list a span.count
{
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(148, 163, 184, 0.1);
    padding: 2px 8px;
    border-radius: 50px;
}

/* Keyword Tags */
.tag-cloud
{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a
{
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 50px;
    transition: all var(--transition-base);
}

.tag-cloud a:hover
{
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Blog Post Page */
.blog-post-hero
{
    position: relative;
    padding: 140px 24px 60px;
    z-index: 1;
    background: var(--bg-primary);
    overflow: hidden;
}

.blog-post-hero::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
    z-index: 0;
}

.blog-post-hero-content
{
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.blog-post-meta
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-post-meta span
{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-post-meta .post-category
{
    padding: 5px 14px;
    background: rgba(245, 158, 11, 0.12);
    color: var(--accent-gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-post-hero-content h1
{
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.blog-post-featured-image
{
    position: relative;
    max-width: 1000px;
    margin: 0 auto 48px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.blog-post-featured-image img
{
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.blog-post-content-wrap
{
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-post-article
{
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

.blog-post-article h2
{
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 48px 0 20px;
    line-height: 1.3;
}

.blog-post-article h3
{
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 36px 0 14px;
}

.blog-post-article p
{
    margin-bottom: 20px;
}

.blog-post-article a
{
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-post-article a:hover
{
    color: var(--accent-lime);
}

.blog-post-article ul,.blog-post-article ol
{
    margin: 0 0 20px 24px;
    padding-left: 8px;
}

.blog-post-article ul li,.blog-post-article ol li
{
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.blog-post-article ul li::marker
{
    color: var(--accent-green);
}

.blog-post-article blockquote
{
    margin: 32px 0;
    padding: 24px 28px;
    background: var(--bg-glass);
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-primary);
    font-family: var(--font-accent);
    font-size: 1.15rem;
}

.blog-post-article img
{
    width: 100%;
    border-radius: var(--radius-md);
    margin: 28px 0;
    border: 1px solid var(--border-subtle);
}

.blog-post-article .img-caption
{
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: -20px;
    margin-bottom: 28px;
    font-style: italic;
}

/* Author Box */
.author-box
{
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    padding: 28px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    margin: 48px 0;
    align-items: start;
}

.author-avatar-img
{
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-glow);
    flex-shrink: 0;
    max-width: 72px;
}

.author-info
{
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.author-info h4
{
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
    word-wrap: break-word;
}

.author-info .author-role
{
    font-size: 0.82rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    word-wrap: break-word;
}

.author-info p
{
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    word-wrap: break-word;
}

/* Social Share */
.social-share
{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    margin: 36px 0;
}

.social-share span
{
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 8px;
}

.share-btn
{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    color: #fff;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
}

.share-btn:hover
{
    transform: translateY(-3px);
}

.share-btn.facebook
{
    background: #1877f2;
}

.share-btn.twitter
{
    background: #1da1f2;
}

.share-btn.linkedin
{
    background: #0a66c2;
}

.share-btn.whatsapp
{
    background: #25d366;
}

.share-btn.email
{
    background: #ea4335;
}

/* Newsletter Box */
.newsletter-box
{
    padding: 32px;
    background: var(--gradient-glass);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 40px 0;
}

.newsletter-box h3
{
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.newsletter-box p
{
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.newsletter-form
{
    display: flex;
    gap: 10px;
}

.newsletter-form input
{
    flex: 1;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all var(--transition-base);
}

.newsletter-form input:focus
{
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.newsletter-form button
{
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.newsletter-form button:hover
{
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* CTA Quote Box */
.quote-cta-box
{
    padding: 36px;
    background: var(--gradient-glass);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.quote-cta-box::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.quote-cta-box h3
{
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.quote-cta-box p
{
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Related Posts */
.related-posts
{
    margin: 60px 0 40px;
}

.related-posts h3
{
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.related-posts-grid
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-post-card
{
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.related-post-card:hover
{
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.related-post-card img
{
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.related-post-card h4
{
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    padding: 14px;
    line-height: 1.4;
}

/* Post Sidebar */
.post-sidebar
{
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.toc-widget
{
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.toc-widget h4
{
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-widget h4 i
{
    color: var(--accent-gold);
}

.toc-widget ul
{
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc-widget ul li
{
    margin-bottom: 8px;
}

.toc-widget ul li a
{
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: block;
    padding: 6px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.06);
    transition: all var(--transition-base);
}

.toc-widget ul li a:hover
{
    color: var(--accent-lime);
    padding-left: 8px;
}

/* SEO Country Tags */
.country-tags
{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.country-tag
{
    padding: 3px 10px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 50px;
}

/* Blog Footer CTA */
.blog-footer-cta
{
    position: relative;
    padding: 80px 24px;
    z-index: 1;
    background: var(--bg-primary);
    overflow: hidden;
}

.blog-footer-cta::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    z-index: 0;
}

.blog-footer-cta .container
{
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
}

.blog-footer-cta h2
{
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.blog-footer-cta p
{
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ============ RESPONSIVE BLOG ============ */
@media (max-width: 1024px)
{
    .blog-layout
    {
        grid-template-columns: 1fr;
    }

    .blog-grid
    {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-sidebar
    {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .blog-post-content-wrap
    {
        grid-template-columns: 1fr;
    }

    .post-sidebar
    {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .related-posts-grid
    {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px)
{
    .blog-hero
    {
        padding: 120px 16px 48px;
    }

    .blog-grid
    {
        grid-template-columns: 1fr;
    }

    .blog-sidebar
    {
        grid-template-columns: 1fr;
    }

    .blog-post-hero-content h1
    {
        font-size: 1.6rem;
    }

    .blog-post-featured-image img
    {
        height: 240px;
    }

    .blog-post-article
    {
        font-size: 1rem;
    }

    .author-box
    {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .newsletter-form
    {
        flex-direction: column;
    }

    .related-posts-grid
    {
        grid-template-columns: 1fr;
    }

    .post-sidebar
    {
        grid-template-columns: 1fr;
    }

    .social-share
    {
        flex-wrap: wrap;
    }

}


/* Responsive */
@media (max-width: 1024px)
{
    .zeshto-promo-grid
    {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .zeshto-desc
    {
        margin-left: auto;
        margin-right: auto;
    }

    .zeshto-features
    {
        align-items: center;
    }

    .zeshto-cta
    {
        justify-content: center;
    }

    .zeshto-promo-visual
    {
        order: -1;
        min-height: 360px;
    }

    .zeshto-3d-scene
    {
        width: 280px;
        height: 360px;
    }

    .zeshto-card-stack
    {
        width: 200px;
        height: 280px;
    }

    .z-card
    {
        width: 200px;
        height: 280px;
    }
}

@media (max-width: 768px)
{
    .zeshto-promo
    {
        padding: 80px 0;
    }

    .zeshto-3d-scene
    {
        width: 260px;
        height: 340px;
    }

    .zeshto-card-stack
    {
        width: 180px;
        height: 260px;
    }

    .z-card
    {
        width: 180px;
        height: 260px;
    }

    .z-card-icon
    {
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gradient-glass);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-md);
        font-size: 1.6rem;
        color: var(--accent-gold);
        margin-bottom: 12px;
        transition: all var(--transition-base);
    }

    .z-card:hover .z-card-icon
    {
        background: var(--gradient-primary);
        color: #fff;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }

    .z-card-thumb
    {
        width: 120px;
        height: 120px;
        margin-bottom: 14px;
        border-radius: var(--radius-md);
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        transition: all var(--transition-base);
    }

    .z-card-thumb img
    {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 8px;
        transition: all var(--transition-base);
    }

    .z-card:hover .z-card-thumb
    {
        border-color: var(--accent-gold);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.15);
        transform: scale(1.05);
    }

    .z-card.active .z-card-thumb
    {
        border-color: var(--accent-green);
        box-shadow: 0 0 25px rgba(16, 185, 129, 0.3);
    }

    .z-card h4
    {
        font-size: 1.05rem;
    }
}

/* ============ DAILY DEAL BANNER ============ */
.daily-deal-banner
{
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(245, 158, 11, 0.12));
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 18px 28px;
    margin: 0 auto 32px;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    overflow: hidden;
}
.daily-deal-banner::before
{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(16, 185, 129, 0.06), transparent, rgba(245, 158, 11, 0.06), transparent);
    animation: dealRotate 8s linear infinite;
}
@keyframes dealRotate
{
    100% { transform: rotate(360deg); }
}
.daily-deal-content
{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}
.daily-deal-icon
{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}
.daily-deal-text h4
{
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent-green);
    margin-bottom: 2px;
}
.daily-deal-text p
{
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}
.daily-deal-btn
{
    position: relative;
    z-index: 1;
    background: var(--gradient-primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
}
.daily-deal-btn:hover
{
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* ============ DYNAMIC EXPORT NEWS BAR ============ */
.export-news-bar
{
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}
.export-news-bar::before
{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(90deg, var(--bg-secondary), transparent);
    z-index: 2;
}
.export-news-bar::after
{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(-90deg, var(--bg-secondary), transparent);
    z-index: 2;
}
.export-news-label
{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    z-index: 3;
    white-space: nowrap;
}
.export-news-label i
{
    margin-right: 6px;
    animation: newsPulse 2s ease infinite;
}
@keyframes newsPulse
{
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.export-news-track
{
    display: flex;
    animation: newsScroll 60s linear infinite;
    padding-left: 120px;
}
.export-news-track:hover
{
    animation-play-state: paused;
}
.export-news-item
{
    white-space: nowrap;
    padding: 0 32px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.export-news-item .news-dot
{
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-green);
    flex-shrink: 0;
}
.export-news-item strong
{
    color: var(--accent-gold);
    font-weight: 600;
}
@keyframes newsScroll
{
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px)
{
    .daily-deal-banner
    {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    .daily-deal-content
    {
        flex-direction: column;
    }
    .export-news-bar
    {
        display: none;
    }
}
