:root {
    /* Day Mode Colors - Warm Industrial */
    --bg-color: #f8f6f3;
    --bg-gradient: linear-gradient(135deg, #f8f6f3 0%, #e8e4df 100%);
    --text-color: #2d2926;
    --text-muted: #6b6560;
    --header-bg: rgba(255, 255, 255, 0.95);
    --card-bg: #ffffff;
    --accent-color: #e85d04; /* Vibrant Orange */
    --accent-secondary: #f48c06;
    --border-color: #e0dbd5;
    --shadow: 0 8px 32px rgba(45, 41, 38, 0.08);
    --shadow-hover: 0 16px 48px rgba(45, 41, 38, 0.15);
    --transition-speed: 0.4s;
    --glow-color: transparent;
    --road-overlay: rgba(0,0,0,0);
}

[data-theme="dark"] {
    /* Night Mode - Deep Black with Reflective Glow */
    --bg-color: #0a0a0a;
    --bg-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    --text-color: #f0f0f0;
    --text-muted: #888;
    --header-bg: rgba(15, 15, 15, 0.98);
    --card-bg: #151515;
    --accent-color: #ffd60a; /* Bright Reflector Yellow */
    --accent-secondary: #ff9500;
    --border-color: #2a2a2a;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 0 40px rgba(255, 214, 10, 0.3);
    --glow-color: rgba(255, 214, 10, 0.15);
    --road-overlay: rgba(0,0,0,0.3);
}

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

body {
    font-family: 'Hanken Grotesk 3', sans-serif;
    background: #d9d9d9;
    color: var(--text-color);
    transition: all var(--transition-speed) ease;
    line-height: 1.7;
    min-height: 100vh;
}

[data-theme="dark"] body {
    background: #1a1a1a;
}

main {
    background: #d9d9d9;
}

[data-theme="dark"] main {
    background: #1a1a1a;
}

/* Smooth theme transition overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--road-overlay);
    pointer-events: none;
    z-index: -1;
    transition: background var(--transition-speed);
}

/* Font Faces (Preserved from old CSS) */
@font-face {
    font-family: "Hanken Grotesk 3";
    src: url('../css/HankenGrotesk_wght_.woff2') format('woff2'),
         url('../css/HankenGrotesk_wght_.woff') format('woff');
    font-weight: 400;
}
@font-face {
    font-family: "Hanken Grotesk 6";
    src: url('../css/HankenGrotesk_wght_.woff2') format('woff2'),
         url('../css/HankenGrotesk_wght_.woff') format('woff');
    font-weight: 700;
}

/* Header & Nav */
header {
    background: transparent;
    padding: 0.75rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-speed);
}

[data-theme="dark"] header {
    background: transparent;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a {
    display: flex;
    align-items: center;
}

/* Pakkens SVG Logo */
.pakkens-logo {
    height: 28px;
    width: auto;
    fill: #666;
    transition: fill var(--transition-speed);
}

[data-theme="dark"] .pakkens-logo {
    fill: #999;
}

/* Reflect Logo - Timeline'a göre parlar */
.reflect-logo {
    height: 32px;
    width: auto;
    transition: filter 0.4s ease, opacity 0.4s ease;
    /* Gündüz: gri/sönük */
    filter: grayscale(100%) brightness(0.6);
    opacity: 0.7;
}

/* CSS variable ile kontrol */
.reflect-logo {
    --logo-glow: 0;
    --logo-red: 0;
    filter: grayscale(calc(100% - var(--logo-red) * 100%)) 
            brightness(calc(0.5 + var(--logo-glow) * 0.8))
            drop-shadow(0 0 calc(var(--logo-glow) * 25px) rgba(255, 50, 50, var(--logo-glow)));
    opacity: calc(0.6 + var(--logo-glow) * 0.4);
}

/* Dark theme fallback */
[data-theme="dark"] .reflect-logo {
    filter: grayscale(0%) brightness(1.2) drop-shadow(0 0 20px rgba(255, 50, 50, 0.8));
    opacity: 1;
}

/* Footer logo sizing */
.footer-logo.pakkens-logo {
    height: 24px;
}

[data-theme="dark"] .footer-logo.pakkens-logo {
    fill: #888;
}

/* Main Navigation - Pill Style */
.main-nav ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #666;
    font-family: "Hanken Grotesk 3";
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
}

.nav-item:hover {
    background: linear-gradient(180deg, #fff 0%, #f0f0f0 100%);
    border-color: #ccc;
    color: #444;
}

[data-theme="dark"] .nav-item {
    background: linear-gradient(180deg, #2a2a2a 0%, #222 100%);
    border-color: #444;
    color: #999;
}

[data-theme="dark"] .nav-item:hover {
    background: linear-gradient(180deg, #333 0%, #2a2a2a 100%);
    color: #fff;
}

.nav-icon {
    height: 18px;
    width: auto;
}

.nav-icon.prism {
    height: 16px;
}

/* Night Toggle Button in Nav */
.night-toggle {
    cursor: pointer;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%) !important;
    border: 1px solid #444 !important;
    color: #aaa !important;
    padding: 0.5rem 0.75rem !important;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.night-toggle:hover {
    background: linear-gradient(180deg, #333 0%, #222 100%) !important;
    color: #ffd700 !important;
    border-color: #555 !important;
}

.night-toggle .toggle-icon {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.night-toggle:hover .toggle-icon {
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
}

/* Active state when night mode is on */
.night-toggle.active {
    background: linear-gradient(180deg, #3a3520 0%, #2a2510 100%) !important;
    border-color: rgba(255, 215, 0, 0.4) !important;
    color: #ffd700 !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.night-toggle.active .toggle-icon {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

/* Nav Mini Strips */
.nav-strips {
    display: flex;
    gap: 2px;
    transform: rotate(-15deg);
}

.strip-mini {
    width: 4px;
    height: 16px;
    border-radius: 1px;
}

.strip-mini.yellow { background: linear-gradient(180deg, #f7c948, #e6a800); }
.strip-mini.red { background: linear-gradient(180deg, #e63946, #b71c1c); }
.strip-mini.white { background: linear-gradient(180deg, #fff, #ddd); border: 1px solid #ccc; }

/* Product Strips - Büyük versiyon */
.product-strips {
    display: flex;
    gap: 6px;
    transform: rotate(-12deg);
}

.product-strips .strip {
    width: 18px;
    height: 55px;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.product-strips .strip.yellow { 
    background: linear-gradient(180deg, #ffd700, #e6a800); 
}
.product-strips .strip.red { 
    background: linear-gradient(180deg, #e63946, #b71c1c); 
}
.product-strips .strip.white { 
    background: linear-gradient(180deg, #fff, #eee); 
    border: 1px solid #ccc; 
}

/* Gece modunda şeritler parlasın */
[data-theme="dark"] .product-strips .strip {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3), 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .product-strips .strip.yellow {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .product-strips .strip.red {
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.6), 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .product-strips .strip.white {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 2px 8px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.product-card:hover .product-strips .strip {
    transform: scaleY(1.1);
}

/* Floating Reflector Toggle - Sağ Alt */
.toggle-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(30, 30, 30, 0.95);
    border-radius: 24px;
    animation: labelPulse 3s ease-in-out infinite, labelFadeIn 0.5s ease-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.toggle-label-text {
    font-family: "Hanken Grotesk 5";
    font-size: 0.85rem;
    color: #fff;
    white-space: nowrap;
}

.toggle-label-arrow {
    width: 16px;
    height: 16px;
    color: var(--accent-color);
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes labelPulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

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

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

.reflector-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: visible;
}

.reflector-toggle:hover {
    transform: scale(1.08);
}

.reflector-icon {
    width: 28px;
    height: 28px;
    color: #aaa;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
    transform: rotate(-25deg);
}

/* Işık huzmesi efekti */
.reflector-rays {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: raysRotate 20s linear infinite;
    z-index: 1;
}

.reflector-rays span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 8px;
    background: linear-gradient(to top, transparent, rgba(255, 200, 100, 0.6));
    transform-origin: 50% 50%;
    opacity: 0.4;
    border-radius: 2px;
}

.reflector-rays span:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg) translateY(-20px); }
.reflector-rays span:nth-child(2) { transform: translate(-50%, -50%) rotate(45deg) translateY(-20px); }
.reflector-rays span:nth-child(3) { transform: translate(-50%, -50%) rotate(90deg) translateY(-20px); }
.reflector-rays span:nth-child(4) { transform: translate(-50%, -50%) rotate(135deg) translateY(-20px); }
.reflector-rays span:nth-child(5) { transform: translate(-50%, -50%) rotate(180deg) translateY(-20px); }
.reflector-rays span:nth-child(6) { transform: translate(-50%, -50%) rotate(225deg) translateY(-20px); }
.reflector-rays span:nth-child(7) { transform: translate(-50%, -50%) rotate(270deg) translateY(-20px); }
.reflector-rays span:nth-child(8) { transform: translate(-50%, -50%) rotate(315deg) translateY(-20px); }

@keyframes raysRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Dark mode - aktif parlama efekti */
[data-theme="dark"] .toggle-label {
    background: rgba(255, 214, 10, 0.15);
    border: 1px solid rgba(255, 214, 10, 0.3);
}

[data-theme="dark"] .toggle-label-text {
    color: #ffd700;
}

[data-theme="dark"] .reflector-toggle {
    background: radial-gradient(circle at center, #3a3a3a 0%, #1a1a1a 100%);
    box-shadow: 0 0 40px rgba(255, 214, 10, 0.5),
                0 0 80px rgba(255, 214, 10, 0.25),
                inset 0 0 20px rgba(255, 214, 10, 0.1);
}

[data-theme="dark"] .reflector-icon {
    color: #ffd700;
    filter: drop-shadow(0 0 10px rgba(255, 214, 10, 1));
    transform: rotate(-25deg) scale(1.1);
}

[data-theme="dark"] .reflector-rays span {
    background: linear-gradient(to top, transparent, rgba(255, 214, 10, 0.95));
    opacity: 0.9;
    height: 10px;
    animation: raysPulse 2s ease-in-out infinite;
}

@keyframes raysPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Eski moon-toggle için geriye uyumluluk */
.moon-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.moon-icon {
    width: 24px;
    height: 24px;
    color: #ccc;
    transition: color 0.3s;
}

[data-theme="dark"] .moon-toggle {
    box-shadow: 0 0 30px rgba(255, 214, 10, 0.3);
}

[data-theme="dark"] .moon-icon {
    color: #ffd700;
}

/* ==========================================
   DAY/NIGHT TIMELINE SLIDER
   ========================================== */

.timeline-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    padding: 0.5rem 3% 0.6rem;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-track {
    position: relative;
    height: 32px;
    margin-bottom: 0.25rem;
}

.timeline-gradient {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    transform: translateY(-50%);
    border-radius: 2px;
    background: linear-gradient(
        to right,
        #1a1a3e 0%,
        #2d2d5a 10%,
        #ff7b4d 20%,
        #ffb347 25%,
        #87ceeb 35%,
        #87ceeb 65%,
        #ffb347 75%,
        #ff6b35 80%,
        #2d2d5a 90%,
        #1a1a3e 100%
    );
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.timeline-sun-path {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
}

.sun-indicator {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: left 0.1s ease-out;
}

.sun-indicator svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 6px currentColor);
    transition: all 0.3s ease;
}

/* Güneş - Gündüz */
.sun-indicator.is-day svg {
    color: #ffd700;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

/* Ay - Gece */
.sun-indicator.is-night svg {
    color: #c9c9c9;
    filter: drop-shadow(0 0 10px rgba(200, 200, 255, 0.6));
}

.timeline-slider {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 28px;
    transform: translateY(-50%);
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    z-index: 10;
}

.timeline-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    cursor: grab;
}

.timeline-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: grab;
}

.timeline-slider:active::-webkit-slider-thumb {
    cursor: grabbing;
}

.timeline-slider:active::-moz-range-thumb {
    cursor: grabbing;
}

.timeline-labels {
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.time-label {
    font-family: "Hanken Grotesk 3", sans-serif;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.35);
    transition: all 0.3s;
}

.time-label.current-time {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.7rem;
}

.timeline-hint {
    display: none;
}

/* Sun glow animation */
.sun-indicator.is-day svg {
    animation: sunGlow 3s ease-in-out infinite;
}

@keyframes sunGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.9)); }
}

/* Moon glow animation */
.sun-indicator.is-night svg {
    animation: moonGlow 4s ease-in-out infinite;
}

@keyframes moonGlow {
    0%, 100% { filter: drop-shadow(0 0 4px rgba(200, 200, 255, 0.3)); }
    50% { filter: drop-shadow(0 0 8px rgba(200, 200, 255, 0.7)); }
}

/* Responsive */
@media (max-width: 600px) {
    .timeline-container {
        padding: 0.4rem 2% 0.5rem;
    }
    
    .sun-indicator {
        width: 20px;
        height: 20px;
    }
    
    .time-label {
        font-size: 0.55rem;
    }
    
    .time-label.current-time {
        font-size: 0.65rem;
    }
}

/* Legacy theme switch (hidden) */
.theme-switch-wrapper {
    display: none;
}

/* Hero Section - Road Perspective Style */
.hero-road {
    position: relative;
    background: #d9d9d9;
    min-height: 85vh;
    overflow: hidden;
}

[data-theme="dark"] .hero-road {
    background: #1a1a1a;
}

/* Road Image */
.hero-road-image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 0;
    background: #d9d9d9;
}

[data-theme="dark"] .hero-road-image {
    background: #1a1a1a;
}

.hero-road-image > img {
    width: 100%;
    height: auto;
}

/* E-Mark Badge - Sol Üst */
/* Fixed Bottom Badges - Timeline yanında */
.fixed-e-badge {
    position: fixed;
    bottom: 85px;
    left: 15px;
    z-index: 9998;
}

.fixed-e-badge img {
    width: 40px;
    height: auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
    transition: filter 0.3s;
    cursor: pointer;
}

[data-theme="dark"] .fixed-e-badge img {
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.4)) drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.fixed-g-badge {
    position: fixed;
    bottom: 85px;
    right: 15px;
    z-index: 9998;
}

.fixed-g-badge img {
    width: 70px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    transition: filter 0.3s;
    cursor: pointer;
}

[data-theme="dark"] .fixed-g-badge img {
    filter: drop-shadow(0 0 15px rgba(255,200,100,0.5)) drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* Info Popup */
.info-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.info-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.info-popup {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.info-popup-overlay.active .info-popup {
    transform: scale(1) translateY(0);
}

[data-theme="dark"] .info-popup {
    background: #2a2a2a;
    color: #eee;
}

.info-popup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

[data-theme="dark"] .info-popup-header {
    border-bottom-color: rgba(255,255,255,0.1);
}

.info-popup-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #e63946);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    font-family: serif;
}

.info-popup-title {
    font-family: "Hanken Grotesk 6", sans-serif;
    font-size: 1.25rem;
    color: #333;
    margin: 0;
}

[data-theme="dark"] .info-popup-title {
    color: #fff;
}

.info-popup-content p {
    font-family: "Hanken Grotesk 3", sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1rem;
}

[data-theme="dark"] .info-popup-content p {
    color: #bbb;
}

.info-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
    transition: all 0.2s;
}

.info-popup-close:hover {
    background: rgba(0,0,0,0.2);
}

[data-theme="dark"] .info-popup-close {
    background: rgba(255,255,255,0.1);
    color: #ccc;
}

[data-theme="dark"] .info-popup-close:hover {
    background: rgba(255,255,255,0.2);
}

.e-badge-box .e-text {
    font-family: "Hanken Grotesk 6";
    font-size: 2rem;
    color: #333;
    line-height: 1;
}

[data-theme="dark"] .e-badge-box .e-text {
    color: #fff;
}

.e-badge-box .e-text sub {
    font-size: 1rem;
    vertical-align: baseline;
}

.e-badge-box .e-number {
    font-family: "Hanken Grotesk 3";
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

[data-theme="dark"] .e-badge-box .e-number {
    color: #aaa;
}

/* Geri Yansıtıcı Levhalar Badge - Sağ Üst */
.hero-cta-badge {
    position: absolute;
    top: 2rem;
    right: 3rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: #2a2a2a;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-cta-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

[data-theme="dark"] .hero-cta-badge {
    background: #333;
    box-shadow: 0 0 20px rgba(255, 214, 10, 0.2);
}

.hero-cta-badge .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #444;
    border-radius: 8px;
    font-family: "Hanken Grotesk 6";
    font-size: 1.25rem;
    color: #fff;
}

[data-theme="dark"] .hero-cta-badge .badge-icon {
    background: #555;
    color: var(--accent-color);
}

.hero-cta-badge .badge-text {
    font-size: 0.8rem;
    color: #fff;
    line-height: 1.3;
    text-align: left;
}

/* Product Categories - 2x2 Grid Layout */
.hero-products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 420px));
    gap: 0.75rem 1.5rem;
    padding: 2rem 5%;
    justify-content: center;
    background: transparent;
}

[data-theme="dark"] .hero-products-grid {
    background: transparent;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.875rem 1.5rem 0.875rem 0.875rem;
    background: transparent;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 85px;
}

.product-card:hover {
    transform: translateY(-3px);
}

.product-card.highlight {
    border-left: 4px solid #dc3545;
}

.product-card:focus,
.product-card:active,
.product-card a:focus,
.product-card a:active {
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-card.highlight:hover {
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
}

[data-theme="dark"] .product-card {
    background: transparent;
}

[data-theme="dark"] .product-card:hover {
    transform: translateY(-3px);
}

[data-theme="dark"] .product-card.highlight {
    border-left-color: #ff6b6b;
}

.product-card-image {
    flex-shrink: 0;
    width: 110px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
}

.product-card-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.2));
    transition: filter 0.3s, transform 0.3s;
}

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

[data-theme="dark"] .product-card-image img {
    filter: drop-shadow(0 0 15px rgba(255, 214, 10, 0.6));
}

.product-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.product-card-title {
    font-family: "Hanken Grotesk 6";
    font-size: 1rem;
    color: #222;
    font-weight: 700;
    letter-spacing: 0.02em;
}

[data-theme="dark"] .product-card-title {
    color: #fff;
}

.product-card-desc {
    font-family: "Hanken Grotesk 3";
    font-size: 0.8rem;
    color: #666;
    line-height: 1.3;
}

[data-theme="dark"] .product-card-desc {
    color: #aaa;
}

/* Responsive Hero */
@media (max-width: 900px) {
    .hero-products-grid {
        grid-template-columns: repeat(2, minmax(250px, 350px));
        gap: 0.6rem 1rem;
        padding: 1.5rem 3%;
    }
    
    .fixed-e-badge img {
        width: 35px;
    }
    
    .fixed-g-badge img {
        width: 60px;
    }
}

@media (max-width: 650px) {
    .hero-products-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        padding: 1.5rem 4%;
        max-width: 400px;
    }
    
    .product-card {
        padding: 0.6rem 1rem 0.6rem 0.6rem;
        gap: 1rem;
        min-height: 70px;
    }
    
    .product-card-image {
        width: 90px;
        height: 60px;
    }
    
    .product-card-title {
        font-size: 0.95rem;
    }
    
    .product-card-desc {
        font-size: 0.8rem;
    }
    
    .fixed-e-badge,
    .fixed-g-badge {
        bottom: 70px;
    }
    
    .hero-road {
        padding-top: 1rem;
    }
}

/* Legacy hero styles (for other pages) */
.hero {
    padding: 5rem 5% 6rem;
    text-align: center;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero h1 {
    font-family: "Hanken Grotesk 6";
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

[data-theme="dark"] .hero h1 {
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 50%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 60px rgba(255, 214, 10, 0.3);
}

.hero p {
    max-width: 700px;
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.5s ease;
}

[data-theme="dark"] .hero-image-container {
    box-shadow: 0 0 80px rgba(255, 214, 10, 0.15), var(--shadow);
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.6s ease-in-out;
}

/* Glowing effect for reflectors in night mode */
.glowing {
    animation: reflectorGlow 2s ease-in-out infinite alternate;
}

@keyframes reflectorGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(255, 214, 10, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 40px rgba(255, 214, 10, 0.8)) drop-shadow(0 0 60px rgba(255, 149, 0, 0.4));
    }
}

/* Section Title */
.section-header {
    text-align: center;
    padding: 0 5%;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: "Hanken Grotesk 6";
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Product Grid */
.products {
    padding: 5rem 5%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid > .product-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 0;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.products-grid > .product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.products-grid > .product-card:hover::before {
    opacity: 1;
}

[data-theme="dark"] .products-grid > .product-card:hover {
    border-color: rgba(255, 214, 10, 0.3);
}

.products-grid > .product-card .image-wrapper {
    padding: 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.02) 100%);
}

[data-theme="dark"] .products-grid > .product-card .image-wrapper {
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}

.products-grid > .product-card img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.products-grid > .product-card:hover img {
    transform: scale(1.05);
}

.products-grid > .product-card .content {
    padding: 1.5rem;
}

.products-grid > .product-card h3 {
    font-family: "Hanken Grotesk 6";
    margin-bottom: 0.75rem;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.products-grid > .product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.products-grid > .product-card > a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.products-grid > .product-card .image-wrapper {
    flex-shrink: 0;
}

.products-grid > .product-card .content {
    margin-top: auto;
}

/* Info Section */
.info-section {
    padding: 5rem 5%;
    background: linear-gradient(180deg, transparent 0%, var(--glow-color) 50%, transparent 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.info-content h2 {
    font-family: "Hanken Grotesk 6";
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.info-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* E-Mark Badge */
.e-mark-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    font-family: "Hanken Grotesk 6";
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

[data-theme="dark"] .e-mark-badge {
    box-shadow: 0 0 30px rgba(255, 214, 10, 0.3);
}

/* Footer */
footer {
    position: relative;
    background: #d9d9d9;
    text-align: center;
    padding: 3rem 5% 7rem;
    transition: all var(--transition-speed);
    overflow: hidden;
    filter: brightness(var(--sky-brightness, 1)) saturate(calc(1 + var(--sky-warmth, 0) * 0.3));
}

[data-theme="dark"] footer {
    background: #1a1a1a;
}

.footer-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    height: 35px;
    margin-bottom: 1rem;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Utility for hiding/showing images based on mode if needed manually */
.night-only {
    display: none;
}

[data-theme="dark"] .day-only {
    display: none;
}
[data-theme="dark"] .night-only {
    display: block;
}

/* Reflector strips in cards */
.strip-samples {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 1rem;
}

.strip-samples img {
    width: 60px !important;
    height: 60px !important;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

[data-theme="dark"] .strip-samples img {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: "Hanken Grotesk 6";
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(232, 93, 4, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 93, 4, 0.4);
}

[data-theme="dark"] .cta-button {
    box-shadow: 0 4px 20px rgba(255, 214, 10, 0.3);
}

[data-theme="dark"] .cta-button:hover {
    box-shadow: 0 8px 30px rgba(255, 214, 10, 0.5);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    header {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem 3%;
    }
    
    nav {
        order: 3;
        width: 100%;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }
    
    nav a {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .theme-switch-wrapper {
        order: 2;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 3rem 4%;
    }
    
    .products {
        padding: 3rem 4%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        padding: 0 4%;
    }
}

/* Page load animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero, .products, .info-section {
    animation: fadeInUp 0.8s ease-out;
}

.products {
    animation-delay: 0.2s;
}

.info-section {
    animation-delay: 0.4s;
}

/* ========================================
   PAGE SPECIFIC STYLES
   ======================================== */

/* Page Header */
.page-header {
    padding: 4rem 5%;
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15) !important;
}

[data-theme="dark"] .page-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.page-icon {
    flex-shrink: 0;
}

.page-icon img {
    height: 80px;
    width: auto;
}

.page-title h1 {
    font-family: "Hanken Grotesk 6";
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.page-title .subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Content Section */
.content-section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section.alt-bg {
    background: var(--card-bg);
    max-width: 100%;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.content-section.alt-bg > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Info Block */
.info-block {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.info-block h2 {
    font-family: "Hanken Grotesk 6";
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.info-block p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.info-block p:last-child {
    margin-bottom: 0;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.spec-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.spec-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

[data-theme="dark"] .spec-card:hover {
    box-shadow: 0 0 20px rgba(255, 214, 10, 0.1);
}

.spec-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.spec-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: "Hanken Grotesk 6";
}

.spec-card p {
    color: var(--accent-color);
    font-weight: 600;
    font-family: "Hanken Grotesk 6";
}

/* Vehicle Gallery */
.vehicle-gallery {
    padding: 4rem 5%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 1rem;
    transition: all 0.5s;
}

.gallery-item span {
    display: block;
    text-align: center;
    padding: 0.75rem;
    background: transparent;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
    border-top: none;
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    color: var(--accent-color);
}

.feature-item h3 {
    font-family: "Hanken Grotesk 6";
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Series Cards (ECE-R 70) */
.series-card {
    padding: 0 !important;
}

.series-badge {
    padding: 0.75rem 1.5rem;
    font-family: "Hanken Grotesk 6";
    font-size: 1rem;
    color: white;
    text-align: center;
}

.series-badge.rf {
    background: linear-gradient(135deg, #ff6b00, #ff9500);
}

.series-badge.rr {
    background: linear-gradient(135deg, #666, #888);
}

.series-card .content {
    padding: 1rem 1.5rem;
}

.series-card .image-wrapper {
    padding: 0.5rem 1rem;
}

.series-card .image-wrapper img {
    height: 80px;
}

/* Mounting Options */
.mounting-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mounting-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.mounting-icon {
    margin-bottom: 0.75rem;
}

.mounting-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
}

.mounting-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.mounting-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.mounting-card img {
    width: 100%;
    border-radius: 8px;
}

/* Showcase Section */
.showcase-section {
    padding: 4rem 5%;
    text-align: center;
}

.showcase-image {
    max-width: 1000px;
    margin: 2rem auto;
}

.showcase-image img {
    width: 100%;
    border-radius: 12px;
}

.showcase-note {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

/* Color Options (ECE-R 104) */
.color-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.color-card {
    text-align: center;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.color-preview {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.color-preview img {
    max-height: 80px;
    width: auto;
}

.color-card h3 {
    font-family: "Hanken Grotesk 6";
    color: var(--text-color);
}

.color-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Strip Demo */
.strip-demo {
    display: flex;
    gap: 4px;
}

.strip {
    width: 20px;
    height: 60px;
    border-radius: 4px;
}

.strip.red { background: linear-gradient(180deg, #ff3333, #cc0000); }
.strip.white { background: linear-gradient(180deg, #ffffff, #dddddd); border: 1px solid #ccc; }
.strip.yellow { background: linear-gradient(180deg, #ffcc00, #ff9900); }

/* Application Showcase */
.application-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.app-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.app-item.large {
    grid-column: 1 / -1;
}

.app-item img {
    width: 100%;
    height: auto;
    display: block;
}

.app-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: transparent;
    color: var(--text-color);
    font-weight: 600;
    text-align: center;
}

/* Spectrum Display */
.spectrum-display {
    max-width: 600px;
    margin: 2rem auto;
}

.spectrum-display img {
    width: 100%;
    border-radius: 8px;
}

/* Wavelength Table */
.wavelength-table {
    max-width: 500px;
    margin: 2rem auto;
}

.wavelength-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
}

.wavelength-row.violet { background: linear-gradient(90deg, #8B00FF, #9400D3); }
.wavelength-row.blue { background: linear-gradient(90deg, #0000FF, #4169E1); }
.wavelength-row.cyan { background: linear-gradient(90deg, #00CED1, #20B2AA); }
.wavelength-row.green { background: linear-gradient(90deg, #228B22, #32CD32); }
.wavelength-row.yellow { background: linear-gradient(90deg, #FFD700, #FFA500); color: #333; }
.wavelength-row.orange { background: linear-gradient(90deg, #FF8C00, #FF4500); }
.wavelength-row.red { background: linear-gradient(90deg, #FF0000, #8B0000); }

/* Tech Comparison */
.tech-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-card {
    background: var(--header-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.tech-icon {
    margin-bottom: 0.75rem;
}

.tech-icon svg {
    width: 36px;
    height: 36px;
    color: var(--accent-color);
}

.tech-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.tech-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Active Nav State */
nav a.active {
    color: var(--accent-color);
    background: rgba(232, 93, 4, 0.1);
}

[data-theme="dark"] nav a.active {
    background: rgba(255, 214, 10, 0.15);
}

/* Responsive adjustments for subpages */
@media (max-width: 768px) {
    .page-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .application-showcase {
        grid-template-columns: 1fr;
    }
    
    .app-item.large {
        grid-column: auto;
    }
}

/* ==========================================
   SPACE DESIGN - FLOATING ELEMENTS
   Alt sayfalar için boşlukta yüzen tasarım
   ========================================== */

/* Subpage Main - body ile aynı background */
.subpage-main {
    background: #d9d9d9;
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .subpage-main {
    background: #1a1a1a;
}

/* Floating section - arka plan kaldırılmış */
.floating {
    background: transparent !important;
    border: none !important;
}

/* Floating card - arka plan kaldırıldı */
.floating-card {
    background: transparent !important;
    backdrop-filter: none;
    border: none !important;
    box-shadow: none;
    transition: all 0.3s ease;
}

.floating-card:hover {
    box-shadow: none;
    transform: translateY(-2px);
}

[data-theme="dark"] .floating-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none;
}

[data-theme="dark"] .floating-card:hover {
    box-shadow: none;
}

/* Page header floating */
.page-header.floating {
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15) !important;
    margin-bottom: 2rem;
}

[data-theme="dark"] .page-header.floating {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Subpage sections floating düzenlemeleri */
.subpage-main .content-section {
    background: transparent;
    border: none;
    position: relative;
    z-index: 3;
}

.subpage-main .vehicle-gallery {
    background: transparent;
}

.subpage-main .features-section {
    background: transparent;
}

.subpage-main .info-section {
    background: transparent;
    border: none;
}

.subpage-main .products {
    background: transparent;
}

/* Products grid floating */
.floating-products {
    gap: 2rem;
}

.floating-products .product-card.series-card {
    background: transparent !important;
}

[data-theme="dark"] .floating-products .product-card.series-card {
    background: transparent !important;
}

/* Showcase image floating */
.showcase-image.floating-card {
    padding: 0;
    border-radius: 0;
    background: transparent !important;
}

/* Info section içindeki info-content floating */
.info-section .info-content.floating-card {
    padding: 2rem 0;
    border-radius: 0;
    text-align: center;
    background: transparent !important;
}

/* Spectrum display floating */
.spectrum-display.floating-card {
    padding: 0;
    border-radius: 0;
    background: transparent !important;
}

/* Gallery item floating */
.gallery-item.floating-card {
    background: transparent !important;
    border-radius: 12px;
    overflow: hidden;
}

[data-theme="dark"] .gallery-item.floating-card {
    background: transparent !important;
}

/* App item floating */
.app-item.floating-card {
    background: transparent !important;
}

[data-theme="dark"] .app-item.floating-card {
    background: transparent !important;
}

/* Feature item floating */
.feature-item.floating-card {
    background: transparent !important;
    border: none !important;
}

[data-theme="dark"] .feature-item.floating-card {
    background: transparent !important;
    border: none !important;
}

/* Tech card floating */
.tech-card.floating-card {
    background: transparent !important;
}

[data-theme="dark"] .tech-card.floating-card {
    background: transparent !important;
}

/* Spec card floating */
.spec-card.floating-card {
    background: transparent !important;
}

[data-theme="dark"] .spec-card.floating-card {
    background: transparent !important;
}

/* Mounting card floating */
.mounting-card.floating-card {
    background: transparent !important;
}

[data-theme="dark"] .mounting-card.floating-card {
    background: transparent !important;
}

/* Color card floating */
.color-card.floating-card {
    background: transparent !important;
}

[data-theme="dark"] .color-card.floating-card {
    background: transparent !important;
}

/* Info block floating */
.info-block.floating-card {
    background: transparent !important;
}

[data-theme="dark"] .info-block.floating-card {
    background: transparent !important;
}

/* Subpage sky effects - aynı index.html gibi */
.subpage-main {
    filter: brightness(var(--sky-brightness, 1)) saturate(calc(1 + var(--sky-warmth, 0) * 0.3));
    transition: filter 0.4s ease;
}

.subpage-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, var(--sky-darkness, 0));
    pointer-events: none;
    z-index: 1;
    transition: background 0.4s ease;
}

.subpage-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 180, 100, var(--sky-warmth, 0));
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 2;
    transition: background 0.4s ease;
}

.subpage-main > * {
    position: relative;
    z-index: 3;
}

/* Subpage footer - main ile birleşik görünüm */
.subpage-main + footer {
    border-top: none !important;
    margin-top: 0;
    background: #d9d9d9;
    filter: brightness(var(--sky-brightness, 1)) saturate(calc(1 + var(--sky-warmth, 0) * 0.3));
}

[data-theme="dark"] .subpage-main + footer {
    background: #1a1a1a;
}

.subpage-main + footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, var(--sky-darkness, 0));
    pointer-events: none;
    z-index: 1;
    transition: background 0.4s ease;
}

.subpage-main + footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 180, 100, var(--sky-warmth, 0));
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 2;
    transition: background 0.4s ease;
}

/* Gece modunda daha belirgin glow efekti */
[data-theme="dark"] .floating-card img {
    filter: drop-shadow(0 0 8px rgba(255, 214, 10, 0.3));
}

[data-theme="dark"] .gallery-item.floating-card img,
[data-theme="dark"] .app-item.floating-card img {
    filter: drop-shadow(0 0 15px rgba(255, 214, 10, 0.4));
}

