/* ================================================
   EGE SHOPPING - PROFESSIONAL MARKET STYLE SHEET
   v2.0 - Modern Grid Layout
   ================================================ */

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
    /* Colors - Warm & Vibrant */
    --clr-primary: #D4451A;
    --clr-primary-dark: #B83A15;
    --clr-primary-light: #F06B45;
    --clr-secondary: #F5A623;
    --clr-secondary-light: #FFD166;
    --clr-accent: #2D6A4F;
    --clr-accent-light: #40916C;

    /* Neutrals */
    --clr-dark: #1A1A2E;
    --clr-text: #2C2C3A;
    --clr-text-light: #6B7280;
    --clr-bg: #FFFCF7;
    --clr-bg-warm: #FFF8F0;
    --clr-bg-card: #FFFFFF;
    --clr-border: #F0E6D8;
    --clr-border-light: #F5EDE3;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #D4451A, #F5A623);
    --gradient-warm: linear-gradient(135deg, #FFF8F0 0%, #FFFCF7 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 26, 46, 0.85), rgba(44, 44, 58, 0.6));
    --gradient-card: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,248,240,0.6) 100%);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px rgba(212, 69, 26, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background-color: var(--clr-bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ---------- NAVİGASYON ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 252, 247, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
    padding: var(--space-sm) 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1001;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-primary-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.navbar.scrolled .logo-img {
    width: 36px;
    height: 36px;
}

.navbar:not(.scrolled) .logo-img {
    border-color: rgba(255, 255, 255, 0.8);
}

.logo:hover .logo-img {
    transform: scale(1.08) rotate(5deg);
    border-color: var(--clr-secondary);
}

.logo-text {
    color: var(--clr-dark);
    transition: var(--transition-base);
}

.navbar:not(.scrolled) .logo-text {
    color: #fff;
}

.logo-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: var(--space-xs) 0;
}

.navbar.scrolled .nav-link {
    color: var(--clr-text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--clr-primary-light);
}

.navbar.scrolled .nav-link:hover {
    color: var(--clr-primary);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: var(--transition-base);
}

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background: var(--clr-dark);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition-base);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
    background: var(--clr-dark);
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
    background: var(--clr-dark);
}

/* ---------- HERO BÖLÜMÜ ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--clr-secondary-light);
    margin-bottom: var(--space-xl);
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
}

.gradient-text {
    background: linear-gradient(135deg, var(--clr-secondary-light), var(--clr-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(212, 69, 26, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 69, 26, 0.45);
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: var(--transition-base);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    padding: var(--space-xl) var(--space-2xl);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-2xl);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-secondary-light);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: var(--space-xs);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Category Shortcuts */
.hero-categories {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-cat-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1.2rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-full);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-base);
    cursor: pointer;
}

.hero-cat-link:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-2px);
}

.hero-cat-link .cat-emoji {
    font-size: 1.1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1.5s both;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ---------- SECTION HEADER ---------- */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: var(--space-md);
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 0 auto;
}

.section-desc {
    max-width: 600px;
    margin: var(--space-lg) auto 0;
    color: var(--clr-text-light);
    font-size: 1.05rem;
}

/* ---------- HAKKIMIZDA ---------- */
.about {
    padding: var(--space-5xl) 0;
    background: var(--clr-bg-warm);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-frame:hover .about-image {
    transform: scale(1.05);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.experience-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-text {
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: var(--space-lg);
}

.about-text {
    color: var(--clr-text-light);
    margin-bottom: var(--space-md);
    font-size: 1.02rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.feature-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md);
    background: var(--clr-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border-light);
    transition: var(--transition-base);
}

.feature-item:hover {
    border-color: var(--clr-primary-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--clr-dark);
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 0.82rem;
    color: var(--clr-text-light);
}

/* ---------- ÜRÜNLERİMİZ (PROFESSIONAL GRID) ---------- */
.products {
    padding: var(--space-5xl) 0;
    background: var(--clr-bg);
}

/* Category Filter Chips */
.product-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-top: var(--space-xl);
    padding: 0 var(--space-md);
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.55rem 1.3rem;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-full);
    background: var(--clr-bg-card);
    color: var(--clr-text-light);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--clr-primary-light);
    color: var(--clr-primary);
    background: rgba(212, 69, 26, 0.04);
}

.filter-btn.active {
    background: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary);
    box-shadow: 0 4px 15px rgba(212, 69, 26, 0.25);
}

.filter-btn .filter-emoji {
    font-size: 1rem;
}

.filter-btn .filter-count {
    font-size: 0.75rem;
    background: rgba(255,255,255,0.2);
    padding: 1px 6px;
    border-radius: var(--radius-full);
    margin-left: 2px;
}

.filter-btn.active .filter-count {
    background: rgba(255,255,255,0.25);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

/* Product Card */
.product-card {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border-light);
    overflow: hidden;
    transition: var(--transition-base);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #FAF6EE;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.06));
    transition: transform 0.4s ease;
}

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

.product-card-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 4px 12px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    z-index: 2;
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
    backdrop-filter: blur(2px);
    z-index: 3;
}

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

.product-card-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.7rem 1.5rem;
    background: #fff;
    color: var(--clr-primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.88rem;
    transform: translateY(10px);
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.product-card:hover .product-card-overlay-btn {
    transform: translateY(0);
}

.product-card-overlay-btn svg {
    width: 16px;
    height: 16px;
}

.product-card-body {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-primary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: var(--space-xs);
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.product-card-desc {
    font-size: 0.84rem;
    color: var(--clr-text-light);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--space-md);
    flex: 1;
}

.product-card-footer {
    display: flex;
    gap: var(--space-sm);
    margin-top: auto;
}

.card-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex: 1;
    padding: 0.65rem var(--space-md);
    background: var(--clr-accent);
    color: #fff;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.82rem;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.card-whatsapp-btn:hover {
    background: var(--clr-accent-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.2);
    color: #fff;
}

.card-whatsapp-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
    color: var(--clr-text-light);
}

.no-results-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    opacity: 0.5;
}

.no-results h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--clr-dark);
    margin-bottom: var(--space-sm);
}

/* ---------- PRODUCT QUICK VIEW MODAL ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-content {
    background: var(--clr-bg-card);
    border-radius: var(--radius-xl);
    max-width: 820px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-xl);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(26,26,46,0.08);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--clr-text-light);
    transition: var(--transition-base);
    z-index: 10;
}

.modal-close:hover {
    background: var(--clr-primary);
    color: #fff;
    transform: rotate(90deg);
}

.modal-image-section {
    background: #FAF6EE;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    min-height: 380px;
}

.modal-product-img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.08));
}

.modal-details {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
}

.modal-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
}

.modal-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.modal-badge {
    font-size: 0.72rem;
    padding: 4px 14px;
    background: rgba(212, 69, 26, 0.08);
    color: var(--clr-primary);
    border-radius: var(--radius-full);
    font-weight: 600;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: var(--space-md);
    line-height: 1.25;
}

.modal-description {
    font-size: 0.95rem;
    color: var(--clr-text-light);
    line-height: 1.65;
    margin-bottom: var(--space-lg);
}

.modal-features {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.modal-features li {
    position: relative;
    padding-left: var(--space-lg);
    font-size: 0.9rem;
    color: var(--clr-text);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--clr-accent);
    font-weight: 700;
    font-size: 0.95rem;
}

.modal-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: 0.9rem var(--space-lg);
    background: var(--clr-accent);
    color: #fff !important;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.15);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    margin-top: auto;
}

.modal-whatsapp-btn:hover {
    background: var(--clr-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(45, 106, 79, 0.25);
}

.modal-whatsapp-btn svg {
    width: 20px;
    height: 20px;
}

/* ---------- MARQUEE BANT ---------- */
.marquee-section {
    background: var(--gradient-primary);
    padding: var(--space-lg) 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    gap: var(--space-2xl);
    align-items: center;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
    padding-right: var(--space-2xl);
}

.marquee-content span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.3px;
}

.marquee-dot {
    opacity: 0.4;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- GALERİ (SLIDER) ---------- */
.gallery {
    padding: var(--space-5xl) 0;
    background: var(--clr-bg-warm);
}

.gallery-slider-wrapper {
    position: relative;
    max-width: 520px;
    margin: var(--space-xl) auto 0;
    padding: 0 var(--space-lg);
}

.gallery-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--clr-bg-card);
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active img {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base), backdrop-filter var(--transition-base);
    backdrop-filter: blur(0px);
    z-index: 3;
}

.slide-overlay h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
    transform: translateY(15px);
    transition: transform var(--transition-base);
}

.slide:hover .slide-overlay {
    opacity: 1;
    backdrop-filter: blur(5px);
}

.slide:hover .slide-overlay h3 {
    transform: translateY(0);
}

/* Navigation Arrows */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-base);
}

.slider-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-50%) scale(1.08);
}

.gallery-slider-wrapper .prev-btn { left: -10px; }
.gallery-slider-wrapper .next-btn { right: -10px; }

/* Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--clr-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.dot.active,
.dot:hover {
    background: var(--clr-primary);
    transform: scale(1.2);
}

/* ---------- NEDEN BİZ? (TRUST SECTION) ---------- */
.why-us {
    padding: var(--space-5xl) 0;
    background: var(--clr-bg);
    border-top: 1px solid var(--clr-border-light);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.why-us-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border-light);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

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

.why-us-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.why-us-icon {
    width: 72px;
    height: 72px;
    background: rgba(212, 69, 26, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto var(--space-lg);
    transition: var(--transition-base);
}

.why-us-card:hover .why-us-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(5deg);
}

.why-us-card:hover .why-us-icon-emoji {
    filter: grayscale(1) brightness(10);
}

.why-us-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: var(--space-sm);
}

.why-us-card p {
    font-size: 0.88rem;
    color: var(--clr-text-light);
    line-height: 1.6;
}

/* ---------- İLETİŞİM ---------- */
.contact {
    padding: var(--space-5xl) 0;
    background: var(--clr-bg-warm);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: var(--space-md);
}

.contact-text {
    color: var(--clr-text-light);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 69, 26, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-weight: 600;
    color: var(--clr-dark);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    line-height: 1.5;
}

/* Map embed */
.contact-map {
    margin-top: var(--space-lg);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-sm);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 180px;
    border: none;
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-light);
    transition: var(--transition-base);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 69, 26, 0.3);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--clr-border-light);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--clr-dark);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem var(--space-md);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--clr-text);
    background: var(--clr-bg);
    transition: var(--transition-base);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b0b0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(212, 69, 26, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

/* Submit Button */
.btn-submit {
    width: 100%;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

.btn-loading,
.btn-success {
    display: none;
    align-items: center;
    gap: var(--space-sm);
}

.btn-submit.loading .btn-text { display: none; }
.btn-submit.loading .btn-loading { display: flex; }
.btn-submit.success .btn-text { display: none; }
.btn-submit.success .btn-loading { display: none; }
.btn-submit.success .btn-success { display: flex; }
.btn-submit.success {
    background: var(--clr-accent);
    box-shadow: 0 4px 20px rgba(45, 106, 79, 0.35);
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

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

/* ---------- FOOTER ---------- */
.footer {
    background: var(--clr-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer .logo-text {
    color: #fff;
}

.footer-desc {
    margin-top: var(--space-md);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links-group h4,
.footer-newsletter h4 {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: var(--space-lg);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--clr-primary-light);
    padding-left: 4px;
}

.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem var(--space-md);
    background: rgba(255, 255, 255, 0.08);
    border: none;
    outline: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    padding: 0.75rem var(--space-lg);
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.newsletter-form button:hover {
    opacity: 0.9;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
    font-size: 0.85rem;
}

.footer-hours span {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
}

.footer-hours .day {
    color: rgba(255,255,255,0.5);
}

.footer-hours .time {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-2xl);
    left: var(--space-xl);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
}

.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsapp-pulse 2s ease-in-out infinite;
    z-index: -1;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-btn svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.whatsapp-float-label {
    background: var(--clr-dark);
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-base);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float-label {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsapp-pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 0; }
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: var(--space-2xl);
    right: var(--space-2xl);
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    z-index: 999;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ---------- ANIMATIONS ---------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Product card stagger animation */
.product-card {
    animation: cardFadeIn 0.5s ease both;
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--clr-bg);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-2xl);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links .nav-link {
        color: var(--clr-dark);
        font-size: 1.5rem;
        font-family: var(--font-heading);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-experience-badge {
        right: 10px;
        bottom: -10px;
        width: 100px;
        height: 100px;
    }

    .experience-number {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
        padding: var(--space-lg);
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

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

    .why-us-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .why-us-card {
        padding: var(--space-lg) var(--space-md);
    }

    .why-us-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .product-card-body {
        padding: var(--space-md);
    }

    .product-card-title {
        font-size: 1rem;
    }

    .product-card-desc {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }

    /* Modal responsive */
    .modal-content {
        grid-template-columns: 1fr;
        max-height: 95vh;
    }

    .modal-image-section {
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        min-height: 250px;
        padding: var(--space-xl);
    }

    .modal-details {
        padding: var(--space-xl);
    }

    .modal-title {
        font-size: 1.4rem;
    }

    /* Gallery responsive */
    .gallery-slider-wrapper {
        max-width: 100%;
        padding: 0 var(--space-sm);
    }
    
    .gallery-slider-wrapper .prev-btn { left: 5px; }
    .gallery-slider-wrapper .next-btn { right: 5px; }
    
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .slide-overlay {
        opacity: 1;
        background: linear-gradient(transparent, rgba(26, 26, 46, 0.7));
        align-items: flex-end;
        padding: var(--space-lg);
        justify-content: flex-start;
    }
    
    .slide-overlay h3 {
        font-size: 1.3rem;
        transform: translateY(0);
    }

    .hero-categories {
        gap: var(--space-sm);
    }

    .hero-cat-link {
        padding: 0.4rem 0.9rem;
        font-size: 0.78rem;
    }

    /* Floating WhatsApp smaller */
    .whatsapp-float-btn {
        width: 52px;
        height: 52px;
    }

    .whatsapp-float-btn svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: var(--space-3xl) var(--space-md);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .container {
        padding: 0 var(--space-md);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .product-card-img-wrapper {
        padding: var(--space-md);
    }

    .product-card-body {
        padding: var(--space-sm) var(--space-md) var(--space-md);
    }

    .product-card-title {
        font-size: 0.92rem;
    }

    .product-card-desc {
        display: none;
    }

    .card-whatsapp-btn {
        padding: 0.5rem;
        font-size: 0.75rem;
    }

    .card-whatsapp-btn span {
        display: none;
    }

    .filter-btn {
        padding: 0.45rem 0.9rem;
        font-size: 0.8rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }

    .why-us-card h3 {
        font-size: 0.95rem;
    }

    .why-us-card p {
        font-size: 0.78rem;
    }

    .modal-overlay {
        padding: var(--space-sm);
    }
}
