/*
 Theme Name:   Hello Elementor Child for HAAVO
 Theme URI:    https://haavo-export.com
 Description:  Premium Vanilla Export WordPress Theme - Child theme of Hello Elementor
 Author:       HAAVO
 Author URI:   https://haavo-export.com
 Template:     hello-elementor
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  hello-elementor-child
 Domain Path:  /languages
*/

/* ================================
   CSS VARIABLES - VANILLA PREMIUM DESIGN
   ================================ */
:root {
    /* Primary Colors - Nature & Premium */
    --primary-green: #1B4332;
    --primary-green-light: #2D6A4F;
    --primary-gold: #D4A853;
    --primary-gold-light: #E8C97A;
    --primary-cream: #F8F4E8;
    --primary-brown: #3D2B1F;
    --primary-dark: #1A1A1A;
    --primary-white: #ffffff;

    /* Secondary Colors */
    --forest-dark: #0F2318;
    --forest-medium: #16332a;
    --gold-dark: #B8923F;
    --warm-gray: #6B6358;
    --warm-light: #E5DED2;

    /* Text */
    --text-dark: #1A1A1A;
    --text-brown: #3D2B1F;
    --text-muted: #6B6358;
    --text-light: #F8F4E8;

    /* Accent */
    --accent: var(--primary-gold);
    --accent-green: var(--primary-green);

    /* Shadows - Soft & Natural */
    --shadow-soft: 0 4px 20px rgba(27, 67, 50, 0.08);
    --shadow-medium: 0 8px 30px rgba(27, 67, 50, 0.12);
    --shadow-deep: 0 20px 60px rgba(27, 67, 50, 0.15);
    --shadow-gold: 0 4px 15px rgba(212, 168, 83, 0.25);

    /* Typography */
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 200ms;
    --duration-normal: 350ms;
    --duration-slow: 500ms;
}

/* ================================
   RESET & BASE
   ================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--primary-cream);
    overflow-x: hidden;
}

::selection {
    background: var(--primary-gold);
    color: var(--primary-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================
   TYPOGRAPHY
   ================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); }
h4 { font-size: 1.25rem; font-weight: 600; }

p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
    color: var(--primary-gold);
}

/* ================================
   LAYOUT
   ================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section {
    padding: var(--space-4xl) 0;
}

.section--white { background: var(--primary-white); }
.section--cream { background: var(--primary-cream); }
.section--gray { background: var(--warm-light); }
.section--dark { background: var(--primary-dark); color: var(--primary-cream); }
.section--forest { background: var(--forest-dark); color: var(--text-light); }

/* ================================
   TOPBAR - Light Premium
   ================================ */
.topbar {
    background: var(--primary-dark);
    height: 42px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.topbar-contact {
    display: flex;
    gap: var(--space-xl);
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--warm-light);
    font-family: var(--font-body);
}

.topbar-item a {
    color: inherit;
    text-decoration: none;
}

.topbar-item a:hover {
    color: var(--primary-gold);
}

.topbar-item svg {
    width: 14px;
    height: 14px;
    color: var(--primary-gold);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-left: auto;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-left: auto;
}

.lang-switcher li {
    list-style: none;
}

.lang-switcher a {
    display: block;
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--warm-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all var(--duration-fast);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
}

.lang-switcher a:hover {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.lang-switcher li.current-lang a {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    background: rgba(212, 168, 83, 0.1);
}

.topbar-social {
    display: flex;
    gap: var(--space-md);
}

.topbar-social a {
    color: var(--warm-light);
    transition: color var(--duration-fast);
}

.topbar-social a:hover {
    color: var(--primary-gold);
}

/* ================================
   HEADER - Light Premium
   ================================ */
.site-header {
    background: var(--primary-cream);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
}

.site-logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.site-logo img {
    width: auto;
    height: 96px;
    object-fit: contain;
}

.header-nav-desktop {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-left: auto;
}

.btn--header {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.8125rem;
}

.header-nav-desktop ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.header-nav-desktop li {
    position: relative;
}

.header-nav-desktop a {
    display: block;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all var(--duration-fast);
    position: relative;
}

.header-nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: all var(--duration-fast);
    transform: translateX(-50%);
}

.header-nav-desktop a:hover {
    color: var(--primary-gold);
}

.header-nav-desktop a:hover::after {
    width: calc(100% - var(--space-lg) * 2);
}

.header-nav-desktop .current-menu-item > a {
    color: var(--primary-gold);
}

.header-nav-desktop .current-menu-item > a::after {
    width: calc(100% - var(--space-lg) * 2);
}

/* Submenu Desktop */
.header-nav-desktop ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-white);
    min-width: 220px;
    z-index: 100;
    box-shadow: var(--shadow-medium);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.header-nav-desktop li:hover > ul {
    display: block;
}

.header-nav-desktop ul ul a {
    padding: var(--space-md) var(--space-lg);
    color: var(--primary-dark);
    text-transform: none;
    letter-spacing: 0;
}

.header-nav-desktop ul ul a::after {
    display: none;
}

.header-nav-desktop ul ul a:hover {
    background: var(--primary-cream);
}

/* Mobile Navigation */
.header-nav-mobile {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    background: var(--primary-dark);
    border-top: none;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
}

body.menu-open .header-nav-mobile {
    transform: translateX(0);
}

body.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.header-nav-mobile.active {
    display: flex;
}

.header-nav-mobile .container {
    padding: var(--space-md);
    flex: 1;
    overflow-y: auto;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: var(--space-3xl) 0 var(--space-lg) 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-list li:last-child {
    border-bottom: none;
}

.mobile-menu-list a {
    display: block;
    padding: var(--space-md) 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-cream);
    transition: all 0.2s ease;
}

.mobile-menu-list a:hover {
    color: var(--primary-gold);
    padding-left: var(--space-sm);
}

.mobile-contact {
    padding: var(--space-md) 0 var(--space-xl) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--primary-cream);
    font-size: 0.875rem;
}

.mobile-contact-item a {
    color: inherit;
    text-decoration: none;
}

.mobile-contact-item a:hover {
    color: var(--primary-gold);
}

.mobile-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary-gold);
    flex-shrink: 0;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: var(--primary-dark);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    position: relative;
    padding: 0;
    transition: background var(--duration-fast);
}

.menu-toggle:hover {
    background: var(--primary-gold);
}

.menu-toggle .hamburger,
.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
    width: 22px;
    height: 2px;
    background: var(--primary-white);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all var(--duration-normal) var(--ease-out);
}

.menu-toggle .hamburger {
    top: 50%;
    transform: translate(-50%, -50%);
}

.menu-toggle .hamburger::before {
    content: '';
    top: -8px;
}

.menu-toggle .hamburger::after {
    content: '';
    top: 8px;
}

/* Toggle Active State */
.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    top: 0;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.active .hamburger::after {
    top: 0;
    transform: translateX(-50%) rotate(-45deg);
}

/* ================================
   BUTTONS - Premium Natural
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: calc(0.75em + 2px) calc(1.5em + 2px);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.btn--primary {
    background: var(--primary-green);
    color: var(--primary-white);
    box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
    background: var(--primary-green-light);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn--gold {
    background: var(--primary-gold);
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
    background: var(--gold-dark);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--primary-cream);
    border: 2px solid var(--primary-cream);
}

.btn--outline:hover {
    background: var(--primary-cream);
    color: var(--primary-dark);
}

.btn--white {
    background: var(--primary-white);
    color: var(--primary-green);
    box-shadow: var(--shadow-soft);
}

.btn--white:hover {
    background: var(--primary-cream);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.btn--outline-white {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.btn--outline-white:hover {
    background: var(--primary-white);
    color: var(--primary-green);
}

/* ================================
   HERO - Dark Premium Showcase
   ================================ */
.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a2a2a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/wp-content/uploads/2026/04/Exportateur-vanille-Madagascar-HAAVO.webp') center/cover;
    opacity: 0.15;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-4xl) var(--space-xl);
}

.hero-content {
    animation: fadeInUp 0.8s var(--ease-out) forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: var(--primary-gold);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-sm);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    color: var(--primary-dark);
}

.hero h1 {
    margin-bottom: var(--space-lg);
    line-height: 1.15;
    color: var(--primary-cream);
    font-weight: 700;
}

.hero h1 span {
    display: block;
    color: var(--primary-gold);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(248, 244, 232, 0.8);
    margin-bottom: var(--space-xl);
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    width: 100%;
    max-width: 100%;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    margin-bottom: 0;
    height: 400px;
    max-height: 500px;
}

.hero-slider:not(.fs-init) .hero-slide:not(:first-child) {
    display: none;
}
.hero-slider.fs-init .hero-slide {
    display: block;
}

.hero-slider .fs-prev,
.hero-slider .fs-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--primary-white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10;
    transition: background var(--duration-fast);
}
.hero-slider .fs-prev:hover,
.hero-slider .fs-next:hover {
    background: var(--primary-gold);
}
.hero-slider .fs-prev { left: var(--space-md); }
.hero-slider .fs-next { right: var(--space-md); }
.hero-slider .fs-prev svg,
.hero-slider .fs-next svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    color: #000;
}
.hero-slider .fs-prev:hover svg,
.hero-slider .fs-next:hover svg {
    color: #000;
}

.hero-slider .fs-dots {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-slider .fs-dot {
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 0;
    transition: background var(--duration-fast);
}
.hero-slider .fs-dot.active {
    background: var(--primary-gold);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #f5f5f0;
}

/* ================================
   FEATURES - Premium Vanilla Cards
   ================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    background: var(--primary-white);
    padding: var(--space-2xl);
    text-align: center;
    border-radius: 12px;
    border: 1px solid rgba(27, 67, 50, 0.08);
    box-shadow: 0 2px 12px rgba(27, 67, 50, 0.06);
    transition: all var(--duration-normal);
}

.feature-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27, 67, 50, 0.1);
}

.feature-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--primary-dark);
    font-size: 1.125rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

.feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-cream) 0%, var(--primary-white) 100%);
    color: var(--primary-green);
    border-radius: 50%;
    margin: 0 auto var(--space-lg);
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(27, 67, 50, 0.1);
    border: 2px solid var(--primary-gold);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--primary-dark);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

/* ================================
   SECTION HEADER - Elegant
   ================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-gold);
    margin-bottom: var(--space-md);
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--primary-gold);
}

.section-title {
    margin-bottom: var(--space-md);
    color: var(--primary-dark);
}

.section--dark .section-title {
    color: var(--primary-cream);
}

.section--dark .section-desc {
    color: rgba(248, 244, 232, 0.8);
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin: 0;
}

/* ================================
   SERVICES - Natural Premium
   ================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--primary-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--warm-light);
    transition: all var(--duration-normal) var(--ease-out);
}

.service-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.08) 0%, rgba(212, 168, 83, 0.1) 100%);
    color: var(--primary-green);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(212, 168, 83, 0.2);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0 0 var(--space-lg);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    color: var(--primary-green);
}

.service-link:hover {
    color: var(--primary-gold);
    gap: var(--space-md);
}

/* ================================
   STATS - Premium Harvest Counter
   ================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a3a2e 100%);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M30 0 L60 30 L30 60 L0 30Z" fill="none" stroke="rgba(212,168,83,0.06)" stroke-width="1"/%3E%3C/svg%3E');
    background-size: 40px 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: var(--space-2xl);
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(212, 168, 83, 0.3), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    display: block;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 1rem;
    color: var(--primary-cream);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

/* Counter Animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-item.animate .stat-number {
    animation: countUp 0.8s ease-out forwards;
}

/* ================================
   ABOUT - Story & Heritage
   ================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-deep);
    height:550px!important;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-gold);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.5;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, transparent 70%);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content h2 {
    margin-bottom: var(--space-lg);
    color: var(--primary-dark);
}

/* Adapt about content to dark background (front-page) */
.section--dark .about-content h2 {
    color: var(--primary-cream);
}

.section--dark .about-content > p {
    color: rgba(255,255,255,0.75);
}

.about-content > p {
    font-size: 1.0625rem;
    margin-bottom: var(--space-md);
    color: var(--text-muted);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--primary-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--warm-light);
    transition: all var(--duration-fast);
}

.about-feature:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-soft);
}

/* Adapt about-feature to dark background (front-page) */
.section--dark .about-feature {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
}

.section--dark .about-feature span:last-child {
    color: var(--primary-cream);
}

.section--dark .about-feature-icon {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

.about-feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    color: var(--primary-white);
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.about-feature span:last-child {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--primary-dark);
}

/* ================================
   Stats Section
   ================================ */
.features-section {
    background: var(--primary-dark);
    padding: var(--space-3xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-item {
    text-align: center;
    padding: var(--space-xl);
}

.feature-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.feature-label {
    display: block;
    font-size: 0.9375rem;
    color: var(--primary-cream);
    opacity: 0.85;
}

@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================
   CTA - Warm Invitation
   ================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-cream) 0%, var(--warm-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    margin-bottom: var(--space-md);
    color: var(--primary-dark);
}

.cta-content p {
    font-size: 1.0625rem;
    color: var(--text-brown);
    margin-bottom: var(--space-xl);
}

.cta-image {
    position: relative;
}

.cta-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-deep);
}

/* ================================
   FAQ - Elegant Accordion
   ================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--warm-light);
    background: var(--primary-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-wrap: wrap!important;
    padding: var(--space-xl);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: color var(--duration-fast);
}

.faq-question:hover,.faq-question:focus {
    color: white!important;
    background: var(--primary-gold-light)!important;
}

.faq-question > span:not(.faq-icon) {
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-cream);
    color: var(--primary-gold);
    border-radius: 50%;
    transition: all var(--duration-normal) var(--ease-out);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-gold);
    color: var(--primary-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-slow) var(--ease-out);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-xl);
    color: var(--text-muted);
    margin: 0;
}

/* ================================
   PRODUCTS - Premium Showcase
   ================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.product-card {
    background: var(--primary-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--duration-slow) var(--ease-out);
    border: 1px solid var(--warm-light);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
    border-color: var(--primary-gold);
}

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--primary-cream);
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(248, 244, 232, 0.8), transparent);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-content {
    padding: var(--space-xl);
}

.product-origin {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(212, 168, 83, 0.1);
    border-radius: var(--radius-sm);
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
}

.product-title a:hover {
    color: var(--primary-gold);
}

.product-grade {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: var(--space-md);
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--warm-light);
    border-bottom: 1px solid var(--warm-light);
    margin-bottom: var(--space-md);
}

.spec {
    text-align: center;
}

.spec-label {
    display: block;
    font-size: 0.625rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.spec-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.btn--sm {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
}

/* ================================
   BLOG - News & Articles
   ================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.blog-card {
    background: var(--primary-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--duration-slow) var(--ease-out);
    border: 1px solid var(--warm-light);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-deep);
    border-color: var(--primary-gold);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--primary-cream);
}

.blog-image a {
    display: block;
    height: 100%;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--primary-gold);
    color: var(--primary-dark);
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
    z-index: 1;
}

.blog-content {
    padding: var(--space-xl);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.blog-date {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.blog-date svg {
    width: 14px;
    height: 14px;
    color: var(--primary-gold);
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-title a:hover {
    color: var(--primary-gold);
}

.blog-excerpt {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-green);
}

.blog-read-more:hover {
    color: var(--primary-gold);
    gap: var(--space-md);
}

.blog-read-more svg {
    transition: transform 0.3s ease;
}

.blog-read-more:hover svg {
    transform: translateX(4px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-3xl);
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-white);
    border: 1px solid var(--warm-light);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-dark);
}

.no-posts {
    text-align: center;
    padding: var(--space-3xl);
    background: var(--primary-white);
    border-radius: var(--radius-xl);
}

/* ================================
   SINGLE BLOG POST
   ================================ */
.single-post-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.single-post-meta {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}

.post-category {
    background: var(--primary-gold);
    color: var(--primary-dark);
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
}

.post-date {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.post-date svg {
    width: 16px;
    height: 16px;
    color: var(--primary-gold);
}

.single-post-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--space-md);
}

.single-post-excerpt {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin: 0;
}

.single-post-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-deep);
}

.single-post-image img {
    width: 100%;
    height: auto;
}

.single-post-content {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.single-post-content h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.single-post-content p {
    margin-bottom: var(--space-lg);
}

.single-post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--warm-light);
}

.tags-label {
    font-weight: 600;
    color: var(--text-dark);
}

.tag-link {
    background: var(--primary-cream);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.tag-link:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

.single-post-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.share-label {
    font-weight: 600;
    color: var(--text-dark);
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-cream);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Related Posts */
.related-posts {
    margin-top: var(--space-3xl);
    padding-top: var(--space-3xl);
    border-top: 1px solid var(--warm-light);
}

.related-title {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.related-card {
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.related-image {
    height: 160px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.05);
}

.related-content {
    padding: var(--space-lg);
}

.related-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: var(--space-xs);
}

.related-content h3 {
    font-size: 1rem;
    margin: 0;
}

.related-content h3 a:hover {
    color: var(--primary-gold);
}

.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-2xl);
    align-items: start;
}

.single-post-main {
    min-width: 0;
}

.single-post-sidebar {
    position: sticky;
    top: var(--space-xl);
}

/* Single Post Header */
.single-post-header {
    margin-bottom: var(--space-2xl);
}

.single-post-meta {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}

.post-category {
    background: var(--primary-gold);
    color: var(--primary-dark);
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
}

.post-date {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.post-date svg {
    width: 16px;
    height: 16px;
    color: var(--primary-gold);
}

.single-post-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.single-post-excerpt {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin: 0 0 var(--space-xl);
    line-height: 1.7;
}

/* Author Box */
.single-post-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--warm-light);
    margin-bottom: var(--space-xl);
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.author-name {
    font-weight: 600;
    color: var(--primary-dark);
}

.author-role {
    font-size: 0.8125rem;
    color: var(--primary-gold);
}

/* Featured Image */
.single-post-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-deep);
}

.single-post-image img {
    width: 100%;
    height: auto;
}

/* Post Content */
.single-post-content {
    max-width: 100%;
    margin-bottom: var(--space-2xl);
}

.single-post-content h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    color: var(--primary-dark);
}

.single-post-content p {
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.single-post-content ul,
.single-post-content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.single-post-content li {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

/* Tags */
.single-post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--warm-light);
    margin-bottom: var(--space-xl);
}

.tags-label {
    font-weight: 600;
    color: var(--text-dark);
}

.tag-link {
    background: var(--primary-cream);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

/* Share */
.single-post-share {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.share-label {
    font-weight: 600;
    color: var(--text-dark);
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-cream);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--warm-light);
    margin-bottom: var(--space-2xl);
}

.post-nav-link {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-lg);
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--warm-light);
    transition: all 0.3s ease;
}

.post-nav-link:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.post-nav-link.next {
    text-align: right;
}

.nav-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.4;
}

/* ================================
   PRODUCT SINGLE LAYOUT
   ================================ */
.product-single-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-2xl);
    align-items: start;
}

.product-single-main {
    min-width: 0;
}

.product-single-sidebar {
    position: sticky;
    top: var(--space-xl);
}

.product-single-header {
    margin-bottom: var(--space-2xl);
}

.product-category {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--primary-dark);
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.product-single-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
    color: var(--primary-dark);
}

.product-grade {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: var(--space-lg);
}

.product-single-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-deep);
}

.product-single-image img {
    width: 100%;
    height: auto;
}

.product-excerpt {
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.product-specs-full,
.product-applications,
.product-description {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--warm-light);
}

.product-specs-full h2,
.product-applications h2,
.product-description h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    color: var(--primary-dark);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--warm-light);
}

.specs-table th,
.specs-table td {
    padding: var(--space-md) 0;
    text-align: center;
}

.specs-table th {
    font-weight: 600;
    color: var(--primary-dark);
    width: 40%;
}

.specs-table td {
    color: var(--text-muted);
}

.applications-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.application-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--primary-cream);
    border-radius: var(--radius-md);
}

.application-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    color: var(--primary-white);
    border-radius: 50%;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.application-item span:last-child {
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.product-cta {
    text-align: center;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--primary-cream) 0%, var(--warm-light) 100%);
    border-radius: var(--radius-xl);
}

.product-cta h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.product-cta p {
    margin-bottom: var(--space-lg);
}

/* ================================
   PRODUCT ARCHIVE LAYOUT
   ================================ */
.produit-archive-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-2xl);
    align-items: start;
}

.produit-archive-main {
    min-width: 0;
}

.produit-archive-sidebar {
    position: sticky;
    top: var(--space-xl);
}

@media (max-width: 1023px) {
    .product-single-layout,
    .produit-archive-layout {
        grid-template-columns: 1fr 260px;
        gap: var(--space-xl);
    }

    .applications-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .product-single-layout,
    .produit-archive-layout {
        grid-template-columns: 1fr;
    }

    .product-single-sidebar,
    .produit-archive-sidebar {
        position: static;
        order: -1;
    }

    .applications-list {
        grid-template-columns: 1fr;
    }
}

/* ================================
   BLOG ARCHIVE LAYOUT
   ================================ */
.blog-archive-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-2xl);
    align-items: start;
}

.blog-archive-main {
    min-width: 0;
    width: 100%;
}

.blog-archive-sidebar {
    position: sticky;
    top: var(--space-xl);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-light);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary-gold);
}

/* Search Form */
.search-form {
    display: flex;
    gap: var(--space-sm);
}

.search-field {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--warm-light);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.875rem;
    background: #E5E5E5;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.search-field:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: var(--primary-white);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.search-field::placeholder {
    color: var(--text-muted);
}

.search-submit {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    border: none;
    border-radius: var(--radius-md);
    color: var(--primary-cream);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.search-submit:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid var(--warm-light);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    color: var(--text-muted);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--primary-gold);
    padding-left: var(--space-sm);
}

.cat-name {
    flex: 1;
}

.cat-count {
    background: var(--primary-cream);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Recent Posts List */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-list li {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--warm-light);
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts-list a {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.recent-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-posts-list a:hover .recent-thumb img {
    transform: scale(1.1);
}

.recent-info {
    flex: 1;
    min-width: 0;
}

.recent-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.4;
    margin-bottom: var(--space-xs);
    transition: color 0.3s ease;
}

.recent-posts-list a:hover .recent-title {
    color: var(--primary-gold);
}

.recent-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ================================
   WHATSAPP FLOAT BUTTON
   ================================ */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: all var(--duration-normal) var(--ease-out);
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: var(--space-lg);
        right: var(--space-lg);
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ================================
   FOOTER
   ================================ */
.site-footer {
    background: var(--primary-dark);
    color: var(--primary-cream);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    width: auto;
    height: 90px;
    object-fit: contain;
    margin-bottom: var(--space-lg);
    display: block;
}

.footer-brand p {
    color: rgba(248, 244, 232, 0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 83, 0.1);
    border-radius: 50%;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--primary-cream);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-lg);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: var(--space-sm);
}

.footer-col a {
    color: rgba(248, 244, 232, 0.7);
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--primary-gold);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(248, 244, 232, 0.7);
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
}

.footer-contact li svg {
    color: var(--primary-gold);
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: rgba(248, 244, 232, 0.5);
}
.footer-bottom a:hover{
    color:var(--primary-gold)!important;
}
.footer-bottom a{
    color:var(--text-muted)!important;
}
.footer-legal {
    display: flex;
    gap: var(--space-xl);
}

.footer-legal a {
    color: rgba(248, 244, 232, 0.5);
    font-size: 0.8125rem;
}

.footer-legal a:hover {
    color: var(--primary-gold);
}

/* Tablet */
@media (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }

    .footer-brand {
        grid-column: span 3;
    }

    .footer-logo {
        height: 75px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-brand p {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer-legal {
        gap: var(--space-lg);
    }

    /* Blog Tablet */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-grid article:last-child {
        display: none;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .footer-legal {
        flex-direction: column;
        gap: var(--space-sm);
    }

    /* Blog Mobile */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .single-post-meta {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .related-grid article:last-child {
        display: block;
    }

    .pagination {
        flex-wrap: wrap;
    }
}

/* ================================
   ARCHIVE/PAGE HERO - Premium
   ================================ */
.archive-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--forest-dark) 100%);
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.archive-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23D4A853" fill-opacity="0.05"%3E%3Cpath d="M40 0 L80 40 L40 80 L0 40Z" /%3E%3C/g%3E%3C/svg%3E');
}

.archive-hero h1 {
    color: var(--primary-cream);
    position: relative;
    z-index: 1;
}

.archive-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--space-sm) var(--space-lg);
    background: var(--primary-white);
    border: 1px solid var(--warm-light);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--duration-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-dark);
}

/* ================================
   ANIMATIONS
   ================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE BREAKPOINTS
   ================================ */

/* Tablet Landscape / Small Desktop (1024px - 1199px) */
@media (max-width: 1199px) {
    .container {
        padding: 0 var(--space-lg);
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    h1 { font-size: clamp(2.25rem, 4vw, 3rem); }
    h2 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); }

    /* Header Tablet */
    .header-main {
        padding: var(--space-md) 0;
    }

    .header-main-inner {
        gap: var(--space-md);
    }

    .header-nav-desktop a {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.8125rem;
    }

    /* Hero Tablet */
    .hero {
        min-height: 550px;
    }

    .hero-inner {
        gap: var(--space-2xl);
        padding: var(--space-3xl) var(--space-lg);
    }

    /* Grids Tablet */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Blog Tablet */
    .blog-archive-layout {
        grid-template-columns: 1fr 260px;
        gap: var(--space-xl);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-post-layout {
        grid-template-columns: 1fr 260px;
    }

    /* About Tablet */
    .about-grid {
        gap: var(--space-2xl);
    }

    .about-image {
        max-width: 450px;
    }
}

/* Tablet Portrait / Large Phone (768px - 1023px) */
@media (max-width: 1023px) {
    /* Topbar Responsive */
    .topbar {
        height: auto;
        padding: var(--space-sm) 0;
    }

    .topbar-inner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-sm);
    }

    .topbar-contact {
        gap: var(--space-md);
    }

    .topbar-item {
        font-size: 0.75rem;
    }

    .topbar-right {
        gap: var(--space-md);
    }

    .topbar-social {
        display: none;
    }

    .site-header {
        position: relative;
    }

    /* Mobile layout */
    .header-main {
        padding: 0;
        position: relative;
    }

    .site-logo {
        position: static;
        transform: none;
        padding: var(--space-md) 0;
    }

    .site-logo img {
        height: 45px;
    }

    .header-nav-desktop {
        display: none;
    }

    .header-actions {
        display: flex;
        margin-left: auto;
    }

    /* Mobile Navigation */
    .header-nav-mobile {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        max-height: 0;
        overflow: hidden;
        transform: translateX(0);
        background: var(--primary-dark);
        border-top: none;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        transition: max-height 0.4s ease;
    }

    .header-nav-mobile.active {
        max-height: 400px;
    }

    .header-nav-mobile .container {
        padding: 0;
    }

    .mobile-menu-list {
        margin: var(--space-lg) 0;
    }

    .mobile-menu-list li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-menu-list li:last-child {
        border-bottom: none;
    }

    .mobile-menu-list a {
        display: block;
        padding: var(--space-md) var(--space-lg);
        font-size: 1rem;
        color: var(--primary-cream);
        transition: all 0.2s ease;
    }

    .mobile-menu-list a:hover {
        color: var(--primary-gold);
        padding-left: var(--space-lg);
    }

    .mobile-contact {
        padding: var(--space-lg);
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-toggle .hamburger,
    .menu-toggle .hamburger::before,
    .menu-toggle .hamburger::after {
        background: var(--primary-white);
    }

    .menu-toggle.active .hamburger,
    .menu-toggle.active .hamburger::before,
    .menu-toggle.active .hamburger::after {
        background: var(--primary-white);
    }

    .hero-slider {
        max-width: 100%;
        height: 360px;
    }

    /* Hero Tablet Portrait */
    .hero {
        min-height: auto;
        padding: var(--space-3xl) 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--space-2xl) var(--space-lg);
    }

    .hero-content {
        order: 1;
    }

    .hero-subtitle {
        margin: 0 auto var(--space-lg);
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

    /* Features Tablet */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }

    .feature-card {
        padding: var(--space-xl) var(--space-lg);
    }

    .feature-icon {
        width: 64px;
        height: 64px;
    }

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

    /* Services Tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Products Tablet */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .product-image {
        height: 180px;
    }

    .product-content {
        padding: var(--space-lg);
    }

    /* Blog Archive Tablet */
    .blog-archive-layout {
        grid-template-columns: 1fr 260px;
        gap: var(--space-xl);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Stats Tablet */
    .stats-section {
        padding: var(--space-2xl) 0;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* About Tablet */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-image {
        max-width: 100%;
        order: -1;
    }

    .about-grid--mission {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid--mission .about-image {
        order: 0;
        max-width: 100%;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CTA Tablet */
    .cta-inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .cta-image {
        order: -1;
    }

    /* Footer Tablet */
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }

    .footer-brand {
        grid-column: span 3;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-brand p {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer-legal {
        gap: var(--space-lg);
    }
}

/* Mobile Landscape (480px - 767px) */
@media (max-width: 767px) {
    .about-image img{
        height:280px;
    } 
    .container {
        padding: 0 var(--space-md);
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    h1 { font-size: clamp(1.75rem, 5vw, 2.25rem); }
    h2 { font-size: clamp(1.5rem, 4vw, 1.875rem); }
    h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

    /* Topbar Mobile */
    .topbar {
        height: auto;
        padding: var(--space-xs) 0;
    }

    .topbar-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-xs);
    }

    .topbar-contact {
        gap: var(--space-sm);
    }

    .topbar-item {
        font-size: 0.75rem;
    }

    .topbar-social {
        display: none;
    }

    /* Header Mobile */
    .site-logo img {
        height: 45px;
    }

    .site-logo a {
        font-size: 1.25rem;
    }

    .btn--header {
        display: none;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .header-nav-mobile a {
        padding: var(--space-md);
    }

    /* Hero Mobile */
    .hero {
        padding: var(--space-2xl) 0;
    }

    .hero-inner {
        padding: var(--space-xl) var(--space-md);
    }

    .hero-badge {
        font-size: 0.6875rem;
        padding: var(--space-xs) var(--space-sm);
    }

    .hero h1 {
        margin-bottom: var(--space-md);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: var(--space-lg);
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-gallery {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-slider {
        max-width: 100%;
        height: 300px;
    }
    .hero-slide img {
        height: 100%;
    }

    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        margin-top: 0;
        gap: var(--space-md);
    }

    .feature-card {
        padding: var(--space-xl) var(--space-lg);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon svg {
        width: 26px;
        height: 26px;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        margin-bottom: var(--space-xl);
    }

    /* Products Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .product-image {
        height: 200px;
    }

    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }

    .stat-item {
        padding: var(--space-lg);
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* About Mobile */
    .about-content > p {
        font-size: 0.9375rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    /* FAQ Mobile */
    .faq-question {
        padding: var(--space-lg);
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 var(--space-lg) var(--space-lg);
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-col {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand p {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .footer-legal {
        gap: var(--space-lg);
    }
}
@media (max-width: 479px) {
    .about-image img{
        height:300px!important;
    }
    .container {
        padding: 0 var(--space-sm);
    }

    .section {
        padding: var(--space-xl) 0;
    }

    /* Topbar Mobile Portrait */
    .topbar {
        height: auto;
        padding: var(--space-xs) 0;
    }

    .topbar-inner {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .topbar-contact {
        display: none;
    }

    .topbar-right {
        flex-direction: row;
        gap: var(--space-sm);
    }

    .topbar-social {
        display: none;
    }

    .lang-switcher {
        margin-left: auto;
    }

    .topbar-social {
        display: none;
    }

    /* Header Mobile Portrait */
    .site-header {
        position: relative;
    }

    .header-main {
        padding: 0;
        position: relative;
    }

    .site-logo {
        position: static;
        transform: none;
        padding: var(--space-sm) 0;
    }

    .site-logo img {
        height: 60px;
    }

    .header-nav-desktop {
        display: none;
    }

    .header-actions {
        display: flex;
        margin-left: auto;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-toggle .hamburger,
    .menu-toggle .hamburger::before,
    .menu-toggle .hamburger::after {
        background: var(--primary-white);
    }

    .menu-toggle.active .hamburger,
    .menu-toggle.active .hamburger::before,
    .menu-toggle.active .hamburger::after {
        background: var(--primary-white);
    }

    /* Hero Mobile Portrait */
    .hero {
        min-height: auto;
        padding: var(--space-lg) 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: var(--space-md);
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-gallery {
        order: 1;
    }

    .hero-slider {
        max-width: 100%;
        height: 300px;
    }
    .hero-slide img {
        height: 100%;
        max-width: 100%;
    }

    .hero-slider .fs-prev,
    .hero-slider .fs-next {
        width: 36px;
        height: 36px;
    }
    .hero-slider .fs-prev svg,
    .hero-slider .fs-next svg {
        width: 20px;
        height: 20px;
    }

    .hero-badge {
        font-size: 0.625rem;
        margin-bottom: var(--space-sm);
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: var(--space-sm);
    }

    .hero h1 span {
        display: block;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: var(--space-md);
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .hero-buttons .btn {
        width: 100%;
        padding: var(--space-sm) var(--space-md);
        font-size: 0.8125rem;
    }

    /* Features Mobile Portrait */
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .feature-card {
        padding: var(--space-lg);
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    /* About Mobile Portrait */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about-image {
        order: -1;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    /* Products Mobile Portrait */
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .product-image {
        height: 180px;
    }

    .product-content {
        padding: var(--space-md);
    }

    .product-gallery-slide img {
        max-width: 100%;
    }
    .product-gallery-slider .swiper-button-prev,
    .product-gallery-slider .swiper-button-next {
        width: 36px;
        height: 36px;
        margin-top: -18px;
    }
    .product-gallery-slider .swiper-button-prev::after,
    .product-gallery-slider .swiper-button-next::after {
        font-size: 16px;
    }

    /* Blog Archive Mobile */
    .blog-archive-layout {
        grid-template-columns: 1fr;
    }

    .blog-archive-sidebar {
        position: static;
        order: -1;
    }

    .sidebar-widget {
        padding: var(--space-lg);
    }

    /* Services Mobile Portrait */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    /* Stats Mobile Portrait */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .stat-item {
        padding: var(--space-md);
        border-bottom: 1px solid rgba(212, 168, 83, 0.2);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* FAQ Mobile Portrait */
    .faq-list {
        gap: var(--space-sm);
    }

    .faq-question {
        flex-wrap: wrap;
        padding: var(--space-md);
        font-size: 0.9375rem;
    }

    .faq-question .faq-icon {
        flex-shrink: 0;
    }

    .faq-question > span:not(.faq-icon) {
        flex: 1 1 calc(100% - 48px);
        min-width: 0;
        word-break: break-word;
    }

    .faq-answer p {
        padding: 0 var(--space-md) var(--space-md);
        font-size: 0.875rem;
    }

    /* Blog Mobile Portrait */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: var(--space-md);
    }

    /* Single Post Mobile */
    .single-post-layout {
        grid-template-columns: 1fr;
    }

    .single-post-sidebar {
        position: static;
        order: -1;
    }

    .single-post-author {
        padding: var(--space-md);
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .post-nav-link.next {
        text-align: left;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .pagination .page-numbers {
        width: 38px;
        height: 38px;
        font-size: 0.875rem;
    }

    /* Footer Mobile Portrait */
    .site-footer {
        padding: var(--space-xl) 0 var(--space-md);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-logo {
        height: 75px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand p {
        font-size: 0.875rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
        font-size: 0.75rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .footer-legal a {
        font-size: 0.75rem;
    }
}

/* ================================
   PRODUCT GALLERY SLIDER
   ================================ */
.product-gallery-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-deep);
    background: var(--primary-cream);
}

.product-gallery-slider .swiper-wrapper {
    width: 100%;
}
.product-gallery-slider .swiper-slide {
    max-width: 100%;
}
.product-gallery-slider .swiper-slide img {
    max-width: 100%;
}

.product-gallery-slide img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.product-gallery-slider .swiper-button-prev,
.product-gallery-slider .swiper-button-next {
    width: 48px;
    height: 48px;
    background: var(--primary-white);
    border-radius: 50%;
    margin-top: -24px;
    box-shadow: var(--shadow-medium);
    transition: background var(--duration-fast);
}
.product-gallery-slider .swiper-button-prev { left: var(--space-md); }
.product-gallery-slider .swiper-button-next { right: var(--space-md); }
.product-gallery-slider .swiper-button-prev:hover,
.product-gallery-slider .swiper-button-next:hover {
    background: var(--primary-gold);
}
.product-gallery-slider .swiper-button-prev::after,
.product-gallery-slider .swiper-button-next::after {
    font-size: 20px;
    color: #000;
    font-weight: 700;
}
.product-gallery-slider .swiper-button-prev:hover::after,
.product-gallery-slider .swiper-button-next:hover::after {
    color: #000;
}

.product-gallery-slider .swiper-pagination {
    bottom: var(--space-md);
}
.product-gallery-slider .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}
.product-gallery-slider .swiper-pagination-bullet-active {
    background: var(--primary-gold);
}

@media (min-width: 768px) {
    .hero-slider {
        max-width: 380px;
    }
}
