/* ========================================
   VIAPOT - Premium Pottery Website
   Professional CSS Styles
   ======================================== */

/* ========================================
   CSS Variables
   ======================================== */
:root {
    /* Colors */
    --primary: #C97456;
    --primary-dark: #A85D42;
    --primary-light: #E8A87C;
    --primary-rgb: 201, 116, 86;
    --secondary: #8B5A3C;
    --accent: #4A7C59;
    --accent-light: #6B9B74;
    
    /* Neutrals */
    --dark: #1A1A1A;
    --dark-2: #2C2C2C;
    --dark-3: #3D3D3D;
    --gray: #666666;
    --gray-light: #999999;
    --gray-lighter: #CCCCCC;
    --light: #F8F6F3;
    --light-2: #EFEFEF;
    --white: #FFFFFF;
    
    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-primary: 0 10px 40px rgba(var(--primary-rgb), 0.25);
    --shadow-glow: 0 0 40px rgba(var(--primary-rgb), 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.68, -0.6, 0.32, 1.6);
    --transition-fast: 0.15s var(--ease-out);
    --transition: 0.3s var(--ease-out);
    --transition-slow: 0.5s var(--ease-out);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: clamp(60px, 10vw, 120px);
    --container-padding: clamp(16px, 4vw, 24px);
    
    /* Z-Index scale (base → overlay → modal → preloader) */
    --z-base: 0;
    --z-below: -1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-header: 500;
    --z-overlay: 600;
    --z-modal: 700;
    --z-tooltip: 800;
    --z-preloader: 9999;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --dark: #F8F6F3;
    --dark-2: #EFEFEF;
    --dark-3: #E0E0E0;
    --gray: #AAAAAA;
    --gray-light: #888888;
    --light: #1A1A1A;
    --light-2: #252525;
    --white: #121212;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ========================================
   Preloader
   ======================================== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition: opacity 0.6s var(--ease-out), visibility 0.6s var(--ease-out);
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-wrap {
    display: inline-block;
    border-radius: var(--radius-sm);
    line-height: 0;
}
.logo-wrap.has-bg {
    padding: 8px 12px;
}
.preloader-content .logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo {
    width: 180px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    margin: 0 auto 32px;
    display: block;
}

.preloader-progress {
    width: 200px;
    height: 3px;
    background: var(--light-2);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    animation: preloaderBar 1.5s var(--ease-out) infinite;
}

@keyframes preloaderBar {
    0% { width: 0; margin-left: 0; }
    50% { width: 100%; margin-left: 0; }
    100% { width: 0; margin-left: 100%; }
}

/* ========================================
   Custom Cursor (Desktop)
   ======================================== */
.cursor-dot,
.cursor-outline {
    display: none;
}

@media (pointer: fine) and (min-width: 1024px) {
    .cursor-dot,
    .cursor-outline {
        display: block;
        position: fixed;
        pointer-events: none;
        z-index: 9998;
        border-radius: 50%;
        transition: transform 0.15s var(--ease-out);
    }
    
    .cursor-dot {
        width: 8px;
        height: 8px;
        background: var(--primary);
        transform: translate(-50%, -50%);
    }
    
    .cursor-outline {
        width: 40px;
        height: 40px;
        border: 2px solid var(--primary);
        opacity: 0.5;
        transform: translate(-50%, -50%);
        transition: all 0.2s var(--ease-out);
    }
    
    .cursor-outline.hover {
        width: 60px;
        height: 60px;
        opacity: 0.3;
        background: rgba(var(--primary-rgb), 0.1);
    }
}

/* ========================================
   Header & Navigation - Premium Design
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    transition: var(--transition);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    transition: var(--transition);
}

.header.scrolled::before {
    opacity: 1;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Header Top Bar */
.header-top {
    background: linear-gradient(90deg, var(--dark) 0%, #2C2C2C 100%);
    padding: 10px 0;
    transition: all 0.4s var(--ease-out);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.header.scrolled .header-top {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* On non-home pages, keep header-top visible or make smoother transition */
body:not(.page-home) .header.scrolled .header-top {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    padding: 6px 0;
    font-size: 11px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
}

.header-top-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-top-item svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.header-top-item.highlight {
    background: rgba(var(--primary-rgb), 0.2);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    color: var(--primary-light);
}

.header-top-item.highlight svg {
    color: var(--primary-light);
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top-cta .header-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.header-top-cta .header-cta-btn:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.header-top-cta .header-cta-btn svg {
    width: 14px;
    height: 14px;
}

.header-social-links {
    display: flex;
    gap: 8px;
}

.header-social-links a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.header-social-links a:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

.header-social-links a svg {
    width: 14px;
    height: 14px;
}

.navbar {
    position: relative;
    padding: 18px 0;
    transition: var(--transition);
}

.header.scrolled .navbar {
    padding: 14px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.logo {
    position: relative;
    z-index: 1001;
    display: block;
}

.logo-img {
    width: 140px;
    height: auto;
    max-height: 48px;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 8px;
    position: relative;
}

.nav-link {
    position: relative;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: var(--transition);
}

.header.scrolled .nav-link {
    color: var(--dark);
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    border-radius: var(--radius-full);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out);
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

/* Nav Extras */
.nav-extras {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1001;
}

/* Theme Toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.header.scrolled .theme-toggle {
    background: var(--light);
    color: var(--dark);
}

.theme-toggle:hover {
    background: var(--primary);
    color: var(--white);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

.sun-icon { display: block; }
.moon-icon { display: none; }

[data-theme="dark"] .sun-icon { display: none; }
[data-theme="dark"] .moon-icon { display: block; }

/* Language Switcher */
.language-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 4px;
    backdrop-filter: blur(10px);
}

.header.scrolled .language-switcher {
    background: var(--light);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.header.scrolled .lang-btn {
    color: var(--dark);
}

.lang-btn.active {
    background: var(--primary);
    color: var(--white);
}

.lang-btn svg {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    overflow: hidden;
}

/* Simple Dropdown Menu */
.has-dropdown {
    position: relative;
}

.has-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 700px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-lg);
    border-top: 3px solid var(--primary);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out);
    z-index: calc(var(--z-header) + 1);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-category {
    padding: 0;
}

.dropdown-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    padding: 8px 12px;
    margin-bottom: 8px;
    background: var(--light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.dropdown-title:hover {
    background: var(--primary);
    color: var(--white);
}

.dropdown-category ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-category ul li a {
    display: block;
    font-size: 13px;
    color: var(--gray);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.dropdown-category ul li a:hover {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding-left: 16px;
}

/* Search Toggle */
.search-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.header.scrolled .search-toggle {
    background: var(--light);
    color: var(--dark);
}

.search-toggle:hover {
    background: var(--primary);
    color: var(--white);
}

.search-toggle svg {
    width: 20px;
    height: 20px;
}

/* Nav CTA Button */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-cta-btn span {
    white-space: nowrap;
}

.nav-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-cta-btn svg {
    width: 16px;
    height: 16px;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: var(--z-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    width: 100%;
    max-width: 700px;
    padding: 0 24px;
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-out);
}

.search-overlay.active .search-overlay-inner {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.search-close:hover {
    background: var(--primary);
}

.search-close svg {
    width: 24px;
    height: 24px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: 8px 24px;
    margin-bottom: 32px;
}

.search-input-wrapper svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.search-input-wrapper input {
    flex: 1;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 18px;
}

.search-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input-wrapper input:focus {
    outline: none;
}

.search-input-wrapper button {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.search-input-wrapper button:hover {
    background: var(--primary-dark);
}

.search-input-wrapper button svg {
    color: var(--white);
}

.search-suggestions {
    text-align: center;
}

.search-suggestion-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.search-tag {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 13px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.search-tag:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: calc(var(--z-header) + 2);
    flex-shrink: 0;
    overflow: visible;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    min-height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.2s var(--ease-out);
    transform-origin: center;
    backface-visibility: hidden;
}

.header.scrolled .nav-toggle span,
.header.scrolled .nav-toggle.active span {
    background: var(--dark);
}

.nav-toggle.active span {
    background: var(--white);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7.75px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
    pointer-events: none;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7.75px) rotate(-45deg);
}

/* Mobile Overlay – below header so toggle & menu stay clickable */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out), visibility 0.3s var(--ease-out);
    z-index: 449;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

/* Slider */
.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s var(--ease-out), visibility 1.2s var(--ease-out);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s linear;
}

.hero-slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 116, 86, 0.85) 0%, rgba(139, 90, 60, 0.9) 100%);
}

.slide-overlay.overlay-green {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.85) 0%, rgba(45, 80, 55, 0.9) 100%);
}

.slide-overlay.overlay-brown {
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.85) 0%, rgba(100, 65, 40, 0.9) 100%);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 120px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

/* Animate Items */
.animate-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.hero-slide.active .animate-item {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide.active .animate-item:nth-child(1) { transition-delay: 0.1s; }
.hero-slide.active .animate-item:nth-child(2) { transition-delay: 0.2s; }
.hero-slide.active .animate-item:nth-child(3) { transition-delay: 0.3s; }
.hero-slide.active .animate-item:nth-child(4) { transition-delay: 0.4s; }
.hero-slide.active .animate-item:nth-child(5) { transition-delay: 0.5s; }
.hero-slide.active .animate-item:nth-child(6) { transition-delay: 0.6s; }

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
    color: var(--primary-light);
}

.hero-badge span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title span {
    display: block;
}

.hero-title .highlight {
    color: var(--primary-light);
    position: relative;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 520px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.hero-image-decoration {
    position: absolute;
    inset: -20px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    transform: rotate(5deg);
}

.hero-image-decoration.deco-green {
    border-color: rgba(107, 155, 116, 0.3);
}

.hero-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: floatBadge 3s var(--ease-in-out) infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-badge svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.floating-badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 20;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.slider-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.progress-track {
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--white);
    width: 33.33%;
    transition: width 0.3s var(--ease-out);
}

.slider-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--white);
}

.slider-counter .current {
    font-weight: 600;
    font-size: 18px;
}

.slider-counter .separator {
    opacity: 0.5;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--white);
    z-index: 20;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollWheel 2s var(--ease-out) infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

.scroll-indicator span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.scroll-indicator svg {
    width: 16px;
    height: 16px;
    animation: scrollArrow 2s var(--ease-out) infinite;
}

@keyframes scrollArrow {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(5px); opacity: 0.5; }
}

/* Hero Social */
.hero-social {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 20;
}

.hero-social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.hero-social a:hover {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.1);
}

.hero-social a svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   Marquee Section
   ======================================== */
.marquee-section {
    background: var(--primary);
    padding: 20px 0;
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
}

.marquee-content svg {
    width: 8px;
    height: 8px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-out);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg,
.btn-large {
    padding: 18px 36px;
    font-size: 15px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

.btn-magnetic {
    transition: var(--transition);
}

/* ========================================
   Section Styles
   ======================================== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-badge svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.section-badge span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-badge {
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

.section-title span {
    display: inline;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.section-desc {
    font-size: 17px;
    color: var(--gray);
    margin-top: 16px;
    max-width: 600px;
}

.section-header.center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    padding: var(--section-padding) 0;
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon svg {
    color: var(--white);
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.feature-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out);
}

.feature-link:hover svg {
    transform: translateX(4px);
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

/* About Grid - Simple Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    padding-right: 20px;
}

.about-content .section-badge {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.about-features .feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--light);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.about-features .feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.about-features .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-features .feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.about-features .feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}

.about-features .feature-card p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        padding-right: 0;
    }
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    animation: badgePulse 3s var(--ease-in-out) infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-content {
    text-align: center;
    color: var(--white);
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-img-secondary {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    width: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.about-pattern {
    position: absolute;
    bottom: -40px;
    left: 40px;
    width: 100px;
    height: 100px;
    color: var(--primary);
    opacity: 0.3;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-content > p {
    color: var(--gray);
    margin-bottom: 32px;
}

.about-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-item svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

.check-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.play-btn svg {
    width: 20px;
    height: 20px;
}

.play-btn:hover svg {
    transform: scale(1.2);
}

/* ========================================
   Vision & Mission Section
   ======================================== */
.vm-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.vm-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
}

.vm-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 48px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.vm-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.vm-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.vm-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--white);
    margin-bottom: 16px;
}

.vm-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* ========================================
   Products Section
   ======================================== */
.products-section {
    padding: var(--section-padding) 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.03) 0%, transparent 100%);
    pointer-events: none;
}

/* ========================================
   Category List (Resimsiz - Anasayfa)
   ======================================== */
.category-list-wrap {
    margin-bottom: 48px;
}

.category-list-minimal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.category-list-minimal li {
    margin: 0;
}

.category-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--light-2);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.category-list-item:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(201, 116, 86, 0.06) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: 0 8px 24px rgba(201, 116, 86, 0.12);
    transform: translateX(6px);
}

.category-list-num {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    min-width: 36px;
    text-align: center;
}

.category-list-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    flex: 1;
}

.category-list-desc {
    font-size: 14px;
    color: var(--gray);
    max-width: 280px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-list-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s var(--ease-out);
}

.category-list-arrow svg {
    width: 20px;
    height: 20px;
}

.category-list-item:hover .category-list-arrow {
    background: var(--primary);
    color: var(--white);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .category-list-desc {
        display: none;
    }
    .category-list-item {
        padding: 16px 20px;
        gap: 14px;
    }
    .category-list-name {
        font-size: 15px;
    }
}

/* ========================================
   Category Showcase - Premium Design (Legacy)
   ======================================== */
.category-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.category-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 420px;
    cursor: pointer;
    transition: all 0.5s var(--ease-out);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    transition: border-color 0.4s var(--ease-out);
    z-index: 4;
    pointer-events: none;
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    z-index: 10;
}

.category-card:hover::before {
    border-color: rgba(255, 255, 255, 0.3);
}

.category-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.category-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.category-card:hover .category-card-bg img {
    transform: scale(1.15);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    transition: all 0.5s var(--ease-out);
}

/* Category Color Themes */
.category-kitchen-group .category-card-overlay {
    background: linear-gradient(180deg, 
        rgba(201, 116, 86, 0.1) 0%, 
        rgba(201, 116, 86, 0.7) 50%,
        rgba(139, 90, 60, 0.95) 100%);
}

.category-kitchen .category-card-overlay {
    background: linear-gradient(180deg, 
        rgba(168, 93, 66, 0.1) 0%, 
        rgba(168, 93, 66, 0.7) 50%,
        rgba(120, 70, 50, 0.95) 100%);
}

.category-garden .category-card-overlay {
    background: linear-gradient(180deg, 
        rgba(74, 124, 89, 0.1) 0%, 
        rgba(74, 124, 89, 0.7) 50%,
        rgba(45, 80, 55, 0.95) 100%);
}

.category-food-packaging .category-card-overlay {
    background: linear-gradient(180deg, 
        rgba(92, 107, 192, 0.1) 0%, 
        rgba(92, 107, 192, 0.7) 50%,
        rgba(63, 81, 181, 0.95) 100%);
}

.category-card:hover .category-card-overlay {
    opacity: 0.95;
}

.category-card-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.category-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s var(--ease-out);
}

.category-icon-wrapper svg {
    width: 40px;
    height: 40px;
    color: var(--white);
    transition: all 0.4s var(--ease-out);
}

.category-card:hover .category-icon-wrapper {
    background: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.category-card:hover .category-icon-wrapper svg {
    color: var(--primary);
}

.category-garden:hover .category-icon-wrapper svg {
    color: #4A7C59;
}

.category-food-packaging:hover .category-icon-wrapper svg {
    color: #5C6BC0;
}

.category-card-content h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    transform: translateY(20px);
    opacity: 0.9;
    transition: all 0.4s var(--ease-out);
}

.category-card:hover .category-card-content h3 {
    transform: translateY(0);
    opacity: 1;
}

.category-card-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 16px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s var(--ease-out) 0.1s;
}

.category-card:hover .category-card-content p {
    transform: translateY(0);
    opacity: 1;
}

.category-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s var(--ease-out) 0.15s;
}

.category-card:hover .category-stats {
    transform: translateY(0);
    opacity: 1;
}

.category-stats span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.category-stats strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--white);
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s var(--ease-out) 0.2s;
    width: fit-content;
}

.category-card:hover .category-link {
    transform: translateY(0);
    opacity: 1;
}

.category-link:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(0) scale(1.05);
}

.category-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-out);
}

.category-link:hover svg {
    transform: translateX(4px);
}

/* Shine Effect */
.category-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(30deg);
    transition: all 0.8s var(--ease-out);
    z-index: 3;
    pointer-events: none;
}

.category-card:hover .category-shine {
    left: 150%;
}

/* Category Features Strip */
.category-features-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    padding: 28px 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.feature-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.feature-strip-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-strip-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}

/* Category sublinks (parent category page) */
.category-sublinks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 20px;
    margin-bottom: 32px;
    padding: 16px 20px;
    background: var(--light);
    border-radius: var(--radius-md);
}
.category-sublinks-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-right: 4px;
}
.category-sublink {
    font-size: 14px;
    color: var(--gray);
    text-decoration: none;
    padding: 6px 14px;
    background: var(--white);
    border-radius: var(--radius-full);
    transition: var(--transition);
}
.category-sublink:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
}

@media (max-width: 768px) {
    .category-sublinks {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        margin-bottom: 24px;
        gap: 10px;
    }
    .category-sublinks-label {
        flex: 0 0 auto;
    }
    .category-sublink {
        flex: 0 0 auto;
        scroll-snap-align: start;
        white-space: nowrap;
    }
}

/* Product Filters - Enhanced */
.product-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.filter-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    background: var(--white);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.filter-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-view-btn {
    transform: translateY(0);
    opacity: 1;
}

.product-view-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.product-view-btn svg {
    width: 18px;
    height: 18px;
}

/* Product Badge (Single) */
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    z-index: 4;
}

.product-badge.new {
    background: var(--accent);
    color: var(--white);
}

.product-badge.bestseller {
    background: var(--primary);
    color: var(--white);
}

.product-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.badge {
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
}

.badge-new { background: var(--accent); color: var(--white); }
.badge-best { background: var(--primary); color: var(--white); }
.badge-eco { background: #2D6A4F; color: var(--white); }
.badge-special { background: #7C3AED; color: var(--white); }
.badge-garden { background: #4A7C59; color: var(--white); }
.badge-packaging { background: #5C6BC0; color: var(--white); }

.product-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.action-btn svg {
    width: 20px;
    height: 20px;
    color: var(--dark);
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--primary);
}

.action-btn:hover svg {
    color: var(--white);
}

.product-info {
    padding: 24px;
}

.product-category {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-desc {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.6;
    display: block;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.product-info p,
.product-info .product-card-desc {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 16px;
}
.product-card-spec {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

@media (max-width: 768px) {
    .product-link {
        min-height: 44px;
        padding: 8px 0;
        align-items: center;
    }
}

.product-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out);
}

.product-link:hover svg {
    transform: translateX(4px);
}

.products-cta {
    text-align: center;
}

/* ========================================
   Quality Section
   ======================================== */
.quality-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.quality-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 60px 0;
}

.quality-card {
    flex: 0 0 auto;
    width: 160px;
    text-align: center;
    padding: 24px 16px;
    background: var(--light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.quality-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.quality-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 16px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.quality-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
    transition: var(--transition);
}

.quality-card:hover .quality-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(201, 116, 86, 0.25);
}

.quality-card:hover .quality-icon svg {
    color: var(--primary);
    transform: scale(1.1);
}

/* For PNG/JPG images in quality icons - NO filter on hover */
.quality-card .quality-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    transition: transform 0.4s var(--ease-out);
    /* No filter applied - keeps original image colors */
}

.quality-card:hover .quality-icon img {
    transform: scale(1.15);
    /* Image stays the same color, only scales up */
}

/* Warning card (No stovetop) */
.quality-card.warning .quality-icon {
    background: linear-gradient(145deg, #fff5f5, #fee2e2);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.08);
}

.quality-card.warning:hover .quality-icon {
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
}

.quality-card h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.certificates-showcase {
    text-align: center;
    margin-top: 60px;
}

.certificates-showcase h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 40px;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.cert-card {
    padding: 24px 16px;
    background: var(--light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.cert-card:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.cert-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    transition: var(--transition);
}

.cert-desc {
    font-size: 11px;
    color: var(--gray);
    transition: var(--transition);
}

.cert-card:hover .cert-name,
.cert-card:hover .cert-desc {
    color: var(--white);
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery-section {
    padding: var(--section-padding) 0;
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(var(--primary-rgb), 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.gallery-expand {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-expand {
    opacity: 1;
    transform: scale(1);
}

.gallery-expand svg {
    width: 18px;
    height: 18px;
    color: var(--dark);
}

.gallery-expand:hover {
    background: var(--primary);
}

.gallery-expand:hover svg {
    color: var(--white);
}

/* Gallery Image - no white filter */
.gallery-item img {
    transition: transform 0.6s var(--ease-out), filter 0s;
}

.gallery-item:hover img {
    filter: none; /* Keep original colors */
}

.gallery-zoom {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1);
}

.gallery-zoom svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.gallery-zoom:hover {
    background: var(--dark);
}

.gallery-zoom:hover svg {
    color: var(--white);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--light);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 24px;
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 16px;
}

.testimonial-content p {
    font-size: 15px;
    color: var(--dark);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.author-info {
    flex: 1;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.author-title {
    font-size: 13px;
    color: var(--gray);
}

.rating {
    display: flex;
    gap: 2px;
}

.rating svg {
    width: 16px;
    height: 16px;
    color: #F59E0B;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info .section-title {
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.card-content h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.card-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 4px;
}

.card-content a {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

.card-content a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    color: var(--gray);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.social-links a:hover svg {
    color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: 32px;
    color: var(--dark);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid var(--light-2);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group label {
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--gray);
    pointer-events: none;
    transition: var(--transition);
    background: var(--white);
    padding: 0 8px;
}

.form-group textarea + label {
    top: 20px;
    transform: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--primary);
}

.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group > svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--gray-light);
    pointer-events: none;
    transition: var(--transition);
}

.form-group textarea ~ svg {
    top: 20px;
    transform: none;
}

.form-group input:focus ~ svg,
.form-group textarea:focus ~ svg {
    color: var(--primary);
}

/* Map */
.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ========================================
   Statistics Section
   ======================================== */
.stats-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.stat-content {
    color: var(--white);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    opacity: 0.9;
}

/* ========================================
   Process Section
   ======================================== */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 700;
    color: rgba(var(--primary-rgb), 0.1);
    z-index: 0;
}

.process-icon {
    position: relative;
    z-index: 1;
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.process-icon svg {
    width: 48px;
    height: 48px;
    color: var(--white);
}

.process-step:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-primary);
}

.process-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

.process-connector {
    flex: 0 0 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin-top: 50px;
    border-radius: 2px;
    position: relative;
}

.process-connector::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid var(--primary-light);
}

/* ========================================
   Partners Section
   ======================================== */
.partners-section {
    padding: 60px 0;
    background: var(--light);
    overflow: hidden;
}

.partners-header {
    text-align: center;
    margin-bottom: 40px;
}

.partners-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.partners-header p {
    font-size: 15px;
    color: var(--gray);
}

.partners-marquee {
    overflow: hidden;
    position: relative;
}

.partners-marquee::before,
.partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--light), transparent);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(90deg, transparent, var(--light));
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: partnersMarquee 30s linear infinite;
}

@keyframes partnersMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.partner-logo span {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 2px;
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 116, 86, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
}

.page-header .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header .breadcrumb a:hover {
    color: var(--primary);
}

.page-header .breadcrumb .separator {
    color: rgba(255,255,255,0.4);
}

.page-header .breadcrumb .current {
    color: var(--primary);
}

/* ========================================
   Breadcrumb Section (Product Detail)
   ======================================== */
.breadcrumb-section {
    background: var(--light);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumb-section .breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-section .breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-section .breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb-section .breadcrumb li::after {
    content: '/';
    margin: 0 12px;
    color: var(--gray-light);
}

.breadcrumb-section .breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb-section .breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.breadcrumb-section .breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb-section .breadcrumb li.active span {
    color: var(--dark);
    font-weight: 500;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    position: relative;
    z-index: var(--z-base);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--white);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-white svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   Product Detail Section
   ======================================== */
.product-detail-section {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

/* Dikdörtgen görsel alanı + tıklayınca büyütme */
.product-main-image-wrap {
    position: relative;
    margin-bottom: 16px;
    cursor: pointer;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.product-main-image {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--light);
    display: block;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-image-zoom-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.product-image-zoom-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
}

.product-image-zoom-btn svg {
    width: 24px;
    height: 24px;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--primary);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detail {
    padding-top: 20px;
}

.product-category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.product-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.product-sku {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius-md);
}

.product-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.product-features .feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.product-specs {
    margin-bottom: 30px;
}

.product-specs h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.product-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-specs li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-2);
}

.product-specs li strong {
    color: var(--dark);
}

.product-specs li span {
    color: var(--gray);
}

/* Catalog-style spec table */
.product-specs-table .spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.product-specs-table .spec-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--light-2);
    vertical-align: top;
}
.product-specs-table .spec-table td:first-child {
    color: var(--gray);
    font-weight: 500;
    width: 40%;
}
.product-specs-table .spec-table td:last-child {
    color: var(--dark);
    font-weight: 600;
}
.product-specs-table .spec-table tr:last-child td {
    border-bottom: none;
}

/* Ürün detay - özellik kartları (katalog tarzı) */
.product-specs-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.spec-card {
    padding: 16px 18px;
    background: var(--light);
    border-radius: var(--radius-md);
    border: 1px solid var(--light-2);
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s ease;
}

.spec-card:hover {
    border-color: var(--primary);
    background: rgba(201, 116, 86, 0.06);
}

.spec-card .spec-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
}

.spec-card .spec-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    font-family: var(--font-display);
}

.product-description-block {
    margin-bottom: 28px;
}

.product-detail-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.product-colors {
    margin-bottom: 30px;
}

.product-colors h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: relative;
    transition: transform 0.3s ease;
}

.color-option:hover {
    transform: scale(1.1);
}

.color-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 12px;
    background: var(--dark);
    color: var(--white);
    font-size: 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.color-option:hover .color-tooltip {
    opacity: 1;
    visibility: visible;
}

.product-actions-detail {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.product-actions-detail .btn {
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

/* ========================================
   Related Products Section
   ======================================== */
.related-products-section {
    padding: 80px 0;
    background: var(--light);
}

.related-products-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.related-products-section h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
}

/* ========================================
   No Products Message
   ======================================== */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
}

/* ========================================
   Error 404 Section
   ======================================== */
.error-404-section {
    padding: 80px 0 120px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.error-404-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}
.error-404-code {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(80px, 20vw, 160px);
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 16px;
}
.error-404-content h1 {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark);
}
.error-404-content p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}
.error-404-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.error-404-actions .btn { min-width: 140px; }

.no-products p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 20px;
}

/* ========================================
   Newsletter Form
   ======================================== */
.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 15px;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.15);
}

.newsletter-form button {
    padding: 14px 28px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Newsletter Notification */
.newsletter-notification {
    position: fixed;
    bottom: 100px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    z-index: var(--z-modal);
    animation: slideInRight 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.newsletter-notification.success {
    background: linear-gradient(135deg, #10B981, #059669);
}

.newsletter-notification.error {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.newsletter-notification svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ========================================
   Responsive - Page Specific
   ======================================== */
@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .product-specs-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .spec-card {
        padding: 14px 16px;
    }
    
    .spec-card .spec-value {
        font-size: 16px;
    }
    
    .product-main-image {
        border-radius: var(--radius-md);
        aspect-ratio: 1;
        max-height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--light);
    }
    
    .product-main-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .product-thumbnails {
        overflow-x: auto;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        margin: 0 -4px;
    }
    
    .product-thumbnail {
        flex: 0 0 72px;
        width: 72px;
        height: 72px;
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .product-actions-detail {
        flex-direction: column;
    }
    
    .product-actions-detail .btn {
        min-width: 100%;
        justify-content: center;
    }
    
    .product-title {
        font-size: clamp(22px, 5vw, 28px);
    }
    
    .product-specs-table .spec-table td {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .product-features {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .product-detail-section {
        padding: 32px 0 48px;
    }
    
    .breadcrumb-section .breadcrumb {
        font-size: 13px;
    }
    
    .breadcrumb-section .breadcrumb li::after {
        margin: 0 8px;
    }
}

/* ========================================
   Footer - Premium Modern Design
   ======================================== */
.footer {
    background: linear-gradient(180deg, var(--dark) 0%, #0D0D0D 100%);
    color: var(--white);
    position: relative;
    z-index: calc(var(--z-base) + 1);
    overflow: visible;
}

/* Footer Background Pattern */
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 116, 86, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 116, 86, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    z-index: 0;
    pointer-events: none;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
    fill: var(--light);
}

/* Footer container: above wave so newsletter is never obscured */
.footer .container {
    position: relative;
    z-index: 1;
}

/* Newsletter Section */
.footer-newsletter {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    margin: 0 auto;
    max-width: 1000px;
    padding: 50px 60px;
    border-radius: var(--radius-xl);
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--shadow-xl);
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.newsletter-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.newsletter-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 450px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 15px;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 16px 32px;
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button {
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-form button svg {
    width: 18px;
    height: 18px;
}

.newsletter-form button:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.newsletter-form button:hover svg {
    transform: translateX(3px);
}

/* Footer Main Content */
.footer-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 50px;
    padding: 40px 0 60px;
}

.footer-brand {
    padding-right: 30px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 150px;
    height: auto;
    max-height: 64px;
    object-fit: contain;
    display: block;
    transition: opacity var(--transition);
}

.footer-logo:hover .footer-logo-img {
    opacity: 0.85;
}

.footer-brand > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.9;
    margin-bottom: 28px;
}

/* Footer Stats */
.footer-stats {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 28px;
}

.footer-stat {
    text-align: center;
}

.footer-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.footer-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: translateY(100%);
    transition: transform 0.3s var(--ease-out);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.footer-social a:hover::before {
    transform: translateY(0);
}

.footer-social a:hover svg {
    color: var(--white);
    transform: scale(1.1);
}

/* Footer Columns */
.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s var(--ease-out);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-col ul li a:hover::before {
    width: 12px;
}

/* Footer Contact */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-contact li svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
}

.footer-contact li a:hover {
    color: var(--primary);
}

/* Newsletter Icon Enhancement */
.newsletter-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.footer-newsletter {
    display: flex;
    align-items: center;
    gap: 30px;
}

.newsletter-form button {
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-form button svg {
    width: 18px;
    height: 18px;
}

/* Footer Working Hours */
.footer-working-hours {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-working-hours h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.footer-working-hours p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Certifications Bar */
.footer-certifications {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 32px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cert-icon {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon svg {
    width: 14px;
    height: 14px;
    color: var(--white);
}

.cert-item span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
}

.footer-bottom-right span {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.turkey-flag {
    width: 24px;
    height: 16px;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-badges img {
    height: 45px;
    border-radius: 8px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-badges img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Back to Top in Footer */
.footer-back-top {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-back-top:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-50%) translateY(-5px);
}

.footer-back-top svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   Scroll to Top & WhatsApp
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: var(--z-sticky);
    box-shadow: var(--shadow-primary);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-sticky);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s var(--ease-in-out) infinite;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 16px;
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-md);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* ========================================
   Catalog Download Button
   ======================================== */
.catalog-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-sticky);
    text-decoration: none;
}

.catalog-btn-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px 14px 18px;
    background: linear-gradient(135deg, #C97456, #a85d42);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(201, 116, 86, 0.4);
    transition: all 0.3s var(--ease-out);
    position: relative;
    z-index: 2;
}

.catalog-btn:hover .catalog-btn-inner {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 116, 86, 0.5);
}

.catalog-btn svg {
    width: 24px;
    height: 24px;
    color: #fff;
    flex-shrink: 0;
}

.catalog-btn span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.catalog-btn-pulse {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #C97456, #a85d42);
    border-radius: 50px;
    z-index: 1;
    animation: catalogPulse 2s var(--ease-in-out) infinite;
}

@keyframes catalogPulse {
    0%, 100% { 
        opacity: 0.4;
        transform: scale(1);
    }
    50% { 
        opacity: 0;
        transform: scale(1.15);
    }
}

/* Catalog button hover effects */
.catalog-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2));
    border-radius: 50px;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
    pointer-events: none;
}

.catalog-btn:hover::before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .catalog-btn {
        bottom: 16px;
        left: 16px;
    }
    
    .catalog-btn-inner {
        padding: 12px 18px 12px 14px;
    }
    
    .catalog-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .catalog-btn span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .catalog-btn-inner {
        padding: 12px 14px;
    }
    
    .catalog-btn span {
        display: none;
    }
    
    .catalog-btn-inner {
        border-radius: 50%;
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
    }
    
    .catalog-btn-pulse {
        border-radius: 50%;
    }
}

/* ========================================
   Modal & Lightbox
   ======================================== */
.modal,
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: var(--z-modal);
}

.modal.active,
.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.modal-close,
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.modal-close:hover,
.lightbox-close:hover {
    background: var(--primary);
}

.modal-close svg,
.lightbox-close svg {
    width: 24px;
    height: 24px;
}

.modal-content {
    width: 90%;
    max-width: 900px;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }

.lightbox-nav:hover {
    background: var(--primary);
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-lg);
}

/* ========================================
   Product Detail Modal
   ======================================== */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.product-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.product-modal-content {
    position: relative;
    width: 95%;
    max-width: 1000px;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s var(--ease-out);
}

.product-modal.active .product-modal-content {
    transform: scale(1) translateY(0);
}

.product-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    z-index: 10;
    transition: var(--transition);
}

.product-modal-close:hover {
    background: var(--primary);
    color: var(--white);
}

.product-modal-close svg {
    width: 20px;
    height: 20px;
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 90vh;
    overflow-y: auto;
}

.product-modal-gallery {
    padding: 32px;
    background: var(--light);
}

.product-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
}

.product-main-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
}

.product-thumbnail {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: var(--transition);
}

.product-thumbnail:hover,
.product-thumbnail.active {
    opacity: 1;
    border-color: var(--primary);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal-info {
    padding: 40px;
    overflow-y: auto;
}

.product-modal-category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.product-modal-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.product-modal-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-modal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--light-2);
}

.product-modal-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--light);
    border-radius: var(--radius-full);
}

.product-modal-features .feature-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.product-modal-features .feature-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
}

.product-modal-specs h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.product-modal-specs ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.product-modal-specs ul li {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--light);
    border-radius: var(--radius-md);
    font-size: 13px;
}

.product-modal-specs ul li strong {
    color: var(--dark);
}

.product-modal-specs ul li span {
    color: var(--gray);
}

.product-modal-actions {
    display: flex;
    gap: 12px;
}

.product-modal-actions .btn {
    flex: 1;
    justify-content: center;
}

/* ========================================
   Search Results Modal
   ======================================== */
.search-results-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.4s var(--ease-out);
    overflow-y: auto;
}

.search-results-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-results-header {
    background: var(--dark);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.search-results-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.search-results-top h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.search-results-close {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.search-results-close:hover {
    background: var(--primary);
}

.search-results-close svg {
    width: 20px;
    height: 20px;
}

.search-results-info {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.search-results-info #searchResultsCount {
    font-weight: 700;
    color: var(--primary-light);
}

.search-results-info #searchQuery {
    font-weight: 600;
    color: var(--white);
}

.search-results-body {
    padding: 48px 0;
    min-height: calc(100vh - 120px);
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.search-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.search-no-results svg {
    width: 80px;
    height: 80px;
    color: var(--gray-light);
    margin-bottom: 24px;
}

.search-no-results h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
}

.search-no-results p {
    font-size: 15px;
    color: var(--gray);
}

/* ========================================
   Scroll Animations
   ======================================== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    /* Dropdown Menu */
    .dropdown-menu {
        min-width: 600px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Stats Section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Process Section */
    .process-timeline {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .process-connector {
        display: none;
    }
    
    .process-step {
        flex: 0 0 calc(33.333% - 20px);
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image-wrapper {
        max-width: 350px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-card {
        min-height: 380px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .certificates-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    /* Header Mobile */
    .header-top {
        display: none;
    }
    
    /* Hide desktop-only nav elements */
    .nav-cta-btn,
    .dropdown-menu {
        display: none !important;
    }
    
    .has-dropdown .dropdown-arrow {
        display: none;
    }
    
    /* Stats Section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-item {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    /* Process Section */
    .process-step {
        flex: 0 0 calc(50% - 15px);
    }
    
    .process-icon {
        width: 80px;
        height: 80px;
    }
    
    .process-icon svg {
        width: 36px;
        height: 36px;
    }
    
    /* Partners */
    .partners-track {
        gap: 40px;
    }
    
    /* Footer */
    .footer-newsletter {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-icon {
        margin: 0 auto;
    }
    
    .footer-certifications {
        gap: 16px;
    }
    
    .cert-item {
        padding: 10px 16px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        height: 100svh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 24px 40px;
        box-shadow: -8px 0 40px rgba(0,0,0,0.12);
        transition: right 0.35s var(--ease-out);
        gap: 8px;
        overflow-y: auto;
        z-index: calc(var(--z-header) + 1);
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--dark);
        padding: 14px 20px;
        width: 100%;
        font-size: 15px;
    }
    
    .nav-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        padding: 13px 10px;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-img-secondary {
        display: none;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    /* Footer Mobile */
    .footer-newsletter {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        transform: translateY(-40px);
    }
    
    .newsletter-form {
        max-width: 100%;
        flex-direction: column;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col ul li a::before {
        display: none;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-contact li {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-social,
    .scroll-indicator {
        display: none;
    }
    
    .slider-nav {
        bottom: 24px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
    }
    
    .hero-content {
        padding: 100px 0 100px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    /* Stats Section Mobile */
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 24px 20px;
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
    }
    
    .stat-icon {
        margin: 0;
        width: 60px;
        height: 60px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    /* Process Section Mobile */
    .process-section {
        padding: 60px 0;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .process-number {
        font-size: 48px;
    }
    
    /* Partners Mobile */
    .partners-section {
        padding: 40px 0;
    }
    
    .partner-logo {
        padding: 16px 24px;
    }
    
    .partner-logo span {
        font-size: 16px;
    }
    
    /* Footer Certifications Mobile */
    .footer-certifications {
        gap: 12px;
        padding: 24px 0;
    }
    
    .cert-item {
        padding: 8px 12px;
    }
    
    .cert-item span {
        font-size: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-left {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Product Modal Responsive */
    .product-modal-body {
        grid-template-columns: 1fr;
    }
    
    .product-modal-gallery {
        padding: 20px;
    }
    
    .product-main-image img {
        height: 250px;
    }
    
    .product-modal-info {
        padding: 24px;
    }
    
    .product-modal-title {
        font-size: 22px;
    }
    
    .product-modal-specs ul {
        grid-template-columns: 1fr;
    }
    
    .product-modal-actions {
        flex-direction: column;
    }
    
    /* Search Results Responsive */
    .search-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-value {
        font-size: 26px;
    }
    
    .slider-btn {
        width: 44px;
        height: 44px;
    }
    
    .progress-track {
        width: 80px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Category Showcase Mobile */
    .category-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        min-height: 320px;
    }
    
    .category-card-content {
        padding: 24px;
    }
    
    .category-icon-wrapper {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .category-icon-wrapper svg {
        width: 32px;
        height: 32px;
    }
    
    .category-card-content h3 {
        font-size: 22px;
    }
    
    .category-card-content p,
    .category-stats,
    .category-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    .category-features-strip {
        gap: 20px;
        padding: 20px 24px;
        border-radius: var(--radius-lg);
    }
    
    .feature-strip-item {
        flex: 0 0 calc(50% - 10px);
        justify-content: center;
    }
    
    .feature-strip-item span {
        font-size: 12px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-features {
        gap: 16px;
    }
    
    .quality-card {
        width: 140px;
        padding: 20px 12px;
    }
    
    .quality-icon {
        width: 60px;
        height: 60px;
    }
    
    .quality-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery-item.large,
    .gallery-item.tall {
        grid-column: auto;
        grid-row: auto;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-col {
        grid-column: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-bottom-left {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-checklist {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    :root {
        --container-padding: 16px;
    }
    
    .hero-badge {
        padding: 8px 14px;
    }
    
    .hero-badge span {
        font-size: 10px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    /* Search Results Mobile */
    .search-results-grid {
        grid-template-columns: 1fr;
    }
    
    .search-results-top h2 {
        font-size: 18px;
    }
    
    .language-switcher {
        padding: 2px;
    }
    
    .lang-btn {
        padding: 6px 8px;
    }
    
    .lang-btn span {
        display: none;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    /* Category Cards Mobile Small */
    .category-card {
        min-height: 280px;
    }
    
    .category-card-content h3 {
        font-size: 20px;
    }
    
    .category-card-content p {
        font-size: 13px;
    }
    
    .category-link {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .category-features-strip {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
    }
    
    .feature-strip-item {
        flex: 0 0 100%;
        justify-content: flex-start;
    }
    
    .product-filters {
        gap: 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding-bottom: 8px;
        margin-bottom: 32px;
    }
    
    .filter-btn {
        padding: 12px 20px;
        font-size: 13px;
        flex: 0 0 auto;
        scroll-snap-align: start;
        min-height: 44px;
    }
    
    .quality-features {
        gap: 12px;
    }
    
    .quality-card {
        width: calc(50% - 6px);
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .whatsapp-btn {
        width: 54px;
        height: 54px;
    }
    
    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .scroll-top {
        width: 44px;
        height: 44px;
        bottom: calc(80px + env(safe-area-inset-bottom, 0px));
        right: calc(16px + env(safe-area-inset-right, 0px));
    }
    
    .whatsapp-btn {
        right: calc(16px + env(safe-area-inset-right, 0px));
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }
    
    .catalog-btn {
        left: calc(16px + env(safe-area-inset-left, 0px));
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .product-actions {
        opacity: 1;
        transform: none;
    }
    
    .gallery-overlay {
        opacity: 1;
        background: rgba(var(--primary-rgb), 0.6);
    }
    
    .gallery-zoom {
        transform: scale(1);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .hero-slide .slide-bg {
        transition: none;
    }
}

/* Print Styles */
@media print {
    .header,
    .scroll-top,
    .whatsapp-btn,
    .catalog-btn,
    .slider-nav,
    .hero-social,
    .scroll-indicator,
    .modal,
    .lightbox {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
