/* ================================================================
   RONAIR — Landing V2 Design System
   Dark/Light Theme · Playfair Display · Glassmorphism
   ================================================================ */

/* ==================== CSS VARIABLES ==================== */
:root {
    --light-bg-primary: #ffffff;
    --light-bg-secondary: #f8fafa;
    --light-bg-tertiary: #f0f5f5;
    --light-bg-card: #ffffff;
    --light-text-primary: #1a2f2f;
    --light-text-secondary: #4a6363;
    --light-text-muted: #7a9494;
    --light-border: rgba(26, 92, 92, 0.12);
    --light-glass: rgba(255, 255, 255, 0.85);
    --light-glass-border: rgba(26, 92, 92, 0.18);
    --light-shadow: rgba(26, 92, 92, 0.08);
    --light-shadow-strong: rgba(26, 92, 92, 0.18);

    --dark-bg-primary: #0a1414;
    --dark-bg-secondary: #0d1a1a;
    --dark-bg-tertiary: #112222;
    --dark-bg-card: rgba(255, 255, 255, 0.03);
    --dark-text-primary: #ffffff;
    --dark-text-secondary: #c5d5d5;
    --dark-text-muted: #8aa5a5;
    --dark-border: rgba(255, 255, 255, 0.08);
    --dark-glass: rgba(255, 255, 255, 0.05);
    --dark-glass-border: rgba(255, 255, 255, 0.1);
    --dark-shadow: rgba(0, 0, 0, 0.3);
    --dark-shadow-strong: rgba(0, 0, 0, 0.55);

    --primary: #1a5c5c;
    --primary-dark: #0d3d3d;
    --primary-light: #2d8a8a;
    --primary-lighter: #3da8a8;
    --accent: #4fd1c5;
    --accent-light: #7ee8dc;
    --accent-glow: rgba(79, 209, 197, 0.4);
    --gold: #d4af37;
    --success: #10b981;
    --error: #ef4444;

    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;

    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-max: 1400px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-theme="dark"] {
    --bg-primary: var(--dark-bg-primary);
    --bg-secondary: var(--dark-bg-secondary);
    --bg-tertiary: var(--dark-bg-tertiary);
    --bg-card: var(--dark-bg-card);
    --text-primary: var(--dark-text-primary);
    --text-secondary: var(--dark-text-secondary);
    --text-muted: var(--dark-text-muted);
    --border: var(--dark-border);
    --glass: var(--dark-glass);
    --glass-border: var(--dark-glass-border);
    --shadow: var(--dark-shadow);
    --shadow-strong: var(--dark-shadow-strong);
}

[data-theme="light"] {
    --bg-primary: var(--light-bg-primary);
    --bg-secondary: var(--light-bg-secondary);
    --bg-tertiary: var(--light-bg-tertiary);
    --bg-card: var(--light-bg-card);
    --text-primary: var(--light-text-primary);
    --text-secondary: var(--light-text-secondary);
    --text-muted: var(--light-text-muted);
    --border: var(--light-border);
    --glass: var(--light-glass);
    --glass-border: var(--light-glass-border);
    --shadow: var(--light-shadow);
    --shadow-strong: var(--light-shadow-strong);
}

/* ==================== BASE ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    transition: background var(--transition-slow), color var(--transition-slow);
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--primary), var(--primary-light)); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
}

/* ==================== CURSOR ==================== */
.cursor-dot {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
    mix-blend-mode: difference;
}

.cursor-outline {
    position: fixed;
    width: 40px; height: 40px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.15s ease-out;
    opacity: 0.5;
    transform: translate(-50%, -50%);
}

.cursor-glow {
    position: fixed;
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.15;
    transition: opacity var(--transition-normal);
}

[data-theme="light"] .cursor-glow { opacity: 0.07; }

@media (max-width: 768px) {
    .cursor-dot, .cursor-outline, .cursor-glow { display: none; }
}

/* ==================== LOADER ==================== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: opacity 0.8s, visibility 0.8s;
}

.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content { text-align: center; }

.loader-logo {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.loader-logo span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: loader-letter 0.5s ease forwards;
}

@keyframes loader-letter { to { opacity: 1; transform: translateY(0); } }

.loader-progress-container {
    width: 200px; height: 3px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 100%;
    animation: loader-shimmer 1.5s ease-in-out infinite;
    width: 0;
    transition: width 0.3s ease;
    border-radius: 3px;
}

@keyframes loader-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ==================== PARTICLES ==================== */
.particles-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particle-float linear infinite;
    background: var(--accent);
}

.particle-leaf {
    background: none;
    font-size: 1.5rem;
    animation: particle-float-leaf linear infinite;
}

@keyframes particle-float {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.5; transform: translateY(90vh) scale(1); }
    90% { opacity: 0.5; }
    100% { transform: translateY(-10vh) scale(0); opacity: 0; }
}

@keyframes particle-float-leaf {
    0% { transform: translateY(100vh) translateX(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.7; }
    50% { transform: translateY(50vh) translateX(60px) rotate(180deg); }
    90% { opacity: 0.7; }
    100% { transform: translateY(-10vh) translateX(-40px) rotate(360deg); opacity: 0; }
}

/* ==================== NAV ==================== */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-slow);
}

.nav.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 5%;
    border-bottom: none;
    box-shadow: 0 4px 30px var(--shadow);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Tema bazlı logo görünürlüğü */
.logo-light, .footer-logo-light, .loader-logo-light { display: none; }
.logo-dark, .footer-logo-dark, .loader-logo-dark { display: block; }

/* Koyu temada beyaz logo: screen ile koyu piksel transparan */
.logo-dark, .footer-logo-dark, .loader-logo-dark { mix-blend-mode: screen; }

/* Açık temada koyu logo: multiply ile beyaz zemin transparan */
.logo-light, .footer-logo-light, .loader-logo-light { mix-blend-mode: multiply; }

[data-theme="light"] .logo-light,
[data-theme="light"] .footer-logo-light,
[data-theme="light"] .loader-logo-light { display: block; }

[data-theme="light"] .logo-dark,
[data-theme="light"] .footer-logo-dark,
[data-theme="light"] .loader-logo-dark { display: none; }

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ---- Ortak nav icon button stili ---- */
.nav-icon-btn {
    position: relative;
    width: 40px; height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--text-secondary);
    flex-shrink: 0;
    text-decoration: none;
}
.nav-icon-btn:hover {
    border-color: var(--accent);
    background: rgba(79,209,197,0.1);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(79,209,197,0.15);
}

/* ---- Tema toggle (modern pill) ---- */
.theme-toggle {
    width: 68px; height: 34px;
    background: var(--glass);
    border: 1.5px solid var(--glass-border);
    border-radius: 34px;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    padding: 0 6px;
    flex-shrink: 0;
    overflow: hidden;
}

.theme-toggle:hover {
    border-color: var(--accent);
    background: rgba(79,209,197,0.06);
    box-shadow: 0 4px 16px rgba(79,209,197,0.12);
}

.theme-toggle-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 18px; height: 18px;
    z-index: 1;
}

.theme-toggle-icon.sun {
    left: 8px;
    opacity: 0;
    transform: scale(0.6) rotate(-30deg);
    color: #f59e0b;
}
.theme-toggle-icon.moon {
    right: 8px;
    opacity: 1;
    transform: scale(1) rotate(0deg);
    color: var(--accent);
}
[data-theme="light"] .theme-toggle-icon.sun {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}
[data-theme="light"] .theme-toggle-icon.moon {
    opacity: 0;
    transform: scale(0.6) rotate(30deg);
}

.theme-toggle-ball {
    width: 24px; height: 24px;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    border-radius: 50%;
    transition: all var(--transition-bounce);
    transform: translateX(0);
    box-shadow: 0 2px 10px var(--accent-glow);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

[data-theme="light"] .theme-toggle-ball {
    transform: translateX(34px);
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 2px 10px rgba(245,158,11,0.4);
}

/* ---- Sepet ---- */
.cart-icon {
    gap: 0;
}

.cart-badge {
    position: absolute;
    top: -6px; right: -6px;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    color: var(--dark-bg-primary);
    font-size: 0.6rem;
    font-weight: 800;
    min-width: 18px; height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    pointer-events: none;
    border: 2px solid var(--bg-primary);
    animation: badge-pop 0.3s var(--transition-bounce);
}
@keyframes badge-pop {
    0% { transform: scale(0); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ---- Login butonu ---- */
.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: white !important;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    white-space: nowrap;
}
.login-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,92,92,0.4); color: white !important; }

/* ---- Kullanıcı menüsü ---- */
.user-menu-wrap {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.8rem;
    height: 42px;
    min-width: 42px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
}

.user-btn-label {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 20px 50px var(--shadow-strong);
    backdrop-filter: blur(20px);
    min-width: 180px;
    padding: 0.5rem;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition-normal);
    pointer-events: none;
}

.user-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.9rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    text-decoration: none;
}
.user-dropdown-item:hover { background: var(--glass); color: var(--text-primary); }
.user-dropdown-item svg { flex-shrink: 0; opacity: 0.7; }

.user-dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 0.3rem 0.5rem;
}

.user-dropdown-logout { color: var(--error); }
.user-dropdown-logout:hover { background: rgba(239,68,68,0.08); color: var(--error); }

/* ==================== BUTTONS ==================== */
.btn {
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
    line-height: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before { left: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 10px 30px rgba(26,92,92,0.3);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(26,92,92,0.4); color: white; }

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    color: var(--dark-bg-primary);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 15px 40px var(--accent-glow); color: var(--dark-bg-primary); }

.btn-glass {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-glass:hover { background: var(--primary); border-color: var(--primary); color: white; }

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover { background: var(--accent); color: var(--dark-bg-primary); }

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.82rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

.d-md-flex { display: inline-flex !important; }

/* Responsive gizleme yardımcıları */
@media (min-width: 993px) {
    .d-lg-block { display: block !important; }
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: none;
    border: none;
}

.mobile-menu-btn span {
    width: 28px; height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-normal);
    border-radius: 2px;
    display: block;
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 999;
    display: none;
    flex-direction: column;
    padding: 6rem 5% 3rem;
    gap: 1.5rem;
    overflow-y: auto;
}

.mobile-nav-overlay.open { display: flex; }

.mobile-nav-overlay a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    transition: color var(--transition-normal);
}

.mobile-nav-overlay a:hover { color: var(--accent); }

.mobile-nav-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 5% 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gradient-mesh {
    position: absolute;
    width: 100%; height: 100%;
    overflow: hidden;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: mesh-float 15s ease-in-out infinite;
}

.mesh-orb-1 {
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(26,92,92,0.4) 0%, transparent 70%);
    top: -30%; right: -20%;
}

.mesh-orb-2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(79,209,197,0.3) 0%, transparent 70%);
    bottom: -20%; left: -10%;
    animation-delay: -5s;
}

.mesh-orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    top: 40%; left: 30%;
    animation-delay: -10s;
}

[data-theme="light"] .mesh-orb-1 { background: radial-gradient(circle, rgba(26,92,92,0.12) 0%, transparent 70%); }
[data-theme="light"] .mesh-orb-2 { background: radial-gradient(circle, rgba(79,209,197,0.1) 0%, transparent 70%); }
[data-theme="light"] .mesh-orb-3 { background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%); }

@keyframes mesh-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.05); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
}

.hero-lines {
    position: absolute;
    width: 100%; height: 100%;
    overflow: hidden;
    opacity: 0.08;
}

.hero-line {
    position: absolute;
    width: 1px; height: 100%;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
}

.hero-line:nth-child(1) { left: 10%; animation: line-move 8s linear infinite; }
.hero-line:nth-child(2) { left: 25%; animation: line-move 12s linear infinite; animation-delay: -2s; }
.hero-line:nth-child(3) { left: 50%; animation: line-move 10s linear infinite; animation-delay: -4s; }
.hero-line:nth-child(4) { left: 75%; animation: line-move 14s linear infinite; animation-delay: -6s; }
.hero-line:nth-child(5) { left: 90%; animation: line-move 9s linear infinite; animation-delay: -3s; }

@keyframes line-move {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.hero-text { max-width: 600px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 20px transparent; }
    50% { box-shadow: 0 0 20px var(--accent-glow); }
}

.badge-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.stat { text-align: left; }

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    display: flex;
    align-items: baseline;
}

.stat-value .suffix { font-size: 1.5rem; margin-left: 2px; }
.stat-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.5rem; }

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.product-showcase {
    position: relative;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 1;
}

.product-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
}

.product-ring-1 { width: 100%; height: 100%; animation: ring-rotate 40s linear infinite; }
.product-ring-2 { width: 85%; height: 85%; animation: ring-rotate 35s linear infinite reverse; }
.product-ring-3 { width: 70%; height: 70%; animation: ring-rotate 30s linear infinite; }

@keyframes ring-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-item {
    position: absolute;
    width: 60px; height: 60px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px var(--shadow);
}

.orbit-item-1 { top: 0; left: 50%; transform: translate(-50%, -50%); }
.orbit-item-2 { top: 50%; right: 0; transform: translate(50%, -50%); }
.orbit-item-3 { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.orbit-item-4 { top: 50%; left: 0; transform: translate(-50%, -50%); }

.product-main-container {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%; height: 100%;
}

.product-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 520px; height: 520px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

.product-main-image {
    width: 540px;
    max-height: 720px;
    object-fit: contain;
    filter: drop-shadow(0 40px 80px var(--shadow-strong));
    animation: product-float 6s ease-in-out infinite;
    width: 100%; height: 100%;
}

@keyframes product-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-elements {
    position: absolute;
    width: 100%; height: 100%;
    pointer-events: none;
}

.floating-item {
    position: absolute;
    font-size: 2rem;
    animation: float-item 8s ease-in-out infinite;
    opacity: 0.7;
}

.floating-item:nth-child(1) { top: 5%; left: 10%; animation-delay: 0s; }
.floating-item:nth-child(2) { top: 15%; right: 10%; animation-delay: -2s; }
.floating-item:nth-child(3) { bottom: 20%; left: 5%; animation-delay: -4s; }
.floating-item:nth-child(4) { bottom: 10%; right: 15%; animation-delay: -6s; }
.floating-item:nth-child(5) { top: 40%; right: 5%; animation-delay: -1s; }

@keyframes float-item {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    75% { transform: translateY(10px) rotate(-5deg); }
}

/* ==================== SECTIONS ==================== */
section { position: relative; z-index: 10; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-tag::before, .section-tag::after {
    content: '';
    width: 30px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent));
}

.section-tag::after { background: linear-gradient(90deg, var(--accent), transparent); }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* ==================== FEATURES ==================== */
.features {
    padding: var(--section-padding) 5%;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    text-align: left;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.feature-card:hover { transform: translateY(-12px); border-color: var(--accent); box-shadow: 0 24px 60px var(--shadow-strong); }
.feature-card:hover::after { opacity: 0.12; }

.feature-icon-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 1.75rem;
    flex-shrink: 0;
}

.feature-icon-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed var(--accent);
    opacity: 0.3;
    animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow { to { transform: rotate(360deg); } }

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: 0 12px 30px rgba(26,92,92,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: transform var(--transition-normal);
    position: relative;
    z-index: 1;
}

.feature-icon svg { width: 32px; height: 32px; }

[data-theme="light"] .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-4deg); }

.feature-number {
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent);
    background: var(--bg-primary);
    border: 1px solid var(--accent);
    border-radius: 6px;
    padding: 2px 5px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0 0 1.5rem;
    flex: 1;
}

.feature-line {
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.feature-card:hover .feature-line { transform: scaleX(1); }

/* ==================== ABOUT ==================== */
.about { padding: var(--section-padding) 5%; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
}

.about-visual { position: relative; }

.about-image-main {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px var(--shadow-strong);
    position: relative;
}

.about-image-main img { width: 100%; height: 100%; object-fit: cover; }

.about-floating-card {
    position: absolute;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 50px var(--shadow-strong);
}

.about-floating-card.card-1 { bottom: -40px; right: -40px; text-align: center; }
.about-floating-card.card-2 { top: -30px; left: -30px; display: flex; align-items: center; gap: 1rem; }

.floating-card-icon { font-size: 2.5rem; }

.floating-card-value {
    font-family: #0d1a1a;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

.floating-card-label { font-size: 0.85rem; color: #0d1a1a; margin-top: 0.3rem; }

.about-content { padding: 2rem 0; }

.about-text { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.9; margin-bottom: 2rem; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-feature { display: flex; gap: 1rem; align-items: flex-start; }

.about-feature-icon {
    width: 50px; height: 50px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.about-feature:hover .about-feature-icon { background: var(--primary); border-color: var(--primary); transform: scale(1.1); }

.about-feature-title { font-weight: 600; font-size: 1rem; margin-bottom: 0.25rem; color: var(--text-primary); }
.about-feature-desc { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ==================== PRODUCTS ==================== */
.products {
    padding: var(--section-padding) 5%;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top center, var(--accent-glow) 0%, transparent 50%);
    opacity: 0.1;
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, var(--accent-glow) 100%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.product-card:hover { transform: translateY(-15px); border-color: var(--accent); box-shadow: 0 30px 60px var(--shadow-strong); }
.product-card:hover::before { opacity: 0.08; }

.product-badge {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.product-badge.new { background: linear-gradient(135deg, var(--accent), var(--primary-light)); color: var(--dark-bg-primary); }
.product-badge.bestseller { background: linear-gradient(135deg, var(--gold), #f0c850); color: var(--dark-bg-primary); }
.product-badge.sale { background: linear-gradient(135deg, var(--error), #ff6b6b); color: white; }

.product-image-container {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-image {
    max-width: 140px; max-height: 260px;
    object-fit: contain;
    transition: all var(--transition-slow);
    filter: drop-shadow(0 20px 40px var(--shadow));
    border-radius: 100px;
}

.product-card:hover .product-image { transform: scale(1.1) rotateY(10deg); }

.product-image-bg {
    position: absolute;
    width: 200px; height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    opacity: 0.1;
    transition: all var(--transition-slow);
}

.product-card:hover .product-image-bg { transform: scale(1.2); opacity: 0.15; }

.product-category { font-size: 0.8rem; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }

.product-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-name a { color: inherit; }
.product-name a:hover { color: var(--accent); }

.product-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-price-current { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 600; color: var(--accent); }
.product-price-old { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; }

.product-actions { display: flex; gap: 0.75rem; margin-top: auto; }

.product-btn {
    flex: 1;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-family: var(--font-body);
}

.product-btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; }
.product-btn-primary:hover { box-shadow: 0 10px 30px rgba(26,92,92,0.4); transform: translateY(-2px); }

.product-btn-icon {
    width: 48px; height: 48px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.product-btn-icon:hover { background: var(--accent); border-color: var(--accent); color: var(--dark-bg-primary); }

/* ==================== TIMELINE ==================== */
.timeline-section { padding: var(--section-padding) 5%; }

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 100%;
    background: linear-gradient(180deg, transparent, var(--accent) 10%, var(--accent) 90%, transparent);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 50px);
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 50px);
}

.timeline-dot {
    position: absolute;
    left: 50%; top: 0;
    transform: translateX(-50%);
    width: 24px; height: 24px;
    background: var(--bg-primary);
    border: 4px solid var(--accent);
    border-radius: 50%;
    z-index: 10;
    transition: all var(--transition-normal);
}

.timeline-item:hover .timeline-dot { transform: translateX(-50%) scale(1.3); background: var(--accent); box-shadow: 0 0 20px var(--accent-glow); }

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    max-width: 420px;
    transition: all var(--transition-slow);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px; height: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-right: none;
    border-bottom: none;
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before { right: -11px; transform: rotate(135deg); }
.timeline-item:nth-child(even) .timeline-content::before { left: -11px; transform: rotate(-45deg); }
.timeline-content:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 20px 50px var(--shadow-strong); }

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    color: var(--dark-bg-primary);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.timeline-title { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--text-primary); }
.timeline-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ==================== TESTIMONIALS ==================== */
.testimonials { padding: var(--section-padding) 5%; background: var(--bg-secondary); }

.testimonials-container { max-width: var(--container-max); margin: 0 auto; }

.testimonials-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2rem 0;
}

.testimonials-slider::-webkit-scrollbar { display: none; }

.testimonial-card {
    flex: 0 0 400px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all var(--transition-slow);
}

.testimonial-card:hover { transform: translateY(-10px); border-color: var(--accent); box-shadow: 0 25px 50px var(--shadow-strong); }

.testimonial-quote {
    position: absolute;
    top: 1.5rem; right: 2rem;
    font-size: 5rem;
    font-family: serif;
    color: var(--accent);
    opacity: 0.12;
    line-height: 1;
}

.testimonial-rating { display: flex; gap: 0.25rem; margin-bottom: 1.5rem; }
.testimonial-rating span { color: var(--gold); font-size: 1.1rem; }

.testimonial-text { font-size: 1.05rem; line-height: 1.9; color: var(--text-secondary); margin-bottom: 2rem; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 1rem; }

.testimonial-avatar {
    width: 55px; height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.testimonial-info h4 { font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.2rem; font-family: var(--font-body); }
.testimonial-info p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ==================== GALLERY ==================== */
.gallery { padding: var(--section-padding) 5%; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-slow);
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

.gallery-item-bg {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));*/
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-family: var(--font-heading); font-size: 1.3rem; color: white; margin-bottom: 0.25rem; }
.gallery-overlay p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin: 0; }

.gallery-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px; height: 60px;
    background: var(--glass);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: white;
    backdrop-filter: blur(10px);
    transition: transform var(--transition-bounce);
}

.gallery-item:hover .gallery-icon { transform: translate(-50%, -50%) scale(1); }

/* ==================== CTA ==================== */
.cta { padding: var(--section-padding) 5%; position: relative; overflow: hidden; }

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.15;
}

.cta-content { position: relative; z-index: 10; max-width: 800px; margin: 0 auto; text-align: center; }

.cta-title { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 600; margin-bottom: 1.5rem; color: var(--text-primary); line-height: 1.2; }
.cta-desc { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 3rem; line-height: 1.8; }
.cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* ==================== FOOTER ==================== */
.footer {
    position: relative;
    padding: 6rem 5% 2rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

[data-theme="light"] .footer { background: linear-gradient(180deg, #d8ecea 0%, #b2d4d0 100%); }

/* Light theme footer text overrides */
[data-theme="light"] .footer-desc { color: #1a3a3a; }
[data-theme="light"] .footer-contact-item { color: #1a3a3a; }
[data-theme="light"] .footer-contact-item a { color: #1a3a3a; }
[data-theme="light"] .footer-links a { color: #1a4040; }
[data-theme="light"] .footer-links a:hover { color: #0d2626; }
[data-theme="light"] .footer-column h4 { color: #0d2626; }
[data-theme="light"] .footer-copyright { color: #2d5a5a; }
[data-theme="light"] .payment-icon { color: #1a4040; }
[data-theme="light"] .social-link { color: #1a4040 !important; }
[data-theme="light"] .footer-bottom { border-top-color: rgba(26,64,64,0.25); }
[data-theme="light"] .footer-contact-item .contact-icon { color: #1a4040; }

.forest-silhouette {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 260px;
    pointer-events: none;
    overflow: hidden;
}

.forest-svg {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 100%;
}

.forest-svg-back { opacity: 0.55; }
.forest-svg-mid  { opacity: 0.80; }
.forest-svg-front{ opacity: 1;    }

/* Rüzgar sallama animasyonları */
@keyframes tree-sway-slow {
    0%,100% { transform: rotate(-1.5deg) skewX(-0.5deg); }
    30%      { transform: rotate(1.8deg)  skewX(0.8deg); }
    65%      { transform: rotate(-1deg)   skewX(-0.3deg); }
}
@keyframes tree-sway-med {
    0%,100% { transform: rotate(-2.5deg) skewX(-0.8deg); }
    25%      { transform: rotate(2deg)    skewX(0.6deg); }
    60%      { transform: rotate(-1.5deg) skewX(-0.4deg); }
    80%      { transform: rotate(2.8deg)  skewX(1deg); }
}
@keyframes tree-sway-fast {
    0%,100% { transform: rotate(-3deg)   skewX(-1deg); }
    20%      { transform: rotate(2.5deg)  skewX(0.8deg); }
    50%      { transform: rotate(-2deg)   skewX(-0.6deg); }
    75%      { transform: rotate(3.5deg)  skewX(1.2deg); }
}

.tree-sway-slow  { animation: tree-sway-slow  6s ease-in-out infinite; }
.tree-sway-med   { animation: tree-sway-med   4.5s ease-in-out infinite; }
.tree-sway-fast  { animation: tree-sway-fast  3.2s ease-in-out infinite; }

/* Her ağaca hafif farklı gecikme */
.tree-group:nth-child(2)  { animation-delay: -0.8s; }
.tree-group:nth-child(3)  { animation-delay: -1.6s; }
.tree-group:nth-child(4)  { animation-delay: -0.4s; }
.tree-group:nth-child(5)  { animation-delay: -2.1s; }
.tree-group:nth-child(6)  { animation-delay: -1.2s; }
.tree-group:nth-child(7)  { animation-delay: -0.7s; }
.tree-group:nth-child(8)  { animation-delay: -1.9s; }
.tree-group:nth-child(9)  { animation-delay: -0.3s; }
.tree-group:nth-child(10) { animation-delay: -2.5s; }
.tree-group:nth-child(11) { animation-delay: -1.1s; }
.tree-group:nth-child(12) { animation-delay: -0.6s; }
.tree-group:nth-child(13) { animation-delay: -1.8s; }

.footer-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    max-width: var(--container-max);
    margin: 0 auto 4rem;
}

.footer-brand { max-width: 320px; }

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Footer arka planı her zaman koyu yeşil → her zaman beyaz logo göster, blend-mode kullanma */
.footer-logo-dark { display: block !important; mix-blend-mode: normal !important; }
.footer-logo-light { display: none !important; }
[data-theme="light"] .footer-logo-dark { display: block !important; }
[data-theme="light"] .footer-logo-light { display: none !important; }

.footer-desc { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}

.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-contact-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
}

.footer-social { display: flex; gap: 0.75rem; }

.social-link {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

.social-link:hover { background: var(--accent); border-color: var(--accent); color: var(--dark-bg-primary); transform: translateY(-4px); }

.footer-column h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1.5rem; color: white; font-family: var(--font-body); }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.9rem; }

.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before { content: ''; width: 0; height: 2px; background: var(--accent); transition: width var(--transition-normal); }
.footer-links a:hover { color: var(--accent); transform: translateX(5px); }
.footer-links a:hover::before { width: 12px; }

.footer-bottom {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-copyright { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin: 0; }
.footer-payments { display: flex; gap: 0.75rem; align-items: center; }

.payment-icon {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left { opacity: 0; transform: translateX(-60px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right { opacity: 0; transform: translateX(60px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-scale { opacity: 0; transform: scale(0.9); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-scale.active { opacity: 1; transform: scale(1); }

.stagger-children > * { opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.stagger-children.active > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(7) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(8) { transition-delay: 0.8s; opacity: 1; transform: translateY(0); }

/* ==================== INNER PAGES ==================== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.container--sm { max-width: 800px; }
.container--md { max-width: 980px; }

.inner-page { padding-top: 6rem; min-height: calc(100vh - 6rem); }

.inner-page-hero {
    padding: var(--section-padding) 5% 3rem;
    text-align: center;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.inner-page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at top center, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.08;
    pointer-events: none;
}

.inner-page-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; margin-bottom: 1rem; color: var(--text-primary); position: relative; }
.inner-page-hero p { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; position: relative; }

/* ==================== UTILITIES ==================== */
.text-center { text-align: center; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.d-none { display: none !important; }

/* ==================== FORMS ==================== */
.form-group { margin-bottom: 1.25rem; }

.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.5rem; }

.form-control {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    outline: none;
}

.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(79,209,197,0.15); }
.form-control::placeholder { color: var(--text-muted); }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ==================== AUTH / INNER PAGES ==================== */
.section {
    padding-top: 7rem;
    padding-bottom: 4rem;
    min-height: calc(100vh - 4rem);
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px var(--shadow);
    backdrop-filter: blur(12px);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.form-check input[type="checkbox"] {
    width: 16px; height: 16px;
    accent-color: var(--primary);
    cursor: pointer;
}

.alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-error {
    background: rgba(220,38,38,.1);
    border: 1px solid rgba(220,38,38,.25);
    color: #f87171;
}

.alert-success {
    background: rgba(34,197,94,.1);
    border: 1px solid rgba(34,197,94,.25);
    color: #4ade80;
}

.divider {
    border: none;
    border-top: 1px solid var(--border);
    height: 0;
}

[data-theme="light"] .auth-card {
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(26,92,92,.1);
}

[data-theme="light"] .alert-error { color: #dc2626; }
[data-theme="light"] .alert-success { color: #16a34a; }

/* ==================== SHOP PAGE ==================== */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    align-items: start;
    padding: 3rem 5%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.shop-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    position: sticky;
    top: 90px;
}

.shop-sidebar h3 { font-size: 1rem; font-weight: 600; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); color: var(--text-primary); font-family: var(--font-body); }

.shop-main-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

.shop-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.shop-filter-tag:hover, .shop-filter-tag.active { background: var(--primary); border-color: var(--primary); color: white; }

.shop-top-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; gap: 1rem; flex-wrap: wrap; }
.shop-count { font-size: 0.9rem; color: var(--text-muted); }

/* ==================== CART ==================== */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
    padding: 3rem 5%;
    max-width: 1240px;
    margin: 0 auto;
}

.cart-items { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition-normal);
}

.cart-item:last-child { border-bottom: none; }
.cart-item:hover { background: var(--bg-secondary); }

.cart-item-img { width: 80px; height: 80px; border-radius: 12px; object-fit: cover; background: var(--bg-secondary); }
.cart-item-info { display: flex; flex-direction: column; gap: 0.2rem; }
.cart-item-name { font-weight: 600; font-size: 0.95rem; color: var(--text-primary); }
.cart-item-variant { font-size: 0.8rem; color: var(--text-muted); }
.cart-item-unit-price { font-size: 0.85rem; color: var(--text-muted); }
.cart-item-total { font-weight: 700; font-size: 1rem; color: var(--text-primary); white-space: nowrap; }

.cart-item-remove {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px; border: none; background: none; color: var(--text-muted);
    cursor: pointer; transition: all var(--transition-normal); font-size: 1rem;
}

.cart-item-remove:hover { background: rgba(239,68,68,0.1); color: var(--error); }

.qty-control { display: flex; align-items: center; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }

.qty-btn {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; color: var(--text-secondary);
    cursor: pointer; transition: all var(--transition-normal); font-size: 1rem; font-weight: 600;
}

.qty-btn:hover { background: var(--primary); color: white; }

.qty-input {
    width: 40px; height: 34px;
    text-align: center; border: none; background: none;
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: var(--text-primary); outline: none;
}

.cart-summary { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 1.75rem; position: sticky; top: 90px; }
.cart-summary h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); color: var(--text-primary); font-family: var(--font-body); }

.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; font-size: 0.875rem; color: var(--text-muted); }
.summary-divider { height: 1px; background: var(--border); margin: 0.5rem 0; }
.summary-total { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); }

.shipping-progress { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 14px; padding: 1.1rem 1.5rem; margin-bottom: 1.75rem; }
.shipping-progress.shipping-free { border-color: var(--success); }
.shipping-progress-text { font-size: 0.85rem; color: var(--text-secondary); font-weight: 600; margin-bottom: 0.65rem; display: flex; align-items: center; gap: 0.4rem; }
.shipping-progress.shipping-free .shipping-progress-text { color: var(--success); }
.shipping-progress-bar { height: 6px; background: var(--border); border-radius: 50px; overflow: hidden; }
.shipping-progress-fill { height: 100%; background: var(--primary); border-radius: 50px; transition: width 0.5s ease; }
.shipping-progress.shipping-free .shipping-progress-fill { background: var(--success); }

/* ==================== PRODUCT DETAIL ==================== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
    padding: 3rem 5%;
    max-width: 1240px;
    margin: 0 auto;
}

.gallery-main { border-radius: 20px; overflow: hidden; margin-bottom: 0.75rem; aspect-ratio: 1; background: var(--bg-secondary); position: relative; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.gallery-thumb {
    width: 72px; height: 72px;
    border-radius: 10px; overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer; transition: var(--transition-normal);
    background: none; padding: 0;
}

.gallery-thumb.active { border-color: var(--accent); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-title { font-family: var(--font-heading); font-size: clamp(1.6rem, 3.5vw, 2.25rem); margin-bottom: 0.75rem; color: var(--text-primary); }
.product-short-desc { color: var(--text-muted); line-height: 1.78; margin-bottom: 1.25rem; font-size: 0.95rem; }

.product-price-block { margin-bottom: 1.25rem; display: flex; align-items: baseline; gap: 0.65rem; flex-wrap: wrap; }
.product-price-block .price-main { font-family: var(--font-heading); font-size: 2rem; font-weight: 600; color: var(--accent); }
.product-price-block .price-old { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; }

.variant-table { overflow-x: auto; margin-bottom: 1.25rem; }
.variant-table table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.variant-table th { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); padding: 0.6rem 0.75rem; border-bottom: 2px solid var(--border); text-align: left; }
.variant-table td { padding: 0.75rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.variant-row { cursor: pointer; transition: var(--transition-normal); }
.variant-row:hover { background: var(--bg-secondary); }
.variant-row.selected { background: rgba(79,209,197,0.05); border-left: 3px solid var(--accent); }

.stock-badge { font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 50px; }
.in-stock { background: rgba(16,185,129,0.1); color: var(--success); }
.out-stock { background: rgba(239,68,68,0.1); color: var(--error); }

.add-to-cart-section { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; }

.product-features { display: flex; flex-direction: column; gap: 0.65rem; padding: 1.25rem; background: var(--bg-secondary); border-radius: 14px; margin-top: 1.5rem; border: 1px solid var(--border); }
.feature-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.875rem; color: var(--text-secondary); font-weight: 600; }

/* ==================== ACCOUNT ==================== */
.account-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 3rem 5%;
    max-width: 1240px;
    margin: 0 auto;
}

.account-sidebar { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 1.75rem; position: sticky; top: 90px; }

.account-avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white; margin: 0 auto; }

.account-nav { display: flex; flex-direction: column; gap: 0.25rem; margin-top: 0.75rem; }

.account-nav-item {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.65rem 0.85rem; border-radius: 12px;
    font-size: 0.875rem; font-weight: 600; color: var(--text-muted);
    text-decoration: none; transition: all var(--transition-normal);
}

.account-nav-item:hover, .account-nav-item.active { background: rgba(79,209,197,0.1); color: var(--accent); }

.account-content { min-width: 0; }

.account-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 1.75rem; margin-bottom: 1.5rem; }
.account-section h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); color: var(--text-primary); font-family: var(--font-body); }

.account-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    transition: all var(--transition-normal);
}

.stat-card:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--shadow); }
.stat-icon { font-size: 1.75rem; flex-shrink: 0; }
.stat-info { display: flex; flex-direction: column; }
.stat-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-val { font-size: 1.5rem; font-weight: 800; color: var(--text-primary); line-height: 1.2; }

/* ==================== CHECKOUT ==================== */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; padding: 3rem 5%; max-width: 1240px; margin: 0 auto; align-items: start; }
.checkout-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 1.75rem; margin-bottom: 1.5rem; }
.checkout-section h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); color: var(--text-primary); font-family: var(--font-body); }
.order-summary-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 1.75rem; position: sticky; top: 90px; }

/* ==================== TOAST ==================== */
.toast-container {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 300px; max-width: 380px;
    pointer-events: all;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px var(--shadow-strong);
    backdrop-filter: blur(20px);
}

.toast.show { transform: translateX(0); }
.toast--success { border-left: 4px solid var(--success); }
.toast--error { border-left: 4px solid var(--error); }
.toast--warning { border-left: 4px solid var(--gold); }
.toast--info { border-left: 4px solid var(--accent); }
.toast-icon { font-size: 1.25rem; flex-shrink: 0; }
.toast--success .toast-icon { color: var(--success); }
.toast--error .toast-icon { color: var(--error); }
.toast--warning .toast-icon { color: var(--gold); }
.toast--info .toast-icon { color: var(--accent); }
.toast-body { flex: 1; min-width: 0; }
.toast-title { font-weight: 700; font-size: 0.9rem; color: var(--text-primary); display: block; }
.toast-msg { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
.toast-close { background: none; border: none; color: var(--text-muted); font-size: 0.875rem; cursor: pointer; padding: 0.25rem; border-radius: 6px; transition: all var(--transition-normal); flex-shrink: 0; }
.toast-close:hover { background: var(--border); color: var(--text-primary); }

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 2rem; left: 2rem;
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white; border: none;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; cursor: pointer;
    opacity: 0; transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: 500;
    box-shadow: 0 10px 30px rgba(26,92,92,0.3);
}

.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(26,92,92,0.4); }

/* ==================== ACCORDION ==================== */
.accordion-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; margin-bottom: 0.75rem; overflow: hidden; transition: all var(--transition-normal); }
.accordion-item.active { border-color: var(--accent); }

.accordion-btn {
    width: 100%; padding: 1.25rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    background: none; border: none; cursor: pointer;
    font-family: var(--font-body); font-size: 1rem; font-weight: 600;
    color: var(--text-primary); text-align: left;
    transition: all var(--transition-normal);
}

.accordion-btn:hover { color: var(--accent); }
.accordion-item.active .accordion-btn { color: var(--accent); }

.accordion-icon {
    width: 24px; height: 24px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; color: var(--text-muted);
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon { background: var(--accent); border-color: var(--accent); color: var(--dark-bg-primary); transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.accordion-item.active .accordion-body { max-height: 500px; }
.accordion-content { padding: 0 1.5rem 1.25rem; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; }

/* ==================== EMPTY STATE ==================== */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-state-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.empty-state h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--text-primary); }
.empty-state p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ==================== ORDERS TABLE ==================== */
.orders-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.orders-table th { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); padding: 0.75rem 1rem; border-bottom: 2px solid var(--border); text-align: left; }
.orders-table td { padding: 1rem; border-bottom: 1px solid var(--border); color: var(--text-secondary); }
.orders-table tr:hover td { background: var(--bg-secondary); }

.order-status { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.75rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 50px; }
.order-status.pending { background: rgba(212,175,55,0.15); color: var(--gold); }
.order-status.processing { background: rgba(79,209,197,0.15); color: var(--accent); }
.order-status.shipped { background: rgba(16,185,129,0.15); color: var(--success); }
.order-status.delivered { background: rgba(16,185,129,0.1); color: var(--success); }
.order-status.cancelled { background: rgba(239,68,68,0.1); color: var(--error); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .shop-layout { grid-template-columns: 220px 1fr; }
}

@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { order: -1; margin-bottom: 2rem; }
    .product-showcase { max-width: 420px; }
    .product-main-image { width: 360px; }
    .about-grid { grid-template-columns: 1fr; gap: 4rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .checkout-layout { grid-template-columns: 1fr; }
    .order-summary-box { position: static; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
}

@media (max-width: 768px) {
    .nav-links, .d-md-flex { display: none !important; }
    .mobile-menu-btn { display: flex; }
    .user-btn-label { display: none !important; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; align-items: center; gap: 1.5rem; }
    .about-features { grid-template-columns: 1fr; }
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) { padding-left: 60px; padding-right: 0; justify-content: flex-start; }
    .timeline-dot { left: 20px; }
    .timeline-item .timeline-content::before, .timeline-item:nth-child(even) .timeline-content::before { left: -11px; right: auto; transform: rotate(-45deg); }
    .testimonial-card { flex: 0 0 320px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 1; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { max-width: 100%; }
    .footer-contact { align-items: center; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .about-floating-card.card-1 { bottom: -20px; right: 20px; }
    .about-floating-card.card-2 { top: -20px; left: 20px; }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
    .account-layout { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
    .account-stats { grid-template-columns: 1fr 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    .product-detail { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero { padding: 7rem 4% 3rem; }
    .product-showcase { max-width: 300px; }
    .product-main-image { width: 260px; }
    .btn { padding: 0.8rem 1.5rem; font-size: 0.85rem; }
    .section-title { font-size: 1.8rem; }
    .hero-title { font-size: 2.2rem; }
    .account-stats { grid-template-columns: 1fr; }
}

/* ==================== PAGE HEADER (inner pages) ==================== */
.page-header {
    padding: 7rem 5% 3rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    list-style: none;
    padding: 0;
}

.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }

.lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* ==================== SHOP TOOLBAR ==================== */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.shop-search-form { flex: 1; min-width: 260px; }

.search-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    pointer-events: none;
    z-index: 1;
}

.search-input {
    flex: 1;
    width: 100%;
    padding: 0.65rem 1rem 0.65rem 2.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: border-color var(--transition-normal);
    outline: none;
}

.search-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.search-input::placeholder { color: var(--text-muted); }
[data-theme="light"] .search-input { background: #f8fafc; }

.shop-info { font-size: 0.9rem; color: var(--text-muted); white-space: nowrap; }

/* ==================== PRODUCT GRID (shop page) ==================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Override default homepage card styles for shop grid */
.product-grid .product-card {
    padding: 0;
    text-align: left;
}

.product-grid .product-card:hover { transform: translateY(-8px); }

.product-card-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
}

.product-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: var(--bg-secondary);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    display: block;
}

.product-grid .product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
    padding: 1.25rem;
}

.product-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    font-family: var(--font-body);
    line-height: 1.4;
}

.product-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.price-current {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-heading);
}

.price-old {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-variants-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* ==================== PAGINATION ==================== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.pagination-btn,
.pagination-num {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 1.1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.pagination-btn:hover,
.pagination-num:hover,
.pagination-num.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark-bg-primary);
}

/* ==================== SECTION VARIANTS ==================== */
.section--light { background: var(--bg-secondary); }

.section--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.section--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.btn-white {
    background: #ffffff;
    color: var(--primary);
    border: 2px solid #ffffff;
}

.btn-white:hover {
    background: rgba(255,255,255,0.88);
    border-color: rgba(255,255,255,0.88);
    color: var(--primary);
}

/* ==================== GRADIENT ORB ==================== */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.12;
}

/* ==================== TWO-COL GRID ==================== */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* ==================== INNER PAGES RESPONSIVE ==================== */
@media (max-width: 768px) {
    .page-header { padding: 6rem 5% 2rem; }
    .page-header h1 { font-size: 1.8rem; }
    .shop-toolbar { flex-direction: column; align-items: stretch; }
    .shop-info { text-align: center; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
    .pagination-btn, .pagination-num { padding: 0.45rem 0.85rem; font-size: 0.8rem; }
    .two-col-grid { grid-template-columns: 1fr !important; gap: 2rem; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr 1fr; }
    .page-header h1 { font-size: 1.5rem; }
}
