﻿@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --eu-bg: #f7f8fa;
    --eu-surface: #ffffff;
    --eu-surface-2: #f0f2f5;
    --eu-border: #e5e7ec;
    --eu-border-2: #d0d4dc;
    --eu-text: #0f172a;
    --eu-text-2: #475569;
    --eu-text-3: #94a3b8;
    --eu-text-4: #cbd5e1;
    --eu-primary: #6366f1;
    --eu-primary-dark: #4f46e5;
    --eu-primary-soft: #eef2ff;
    --eu-success: #10b981;
    --eu-success-soft: #d1fae5;
    --eu-warning: #f59e0b;
    --eu-danger: #ef4444;
    --eu-pink: #ec4899;
    --eu-shadow: 0 1px 3px rgba(15,23,42,0.04);
    --eu-shadow-lg: 0 8px 24px rgba(15,23,42,0.08);
}

.eu * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.eu {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--eu-bg);
    color: var(--eu-text);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ============ HEADER ============ */
.eu-header {
    background: var(--eu-surface);
    border-bottom: 1px solid var(--eu-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.eu-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.eu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.eu-logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--eu-primary), var(--eu-primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    transform: rotate(-4deg);
}

.eu-logo-name {
    font-size: 19px;
    font-weight: 800;
    color: var(--eu-text);
    letter-spacing: -0.5px;
}

.eu-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

    .eu-nav a {
        color: var(--eu-text-2);
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        padding: 8px 14px;
        border-radius: 8px;
        transition: all 0.15s;
    }

        .eu-nav a:hover {
            color: var(--eu-text);
            background: var(--eu-surface-2);
        }

        .eu-nav a.on {
            color: var(--eu-primary);
            background: var(--eu-primary-soft);
        }

.eu-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.eu-btn-text {
    color: var(--eu-text-2);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.15s;
}

    .eu-btn-text:hover {
        color: var(--eu-text);
        background: var(--eu-surface-2);
    }

.eu-btn-cta {
    padding: 9px 18px;
    background: var(--eu-text);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
}

    .eu-btn-cta:hover {
        transform: translateY(-1px);
    }

.eu-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    background: var(--eu-surface);
    border: 1px solid var(--eu-border-2);
    border-radius: 8px;
    cursor: pointer;
}

    .eu-hamburger span {
        display: block;
        width: 16px;
        height: 1.5px;
        background: var(--eu-text);
        transition: transform 0.2s, opacity 0.2s;
    }

    .eu-hamburger.open span:nth-child(1) {
        transform: translateY(5.5px) rotate(45deg);
    }

    .eu-hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .eu-hamburger.open span:nth-child(3) {
        transform: translateY(-5.5px) rotate(-45deg);
    }

.eu-drawer {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--eu-surface);
    border-bottom: 1px solid var(--eu-border);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--eu-shadow-lg);
}

    .eu-drawer.open {
        display: flex;
    }

    .eu-drawer a {
        color: var(--eu-text-2);
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        padding: 14px 16px;
        border-radius: 8px;
    }

        .eu-drawer a:hover {
            background: var(--eu-surface-2);
            color: var(--eu-text);
        }

/* ============ HERO ============ */
.eu-hero {
    background: linear-gradient(135deg, var(--eu-primary) 0%, var(--eu-primary-dark) 100%);
    padding: 64px 32px 72px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .eu-hero::before, .eu-hero::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        filter: blur(80px);
    }

    .eu-hero::before {
        width: 500px;
        height: 500px;
        background: rgba(236,72,153,0.3);
        top: -200px;
        right: -100px;
    }

    .eu-hero::after {
        width: 400px;
        height: 400px;
        background: rgba(99,102,241,0.4);
        bottom: -200px;
        left: -100px;
    }

.eu-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.eu-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
}

.eu-hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: euPulse 2s ease infinite;
}

@keyframes euPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.eu-hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

    .eu-hero-title em {
        font-style: italic;
        background: linear-gradient(135deg, #ffd23f, #ec4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.eu-hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 36px;
}

/* SEARCH BAR */
.eu-hero-search {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    padding: 8px;
    display: flex;
    gap: 4px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.15);
}

.eu-hero-search-input {
    flex: 1;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: var(--eu-text);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
}

    .eu-hero-search-input:focus {
        outline: none;
    }

    .eu-hero-search-input::placeholder {
        color: var(--eu-text-3);
    }

.eu-hero-search-btn {
    padding: 14px 28px;
    background: var(--eu-text);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.15s;
}

    .eu-hero-search-btn:hover {
        opacity: 0.85;
    }

.eu-hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.eu-hero-stat {
    text-align: center;
}

.eu-hero-stat-num {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.eu-hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
}

/* ============ KATEGORI BAND ============ */
.eu-cats {
    background: var(--eu-surface);
    border-bottom: 1px solid var(--eu-border);
    padding: 24px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .eu-cats::-webkit-scrollbar {
        display: none;
    }

.eu-cats-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.eu-cat-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--eu-surface);
    border: 1px solid var(--eu-border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--eu-text-2);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
    flex-shrink: 0;
}

    .eu-cat-btn:hover {
        border-color: var(--eu-text);
        color: var(--eu-text);
    }

    .eu-cat-btn.active {
        background: var(--eu-text);
        border-color: var(--eu-text);
        color: #fff;
    }

.eu-cat-btn-count {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    background: rgba(0,0,0,0.06);
    border-radius: 999px;
}

.eu-cat-btn.active .eu-cat-btn-count {
    background: rgba(255,255,255,0.15);
}

/* ============ MAIN ============ */
.eu-main {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 32px;
}

.eu-main-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 24px;
    flex-wrap: wrap;
}

.eu-main-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--eu-primary);
    margin-bottom: 6px;
}

.eu-main-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--eu-text);
    line-height: 1.1;
}

.eu-main-sort {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--eu-surface);
    border: 1px solid var(--eu-border);
    border-radius: 12px;
    padding: 4px;
}

.eu-sort-btn {
    padding: 8px 14px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: var(--eu-text-2);
    cursor: pointer;
    transition: all 0.15s;
}

    .eu-sort-btn:hover {
        color: var(--eu-text);
    }

    .eu-sort-btn.active {
        background: var(--eu-text);
        color: #fff;
    }

/* ============ ÜRÜN KARTLARI ============ */
.eu-products {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eu-product {
    background: var(--eu-surface);
    border: 1px solid var(--eu-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
}

    .eu-product:hover {
        border-color: var(--eu-border-2);
        box-shadow: var(--eu-shadow-lg);
    }

.eu-product-head {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 24px;
    padding: 20px 24px;
    align-items: center;
    cursor: pointer;
}

.eu-product-img {
    width: 120px;
    height: 120px;
    background: var(--eu-surface-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    opacity: 0.6;
    flex-shrink: 0;
}

.eu-product-info {
    min-width: 0;
}

.eu-product-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--eu-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.eu-product-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--eu-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.eu-product-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--eu-text-3);
    flex-wrap: wrap;
}

.eu-product-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.eu-product-store-count {
    color: var(--eu-text);
    font-weight: 600;
}

.eu-product-summary {
    text-align: right;
    flex-shrink: 0;
}

.eu-product-price-label {
    font-size: 11px;
    color: var(--eu-text-3);
    font-weight: 600;
    margin-bottom: 4px;
}

.eu-product-min-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--eu-success);
    letter-spacing: -0.5px;
    margin-bottom: 4px;
    line-height: 1;
}

.eu-product-price-range {
    font-size: 12px;
    color: var(--eu-text-3);
}

.eu-product-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 14px;
    background: var(--eu-text);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s;
}

    .eu-product-toggle:hover {
        opacity: 0.85;
    }

.eu-product-toggle-arrow {
    transition: transform 0.2s;
    display: inline-block;
}

.eu-product.open .eu-product-toggle-arrow {
    transform: rotate(180deg);
}

/* MAGAZA LİSTESİ */
.eu-stores {
    border-top: 1px solid var(--eu-border);
    background: var(--eu-surface-2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.eu-product.open .eu-stores {
    max-height: 800px;
}

.eu-stores-inner {
    padding: 20px 24px;
}

.eu-stores-head {
    display: grid;
    grid-template-columns: 60px 2fr 1fr 1fr 1fr 120px;
    gap: 16px;
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--eu-text-3);
    border-bottom: 1px solid var(--eu-border);
    margin-bottom: 8px;
}

.eu-store {
    display: grid;
    grid-template-columns: 60px 2fr 1fr 1fr 1fr 120px;
    gap: 16px;
    padding: 16px;
    background: var(--eu-surface);
    border-radius: 10px;
    align-items: center;
    margin-bottom: 8px;
    border: 1px solid transparent;
    transition: all 0.15s;
}

    .eu-store:hover {
        border-color: var(--eu-border);
        transform: translateX(4px);
    }

.eu-store-best {
    background: linear-gradient(135deg, rgba(16,185,129,0.06), transparent);
    border-color: rgba(16,185,129,0.3);
}

.eu-store-logo {
    width: 44px;
    height: 44px;
    background: var(--eu-surface-2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.eu-store-name {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.eu-store-name-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--eu-text);
}

.eu-store-best-badge {
    padding: 3px 8px;
    background: var(--eu-success);
    color: #fff;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.eu-store-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--eu-text-2);
    margin-top: 4px;
}

.eu-store-stars {
    color: #fbbf24;
}

.eu-store-rating-count {
    color: var(--eu-text-3);
    font-size: 11px;
}

.eu-store-cargo {
    font-size: 13px;
    color: var(--eu-text-2);
}

.eu-store-cargo-bedava {
    color: var(--eu-success);
    font-weight: 700;
}

.eu-store-stock {
    font-size: 13px;
    color: var(--eu-success);
    font-weight: 600;
}

.eu-store-stock-yok {
    color: var(--eu-danger);
}

.eu-store-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--eu-text);
    text-align: right;
    letter-spacing: -0.3px;
}

.eu-store-price-best {
    color: var(--eu-success);
}

.eu-store-cta {
    padding: 10px 16px;
    background: var(--eu-text);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

    .eu-store-cta:hover {
        opacity: 0.85;
    }

.eu-store-cta-best {
    background: var(--eu-success);
}

/* ============ FOOTER ============ */
.eu-footer {
    background: var(--eu-text);
    color: rgba(255,255,255,0.7);
    padding: 56px 32px 28px;
    margin-top: 56px;
}

.eu-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.eu-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}

.eu-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.eu-footer-brand-mark {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--eu-primary), var(--eu-primary-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    transform: rotate(-4deg);
}

.eu-footer-brand-name {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.eu-footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 320px;
}

.eu-footer-col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

.eu-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .eu-footer-links a {
        color: rgba(255,255,255,0.55);
        text-decoration: none;
        font-size: 13px;
        transition: color 0.15s;
    }

        .eu-footer-links a:hover {
            color: #fff;
        }

.eu-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .eu-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .eu-stores-head {
        display: none;
    }

    .eu-store {
        grid-template-columns: 50px 1fr;
        gap: 12px;
        padding: 14px;
    }

    .eu-store-logo {
        width: 50px;
        height: 50px;
    }

    .eu-store-cargo, .eu-store-stock, .eu-store-price {
        grid-column: 2;
    }

    .eu-store-price {
        font-size: 16px;
        text-align: left;
    }

    .eu-store-cta {
        grid-column: 1 / -1;
        margin-top: 8px;
    }
}

@media (max-width: 768px) {
    .eu-header-inner {
        padding: 0 16px;
        gap: 12px;
    }

    .eu-nav {
        display: none;
    }

    .eu-btn-text {
        display: none;
    }

    .eu-btn-cta {
        display: none;
    }

    .eu-hamburger {
        display: flex;
    }

    .eu-hero {
        padding: 48px 16px 56px;
    }

    .eu-hero-search {
        flex-direction: column;
        padding: 6px;
    }

    .eu-hero-search-input {
        width: 100%;
        padding: 14px 16px;
    }

    .eu-hero-search-btn {
        width: 100%;
        padding: 14px;
        justify-content: center;
    }

    .eu-hero-stats {
        gap: 28px;
    }

    .eu-cats {
        padding: 16px 0;
    }

    .eu-cats-inner {
        padding: 0 16px;
        gap: 6px;
    }

    .eu-main {
        padding: 0 16px;
        margin: 28px auto;
    }

    .eu-main-head {
        margin-bottom: 16px;
    }

    .eu-main-sort {
        flex-wrap: wrap;
    }

    .eu-product-head {
        grid-template-columns: 80px 1fr;
        gap: 14px;
        padding: 16px;
    }

    .eu-product-img {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .eu-product-summary {
        grid-column: 1 / -1;
        text-align: left;
    }

    .eu-product-min-price {
        font-size: 24px;
    }

    .eu-stores-inner {
        padding: 14px;
    }

    .eu-footer {
        padding: 40px 16px 24px;
    }

    .eu-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .eu-footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
