/* İzmir Yay — Premium tema (WordPress kalitesi) */
*, *::before, *::after { box-sizing: border-box; }

:root {
    --primary: #0b4fd4;
    --primary-dark: #083aa0;
    --primary-light: #e8f0ff;
    --ink: #0f172a;
    --ink-soft: #334155;
    --muted: #64748b;
    --paper: #f8fafc;
    --panel: #ffffff;
    --line: #e2e8f0;
    --line-strong: #cbd5e1;
    --footer-bg: #0b1220;
    --footer-text: #94a3b8;
    --success: #25d366;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --header-h: 80px;
    --topbar-h: 40px;
    --font: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

a { color: inherit; text-decoration: none; transition: color var(--transition), opacity var(--transition); }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

/* ── Buttons ─────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.btn:hover { transform: translateY(-1px); }

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 8px 24px rgba(11, 79, 212, 0.28);
}

.btn--primary:hover { box-shadow: 0 12px 28px rgba(11, 79, 212, 0.38); }

.btn--white {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

.btn--outline-white:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

.btn--lg { min-height: 50px; padding: 0 28px; font-size: 15px; }

/* ── Topbar ────────────────────────────── */
.topbar {
    background: var(--footer-bg);
    color: var(--footer-text);
    font-size: 13px;
    min-height: var(--topbar-h);
    display: flex;
    align-items: center;
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.topbar__left { display: flex; gap: 20px; flex-wrap: wrap; }

.topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #cbd5e1;
}

.topbar__link:hover { color: #fff; }

.topbar__badge {
    font-size: 12px;
    font-weight: 600;
    color: #93c5fd;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── Header ────────────────────────────── */
.site-header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid transparent;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    transition: box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: var(--shadow-md);
}

.header-row {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: auto;
    max-width: 240px;
    height: 64px;
    object-fit: contain;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    margin-left: auto;
}

.nav-toggle-bars {
    display: inline-block;
    width: 18px;
    height: 14px;
    background:
        linear-gradient(currentColor, currentColor) 0 0 / 100% 2px no-repeat,
        linear-gradient(currentColor, currentColor) 0 6px / 100% 2px no-repeat,
        linear-gradient(currentColor, currentColor) 0 12px / 100% 2px no-repeat;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.header-nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-soft);
    padding: 10px 16px;
    border-radius: 999px;
    transition: background var(--transition), color var(--transition);
}

.header-nav-link:hover { color: var(--primary); background: var(--primary-light); }

.header-nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 8px;
}

.header-search { min-width: 0; }

.search-box {
    display: flex;
    position: relative;
    width: min(240px, 100%);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 79, 212, 0.12);
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 14px;
    font: inherit;
    font-size: 13px;
    min-width: 0;
}

.search-box input:focus { outline: none; }

.search-box button {
    border: none;
    background: transparent;
    color: var(--muted);
    padding: 0 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.search-box button:hover { color: var(--primary); }

.header-cta { white-space: nowrap; }

.search-suggestions {
    list-style: none;
    margin: 8px 0 0;
    padding: 8px;
    position: absolute;
    left: 0; right: 0; top: 100%;
    display: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 120;
}

.search-suggestion-item {
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.search-suggestion-item:hover,
.search-suggestion-item.is-active { background: var(--primary-light); }

.suggestion-name { font-size: 14px; font-weight: 500; }
.suggestion-sku { color: var(--muted); font-size: 12px; }
.search-suggestion-empty { padding: 10px 12px; color: var(--muted); font-size: 13px; }

/* ── Hero banner ───────────────────────── */
.hero-banner {
    position: relative;
    overflow: visible;
    background: linear-gradient(135deg, #050a14 0%, #0f172a 40%, #0b4fd4 140%);
    color: #fff;
    padding: clamp(48px, 8vw, 88px) 0 clamp(56px, 8vw, 96px);
    --hero-blue-deep: #050a14;
    --hero-blue-mid: #0f172a;
    --hero-blue-accent: #0b4fd4;
    --hero-arrow-gap: clamp(58px, 4.5vw, 72px);
}

.hero-banner__slides {
    position: relative;
}

.hero-banner__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.65s ease, visibility 0.65s ease;
    pointer-events: none;
}

.hero-banner__slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: fadeSlide 0.65s ease;
}

.hero-banner__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 4;
    backdrop-filter: blur(8px);
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.hero-banner__arrow:hover {
    transform: translateY(-50%) scale(1.05);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
}

.hero-banner__arrow--prev { left: clamp(12px, 2vw, 28px); }
.hero-banner__arrow--next { right: clamp(12px, 2vw, 28px); }

.hero-banner__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(18px, 3vw, 28px);
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 4;
}

.hero-banner__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
    transition: transform var(--transition), background var(--transition);
}

.hero-banner__dot.is-active {
    background: #fff;
    transform: scale(1.2);
}

.hero-banner__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.08), transparent 35%),
        radial-gradient(circle at 10% 90%, rgba(11, 79, 212, 0.35), transparent 45%),
        repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,.02) 40px, rgba(255,255,255,.02) 41px);
    pointer-events: none;
}

.hero-banner__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.22fr);
    gap: clamp(20px, 3vw, 32px);
    align-items: stretch;
    overflow: visible;
}

.hero-banner__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
}

.hero-banner__title {
    margin: 12px 0 16px;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero-banner__lead {
    margin: 0 0 28px;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 52ch;
    line-height: 1.7;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-banner__visual {
    position: relative;
    width: calc(100% + clamp(48px, 9vw, 160px));
    margin-right: calc(-1 * clamp(48px, 9vw, 160px) + var(--hero-arrow-gap));
    min-height: clamp(260px, 36vw, 400px);
    overflow: hidden;
    border-radius: 0;
    background: transparent;
}

.hero-banner__visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
    opacity: 1;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        transparent 10%,
        rgba(0, 0, 0, 0.15) 18%,
        rgba(0, 0, 0, 0.45) 26%,
        rgba(0, 0, 0, 0.78) 34%,
        #000 42%
    );
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        transparent 10%,
        rgba(0, 0, 0, 0.15) 18%,
        rgba(0, 0, 0, 0.45) 26%,
        rgba(0, 0, 0, 0.78) 34%,
        #000 42%
    );
    transition: opacity 0.65s ease;
}

/* ── Features strip ────────────────────── */
.features-strip {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 48px 0;
    margin-top: -1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--paper);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #bfdbfe;
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
}

.feature-card p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── Section typography ────────────────── */
.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-eyebrow--light { color: #93c5fd; }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.section-header h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.section-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.section-link:hover { color: var(--primary-dark); }

.page-title,
.page-hero__title {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

/* ── Page hero (inner pages) ───────────── */
.page-hero {
    background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
    border-bottom: 1px solid var(--line);
    padding: 36px 0 32px;
}

.page-hero__desc {
    margin: 12px 0 0;
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 60ch;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 14px;
}

.breadcrumb a:hover { color: var(--primary); }
.breadcrumb__sep { opacity: 0.45; }

/* ── Layout ────────────────────────────── */
.main-grid,
.category-layout,
.urunler-layout {
    margin-top: 40px;
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: start;
}

.content-stack { display: flex; flex-direction: column; gap: 28px; min-width: 0; }

.card-panel,
.content,
.sidebar {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.card-panel { padding: 28px; }

.content { padding: 28px; }

.sidebar {
    padding: 22px;
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.sidebar__header h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.sidebar__toggle {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.sidebar__toggle-icon { transition: transform 0.2s ease; }
.sidebar.is-open .sidebar__toggle-icon { transform: rotate(180deg); }

.category-list { list-style: none; margin: 0; padding: 0; }

.category-list > li {
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
}

.category-list > li:last-child { border-bottom: none; }

.category-title {
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink-soft);
    transition: color var(--transition);
}

.category-title:hover { color: var(--primary); }

.category-list ul {
    margin: 0;
    padding: 8px 0 0 14px;
    list-style: none;
}

.category-list ul li { margin: 8px 0; }

.category-list ul a {
    font-size: 14px;
    color: var(--muted);
    display: block;
    padding: 4px 0;
}

.category-list ul a:hover { color: var(--primary); }

/* ── Slider ────────────────────────────── */
.hero-slider {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
}

.mySlides { display: none; animation: fadeSlide 0.6s ease; }

.slide-frame {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: var(--paper);
}

.slide-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 48px 24px 20px;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.85));
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font-size: 20px;
    cursor: pointer;
    z-index: 6;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), background var(--transition);
}

.slider-arrow:hover { transform: translateY(-50%) scale(1.05); background: #fff; }
.slider-arrow--prev { left: 16px; }
.slider-arrow--next { right: 16px; }

.slider-dots-wrap {
    position: absolute;
    left: 0; right: 0; bottom: 16px;
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
}

.slider-dots { pointer-events: auto; display: flex; gap: 8px; }

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 0;
    transition: transform var(--transition), background var(--transition);
}

.slider-dot.is-active {
    background: #fff;
    transform: scale(1.2);
}

/* ── Product grid (WooCommerce tarzı) ─── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: #bfdbfe;
}

.product-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 30%, rgba(11, 79, 212, 0.08), transparent 50%),
        linear-gradient(160deg, #f1f5f9, #e2e8f0);
    position: relative;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.product-card:hover .product-card__media img { transform: scale(1.06); }

.product-placeholder {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 40%, rgba(11, 79, 212, 0.15) 0%, transparent 55%),
        repeating-radial-gradient(circle at 50% 50%, transparent 0, transparent 8px, rgba(11,79,212,.06) 8px, rgba(11,79,212,.06) 9px);
}

.product-card__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card h4 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    min-height: 42px;
}

.product-card h4 a:hover { color: var(--primary); }

.product-meta,
.product-sku,
.stock {
    font-size: 13px;
    color: var(--muted);
    margin: 0 0 6px;
}

.product-sku { margin-bottom: 14px; }

.detail-btn {
    margin-top: auto;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    border-radius: var(--radius-sm);
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: background var(--transition), transform var(--transition);
}

.detail-btn:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

.product-image {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    margin-bottom: 12px;
}

.product-image img { width: 100%; height: 100%; object-fit: cover; }

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: var(--muted);
    background: var(--paper);
    border-radius: var(--radius-md);
    border: 1px dashed var(--line-strong);
}

/* ── CTA band ──────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 56px 0;
}

.cta-band__grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-band__text h2 {
    margin: 8px 0 10px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    max-width: 20ch;
}

.cta-band__text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    max-width: 48ch;
}

.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Footer ────────────────────────────── */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    margin-top: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
    padding: 56px 0 40px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 16px;
    background: #fff;
    border-radius: 10px;
}

.footer-tagline {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    max-width: 28ch;
}

.footer-col h4 {
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-col a,
.footer-line {
    display: block;
    font-size: 14px;
    color: var(--footer-text);
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-col a:hover { color: #fff; }

.footer-col a.footer-sub {
    padding-left: 12px;
    font-size: 13px;
    opacity: 0.88;
}

.footer-line { overflow-wrap: anywhere; }

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
}

.site-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px 24px;
    flex-wrap: wrap;
    padding: 16px 0;
}

.site-footer__copyright { margin: 0; font-size: 13px; }

.footer-bottom-links { display: flex; gap: 20px; font-size: 13px; }
.footer-bottom-links a:hover { color: #fff; }

.footer-madeby {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-madeby:hover {
    color: #fff;
}

.footer-madeby img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
    mix-blend-mode: lighten;
    flex-shrink: 0;
}

.footer-madeby__copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.footer-madeby__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.72;
}

.footer-madeby__name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* ── Spring launcher (sağ kaydırma yanı) ─ */
.spring-launcher {
    --spring-pull: 0;
    position: fixed;
    right: 2px;
    bottom: 68px;
    width: 64px;
    height: min(280px, 46vh);
    z-index: 95;
    opacity: 1;
    pointer-events: auto;
    overflow: visible;
    transform: none;
    user-select: none;
}

.spring-launcher.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.spring-launcher__track {
    position: absolute;
    left: 50%;
    top: 4px;
    bottom: 18px;
    width: 3px;
    margin-left: -1.5px;
    border-radius: 999px;
    background: linear-gradient(90deg, #5b6572 0%, #cfd7e1 46%, #8a93a1 100%);
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.35), 0 0 0 1px rgba(18, 22, 28, 0.2);
    pointer-events: none;
}

.spring-launcher__handle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0;
    border: none;
    background: transparent;
    cursor: grab;
    touch-action: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    overflow: visible;
}

.spring-launcher__handle:active,
.spring-launcher.is-dragging .spring-launcher__handle {
    cursor: grabbing;
}

.spring-launcher__coil {
    width: 56px;
    height: 116px;
    overflow: visible;
    display: block;
}

.spring-launcher.is-pulling #spring-wire-front {
    filter: drop-shadow(0 0 4px rgba(180, 196, 214, 0.35));
}

.spring-launcher__hint {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    user-select: none;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.spring-launcher.is-dragging .spring-launcher__hint,
.spring-launcher.is-launching .spring-launcher__hint,
.spring-launcher.is-pulling .spring-launcher__hint {
    opacity: 0;
}

.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--success);
    color: #fff;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
    z-index: 90;
    transition: transform var(--transition);
}

.whatsapp-float:hover { transform: translateY(-2px); }
.whatsapp-float svg { width: 22px; height: 22px; }

/* ── Detail page ───────────────────────── */
.detail-page {
    margin: 40px auto 48px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: start;
}

.main-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--paper);
    min-height: 400px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.main-image img { width: 100%; height: 100%; object-fit: cover; }

.thumb-row, .thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }

.thumb {
    width: 76px;
    height: 76px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--line);
    cursor: pointer;
    transition: border-color var(--transition);
}

.thumb.active, .thumb:hover { border-color: var(--primary); }

.detail-info h1 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.detail-text {
    margin: 24px 0;
    padding: 20px;
    background: var(--paper);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    line-height: 1.75;
}

.detail-text p { margin: 0; }

/* ── Filters / urunler ─────────────────── */
.filter-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.filter-panel h2,
.filter-panel h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 12px;
}

.filter-panel a {
    display: block;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 4px;
}

.filter-panel a:hover,
.filter-panel a.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

.filters-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--paper);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
}

.filters-bar input,
.filters-bar select {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font: inherit;
    background: #fff;
}

.filters-bar button {
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 0 20px;
    min-height: 42px;
    font-weight: 700;
    cursor: pointer;
}

.urunler-count {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 16px;
}

/* ── Contact / About ───────────────────── */
.about-lead {
    font-size: 1.2rem;
    color: var(--ink-soft);
    line-height: 1.75;
}

.prose-block {
    line-height: 1.8;
    color: var(--ink-soft);
    margin-bottom: 18px;
}

.legal-content {
    max-width: 860px;
    margin: 40px auto 0;
}

.legal-updated {
    margin: 0 0 18px;
    font-size: 13px;
    color: var(--muted);
}

.legal-content h2 {
    margin: 28px 0 10px;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--ink);
}

.legal-content h2:first-of-type {
    margin-top: 8px;
}

.legal-content ul {
    margin: 0 0 18px;
    padding-left: 1.2em;
    line-height: 1.75;
    color: var(--ink-soft);
}

.legal-content li {
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.iletisim-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    margin-top: 8px;
}

.iletisim-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    margin: 16px 0 8px;
}

.iletisim-form input,
.iletisim-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.iletisim-form input:focus,
.iletisim-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 79, 212, 0.12);
}

.iletisim-form textarea { min-height: 140px; resize: vertical; }

.iletisim-form button {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(11, 79, 212, 0.25);
}

.iletisim-satir {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.6;
}

.iletisim-ikon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ── Lightbox ──────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 24px;
}

.lightbox.is-open { display: flex; }

.lightbox img { max-width: min(92vw, 900px); max-height: 88vh; border-radius: var(--radius-md); }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(255,255,255,.9);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 18px;
}

.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

/* ── Animations ────────────────────────── */
@keyframes fadeSlide {
    from { opacity: 0.4; transform: scale(1.02); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ────────────────────────── */
@media (max-width: 1080px) {
    .hero-banner__grid { grid-template-columns: 1fr; text-align: center; }
    .hero-banner__lead { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-banner__visual {
        order: -1;
        width: 100%;
        margin-right: 0;
        min-height: clamp(220px, 52vw, 320px);
        border-radius: 0;
    }

    .hero-banner__visual img {
        object-position: center;
    }
    .hero-banner__arrow { top: auto; bottom: 72px; transform: none; }
    .hero-banner__arrow:hover { transform: scale(1.05); }
    .hero-banner__arrow--prev { left: 16px; }
    .hero-banner__arrow--next { right: 16px; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; }

    .main-grid,
    .category-layout,
    .urunler-layout { grid-template-columns: 1fr; }

    .sidebar { position: static; }
    .sidebar__toggle { display: inline-flex; }
    .sidebar__body { display: none; }
    .sidebar.is-open .sidebar__body { display: block; }

    .nav-toggle { display: inline-flex; }
    .header-nav {
        display: none;
        position: absolute;
        left: 16px; right: 16px;
        top: calc(100% + 8px);
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        flex-direction: column;
        padding: 12px;
        box-shadow: var(--shadow-lg);
        margin-left: 0;
    }
    .header-nav.is-open { display: flex; }
    .header-actions { display: none; }
    .header-row { position: relative; flex-wrap: wrap; }

    .detail-page,
    .iletisim-grid { grid-template-columns: 1fr; }
    .filter-panel { position: static; }
}

@media (max-width: 720px) {
    .spring-launcher {
        right: 0;
        bottom: 64px;
        width: 56px;
        height: min(240px, 40vh);
    }
    .spring-launcher__coil { width: 50px; height: 104px; }
    .spring-launcher__hint { display: none; }
    .topbar__right { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr; }
    .cta-band__grid { flex-direction: column; align-items: flex-start; }
    .slide-frame { height: 260px; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
}

.form-notice {
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: 14px;
}

.form-notice--ok {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
}

.form-notice--err {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.iletisim-bilgi h3 {
    margin: 0 0 18px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
