/* ========================================
   SMART OASIS - MAIN STYLESHEET
   Modern, Full-Screen Responsive Design
   ======================================== */

/* ========================================
   TYPOGRAPHY & TEXT STYLES
   ======================================== 00*/

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
}

h5 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 500;
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    font-weight: 400;
}

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-background);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animated Background Particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 50%, rgba(var(--color-primary-rgb), 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(230, 126, 34, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(39, 174, 96, 0.04) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* Arabic Font */
.lang-ar body {
    font-family: 'Noto Sans Arabic', 'Noto Naskh Arabic', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ========================================
   SMART OASIS - THEME SYSTEM (FIXED)
   ======================================== */

:root,
[data-theme="light"] {
    /* Brand Colors */
    --color-primary: #0b85a4;
    --color-primary-dark: #096f89;
    --color-primary-light: #18a9c0;
    --color-primary-rgb: 11,133,164;

    --color-secondary: #92400e;
    --color-accent: #3b82f6;

    /* Fixed Neutral Palette */
    --color-white: #ffffff;
    --color-gray-50: #fafaf9;
    --color-gray-100: #f5f5f4;
    --color-gray-200: #e7e5e4;
    --color-gray-900: #1c1917;

    /* Fixed Semantic Colors - Removed Duplicates */
    --color-background: var(--color-white);
    --color-surface: var(--color-gray-50);
    --color-surface-elevated: var(--color-white);
    --color-text: var(--color-gray-900);
    --color-text-secondary: #57534e;
    --color-border: var(--color-gray-200);
    
    /* Global Spacing/Alignment Vars */
    --container-width: 1280px;
    --container-gutter: 24px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 24px;
    
    --transition-base: 0.3s ease;
}

[data-theme="dark"] {
    --color-primary: #1e9fc0;
    --color-background: #0a0a0a;
    --color-surface: #1a1a1a;
    --color-surface-elevated: #252525;
    --color-text: #f5f5f5;
    --color-text-secondary: #a0a0a0;
    --color-border: #333333;
}

/* ========================================
   TYPOGRAPHY & BUTTON THEMING
   Centralized font-scale variables and button
   styles to ensure consistency across light/dark
   themes and responsive sizes.
   ======================================== */

/* Font scale (can be tuned for global typographic rhythm) */
:root {
    --font-size-xs: 0.75rem;   /* 12px */
    --font-size-sm: 0.875rem;  /* 14px */
    --font-size-md: 1rem;      /* 16px */
    --font-size-lg: 1.125rem;  /* 18px */
    --font-size-xl: 1.25rem;   /* 20px */
    --font-size-2xl: 1.5rem;   /* 24px */
    --font-size-3xl: 2rem;     /* 32px */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1.1rem, 2vw, 1.25rem); }
h6 { font-size: var(--font-size-md); }

p {
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: var(--font-size-md);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-base), opacity var(--transition-fast);
}

a:hover { color: var(--color-primary-dark); }

/* ========================================
   BUTTONS (GLOBAL)
   Use `.btn`, `.btn-primary`, `.btn-outline`, `.btn-whatsapp`
   to ensure contrast and visibility across themes.
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    font-size: var(--font-size-md);
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-base), color var(--transition-base);
}

.btn:focus { box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.12); }

.btn-primary {
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    border-color: transparent;
}

.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.03); }

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover { background: rgba(var(--color-primary-rgb), 0.06); color: var(--color-primary-dark); }

.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    border-color: rgba(0,0,0,0.05);
}

/* Ensure buttons remain readable in dark theme */
[data-theme="dark"] .btn-primary { background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light)); color: var(--color-white); }
[data-theme="dark"] .btn-outline { color: var(--color-text); border-color: var(--color-border); }
[data-theme="dark"] .btn-whatsapp { background: #1f9b46; color: #fff; }

/* Small variants */
.btn-sm { padding: 0.4rem 0.75rem; font-size: var(--font-size-sm); }
.btn-lg { padding: 0.9rem 1.25rem; font-size: var(--font-size-lg); }

/* Utility: make sure icon-only buttons remain accessible */
.btn-icon { padding: 0.5rem; width: 40px; height: 40px; justify-content: center; }

/* Full width utility */
.btn-block { display: inline-flex; width: 100%; justify-content: center; }

/* Secondary / danger variants used in admin and forms */
.btn-secondary {
    background: var(--color-surface-elevated);
    color: var(--color-text);
    border-color: var(--color-border);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-danger {
    background: var(--color-error);
    color: var(--color-white);
    border-color: var(--color-error);
}
.btn-danger:hover { filter: brightness(0.95); transform: translateY(-2px); }


/* Accessibility: visible focus outlines for keyboard users */
a:focus,
.btn:focus,
.nav-menu a:focus {
    outline: 3px solid rgba(var(--color-primary-rgb), 0.14);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Utility muted text */
.muted,
.text-muted {
    color: var(--color-text-muted) !important;
}

/* ========================================
   LAYOUT & CONTAINERS
   ======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.container-full {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 80px);
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Improve readability for common paragraph/lead text inside cards and sections */
.section-header p,
.card p,
.feature p,
.lead,
p.lead {
    color: var(--color-text-secondary);
}

/* Ensure small/caption text remains readable */
small,
.caption,
.meta {
    color: var(--color-text-muted);
}

/* Main Content Wrapper */
main {
    flex: 1;
    width: 100%;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    white-space: nowrap;
    min-height: 52px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 50%, rgba(var(--color-primary-rgb), 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(230, 126, 34, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(39, 174, 96, 0.04) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    border-color: var(--color-primary);
    box-shadow:
        0 4px 16px 0 rgba(var(--color-primary-rgb), 0.2),
        0 2px 8px 0 rgba(var(--color-primary-rgb), 0.1);
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 8px 32px 0 rgba(var(--color-primary-rgb), 0.3),
        0 4px 16px 0 rgba(var(--color-primary-rgb), 0.2);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--color-primary);
    border-color: var(--color-primary);
    position: relative;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.08);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 10px;
}

.btn-outline:hover:not(:disabled) {
    color: white;
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 8px 32px 0 rgba(var(--color-primary-rgb), 0.25),
        0 4px 16px 0 rgba(var(--color-primary-rgb), 0.15);
}

.btn-outline:hover:not(:disabled)::before {
    opacity: 1;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
    box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover:not(:disabled) {
    background: #1ebe57;
    border-color: #1ebe57;
    transform: translateY(-2px);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.06);
}

/* Dark theme header */
[data-theme="dark"] .header {
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.3);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
}

/* Dark theme scrolled header */
[data-theme="dark"] .header.scrolled {
    background: rgba(37, 37, 37, 0.98);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    width: 100%;
}

.logo img {
    height: 52px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--color-text);
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.08), rgba(var(--color-accent-rgb, 0.04)));
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--color-text);
    margin: 3px 0;
    transition: var(--transition-base);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-toggle a,
.theme-toggle,
.cart-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    font-size: 0.9rem;
}

.lang-toggle a:hover,
.theme-toggle:hover,
.cart-btn:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--color-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: calc(100vh - 80px);
}

.card, .product-card, .feature-card {
    background: var(--color-surface-elevated);
    border-radius: 16px;
    box-shadow:
        0 4px 24px 0 rgba(0, 0, 0, 0.08),
        0 2px 12px 0 rgba(0, 0, 0, 0.04);
    padding: 24px;
    border: 1px solid var(--color-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card:hover, .product-card:hover, .feature-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 48px 0 rgba(0, 0, 0, 0.12),
        0 6px 24px 0 rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary-light);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

/* Stronger call-to-action contrast */
.btn-primary {
    color: white;
    text-shadow: 0 1px 0 rgba(0,0,0,0.15);
}

/* Ensure headings stand out on light backgrounds */
h1, h2, h3 {
    color: var(--color-text);
    text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

/* Ensure product price is prominent */
.product-price { font-weight: 700; font-size: 1.25rem; color: var(--color-primary-dark); }

/* Make nav items more legible */
.nav-menu a { color: var(--color-text); }

/* Improve footer contrast */
.footer { background: var(--color-surface); color: var(--color-text-secondary); padding: 30px 0; }

/* Slightly bigger clickable areas */
.btn, .nav-menu a { padding: 12px 20px; }

.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, var(--color-secondary) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.9) 0%, rgba(var(--color-primary-rgb), 0.6) 100%);
    backdrop-filter: blur(1px);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: patternShift 15s ease-in-out infinite;
}

@keyframes patternShift {
    0%, 100% { transform: translateX(0) translateY(0) scale(1); }
    25% { transform: translateX(10px) translateY(-10px) scale(1.05); }
    50% { transform: translateX(-5px) translateY(5px) scale(0.95); }
    75% { transform: translateX(-10px) translateY(-5px) scale(1.02); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.7s both;
    letter-spacing: -0.02em;
}

.hero-title .title-main {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text);
}

.hero-title .title-highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: gradientShift 3s ease-in-out infinite;
    display: inline-block;
}

.hero-title .title-sub {
    display: block;
    font-size: 0.7em;
    opacity: 0.8;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-top: 0.5rem;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow {
    from { filter: brightness(1); }
    to { filter: brightness(1.2); }
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    margin-bottom: 2.5rem;
    opacity: 1;
    color: #ffffff;
    max-width: 600px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.hero-actions .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-actions .btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    position: relative;
}

.hero-actions .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-actions .btn-outline:hover:not(:disabled) {
    color: var(--color-primary-dark);
    background: #ffffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px 0 rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-outline:hover:not(:disabled)::before {
    opacity: 1;
}

.hero-visual {
    position: relative;
    z-index: 1;
    animation: fadeInRight 1s ease-out 0.8s both;
}

.hero-image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-25px) rotate(270deg);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

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

/* ========================================
   SECTIONS
   ======================================== */
section {
    padding: clamp(60px, 10vw, 120px) 0;
    position: relative;
}

/* Value Pillars */
.value-pillars {
    background: var(--color-surface);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
}

.pillar-card {
    background: var(--color-surface-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pillar-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.05), rgba(var(--color-accent-rgb), 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--color-primary);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-card:hover::after {
    opacity: 1;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(var(--color-primary-rgb), 0.3);
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.pillar-card p {
    margin-bottom: 24px;
}

.pillar-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.pillar-features span {
    background: rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Solutions Preview */
.solutions-preview {
    background: var(--color-background);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.solution-card {
    background: var(--color-surface-elevated);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.solution-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

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

.solution-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-primary);
}

.solution-content {
    padding: 30px;
}

.solution-content h3 {
    margin-bottom: 12px;
}

.solution-content p {
    margin-bottom: 20px;
    color: var(--color-text-secondary);
}

.solutions-cta,
.products-cta {
    text-align: center;
    margin-top: 40px;
}

/* Featured Products */
.featured-products {
    background: var(--color-surface);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    width: 100%;
}

/* List view styles */
.products-grid.list-view {
    grid-template-columns: 1fr;
    gap: 20px;
}

.products-grid.list-view .product-card {
    display: flex;
    flex-direction: row;
    height: auto;
    min-height: 200px;
}

.products-grid.list-view .product-image {
    flex: 0 0 300px;
    height: 200px;
}

.products-grid.list-view .product-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.products-grid.list-view .product-content h3 {
    margin-bottom: 8px;
}

.products-grid.list-view .product-category {
    margin-bottom: 12px;
}

.products-grid.list-view .product-price {
    margin-bottom: 15px;
}

.product-card {
    background: var(--color-surface-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--color-primary);
}

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

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

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.badge-featured {
    background: var(--color-accent);
    color: white;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.btn-quick-view,
.btn-add-to-cart {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--color-text);
}

.btn-quick-view:hover,
.btn-add-to-cart:hover {
    transform: scale(1.1);
    background: var(--color-primary);
    color: white;
}

.btn-add-to-cart:hover {
    background: var(--color-success);
}

/* Dark theme shop button visibility fix */
[data-theme="dark"] .btn-quick-view,
[data-theme="dark"] .btn-add-to-cart {
    background: rgba(37, 37, 37, 0.95);
    color: var(--color-primary-light);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .btn-quick-view:hover,
[data-theme="dark"] .btn-add-to-cart:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

[data-theme="dark"] .btn-add-to-cart:hover {
    background: var(--color-success);
    border-color: var(--color-success);
}

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.product-content h3 a {
    color: var(--color-text);
    text-decoration: none;
}

.product-content h3 a:hover {
    color: var(--color-primary);
}

.product-category {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.product-price {
    margin-bottom: 16px;
}

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

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-choose-us {
    background: var(--color-background);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.why-us-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.feature-content h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* ========================================
   CONTACT CTA
   ======================================== */
.contact-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.cta-text h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-actions .btn {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

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

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-gray-800) 100%);
    color: white;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(var(--color-primary-rgb), 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(var(--color-accent-rgb, 0.08)) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-brand img:hover {
    transform: scale(1.05);
}

.footer-brand p {
    margin-bottom: 24px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px 0 rgba(var(--color-primary-rgb), 0.3);
}

.footer-links h4,
.footer-solutions h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.01em;
}

.footer-links ul,
.footer-solutions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-solutions li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-solutions a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.footer-links a::before,
.footer-solutions a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-solutions a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-links a:hover::before,
.footer-solutions a:hover::before {
    width: 100%;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-contact i {
    color: var(--color-primary);
    width: 20px;
    margin-top: 2px;
    font-size: 1.1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.orvibo-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
    font-size: 18px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-5px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .nav-menu {
        gap: 5px;
    }
    
    .nav-menu a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 12px 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-surface-elevated);
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
        transition: left var(--transition-base);
        border-top: 1px solid var(--color-border);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid var(--color-border);
        border-radius: 0;
    }
    
    .hero {
        min-height: 100vh;
        height: 100vh;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 0 15px;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .pillars-grid,
    .solutions-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pillar-card,
    .solution-card {
        padding: 25px 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 15px 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .lang-toggle a span,
    .cart-btn span {
        display: none;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .header,
    .back-to-top {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    section {
        padding: 30px 0;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Focus states */
*:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.btn:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--color-border);
    border-top: 4px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Full-width sections */
.solutions-preview,
.why-choose-us,
.contact-cta {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

/* Enhanced animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   PAGE HERO (Shop, Contact, Solutions, About)
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero .lead,
.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 0;
}

/* ========================================
   CONTACT PAGE LAYOUT
   ======================================== */
.contact-content {
    padding: 60px 0 80px;
    background: var(--color-background);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
    width: 100%;
}

/* Contact info side */
.contact-info {
    text-align: center;
}

.contact-section-title {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.contact-intro {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-layout .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 24px;
    background: var(--color-surface-elevated);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-layout .contact-item:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-md);
}

.contact-layout .contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.contact-layout .contact-text {
    text-align: center;
}

.contact-layout .contact-text h4 {
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
}

.contact-layout .contact-text p {
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

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

.contact-layout .contact-text a:hover {
    text-decoration: underline;
}

/* Form side */
.contact-form-section {
    background: var(--color-surface-elevated);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-form-section .contact-section-title {
    margin-bottom: 32px;
}

.contact-form {
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
}

.contact-form .required {
    color: var(--color-error);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-form .form-group {
    margin-bottom: 28px;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--color-background);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.15);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.contact-form button[type="submit"] {
    margin-top: 16px;
}

.map-section {
    margin-top: 64px;
    width: 100%;
}

.map-section-title {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 8px;
    text-align: center;
}

.map-section-desc {
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 24px;
    font-size: 1rem;
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
}

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

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 50px;
    }

    .contact-form-section {
        padding: 24px;
    }
}

/* ========================================
   ABOUT PAGE LAYOUT
   ======================================== */
.about-content {
    padding: 60px 0 80px;
    background: var(--color-background);
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    margin-bottom: 80px;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.story-content h2 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.mission-card,
.vision-card {
    background: var(--color-surface-elevated);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    margin-bottom: 80px;
}

.value-item {
    background: var(--color-surface-elevated);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    margin-bottom: 80px;
}

.service-card {
    background: var(--color-surface-elevated);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    color: white;
}

.partnership-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 60px;
    border-radius: var(--radius-xl);
}

.partnership-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    flex-wrap: wrap;
}

.partnership-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.partnership-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.partnership-logo img {
    filter: brightness(0) invert(1);
}

/* ========================================
   SOLUTIONS PAGE LAYOUT
   ======================================== */
.solutions-content {
    padding: 60px 0 80px;
    background: var(--color-background);
}

.solution-item {
    margin-bottom: 80px;
}

.solution-item:last-of-type {
    margin-bottom: 0;
}

.solution-item-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.solution-item-content.reverse {
    direction: rtl;
}

.solution-item-content.reverse > * {
    direction: ltr;
}

.solution-item-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.solution-item-text h2 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.solution-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.solution-features .feature i {
    color: var(--color-primary);
}

.solutions-cta-section {
    padding: 60px 0;
    background: var(--color-surface);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-xl);
    flex-wrap: wrap;
}

.cta-box .cta-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.cta-box .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.cta-box .cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Ensure CTA buttons are visible in both light and dark mode */
.cta-box .cta-actions .btn-primary {
    background: #ffffff;
    color: var(--color-primary);
    border-color: #ffffff;
}

.cta-box .cta-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary-dark);
    border-color: #ffffff;
}

.cta-box .cta-actions .btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
}

.cta-box .cta-actions .btn-whatsapp:hover {
    background: #1ebe57;
    color: #ffffff;
    border-color: #1ebe57;
}

/* ========================================
   PRODUCT DETAIL PAGE LAYOUT
   ======================================== */
.product-detail-page {
    padding: 120px 0 80px;
    background: var(--color-background);
    color: var(--color-text);
}

.product-detail-page .breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    font-size: 0.9rem;
}

.product-detail-page .breadcrumb a {
    color: var(--color-text-secondary);
}

.product-detail-page .breadcrumb a:hover {
    color: var(--color-primary);
}

.product-detail-page .breadcrumb .current {
    color: var(--color-primary);
    font-weight: 600;
}

.product-detail-page .product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    width: 100%;
}

.product-detail-page .product-images {
    position: sticky;
    top: 100px;
}

.product-detail-page .product-detail-layout .main-image {
    margin-bottom: 20px;
    background: var(--color-surface-elevated);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.product-detail-page .product-detail-layout .main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail-page .thumbnail-images {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-detail-page .thumbnail-images img {
    width: 80px;
    height: 80px;
    min-width: 80px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border);
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-detail-page .thumbnail-images img:hover,
.product-detail-page .thumbnail-images img.active {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(var(--color-primary-rgb), 0.2);
}

.product-detail-page .product-info {
    padding-top: 0;
}

.product-detail-page .product-info .product-category {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.product-detail-page .product-info .product-title {
    margin-bottom: 20px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
    color: var(--color-text);
}

.product-detail-page .product-price-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.product-detail-page .product-price-section .product-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.product-detail-page .stock-badge {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.product-detail-page .stock-badge.in-stock {
    background: rgba(5, 150, 105, 0.15);
    color: #059669;
}

.product-detail-page .stock-badge.out-of-stock {
    background: rgba(220, 38, 38, 0.15);
    color: var(--color-error);
}

.product-detail-page .product-description {
    margin-bottom: 28px;
}

.product-detail-page .product-description h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--color-text);
}

.product-detail-page .product-description p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.product-detail-page .product-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.product-detail-page .quantity-selector {
    margin-bottom: 20px;
}

.product-detail-page .quantity-selector label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}

.product-detail-page .quantity-input {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.product-detail-page .quantity-input input {
    width: 64px;
    text-align: center;
    border: none;
    font-size: 1rem;
    padding: 14px;
    background: var(--color-background);
    color: var(--color-text);
}

.product-detail-page .qty-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.product-detail-page .qty-btn:hover {
    background: var(--color-border);
}

.product-detail-page .product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 28px 0;
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
}

.product-detail-page .product-meta .meta-item {
    display: flex;
    gap: 8px;
}

.product-detail-page .product-meta .meta-item span:first-child {
    color: var(--color-text-secondary);
}

.product-detail-page .product-meta .meta-item span:last-child {
    color: var(--color-text);
}

.product-detail-page .product-share {
    display: flex;
    align-items: center;
    gap: 16px;
}

.product-detail-page .product-share > span {
    font-weight: 600;
    color: var(--color-text-secondary);
}

.product-detail-page .product-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-surface);
    border-radius: 50%;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
}

.product-detail-page .product-share a:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.product-detail-page .btn-add-cart,
.product-detail-page .btn-wishlist {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.related-products {
    padding: 60px 0 80px;
    background: var(--color-surface);
}

/* ========================================
   CART PAGE LAYOUT
   ======================================== */
.cart-content {
    padding: 60px 0 80px;
    background: var(--color-background);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
    width: 100%;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: var(--color-surface-elevated);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
}

.cart-item-image img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.cart-item-info h3 {
    margin-bottom: 4px;
}

.cart-item-info h3 a {
    color: var(--color-text);
}

.cart-item-category {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.order-summary {
    background: var(--color-surface-elevated);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    position: sticky;
    top: 120px;
}

.summary-header h3 {
    margin-bottom: 24px;
}

.summary-content .summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.summary-total {
    font-weight: 700;
    font-size: 1.25rem;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--color-border);
}

.summary-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart-icon {
    font-size: 5rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.empty-cart h2 {
    margin-bottom: 16px;
}

.empty-cart-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   CHECKOUT PAGE LAYOUT
   ======================================== */
.checkout-content {
    padding: 60px 0 80px;
    background: var(--color-background);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
    width: 100%;
}

.checkout-form .form-section {
    margin-bottom: 40px;
}

.checkout-form .form-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 1.25rem;
}

.checkout-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkout-form .form-group {
    margin-bottom: 20px;
}

.checkout-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-size: 1rem;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.checkout-summary {
    background: var(--color-surface-elevated);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    position: sticky;
    top: 120px;
}

.checkout-summary .summary-items {
    max-height: 300px;
    overflow-y: auto;
}

.checkout-summary .summary-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.checkout-summary .item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.trust-badges {
    padding: 60px 0;
    background: var(--color-surface);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    width: 100%;
}

.badge-item {
    text-align: center;
    padding: 24px;
}

.badge-item i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.badge-item h4 {
    margin-bottom: 8px;
}

.badge-item p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

/* ========================================
   ORDER CONFIRMATION PAGE LAYOUT
   ======================================== */
.order-confirmation-content {
    padding: 60px 0 80px;
    background: var(--color-background);
}

.confirmation-layout {
    width: 100%;
    margin-bottom: 60px;
}

.success-message {
    text-align: center;
    padding: 48px;
    background: var(--color-surface-elevated);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    margin-bottom: 40px;
}

.success-message .message-icon {
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.order-reference {
    margin-top: 24px;
    font-size: 1.125rem;
}

.order-reference strong {
    color: var(--color-primary);
}

.order-details .details-section {
    margin-bottom: 40px;
}

.order-details .details-section h3 {
    margin-bottom: 20px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-item span:first-child {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--color-surface-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.order-item .item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.next-steps {
    margin-bottom: 60px;
}

.next-steps h3 {
    margin-bottom: 32px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.step-item {
    text-align: center;
    padding: 32px;
    background: var(--color-surface-elevated);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
}

.step-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--color-secondary);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-contact h3 {
    text-align: center;
    margin-bottom: 24px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.confirmation-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 32px;
    background: var(--color-surface-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.2s ease;
}

.confirmation-contact .contact-item:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* ========================================
   PAGE-SPECIFIC RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .story-layout,
    .mission-vision,
    .solution-item-content {
        grid-template-columns: 1fr;
    }

    .solution-item-content.reverse {
        direction: ltr;
    }

    .product-detail-layout,
    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .product-detail-page .product-images {
        position: static;
    }

    .order-summary,
    .checkout-summary {
        position: static;
    }

    .price-inputs input {
        max-width: 140px;
    }

    .partnership-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 80px 1fr;
    }

    .cart-item-quantity,
    .cart-item-subtotal,
    .cart-item-remove {
        grid-column: 2;
    }

    .checkout-form .form-row {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-box .cta-actions {
        justify-content: center;
    }

    .partnership-section {
        padding: 40px 24px;
    }
}

/* ========================================
   SHOP PAGE STYLES
   ======================================== */

.shop-content {
    padding: 120px 0 80px;
    background: var(--color-background);
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    width: 100%;
}

.shop-sidebar {
    background: var(--color-surface-elevated);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid var(--color-border);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.sidebar-section {
    margin-bottom: 32px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-list a:hover,
.category-list a.active {
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.1), rgba(var(--color-accent-rgb, 0.05)));
    color: var(--color-primary);
    transform: translateX(4px);
}

.category-list .count {
    font-size: 0.875rem;
    opacity: 0.7;
    font-weight: 600;
}

.price-filter {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.price-inputs input {
    flex: 1 1 0;
    min-width: 0;
    max-width: 120px;
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.price-inputs input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
}

.price-inputs span {
    flex-shrink: 0;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.price-filter .btn {
    width: 100%;
    justify-content: center;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--color-white);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.shop-sidebar .form-control {
    max-width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
}

.shop-products {
    min-height: 600px;
}

.shop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.shop-stats p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-weight: 500;
    margin: 0;
}

.shop-view-toggle {
    display: flex;
    gap: 8px;
}

.view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid var(--color-border);
    background: var(--color-white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text-secondary);
}

.view-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: scale(1.05);
}

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

.empty-shop {
    text-align: center;
    padding: 80px 20px;
}

.empty-shop i {
    font-size: 4rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.empty-shop h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 16px;
}

.empty-shop p {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .shop-sidebar {
        position: static;
        order: 2;
    }

    .shop-products {
        order: 1;
    }
}

@media (max-width: 768px) {
    .shop-content {
        padding: 100px 0 60px;
    }

    .shop-layout {
        gap: 24px;
    }

    .shop-sidebar {
        padding: 24px;
    }

    .shop-header {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .shop-view-toggle {
        justify-content: center;
    }
}
.fade-in-scale {
    animation: fadeInScale 0.6s ease-out;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   GENERAL IMPROVEMENTS
   ======================================== */

/* Better spacing and visual hierarchy */
section {
    padding: 80px 0;
}

section + section {
    padding-top: 0;
}

/* Container alignment (consistent with layout) */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Better text spacing */
p + p {
    margin-top: 1rem;
}

/* Improved focus states */
*:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Better link styling */
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary-dark);
}

/* Improved form elements */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Better image handling */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Improved list styling */
ul, ol {
    padding-left: 1.5rem;
}

/* Better blockquote styling */
blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--color-text-secondary);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }

.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 12px; }
.rounded-xl { border-radius: 16px; }
.rounded-full { border-radius: 9999px; }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --color-border: var(--color-text);
        --color-text-secondary: var(--color-text);
    }
}

/* ========================================
   HOME PAGE CONTACT INFO SECTION
   ======================================== */

.contact-info-home {
    padding: 80px 0;
    background: var(--color-background);
    position: relative;
}

.contact-info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-details-home {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-header h2 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.contact-header p {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
}

.contact-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: var(--color-surface-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.contact-text p {
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 4px;
}

.contact-text a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.social-section {
    text-align: center;
}

.social-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text);
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--color-surface-elevated);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.social-link.facebook:hover { color: #1877f2; border-color: #1877f2; }
.social-link.instagram:hover { color: #e4405f; border-color: #e4405f; }

.contact-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-map {
    position: sticky;
    top: 100px;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive adjustments for home contact info */
@media (max-width: 1024px) {
    .contact-info-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-map {
        position: static;
        order: -1;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .contact-info-home {
        padding: 60px 0;
    }

    .contact-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-item {
        padding: 20px;
    }

    .contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-header h2 {
        font-size: 2rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .social-links {
        gap: 8px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.why-us-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.why-us-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.why-us-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.why-us-content {
    padding: 80px 0;
    background: var(--color-background);
}

.intro-section {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-section h2 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.intro-section p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.differentiators-section {
    margin-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.differentiator-card {
    background: var(--color-surface-elevated);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.differentiator-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-light);
}

.differentiator-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-lg);
}

.differentiator-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.differentiator-content p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.statistics-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 80px;
    border-radius: var(--radius-xl);
    margin-left: 20px;
    margin-right: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
}

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

.process-section {
    margin-bottom: 80px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-step {
    background: var(--color-surface-elevated);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--color-border);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-lg);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.step-content p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.testimonials-section {
    margin-bottom: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: var(--color-surface-elevated);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.testimonial-content {
    margin-bottom: 30px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    justify-content: center;
}

.stars i {
    color: #fbbf24;
    font-size: 1.125rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--color-text);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: var(--radius-xl);
    margin: 0 20px;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--color-primary);
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}