/* Fanus CMS — Frontend (Kurumsal Modern Tema) */

:root {
    --theme-accent: #D62213;
    --theme-accent-hover: #B81D10;
    --theme-accent-soft: #FCE7E5;
    --theme-accent-foreground: #ffffff;
    --theme-dark-bg: #D62213;
    --theme-body-bg: #ffffff;
    --theme-text: #0f172a;

    /* Kurumsal tasarım token'ları */
    --corp-navy: var(--theme-dark-bg);
    --corp-brand-deep: #9A190E;
    --corp-topbar-start: var(--theme-dark-bg);
    --corp-topbar-end: var(--theme-dark-bg);
    --corp-slate: var(--theme-dark-bg);
    --corp-muted: #64748b;
    --corp-border: #e2e8f0;
    --corp-surface: #f8fafc;
    --corp-surface-alt: #f1f5f9;
    --corp-radius: 0.75rem;
    --corp-radius-lg: 1rem;
    --corp-radius-xl: 1.25rem;
    --corp-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.04);
    --corp-shadow-md: 0 4px 6px rgba(15, 23, 42, 0.05), 0 16px 32px rgba(15, 23, 42, 0.08);
    --corp-shadow-lg: 0 8px 16px rgba(15, 23, 42, 0.06), 0 24px 48px rgba(15, 23, 42, 0.1);
    --corp-transition: 0.25s cubic-bezier(0.22, 1, 0.36, 1);

    /* Hero / header vurgu (referans palet) */
    --hero-panel-bg: #D62213;
    --hero-panel-bg-deep: #9A190E;
    --hero-accent-gold: var(--theme-accent);
    --hero-accent-gold-hover: var(--theme-accent-hover);
    --theme-link-hover: var(--theme-dark-bg);
    --theme-link-hover-dark: var(--hero-panel-bg-deep);
    --theme-link-hover-soft: #FCE7E5;
    --hero-topbar-bg: #ffffff;
    --hero-topbar-text: #6b7280;
    --header-accent: #D62213;
    --header-accent-hover: #B81D10;
    --header-divider: #e5e7eb;

    /* Header / site içerik yatay hizalama (header ile aynı) */
    --site-gutter-x: 1.125rem;
    --site-content-gutter-x: calc(var(--site-gutter-x) * 1.05);
    --site-header-logo-shift: 0.75rem;

    /* Hero slider — sabit ölçüler (değiştirmeyin) */
    --hero-slider-height-tablet: 550px;
    --hero-slider-height-desktop: 765px;
    --hero-slider-height-mobile-min: 440px;
    --hero-slider-height-mobile-max: 520px;
    --hero-slider-height-mobile: clamp(
        var(--hero-slider-height-mobile-min),
        86svh,
        var(--hero-slider-height-mobile-max)
    );
    --hero-slider-split-desktop: 50%;
    --hero-slider-panel-tablet: 58%;
    --hero-slider-media-tablet: 42%;
    --hero-slider-media-mobile: 38%;
    --hero-slider-media-min-height-mobile: 9.5rem;
}

@media (min-width: 640px) {
    :root {
        --site-gutter-x: 2.5rem;
        --site-header-logo-shift: 1.25rem;
    }
}

@media (min-width: 1024px) {
    :root {
        --site-gutter-x: 7.325rem;
        --site-header-logo-shift: 2rem;
    }
}

@media (min-width: 1280px) {
    :root {
        --site-gutter-x: 9.766rem;
        --site-header-logo-shift: 2.5rem;
    }
}

@media (min-width: 1536px) {
    :root {
        --site-gutter-x: 10.986rem;
        --site-header-logo-shift: 3rem;
    }
}

html { scroll-behavior: smooth; }

.fanus-frontend {
    background-color: var(--theme-body-bg);
    color: var(--theme-text);
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

/* —— UI bileşenleri —— */
.ui-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--corp-radius);
    background: var(--theme-accent);
    color: var(--theme-accent-foreground);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background var(--corp-transition), transform var(--corp-transition), box-shadow var(--corp-transition);
    box-shadow: 0 4px 14px rgba(214, 34, 19, 0.28);
}

.ui-btn-primary:hover {
    background: var(--theme-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(214, 34, 19, 0.34);
}

.ui-btn-primary svg,
.ui-btn-primary [data-lucide] {
    width: 1rem;
    height: 1rem;
    color: inherit;
    stroke: currentColor;
}

.ui-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-shrink: 0;
    padding: 0.75rem 1.5rem;
    border-radius: var(--corp-radius);
    border: 1px solid var(--corp-border);
    background: #ffffff;
    color: var(--theme-text);
    font-size: 0.875rem;
    font-weight: 600;
    transition: background var(--corp-transition), color var(--corp-transition), border-color var(--corp-transition), transform var(--corp-transition);
}

.ui-btn-outline:hover {
    background: var(--theme-accent);
    border-color: var(--theme-accent);
    color: var(--theme-accent-foreground);
    transform: translateY(-1px);
}

.ui-btn-outline svg,
.ui-btn-outline [data-lucide] {
    width: 1rem;
    height: 1rem;
}

.ui-btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    padding: 0.5rem 0.5rem 0.5rem 1.75rem;
    border-radius: 9999px;
    background: var(--hero-accent-gold);
    color: var(--theme-accent-foreground);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1;
    transition:
        background var(--corp-transition),
        transform var(--corp-transition),
        box-shadow var(--corp-transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.ui-btn-hero-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: #ffffff;
    color: var(--theme-accent);
    flex-shrink: 0;
    transition: transform var(--corp-transition);
}

.ui-btn-hero-arrow [data-lucide],
.ui-btn-hero-arrow svg {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--theme-accent);
    stroke: currentColor;
}

.ui-btn-hero-icon {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    color: inherit;
    stroke: currentColor;
    transition: transform var(--corp-transition);
}

.ui-btn-hero [data-lucide],
.ui-btn-hero svg {
    color: inherit;
    stroke: currentColor;
}

.ui-btn-hero:hover {
    background: var(--hero-accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.ui-btn-hero:hover .ui-btn-hero-arrow {
    transform: rotate(6deg) scale(1.04);
}

.ui-btn-hero:hover .ui-btn-hero-icon {
    transform: translateX(3px);
}

.ui-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--theme-text);
}

.ui-section-desc {
    margin-top: 1rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--corp-muted);
}

.ui-content-card {
    overflow: hidden;
    border-radius: var(--corp-radius-xl);
    border: 1px solid var(--corp-border);
    background: #ffffff;
    transition: transform var(--corp-transition), border-color var(--corp-transition), box-shadow var(--corp-transition);
}

.ui-content-card:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
    box-shadow: var(--corp-shadow-md);
}

.list-page-section {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
    background: var(--corp-surface);
}

.ui-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 3rem;
}

.ui-pagination-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--corp-radius);
    border: 1px solid var(--corp-border);
    background: #ffffff;
    color: var(--corp-muted);
    font-size: 0.875rem;
    font-weight: 600;
    transition: background var(--corp-transition), color var(--corp-transition), border-color var(--corp-transition);
}

.ui-pagination-item:hover {
    border-color: var(--theme-link-hover);
    color: var(--theme-link-hover);
}

.ui-pagination-item.is-active {
    background: var(--theme-accent);
    border-color: var(--theme-accent);
    color: var(--theme-accent-foreground);
    box-shadow: 0 4px 12px rgba(214, 34, 19, 0.24);
}

.ui-filter-pill {
    display: inline-flex;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid var(--corp-border);
    background: #ffffff;
    color: var(--corp-muted);
    font-size: 0.875rem;
    font-weight: 600;
    transition: background var(--corp-transition), color var(--corp-transition), border-color var(--corp-transition);
}

.ui-filter-pill:hover {
    border-color: var(--theme-link-hover);
    color: var(--theme-link-hover);
}

.ui-filter-pill.is-active {
    background: var(--theme-accent);
    border-color: var(--theme-accent);
    color: var(--theme-accent-foreground);
}

/* —— Header (referans: logo sol | menü orta | aksiyonlar sağ) —— */
.site-header-stack {
    position: sticky;
    top: 0;
    z-index: 50;
    overflow: visible;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--header-divider);
    overflow: visible;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
    border-bottom-color: rgba(226, 232, 240, 0.9);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.site-header-band {
    display: flex;
    align-items: stretch;
    min-height: var(--site-nav-height);
    overflow: visible;
}

.site-header-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 var(--site-content-gutter-x);
}

.site-header-band .site-header-container,
.site-topbar .site-header-container {
    padding-left: calc(var(--site-content-gutter-x) - var(--site-header-logo-shift));
}

.site-topbar .site-header-container {
    padding-right: calc(var(--site-content-gutter-x) - var(--site-header-logo-shift));
}

.site-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 var(--site-content-gutter-x);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    min-height: var(--site-nav-height);
}

.site-header-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    flex-shrink: 0;
}

.site-header-logo {
    display: block;
    height: 2.7rem;
    width: auto;
    max-width: min(14.4rem, calc(100vw - 11rem));
    object-fit: contain;
    object-position: left center;
}

@media (min-width: 1024px) {
    .site-header-logo {
        height: 2.875rem;
        max-width: 11.5rem;
    }
}

.site-header-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--theme-text);
}

@media (min-width: 1024px) {
    .site-header-title {
        font-size: 1.65rem;
    }
}

.site-header-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-width: 0;
    font-size: 16px;
}

@media (min-width: 1024px) {
    .site-header-band .site-header-container {
        display: flex;
        align-items: stretch;
        flex: 1;
        min-width: 0;
        min-height: var(--site-nav-height);
        height: 100%;
    }

    .site-header-band:has(.site-header-cta-bar) .site-header-container {
        padding-right: 0;
    }

    .site-header-inner {
        align-items: stretch;
        align-self: stretch;
        flex: 1;
        gap: 0;
        min-height: var(--site-nav-height);
        height: 100%;
        overflow: visible;
    }

    .site-header-brand {
        position: relative;
        align-self: stretch;
        display: inline-flex;
        align-items: center;
        padding-right: calc(1.25rem + var(--site-header-logo-shift));
        margin-right: 0.875rem;
        border-right: none;
    }

    .site-header-brand::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 1px;
        background: var(--header-divider);
    }

    .site-header-nav {
        display: flex;
        flex: 1 1 auto;
        flex-wrap: nowrap;
        justify-content: center;
        align-self: stretch;
        align-items: center;
        gap: 0.25rem;
        padding: 0 1.25rem;
        margin-right: 0;
        border-right: none;
        overflow: visible;
    }

    .site-header-band:has(.site-header-trailing) .site-header-nav {
        margin-right: 1.25rem;
    }

    .site-header-band:has(.site-header-cta-bar):not(:has(.site-header-trailing)) .site-header-nav {
        padding-right: 1.25rem;
    }

    .site-header-trailing {
        position: relative;
        display: flex;
        align-items: center;
        gap: 0.875rem;
        align-self: stretch;
        flex-shrink: 0;
        padding: 0 1.25rem;
        margin-right: 0;
        border-left: 1px solid var(--header-divider);
    }

    .site-header-band:has(.site-header-cta-bar) .site-header-trailing {
        padding-right: 1.25rem;
    }

    .site-header-support {
        flex-shrink: 0;
        padding: 0;
        margin: 0;
        border-right: none;
    }

    .site-header-actions {
        display: none;
    }
}

.site-nav-item {
    position: relative;
}

.site-nav-item.has-children::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 1.25rem;
    z-index: 29;
}

.site-nav-item.has-children:hover .site-nav-chevron,
.site-nav-item.has-children:focus-within .site-nav-chevron {
    transform: rotate(180deg);
    color: #ffffff;
    opacity: 1;
}

.site-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5625rem 1rem;
    border-radius: 9999px;
    font-size: 0.9375rem !important;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: #374151;
    white-space: nowrap;
    transition:
        color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.site-nav-link [data-lucide] {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    opacity: 0.8;
    color: #6b7280;
    transition: opacity 0.22s ease, color 0.22s ease;
}

.site-nav-link::after {
    display: none;
}

.site-nav-link:hover,
.site-nav-link.is-active,
.site-nav-item.has-children:hover .site-nav-link,
.site-nav-item.has-children:focus-within .site-nav-link {
    color: #ffffff;
    background: var(--header-accent);
    box-shadow: none;
}

.site-nav-link:hover [data-lucide],
.site-nav-link.is-active [data-lucide],
.site-nav-item.has-children:hover .site-nav-link [data-lucide],
.site-nav-item.has-children:focus-within .site-nav-link [data-lucide] {
    opacity: 1;
    color: #ffffff;
}

.site-nav-link:hover .site-nav-chevron,
.site-nav-link.is-active .site-nav-chevron {
    color: #ffffff;
    opacity: 1;
}

.site-nav-link.is-active {
    font-weight: 700;
}

.site-nav-chevron {
    width: 0.875rem;
    height: 0.875rem;
    margin-top: 0.0625rem;
    opacity: 0.65;
    color: #9ca3af;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.22s ease, opacity 0.22s ease;
}

.site-nav-dropdown {
    position: absolute;
    top: calc(100% + 0.625rem);
    left: 50%;
    z-index: 120;
    min-width: 15.5rem;
    padding: 0.5rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow:
        0 18px 48px rgba(15, 23, 42, 0.12),
        0 4px 12px rgba(15, 23, 42, 0.04);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(0.5rem) scale(0.98);
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav-dropdown::before {
    content: '';
    position: absolute;
    top: -0.375rem;
    left: 50%;
    width: 0.75rem;
    height: 0.75rem;
    background: #ffffff;
    border-top: 1px solid rgba(226, 232, 240, 0.95);
    border-left: 1px solid rgba(226, 232, 240, 0.95);
    transform: translateX(-50%) rotate(45deg);
    pointer-events: none;
}

.site-nav-item.has-children:hover .site-nav-dropdown,
.site-nav-item.has-children:focus-within .site-nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
}

.site-nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.875rem;
    border-radius: 0.625rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.4;
    color: #4b5563;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.site-nav-dropdown-link + .site-nav-dropdown-link {
    margin-top: 0.125rem;
}

.site-nav-dropdown-link span {
    flex: 1;
    min-width: 0;
}

.site-nav-dropdown-link [data-lucide] {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: #9ca3af;
    opacity: 1;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav-dropdown-link [data-lucide] svg {
    width: 1rem;
    height: 1rem;
}

.site-nav-dropdown-link:hover {
    color: var(--header-accent);
    background: var(--theme-accent-soft);
    transform: translateX(2px);
}

.site-nav-dropdown-link:hover [data-lucide] {
    color: var(--header-accent);
}

.site-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: auto;
}

.site-header-end {
    display: contents;
}

.site-header-end-cart {
    display: none;
}

.site-header-tools {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-header-trailing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: auto;
}

.site-header-support {
    display: none;
    align-items: center;
    gap: 0.875rem;
    color: #111827;
    white-space: nowrap;
}

.site-header-support:hover {
    color: #111827;
}

@media (min-width: 1024px) {
    .site-header-trailing {
        margin-left: 0;
        gap: 0.875rem;
    }

    .site-header-support {
        display: inline-flex;
    }
}

.site-header-support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    background: var(--header-accent);
    color: #ffffff;
}

.site-header-support-icon [data-lucide],
.site-header-support-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
    stroke: currentColor;
}

.site-header-support-copy {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}

.site-header-support-label {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.2;
    color: #6b7280;
}

.site-header-support-number {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: #111827;
}

.site-header-cta-bar {
    display: none;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    padding: 0 1.75rem;
    background: var(--header-accent);
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    border-left: 1px solid var(--header-divider);
    transition: background 0.2s ease;
}

.site-header-cta-bar:hover {
    background: var(--header-accent-hover);
    color: #ffffff;
}

@media (min-width: 1024px) {
    .site-header-cta-bar {
        display: inline-flex;
        width: 13.5rem;
        max-width: 13.5rem;
        padding: 0 1rem;
    }
}

.header-cta {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 2.75rem;
    padding: 0.375rem 0.375rem 0.375rem 1.25rem;
    border-radius: 9999px;
    background: var(--hero-accent-gold);
    color: var(--theme-accent-foreground);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transition:
        background 0.25s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 1024px) {
    .header-cta {
        display: inline-flex;
    }
}

.header-cta-text {
    line-height: 1;
}

.header-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: #ffffff;
    color: var(--theme-accent);
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-cta [data-lucide],
.header-cta svg {
    color: inherit;
    stroke: currentColor;
}

.header-cta-arrow [data-lucide],
.header-cta-arrow svg {
    width: 1rem;
    height: 1rem;
    color: var(--theme-accent);
    stroke: currentColor;
}

.header-cta-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-cta:hover {
    background: var(--hero-accent-gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.header-cta:hover .header-cta-arrow {
    transform: rotate(6deg) scale(1.04);
}

.header-cta:hover .header-cta-icon {
    transform: translateX(2px);
}

.header-phone-cta {
    display: none;
    align-items: center;
    gap: 0.875rem;
    color: #111827;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.header-phone-cta:hover {
    color: var(--theme-link-hover);
}

@media (min-width: 1024px) {
    .header-phone-cta {
        display: inline-flex;
    }
}

.header-phone-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: var(--header-accent);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(214, 34, 19, 0.28);
}

.header-phone-cta-icon [data-lucide],
.header-phone-cta-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
    stroke: currentColor;
}

.header-phone-cta-copy {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}

.header-phone-cta-label {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.2;
    color: #6b7280;
}

.header-phone-cta-number {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: #111827;
}

.header-phone {
    display: none;
    align-items: center;
    gap: 0.625rem;
    color: var(--theme-text);
    white-space: nowrap;
    transition: color 0.2s ease;
}

.header-phone:hover {
    color: var(--theme-link-hover);
}

@media (min-width: 768px) {
    .header-phone {
        display: inline-flex;
    }
}

.header-phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--theme-accent);
}

.header-phone-icon svg {
    width: 1.375rem;
    height: 1.375rem;
}

.header-phone-number {
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.site-header-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid var(--corp-border);
    border-radius: 0.75rem;
    background: #ffffff;
    color: #111827;
    cursor: pointer;
    box-shadow: none;
    transition:
        color 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.site-header-menu-btn:hover {
    color: var(--header-accent);
    background: var(--theme-accent-soft);
    border-color: rgba(214, 34, 19, 0.18);
}

.site-header-menu-btn.is-open {
    color: #ffffff;
    background: var(--header-accent);
    border-color: var(--header-accent);
    box-shadow: 0 8px 20px rgba(214, 34, 19, 0.24);
}

.site-header-menu-btn-lines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 1.25rem;
}

.site-header-menu-btn-lines span {
    display: block;
    height: 2px;
    border-radius: 1px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header-menu-btn.is-open .site-header-menu-btn-lines span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header-menu-btn.is-open .site-header-menu-btn-lines span:nth-child(2) {
    opacity: 0;
}

.site-header-menu-btn.is-open .site-header-menu-btn-lines span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .site-header-menu-btn {
        display: none;
    }
}

/* Site header — navigation height tokens */
:root {
    --site-nav-height: 4.5rem;
}

@media (min-width: 1024px) {
    :root {
        --site-nav-height: 5.5rem;
    }
}

.site-topbar {
    background: var(--hero-topbar-bg);
    border-bottom: 1px solid var(--header-divider);
}

.site-topbar-link {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    max-width: 22rem;
    gap: 0.5rem;
    color: var(--hero-topbar-text);
    font-size: 0.8125rem;
    transition: color 0.2s ease;
}

.site-topbar-link--static {
    cursor: default;
}

.site-topbar-link:hover {
    color: var(--theme-text);
}

.site-topbar-link--static:hover {
    color: var(--hero-topbar-text);
}

.site-topbar-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    background: var(--header-accent);
    color: #ffffff;
}

.site-topbar-icon-box [data-lucide],
.site-topbar-icon-box svg {
    width: 0.875rem;
    height: 0.875rem;
    color: #ffffff;
    stroke: currentColor;
}

.site-topbar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    color: var(--hero-topbar-text);
    font-size: 0.9375rem;
    background: transparent;
    transition: color 0.2s ease;
}

.site-topbar-social:hover {
    color: var(--header-accent);
}

.site-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 2.5rem;
    font-size: 0.8125rem;
    line-height: 1.3;
}

.site-topbar-start {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-width: 0;
    flex: 1 1 auto;
}

.site-topbar-end {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

.site-topbar-socials {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .site-topbar-link {
        max-width: none;
    }
}

.site-topbar .site-header-cart {
    width: auto;
    min-width: 0;
    height: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--hero-topbar-text);
}

.site-topbar .site-header-cart:hover,
.site-topbar .site-header-cart.is-active {
    color: var(--header-accent);
    background: transparent;
    border-color: transparent;
    transform: none;
    box-shadow: none;
}

.site-topbar .site-header-cart-badge {
    background: var(--header-accent);
    color: #ffffff;
    box-shadow: none;
}

.site-footer {
    background: var(--theme-dark-bg);
    position: relative;
    color: #ffffff;
    font-size: 1rem;
}

.site-footer .text-sm {
    font-size: inherit;
}

.site-footer a {
    color: #ffffff;
}

.site-footer-link {
    color: #ffffff;
    transition: opacity 0.2s ease;
}

.site-footer-link:hover {
    opacity: 0.88;
}

.site-footer .footer-copyright,
.site-footer .footer-copyright p,
.site-footer .footer-copyright span,
.site-footer .footer-copyright li,
.site-footer .footer-copyright td,
.site-footer .footer-copyright th {
    color: #ffffff;
}

.site-footer .footer-copyright a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 0.15em;
    transition: opacity 0.2s ease;
}

.site-footer .footer-copyright a:hover {
    opacity: 0.88;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.12);
}

.site-footer h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

.site-footer .site-footer-social {
    border-radius: var(--corp-radius);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background var(--corp-transition), border-color var(--corp-transition), transform var(--corp-transition);
}

.site-footer .site-footer-social:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.site-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    width: 100%;
}

.site-footer-column {
    min-width: 0;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 2.5rem;
        row-gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .site-footer-grid {
        display: flex;
        align-items: flex-start;
        gap: 2.5rem;
        width: 100%;
    }

    .site-footer-column {
        flex: 1 1 0;
        min-width: 0;
    }
}

.home-hero-section {
    margin-top: 0;
}

body:has(.home-hero-section) .site-header {
    border-bottom-color: var(--header-divider);
}

body:has(.home-hero-section) .site-header.scrolled {
    border-bottom-color: var(--header-divider);
}

/* Ana sayfa — slider altı kayan hizmet şeridi */
.home-services-marquee {
    width: 100%;
    background: var(--theme-accent);
}

.home-services-marquee--desktop-only {
    display: none;
}

.home-services-marquee--mobile-only {
    display: block;
}

@media (min-width: 1024px) {
    .home-services-marquee--desktop-only {
        display: block;
    }

    .home-services-marquee--mobile-only {
        display: none;
    }
}

.home-services-marquee-viewport {
    width: 100%;
    overflow: hidden;
}

.home-services-marquee-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 0;
    will-change: transform;
    opacity: 0;
}

.home-services-marquee-track.is-ready {
    opacity: 1;
    animation: home-services-marquee-scroll var(--marquee-duration, 45s) linear infinite;
}

.home-services-marquee-group {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    flex-shrink: 0;
    padding: calc(0.9375rem * 1.2) 0;
}

.home-services-marquee-link {
    display: inline-flex;
    align-items: center;
    padding: 0 1.75rem;
    font-size: calc(0.9375rem * 1.2);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--marquee-text-color, #ffffff);
    white-space: nowrap;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.home-services-marquee-link:hover {
    color: var(--marquee-text-color, #ffffff);
    opacity: 0.88;
}

.home-services-marquee-sep {
    flex-shrink: 0;
    width: calc(0.3125rem * 1.2);
    height: calc(0.3125rem * 1.2);
    border-radius: 9999px;
    background: color-mix(in srgb, var(--marquee-text-color, #ffffff) 45%, transparent);
}

@keyframes home-services-marquee-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(var(--marquee-shift, -50%), 0, 0);
    }
}

@media (min-width: 1024px) {
    .home-services-marquee-group {
        padding: calc(1rem * 1.2) 0;
    }

    .home-services-marquee-link {
        padding: 0 2rem;
        font-size: calc(1rem * 1.2);
    }
}

.hero-slide-split {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
}

.hero-swiper .swiper-slide .hero-slide-split {
    width: 100%;
    height: 100%;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 2rem var(--site-content-gutter-x);
    pointer-events: none;
}

.hero-slide-overlay-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 40rem;
    margin: 0;
    text-align: left;
    color: #ffffff;
    pointer-events: auto;
}

.hero-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.4375rem 1rem 0.4375rem 0.75rem;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.92);
}

.hero-slide-badge-dot {
    width: 0.4375rem;
    height: 0.4375rem;
    border-radius: 9999px;
    background: var(--hero-accent-gold);
    flex-shrink: 0;
}

.hero-slide-media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-slide-media::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.38);
    pointer-events: none;
}

.hero-slide-media picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.hero-slide-media-el {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-fallback {
    background: #2d2d2d;
}

.hero-slide-image {
    transform: scale(1);
    transition: transform 8s ease-out;
}

.swiper-slide-active .hero-slide-image {
    transform: scale(1.04);
}

.hero-slide-inner {
    max-width: 34rem;
    margin: 0;
    padding: 0;
    text-align: left;
    color: #ffffff;
}

.hero-slide-title {
    margin: 0 0 1.25rem;
    font-size: clamp(2rem, 4.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero-slide-title strong {
    color: var(--hero-accent-gold);
    font-weight: 700;
}

.hero-slide-desc {
    margin: 0 0 2rem;
    max-width: 32rem;
    font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

/* Mobile menu drawer — premium flat (gölgesiz) */
.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(15, 23, 42, 0.32);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.32s ease, visibility 0.32s ease;
}

.mobile-menu-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    width: min(90vw, 22rem);
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-left: 1px solid var(--corp-border);
    transform: translateX(100%);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    padding-bottom: var(--mobile-action-bar-height, 0px);
}

.mobile-menu-drawer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--header-accent);
    pointer-events: none;
}

.mobile-menu-drawer.is-open {
    transform: translateX(0);
}

.mobile-menu-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-shrink: 0;
    min-height: 4.5rem;
    padding: 1rem var(--site-content-gutter-x);
    border-bottom: 1px solid var(--corp-border);
    background: #ffffff;
}

.mobile-menu-drawer-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    flex: 1;
}

.mobile-menu-drawer-logo {
    height: 2.125rem;
    width: auto;
    max-width: min(9.5rem, 100%);
    object-fit: contain;
    object-position: left center;
}

.mobile-menu-drawer-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--theme-text);
    letter-spacing: -0.03em;
}

.mobile-menu-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    border-radius: 0;
    color: #94a3b8;
    background: transparent;
    transition: color 0.2s ease;
}

.mobile-menu-drawer-close:hover {
    color: var(--header-accent);
    background: transparent;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    gap: 0;
    padding: 1.125rem var(--site-content-gutter-x) calc(2rem + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-group {
    border-bottom: none;
}

.mobile-menu-item-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-menu-item-row .mobile-menu-link {
    flex: 1;
    min-width: 0;
    padding-right: 0;
    border: none;
    border-bottom: none;
    background: transparent;
}

.mobile-menu-group.is-open .mobile-menu-item-row {
    border-bottom-color: transparent;
}

.mobile-menu-subtoggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    margin: 0;
    border-radius: 9999px;
    color: #94a3b8;
    border: 1px solid var(--corp-border);
    background: #ffffff;
    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.mobile-menu-subtoggle:hover,
.mobile-menu-group.is-open .mobile-menu-subtoggle {
    color: var(--header-accent);
    border-color: rgba(214, 34, 19, 0.28);
    background: #ffffff;
}

.mobile-menu-subtoggle-icon {
    width: 0.875rem;
    height: 0.875rem;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu-group.is-open .mobile-menu-subtoggle-icon {
    transform: rotate(180deg);
}

.mobile-menu-subnav {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.24s ease;
}

.mobile-menu-group.is-open .mobile-menu-subnav {
    max-height: 28rem;
    opacity: 1;
}

.mobile-menu-subnav-inner {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    margin: 0.375rem 0 0.875rem;
    padding: 0.25rem 0 0.25rem 1rem;
    border-left: 1px solid var(--corp-border);
    background: transparent;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 0;
    border-radius: 0;
    font-size: 0.875rem !important;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.4;
    color: #0f172a;
    background: transparent;
    border: none;
    border-bottom: 1px solid #f1f5f9;
    transition: color 0.2s ease;
}

.mobile-menu-link [data-lucide] {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.mobile-menu-link:hover {
    color: var(--header-accent);
    background: transparent;
}

.mobile-menu-link.is-active {
    color: var(--header-accent);
    font-weight: 600;
    background: transparent;
}

.mobile-menu-link.is-active span {
    display: inline-block;
    border-bottom: 1.5px solid var(--header-accent);
    padding-bottom: 0.0625rem;
}

.mobile-menu-link:hover [data-lucide],
.mobile-menu-link.is-active [data-lucide] {
    color: var(--header-accent);
}

.mobile-menu-sublink {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.6875rem 0;
    border-radius: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.015em;
    color: #0f172a;
    border: none;
    transition: color 0.2s ease;
}

.mobile-menu-sublink::before {
    content: '';
    flex-shrink: 0;
    width: 1.125rem;
    height: 2px;
    background: #cbd5e1;
    transition: background-color 0.2s ease;
}

.mobile-menu-sublink:hover {
    color: var(--header-accent);
    background: transparent;
}

.mobile-menu-sublink:hover::before {
    background: var(--header-accent);
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
    padding: 0.9375rem 1.125rem;
    border-radius: 0;
    border: 1px solid var(--header-accent);
    background: var(--header-accent);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.mobile-menu-cta:hover {
    background: var(--header-accent-hover);
    border-color: var(--header-accent-hover);
    color: #ffffff;
}

.mobile-menu-cta [data-lucide],
.mobile-menu-cta svg,
.mobile-menu-cta i {
    width: 1rem;
    height: 1rem;
    color: inherit;
    stroke: currentColor;
}

.mobile-menu-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.875rem;
    padding: 0.875rem 1.125rem;
    border-radius: 0;
    border: 1px solid var(--corp-border);
    background: #ffffff;
    color: var(--theme-text);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.mobile-menu-phone:hover {
    border-color: var(--header-accent);
    color: var(--header-accent);
}

body.mobile-menu-open {
    overflow: hidden;
}

@media (min-width: 1024px) {
    .mobile-menu-backdrop,
    .mobile-menu-drawer {
        display: none;
    }
}

/* Lazy load placeholder */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}
img[loading="lazy"].loaded,
img[loading="lazy"][src] {
    opacity: 1;
}

/* Sayfa başlığı alanı */
.page-header {
    position: relative;
    height: calc(16rem * 0.8);
}

@media (max-width: 639px) {
    .page-header {
        height: calc(12rem * 0.8);
    }
}

@media (min-width: 1024px) {
    .page-header {
        height: 18rem;
    }
}

.page-header-content h1 {
    margin: 0;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.page-header-badge {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero slider — ölçüler :root token'larıyla sabitlenmiştir */
.hero-swiper {
    position: relative;
    height: var(--hero-slider-height-tablet);
    max-height: var(--hero-slider-height-tablet);
    min-height: var(--hero-slider-height-tablet);
}

.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
    height: 100%;
}

.hero-swiper .swiper-slide {
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.hero-swiper.swiper-fade .swiper-slide {
    pointer-events: none;
}

.hero-swiper.swiper-fade .swiper-slide-active {
    pointer-events: auto;
}

@media (max-width: 639px) {
    .hero-swiper {
        height: var(--hero-slider-height-mobile);
        min-height: var(--hero-slider-height-mobile);
        max-height: var(--hero-slider-height-mobile);
    }

    .hero-slide-overlay {
        align-items: flex-end;
        padding: 1.5rem var(--site-content-gutter-x) 3.25rem;
    }

    .hero-slide-title {
        margin-bottom: 0.875rem;
        font-size: clamp(1.625rem, 7.2vw, 2rem);
        line-height: 1.15;
    }

    .hero-slide-desc {
        margin-bottom: 1.25rem;
        font-size: 0.9375rem;
        line-height: 1.65;
    }

    .hero-slide-badge {
        margin-bottom: 0.875rem;
        font-size: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-swiper {
        height: var(--hero-slider-height-desktop);
        max-height: var(--hero-slider-height-desktop);
        min-height: var(--hero-slider-height-desktop);
    }

    .hero-slide-overlay {
        padding: 3rem var(--site-content-gutter-x);
    }

    .hero-slide-overlay-inner {
        max-width: 42rem;
    }
}

.hero-swiper .swiper-pagination {
    left: 50% !important;
    right: auto !important;
    width: auto !important;
    bottom: 1.75rem !important;
    transform: translateX(-50%);
    text-align: center;
}

@media (max-width: 1023px) {
    .hero-swiper .swiper-pagination {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .hero-swiper .swiper-pagination {
        display: block;
        left: var(--site-content-gutter-x) !important;
        transform: none;
        text-align: left;
        bottom: 2.5rem !important;
    }
}

.hero-swiper .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
    margin: 0 0.3rem !important;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-swiper .swiper-pagination-bullet-active {
    width: 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 2px var(--hero-accent-gold);
}

/* Masonry Gallery */
.gallery-masonry {
    column-count: 1;
    column-gap: 1rem;
}
@media (min-width: 640px) { .gallery-masonry { column-count: 2; } }
@media (min-width: 1024px) { .gallery-masonry { column-count: 3; } }
.service-detail-layout .gallery-masonry {
    column-count: 1;
}
@media (min-width: 640px) {
    .service-detail-layout .gallery-masonry { column-count: 2; }
}
@media (min-width: 1280px) {
    .service-detail-layout .gallery-masonry { column-count: 2; }
}
.gallery-masonry .gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Homepage sections — uniform vertical rhythm */
:root {
    --home-section-gap: clamp(4.75rem, 6.5vw, 6.25rem);
    --home-section-pad-y: clamp(4rem, 6vw, 5.5rem);
    --home-section-intro-space: clamp(1.5rem, 2.75vw, 2.25rem);
}

.home-sections {
    display: flex;
    flex-direction: column;
    gap: var(--home-section-gap);
    padding-top: var(--home-section-pad-y);
    padding-bottom: var(--home-section-pad-y);
}

.home-section {
    padding-top: 0;
    padding-bottom: 0;
}

/* Renkli zeminli bölümlerde iç boşluk */
.home-sections > .home-features-section,
.home-sections > .home-products-section {
    padding-top: var(--home-section-pad-y);
    padding-bottom: var(--home-section-pad-y);
}

/* Özellikler → Ürünler arasında gap beyaz şerit oluşturmasın */
.home-features-section + .home-products-section {
    margin-top: calc(-1 * var(--home-section-gap));
}

.home-sections > .home-about-section {
    background: #ffffff;
}

.home-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .home-about-grid {
        grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
        gap: clamp(2.5rem, 4vw, 4rem);
    }
}

.home-about-content {
    max-width: 40rem;
}

@media (min-width: 1024px) {
    .home-about-content {
        max-width: none;
        padding-right: clamp(0rem, 1.5vw, 1.5rem);
    }
}

.home-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.125rem 0.5rem 0.875rem;
    border-radius: 9999px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--theme-accent);
}

.home-about-badge-dot {
    width: 0.4375rem;
    height: 0.4375rem;
    border-radius: 9999px;
    background: var(--hero-accent-gold);
    flex-shrink: 0;
}

.home-about-title {
    margin: 0 0 1.5rem;
    font-size: clamp(2.125rem, 4.2vw, 2.875rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #111827;
}

@media (min-width: 1024px) {
    .home-about-title {
        margin-bottom: 1.75rem;
        font-size: clamp(2.5rem, 3.2vw, 3.25rem);
    }
}

.home-about-text {
    margin-bottom: 2.25rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #6b7280;
}

@media (min-width: 1024px) {
    .home-about-text {
        margin-bottom: 2.5rem;
        font-size: 1.2rem;
        line-height: 1.8;
    }
}

.home-about-text > :first-child {
    margin-top: 0;
}

.home-about-text > :last-child {
    margin-bottom: 0;
}

.home-about-text p {
    margin: 0 0 1rem;
    color: inherit;
}

.home-about-text ul,
.home-about-text ol {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.home-about-text li {
    margin: 0 0 0.875rem;
    padding: 0;
    color: inherit;
}

.home-about-text li::before,
.home-about-text li::marker {
    display: none;
    content: none;
}

.home-about-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.home-about-phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background: var(--hero-accent-gold);
    color: #ffffff;
}

.home-about-phone-icon [data-lucide],
.home-about-phone-icon svg {
    width: 1.375rem;
    height: 1.375rem;
    color: #ffffff;
    stroke: currentColor;
}

.home-about-phone-label {
    margin: 0 0 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #9ca3af;
}

.home-about-phone-number {
    font-size: 1.1875rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #111827;
    transition: opacity 0.2s ease;
}

@media (min-width: 1024px) {
    .home-about-phone {
        margin-bottom: 2.5rem;
    }

    .home-about-phone-number {
        font-size: 1.3125rem;
    }
}

.home-about-phone-number:hover {
    color: var(--theme-link-hover);
}

.ui-btn-about {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.5625rem 0.5625rem 0.5625rem 2rem;
    border-radius: 9999px;
    background: var(--hero-accent-gold);
    color: var(--theme-accent-foreground);
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1;
    transition:
        background var(--corp-transition),
        transform var(--corp-transition),
        box-shadow var(--corp-transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ui-btn-about [data-lucide],
.ui-btn-about svg {
    color: inherit;
    stroke: currentColor;
}

@media (min-width: 1024px) {
    .ui-btn-about {
        padding: 0.625rem 0.625rem 0.625rem 2.125rem;
        font-size: 1.125rem;
    }
}

.ui-btn-about-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    background: #ffffff;
    color: #111827;
    flex-shrink: 0;
    transition: transform var(--corp-transition);
}

.ui-btn-about-arrow [data-lucide],
.ui-btn-about-arrow svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--theme-accent);
    stroke: currentColor;
}

.ui-btn-about:hover {
    background: var(--hero-accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.ui-btn-about:hover .ui-btn-about-arrow {
    transform: rotate(6deg) scale(1.04);
}

.home-sections > .home-features-section {
    background: var(--corp-surface);
    color: var(--theme-text);
}

.home-sections > .home-products-section {
    background: var(--corp-surface);
}

.home-products-section .product-card-title {
    font-size: calc(0.875rem + 2px);
}

@media (min-width: 640px) {
    .home-products-section .product-card-title {
        font-size: calc(1rem + 2px);
    }
}

.home-sections > .home-blog-section {
    background: #ffffff;
}

.home-blog-section .ui-content-card h3,
.home-blog-section .ui-content-card h3 a {
    font-size: calc(1.125rem + 2px);
}

.home-blog-section .ui-content-card p.text-sm {
    font-size: calc(0.875rem + 2px);
}

/* Home about — overlapping media collage */
.about-media {
    width: 100%;
    max-width: 45rem;
    margin-inline: auto;
}

@media (min-width: 1024px) {
    .about-media {
        width: 100%;
        max-width: none;
        margin-inline: 0;
    }
}

.about-media-stack {
    position: relative;
    width: 100%;
    min-height: 30rem;
    aspect-ratio: 1 / 1;
}

@media (min-width: 640px) {
    .about-media-stack {
        min-height: 33rem;
    }
}

@media (min-width: 1024px) {
    .about-media-stack {
        min-height: 36rem;
        max-height: 39rem;
        aspect-ratio: 1 / 0.96;
    }
}

.about-media-primary,
.about-media-secondary {
    margin: 0;
}

.about-media-primary {
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    overflow: hidden;
    border-radius: 1.5rem;
    z-index: 1;
    box-shadow: 0 24px 48px -20px rgba(15, 23, 42, 0.18);
}

.about-media-secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 58%;
    padding: 0.5rem;
    overflow: hidden;
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow:
        0 20px 40px -16px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(15, 23, 42, 0.06);
    z-index: 2;
}

.about-media-img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
}

.about-media-primary .about-media-img {
    border-radius: 1.5rem;
}

.about-media-secondary .about-media-img {
    border-radius: 0.9rem;
}

@media (min-width: 640px) {
    .about-media-primary {
        width: 70%;
    }

    .about-media-secondary {
        width: 56%;
        padding: 0.625rem;
    }
}

.home-section-header,
.home-features-heading {
    margin-bottom: var(--home-section-intro-space);
}

.home-section-header > .max-w-2xl > h2 + p {
    margin-top: 1rem;
}

/* About page */
:root {
    --about-section-space: clamp(5.5rem, 9vw, 7.5rem);
}

.about-page {
    padding-bottom: var(--about-section-space);
}

.about-page-section {
    padding-top: var(--about-section-space);
}

@media (max-width: 639px) {
    .about-page > .about-page-section:first-child {
        padding-top: calc(var(--about-section-space) * 0.6);
    }
}

.about-page-intro-content .ui-btn-primary {
    box-shadow: none;
}

.about-page-intro-content .ui-btn-primary:hover {
    box-shadow: none;
}

.about-page-card {
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    background: var(--theme-dark-bg);
    color: #ffffff;
    height: 100%;
}

.about-page-card h3 {
    color: #ffffff;
    font-size: calc(1.25rem + 2px);
}

@media (min-width: 640px) {
    .about-page-card h3 {
        font-size: calc(1.5rem + 2px);
    }
}

.about-page-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: calc(1rem + 2px);
}

.about-page-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.25rem;
    border-radius: 0.75rem;
    background: var(--theme-accent);
    color: var(--theme-accent-foreground);
}

.about-page-card-icon [data-lucide],
.about-page-card-icon svg {
    width: 1.375rem;
    height: 1.375rem;
    color: inherit;
    stroke: currentColor;
}

.about-page-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 4rem);
    align-items: center;
}

@media (min-width: 1024px) {
    .about-page-intro {
        grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
        gap: clamp(2.5rem, 4vw, 3.75rem);
        align-items: center;
    }

    .about-page-intro-content {
        padding-right: clamp(0.5rem, 2vw, 1.5rem);
    }
}

.about-page-intro-title {
    display: flex;
    flex-direction: column;
    gap: 0.12em;
    line-height: 1.22;
}

.about-page-intro-title-line {
    display: block;
    line-height: 1.22;
}

@media (min-width: 640px) {
    .about-page-intro-title {
        gap: 0.15em;
    }

    .about-page-intro-title-line {
        line-height: 1.24;
    }
}

.about-page-intro-visual {
    position: relative;
    width: min(100%, 39.2rem);
    margin-inline: auto;
}

@media (min-width: 640px) {
    .about-page-intro-visual {
        width: min(100%, 41.2rem);
    }
}

@media (min-width: 1024px) {
    .about-page-intro-visual {
        width: min(100%, 44.1rem);
        justify-self: center;
        margin-inline: auto;
    }
}

.about-page-intro-visual-accent {
    position: absolute;
    inset: 1rem -0.75rem -1rem 1rem;
    border-radius: 1.5rem;
    background: linear-gradient(145deg, #f8fafc 0%, #f5f5f5 100%);
    border: 1px solid #e2e8f0;
}

@media (min-width: 1024px) {
    .about-page-intro-visual-accent {
        inset: 1.125rem -0.875rem -1.125rem 1.125rem;
    }
}

.about-page-intro-figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 1.25rem;
    box-shadow:
        0 20px 40px -14px rgba(15, 23, 42, 0.16),
        0 0 0 1px rgba(15, 23, 42, 0.04);
}

.about-page-intro-image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    object-fit: cover;
    object-position: center top;
}

/* About — values section */
.about-page-values {
    position: relative;
    background: #ffffff;
}

.about-page-values-inner {
    position: relative;
    z-index: 1;
}

.about-page-values-header {
    max-width: 40rem;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.about-page-values-eyebrow {
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--theme-accent);
}

.about-page-values-heading {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--theme-text);
}

.about-page-values-lead {
    margin-top: 1rem;
    max-width: 34rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: #64748b;
}

.about-page-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .about-page-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .about-page-values-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.about-page-value-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid #eef2f6;
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.about-page-value-card:hover {
    transform: translateY(-4px);
    border-color: #e2e8f0;
    box-shadow:
        0 20px 40px -16px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(15, 23, 42, 0.03);
}

.about-page-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    background: var(--theme-accent);
    color: var(--theme-accent-foreground);
    box-shadow: none;
}

.about-page-value-icon [data-lucide],
.about-page-value-icon svg {
    width: 1.375rem;
    height: 1.375rem;
    stroke-width: 1.75;
    color: inherit;
    stroke: currentColor;
}

.about-page-value-title {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--theme-text);
}

.about-page-value-desc {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #64748b;
}

/* Service cards — tam görsel, alt gradient overlay, başlık + CTA */
.services-section {
    background: #ffffff;
}

.home-services-section .ui-btn-outline:hover {
    border-color: var(--theme-link-hover);
    color: var(--theme-link-hover);
    background: var(--theme-link-hover-soft);
}

.services-grid {
    align-items: stretch;
}

.service-card-wrap {
    height: 100%;
    animation: serviceCardIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.service-card {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: var(--corp-radius-xl);
    background: #1a1a1a;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card-wrap:hover .service-card {
    transform: translateY(-4px);
}

.service-card-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 22rem;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #1f2937;
}

.service-card-image,
.service-card-fallback {
    transform: scale(1);
    transform-origin: center center;
    transition: transform 8s ease-out;
}

.service-card-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-wrap:hover .service-card-image,
.service-card-wrap:hover .service-card-fallback {
    transform: scale(1.04);
}

.service-card-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #374151 0%, #1f2937 100%);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.08) 42%,
        rgba(0, 0, 0, 0.55) 72%,
        rgba(0, 0, 0, 0.82) 100%
    );
    pointer-events: none;
    transition: background 1.2s ease-out;
}

.service-card-wrap:hover .service-card-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.12) 42%,
        rgba(0, 0, 0, 0.62) 72%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.service-card-content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1.75rem 1.5rem 1.875rem;
}

.service-card-title {
    margin: 0;
    font-size: clamp(1.375rem, 2.2vw, 1.625rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.service-card-action {
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.25s ease, transform 0.25s ease;
}

.service-card-wrap:hover .service-card-action {
    color: #ffffff;
    transform: translateX(3px);
}

@media (min-width: 640px) {
    .service-card-visual {
        min-height: 24rem;
    }

    .service-card-content {
        padding: 2rem 1.75rem 2.125rem;
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .service-card-visual {
        min-height: 26rem;
    }

    .service-card-content {
        padding: 2.125rem 2rem 2.25rem;
    }

    .service-card-title {
        font-size: 1.625rem;
    }
}

/* Home — features / value section */
.home-features-heading {
    position: relative;
    max-width: 52rem;
    margin-bottom: var(--home-section-intro-space);
    padding-bottom: 1.125rem;
    font-size: clamp(1.875rem, 4.5vw, 3.125rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--theme-text);
}

.home-features-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3rem;
    height: 0.2rem;
    border-radius: 9999px;
    background: var(--header-accent);
}

.home-features-heading strong {
    font-weight: 700;
    color: var(--header-accent);
}

.home-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .home-features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.75rem;
    }
}

.home-features-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.75rem 1.5rem;
    border-radius: var(--corp-radius-xl);
    background: #ffffff;
    border: 1px solid var(--corp-border);
    box-shadow: var(--corp-shadow-sm);
    transition:
        background var(--corp-transition),
        border-color var(--corp-transition),
        transform var(--corp-transition),
        box-shadow var(--corp-transition);
}

.home-features-item:hover {
    border-color: #e2e8f0;
    box-shadow: var(--corp-shadow-md);
    transform: translateY(-4px);
}

.home-features-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: var(--corp-radius);
    background: #ffffff;
    border: 1px solid var(--corp-border);
    color: var(--header-accent);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition:
        background var(--corp-transition),
        border-color var(--corp-transition),
        color var(--corp-transition);
}

.home-features-item:hover .home-features-icon {
    border-color: #e2e8f0;
    background: var(--corp-surface);
}

.home-features-icon svg,
.home-features-icon [data-lucide] {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 1.75;
    color: inherit;
    stroke: currentColor;
}

.home-features-title {
    margin-top: 1.375rem;
    font-size: calc(1.125rem + 2px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: var(--theme-text);
    transition: color 0.25s ease;
}

.home-features-item:hover .home-features-title {
    color: var(--header-accent);
}

.home-features-desc {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--corp-muted);
}

/* Products page */
.products-page {
    background: transparent;
}

.products-grid {
    align-items: stretch;
}

.product-card-wrap {
    height: 100%;
    animation: productCardIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.product-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--corp-radius-xl);
    border: 1px solid var(--corp-border);
    background: #ffffff;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.product-card-wrap:hover .product-card {
    transform: translateY(-4px);
    border-color: #e2e8f0;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.product-card-visual {
    position: relative;
    flex: 0 0 auto;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--corp-surface-alt);
}

.product-card-image,
.product-card-fallback {
    transform: scale(1);
    transform-origin: center center;
    transition: transform 8s ease-out;
}

.product-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-wrap:hover .product-card-image,
.product-card-wrap:hover .product-card-fallback {
    transform: scale(1.04);
}

.product-card-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #f8fafc 0%, #eef2f7 100%);
    color: #94a3b8;
}

.product-card-fallback [data-lucide],
.product-card-fallback svg {
    width: 2.75rem;
    height: 2.75rem;
}

.product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.625rem;
    padding: 1rem 1rem 1.125rem;
}

.product-card-title {
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--theme-text);
    transition: color 0.25s ease;
}

.product-card-wrap:hover .product-card-title {
    color: var(--header-accent);
}

.product-card-price {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--header-accent);
}

.product-card-price--info {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--corp-muted);
}

.product-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: auto;
    padding: 0.6875rem 1rem;
    border-radius: var(--corp-radius);
    background: var(--theme-accent);
    color: var(--theme-accent-foreground);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-card-wrap:hover .product-card-action {
    background: var(--theme-accent-hover);
    box-shadow: none;
}

@media (min-width: 640px) {
    .product-card-body {
        gap: 0.75rem;
        padding: 1.25rem 1.25rem 1.375rem;
    }

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

    .product-card-price {
        font-size: 1.125rem;
    }

    .product-card-action {
        padding: 0.75rem 1.125rem;
        font-size: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .product-card-body {
        padding: 1.375rem 1.375rem 1.5rem;
    }
}

/* —— Product detail page —— */
.product-detail-page {
    background: #ffffff;
}

.product-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    font-size: 0.8125rem;
}

@media (min-width: 1024px) {
    .product-detail-breadcrumb {
        margin-bottom: 3rem;
    }
}

.product-detail-breadcrumb-link {
    color: #64748b;
    transition: color 0.25s ease;
}

.product-detail-breadcrumb-link:hover {
    color: var(--theme-link-hover);
}

.product-detail-breadcrumb-sep {
    color: #cbd5e1;
}

.product-detail-breadcrumb-current {
    color: var(--theme-text);
    font-weight: 500;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 4rem;
    }
}

.product-detail-image-wrap {
    overflow: hidden;
    border-radius: 1.25rem;
    background: #f8fafc;
    border: 1px solid #eef2f6;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.03),
        0 16px 40px rgba(15, 23, 42, 0.06);
    aspect-ratio: 1 / 1;
}

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

.product-detail-image-fallback {
    display: flex;
    height: 100%;
    min-height: 320px;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}

.product-detail-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .product-detail-gallery {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }
}

@media (max-width: 639px) {
    .product-detail-gallery {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.product-detail-thumb {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 0.875rem;
    border: 2px solid transparent;
    background: #f8fafc;
    cursor: pointer;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.product-detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-thumb:hover {
    border-color: #e2e8f0;
    transform: translateY(-1px);
}

.product-detail-thumb.is-active {
    border-color: var(--theme-text);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .product-detail-info {
        position: sticky;
        top: 7rem;
    }
}

.product-detail-category {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    background: var(--theme-link-hover-soft);
    color: var(--theme-link-hover);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.25s ease, color 0.25s ease;
}

.product-detail-category:hover {
    background: rgba(214, 34, 19, 0.14);
    color: var(--theme-link-hover-dark);
}

.product-detail-title {
    font-size: clamp(1.75rem, 4vw, 2.375rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--theme-text);
}

.product-detail-excerpt {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #64748b;
}

.product-detail-price-box {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.25rem 1.35rem;
    border-radius: 1rem;
    background: #fafbfc;
    border: 1px solid #eef2f6;
}

.product-detail-price-label {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
}

.product-detail-price {
    font-size: clamp(1.75rem, 3vw, 2.125rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--theme-text);
}

.product-detail-price--info {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--theme-accent);
}

.product-detail-specs {
    padding-top: 0.5rem;
}

.product-detail-specs-title {
    margin-bottom: 1rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
}

.product-detail-specs-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #f1f5f9;
}

.product-detail-spec-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.875rem;
}

.product-detail-spec-row dt {
    font-weight: 500;
    color: #64748b;
}

.product-detail-spec-row dd {
    font-weight: 600;
    color: var(--theme-text);
    text-align: right;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.product-detail-qty-hint {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
}

.product-detail-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.25rem;
    padding: 0 1.75rem;
    border: none;
    border-radius: 1rem;
    background: var(--theme-accent);
    color: var(--theme-accent-foreground);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-detail-cta-primary [data-lucide],
.product-detail-cta-primary svg {
    width: 1.125rem;
    height: 1.125rem;
    color: inherit;
    stroke: currentColor;
}

.product-detail-cta-primary:hover {
    background: var(--theme-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.product-detail-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.25rem;
    padding: 0 1.75rem;
    border: none;
    border-radius: 1rem;
    background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        opacity 0.3s ease;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}

.product-detail-cta-whatsapp-icon {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.product-detail-cta-whatsapp:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.38);
}

.product-detail-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.25rem;
    padding: 0 1.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: #fff;
    color: var(--theme-text);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-detail-cta-secondary svg {
    width: 1.125rem;
    height: 1.125rem;
}

.product-detail-cta-secondary:hover:not(:disabled) {
    border-color: var(--theme-accent);
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.product-detail-cta-secondary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.product-detail-content {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #f1f5f9;
}

@media (min-width: 1024px) {
    .product-detail-content {
        margin-top: 5rem;
        padding-top: 4rem;
    }
}

.product-detail-content-title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--theme-text);
}

.product-detail-prose {
    color: #475569;
}

/* Ürün sipariş / teklif modal */
.product-inquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

@media (max-width: 767px) {
    .product-inquiry-modal {
        align-items: flex-end;
        padding: 0;
    }
}

.product-inquiry-modal.hidden {
    display: none;
}

.product-inquiry-modal.is-visible .product-inquiry-modal-backdrop {
    opacity: 1;
}

.product-inquiry-modal.is-visible .product-inquiry-modal-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.product-inquiry-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.product-inquiry-modal-panel {
    position: relative;
    width: 100%;
    max-width: 44rem;
    max-height: min(92vh, 680px);
    overflow: hidden;
    border-radius: 1.5rem;
    background: #ffffff;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 32px 64px -12px rgba(15, 23, 42, 0.35);
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    transition:
        opacity 0.35s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 767px) {
    .product-inquiry-modal-panel {
        max-width: 100%;
        max-height: min(94dvh, 720px);
        border-radius: 1.25rem 1.25rem 0 0;
        transform: translateY(100%);
    }

    .product-inquiry-modal.is-visible .product-inquiry-modal-panel {
        transform: translateY(0);
    }
}

.product-inquiry-modal-handle {
    display: none;
}

@media (max-width: 767px) {
    .product-inquiry-modal-handle {
        display: block;
        position: absolute;
        top: 0.5rem;
        left: 50%;
        z-index: 6;
        width: 2.5rem;
        height: 0.25rem;
        border-radius: 9999px;
        background: rgba(255, 255, 255, 0.35);
        transform: translateX(-50%);
        pointer-events: none;
    }
}

.product-inquiry-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.92);
    color: #64748b;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

@media (max-width: 767px) {
    .product-inquiry-modal-close {
        top: 0.875rem;
        right: 0.875rem;
        width: 2.375rem;
        height: 2.375rem;
        background: rgba(255, 255, 255, 0.14);
        color: #fff;
        box-shadow: none;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    .product-inquiry-modal-close:hover {
        background: rgba(255, 255, 255, 0.22);
        color: #fff;
    }
}

.product-inquiry-modal-close:hover {
    background: #fff;
    color: #0f172a;
    transform: scale(1.04);
}

.product-inquiry-modal-close svg {
    width: 1.125rem;
    height: 1.125rem;
}

.product-inquiry-modal-layout {
    display: grid;
    grid-template-columns: 1fr;
    max-height: min(92vh, 680px);
}

@media (max-width: 767px) {
    .product-inquiry-modal-layout {
        display: flex;
        flex-direction: column;
        max-height: min(94dvh, 720px);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }
}

@media (min-width: 768px) {
    .product-inquiry-modal-layout {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    }
}

.product-inquiry-modal-aside {
    position: relative;
    padding: 2rem 1.75rem;
    background: linear-gradient(160deg, var(--theme-dark-bg) 0%, var(--hero-panel-bg-deep) 100%);
    color: #ffffff;
    overflow: hidden;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .product-inquiry-modal-aside {
        padding: 1.125rem 3.75rem 1.125rem 1.125rem;
    }
}

.product-inquiry-modal-aside::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.product-inquiry-modal-aside-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 100%;
}

@media (max-width: 767px) {
    .product-inquiry-modal-aside-inner {
        flex-direction: row;
        align-items: center;
        gap: 0.875rem;
        min-height: auto;
    }
}

.product-inquiry-modal-aside-media {
    display: contents;
}

@media (max-width: 767px) {
    .product-inquiry-modal-aside-media {
        display: flex;
        flex-shrink: 0;
        align-items: center;
    }
}

.product-inquiry-modal-aside-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    flex: 1;
}

.product-inquiry-modal--quote .product-inquiry-modal-aside {
    background: linear-gradient(160deg, var(--theme-dark-bg) 0%, var(--hero-panel-bg-deep) 100%);
}

.product-inquiry-modal-product-thumb {
    width: 6.5rem;
    height: 6.5rem;
    margin-bottom: 1.375rem;
    border-radius: 1.125rem;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .product-inquiry-modal-product-thumb {
        width: 4.75rem;
        height: 4.75rem;
        margin-bottom: 0;
        border-radius: 0.875rem;
    }
}

@media (min-width: 768px) {
    .product-inquiry-modal-product-thumb {
        width: 7.5rem;
        height: 7.5rem;
        margin-bottom: 1.5rem;
        border-radius: 1.25rem;
    }
}

.product-inquiry-modal-product-thumb.hidden {
    display: none;
}

.product-inquiry-modal-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-inquiry-modal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .product-inquiry-modal-icon {
        width: 2.75rem;
        height: 2.75rem;
        margin-bottom: 0;
    }
}

.product-inquiry-modal-icon.hidden {
    display: none;
}

.product-inquiry-modal-icon svg {
    width: 1.375rem;
    height: 1.375rem;
}

.product-inquiry-modal-badge {
    display: inline-flex;
    padding: 0.3125rem 0.75rem;
    margin-bottom: 0.875rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
    .product-inquiry-modal-badge {
        margin-bottom: 0.375rem;
        padding: 0.25rem 0.625rem;
        font-size: 0.625rem;
    }
}

.product-inquiry-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.25;
    color: #fff;
}

@media (max-width: 767px) {
    .product-inquiry-modal-title {
        font-size: 1.125rem;
        line-height: 1.3;
    }
}

.product-inquiry-modal-desc {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(248, 250, 252, 0.72);
    max-width: 18rem;
}

@media (max-width: 767px) {
    .product-inquiry-modal-desc {
        display: none;
    }
}

.product-inquiry-modal-product {
    margin-top: auto;
    padding-top: 1.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(248, 250, 252, 0.55);
}

@media (max-width: 767px) {
    .product-inquiry-modal-product {
        margin-top: 0.375rem;
        padding-top: 0;
        font-size: 0.75rem;
        line-height: 1.45;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

.product-inquiry-modal-body {
    padding: 2rem 1.75rem;
    overflow-y: auto;
    background: #fff;
    flex: 1;
    min-height: 0;
}

@media (max-width: 767px) {
    .product-inquiry-modal-body {
        padding: 1.25rem 1.125rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
        overflow-y: visible;
    }
}

@media (min-width: 768px) {
    .product-inquiry-modal-body {
        padding: 2.25rem 2rem;
    }
}

.product-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

@media (max-width: 767px) {
    .product-inquiry-form {
        gap: 0.875rem;
    }
}

.product-inquiry-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.125rem;
}

@media (min-width: 768px) {
    .product-inquiry-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .product-inquiry-form-grid {
        gap: 0.875rem;
    }
}

.product-inquiry-field {
    display: flex;
    flex-direction: column;
    gap: 0.4375rem;
}

.product-inquiry-field.hidden {
    display: none;
}

.product-inquiry-field label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #000000;
}

.product-inquiry-qty-hint {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.4;
}

.product-inquiry-qty-hint.hidden {
    display: none;
}

.product-inquiry-input {
    width: 100%;
    padding: 0.8125rem 1rem;
    border: 1px solid #e8edf2;
    border-radius: 0.875rem;
    background: #f8fafc;
    font-size: 0.9375rem;
    color: var(--theme-text);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

@media (max-width: 767px) {
    .product-inquiry-input {
        padding: 0.75rem 0.875rem;
        font-size: 1rem;
        border-radius: 0.75rem;
    }
}

.product-inquiry-input::placeholder {
    color: #94a3b8;
}

.product-inquiry-input:focus {
    outline: none;
    border-color: var(--theme-dark-bg);
    box-shadow: 0 0 0 4px var(--theme-link-hover-soft);
    background: #fff;
}

.product-inquiry-textarea {
    resize: vertical;
    min-height: 5.5rem;
}

@media (max-width: 767px) {
    .product-inquiry-textarea {
        min-height: 4.5rem;
    }
}

.product-inquiry-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 3.25rem;
    margin-top: 0.25rem;
    padding: 0 1.5rem;
    border: none;
    border-radius: 0.875rem;
    background: var(--theme-dark-bg);
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 24px -6px rgba(214, 34, 19, 0.32);
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

@media (max-width: 767px) {
    .product-inquiry-submit {
        position: sticky;
        bottom: env(safe-area-inset-bottom, 0px);
        z-index: 2;
        min-height: 3rem;
        margin-top: 0.5rem;
        font-size: 1rem;
        border-radius: 0.75rem;
    }
}

.product-inquiry-submit-icon {
    width: 1.125rem;
    height: 1.125rem;
    color: inherit;
    stroke: currentColor;
    transition: transform 0.25s ease;
}

.product-inquiry-submit:hover:not(:disabled) {
    background: var(--theme-link-hover-dark);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px -6px rgba(214, 34, 19, 0.38);
}

.product-inquiry-submit:hover:not(:disabled) .product-inquiry-submit-icon {
    transform: translateX(3px);
}

.product-inquiry-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.product-inquiry-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.625rem;
    padding: 2rem 1rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, #fff5f6 0%, #fde8ec 100%);
    border: 1px solid #f9c5ce;
}

.product-inquiry-success.hidden {
    display: none;
}

.product-inquiry-success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background: #fff;
    color: var(--theme-accent);
    box-shadow: 0 4px 14px rgba(214, 34, 19, 0.15);
}

.product-inquiry-success-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.product-inquiry-success-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #9f1239;
}

.product-inquiry-success-text {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #be123c;
    max-width: 20rem;
}

.product-inquiry-form.is-success .product-inquiry-form-grid,
.product-inquiry-form.is-success .product-inquiry-field:not(#product-inquiry-success),
.product-inquiry-form.is-success .product-inquiry-submit {
    display: none;
}

.product-inquiry-form.is-success #product-inquiry-success {
    display: flex;
}

/* Header sepet */
.site-header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 0;
    color: #111827;
    background: transparent;
    box-shadow: none;
    transition: color 0.2s ease;
}

.site-header-cart:hover,
.site-header-cart.is-active {
    color: var(--header-accent);
    background: transparent;
    border-color: transparent;
    transform: none;
    box-shadow: none;
}

.site-header-cart-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

.site-header-cart-badge {
    position: absolute;
    top: -0.125rem;
    right: -0.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.125rem;
    height: 1.125rem;
    padding: 0 0.25rem;
    border-radius: 9999px;
    background: var(--header-accent);
    color: #ffffff;
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: none;
}

.site-header-cart-badge.hidden {
    display: none;
}

/* Sepet sayfası */
.cart-page-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cart-page-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--theme-text);
}

.cart-page-subtitle {
    margin-top: 0.5rem;
    font-size: 0.9375rem;
    color: #64748b;
}

.cart-page-continue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    background: var(--theme-dark-bg);
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cart-page-continue:hover {
    color: #ffffff;
    text-decoration: none;
    background: var(--theme-link-hover-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -8px rgba(214, 34, 19, 0.32);
}

.cart-page-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid #eef2f6;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.cart-page-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 9999px;
    background: #fff;
    color: #94a3b8;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.cart-page-empty-icon svg {
    width: 2rem;
    height: 2rem;
}

.cart-page-empty-title {
    margin-top: 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--theme-text);
}

.cart-page-empty-text {
    margin-top: 0.5rem;
    max-width: 24rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #64748b;
}

.cart-page-empty-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    min-height: 3rem;
    padding: 0 1.5rem;
    border-radius: 0.875rem;
    background: var(--theme-accent);
    color: var(--theme-accent-foreground);
    font-size: 0.9375rem;
    font-weight: 600;
}

.cart-page-empty-cta [data-lucide],
.cart-page-empty-cta svg {
    width: 1rem;
    height: 1rem;
    color: inherit;
    stroke: currentColor;
}

.cart-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .cart-page-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
        gap: 2rem;
    }
}

.cart-page-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 5.5rem minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
    border-radius: 1.125rem;
    border: 1px solid #eef2f6;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

@media (min-width: 640px) {
    .cart-item {
        grid-template-columns: 6.5rem minmax(0, 1fr);
        padding: 1.125rem 1.25rem;
    }
}

.cart-item-media {
    display: block;
    aspect-ratio: 1;
    border-radius: 0.875rem;
    overflow: hidden;
    background: #f8fafc;
}

.cart-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-media-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #cbd5e1;
}

.cart-item-media-fallback svg {
    width: 1.75rem;
    height: 1.75rem;
}

.cart-item-body {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    min-width: 0;
}

.cart-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.cart-item-name {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--theme-text);
}

.cart-item-name:hover {
    color: var(--theme-link-hover);
}

.cart-item-price {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
}

.cart-item-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 0.625rem;
    background: #f8fafc;
    color: #94a3b8;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.cart-item-remove:hover {
    background: #fef2f2;
    color: var(--theme-accent);
}

.cart-item-remove svg {
    width: 1rem;
    height: 1rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.cart-item-qty-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #000000;
}

.cart-item-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e8edf2;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #f8fafc;
}

.cart-item-qty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    background: transparent;
    color: #475569;
    font-size: 1.125rem;
    line-height: 1;
    cursor: pointer;
}

.cart-item-qty-btn:hover {
    background: #fff;
    color: var(--theme-text);
}

.cart-item-qty-input {
    width: 3rem;
    height: 2.25rem;
    border: none;
    border-left: 1px solid #e8edf2;
    border-right: 1px solid #e8edf2;
    background: #fff;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--theme-text);
    -moz-appearance: textfield;
}

.cart-item-qty-input::-webkit-outer-spin-button,
.cart-item-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-item-qty-input:focus {
    outline: none;
}

.cart-summary-card {
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid #eef2f6;
    background: #fff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

@media (min-width: 1024px) {
    .cart-summary-card {
        position: sticky;
        top: calc(var(--site-header-offset, 5rem) + 1rem);
    }
}

.cart-summary-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--theme-text);
}

.cart-summary-count {
    margin-top: 0.375rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    color: #64748b;
}

.cart-checkout-form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.cart-checkout-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.cart-checkout-field label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #000000;
}

.cart-checkout-input {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: 1px solid #e8edf2;
    border-radius: 0.75rem;
    background: #f8fafc;
    font-size: 1rem;
    color: var(--theme-text);
}

.cart-checkout-input:focus {
    outline: none;
    border-color: var(--theme-accent);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
    background: #fff;
}

.cart-checkout-textarea {
    resize: vertical;
    min-height: 5rem;
}

.cart-checkout-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 3rem;
    margin-top: 0.25rem;
    border: none;
    border-radius: 0.75rem;
    background: var(--theme-accent);
    color: var(--theme-accent-foreground);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
}

.cart-checkout-submit-icon {
    width: 1rem;
    height: 1rem;
    color: inherit;
    stroke: currentColor;
}

.cart-checkout-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.cart-checkout-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1.25rem 0.75rem;
    border-radius: 0.875rem;
    background: linear-gradient(180deg, #fff5f6 0%, #fde8ec 100%);
    border: 1px solid #f9c5ce;
}

.cart-checkout-success.hidden {
    display: none;
}

.cart-checkout-success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    background: #fff;
    color: var(--theme-accent);
}

.cart-checkout-success-icon svg {
    width: 1.375rem;
    height: 1.375rem;
}

.cart-checkout-success-title {
    font-size: 1rem;
    font-weight: 700;
    color: #9f1239;
}

.cart-checkout-success-text {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #be123c;
}

.cart-checkout-form.is-success .cart-checkout-field,
.cart-checkout-form.is-success .cart-checkout-submit {
    display: none;
}

.cart-checkout-form.is-success .cart-checkout-success {
    display: flex;
}

/* —— Service detail page —— */
.service-detail-page {
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.5rem, 6vw, 5rem);
    background: #ffffff;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .service-detail-layout {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
        gap: clamp(2.5rem, 4vw, 3.5rem);
    }
}

.service-detail-main {
    min-width: 0;
}

.service-detail-hero {
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 18px 48px -20px rgba(15, 23, 42, 0.18);
}

.service-detail-hero-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    object-position: center;
}

.service-detail-lead {
    margin-bottom: 1.75rem;
    max-width: 48rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--theme-text);
}

.service-detail-prose {
    color: var(--theme-text);
}

.service-detail-prose > :first-child {
    margin-top: 0;
}

.service-detail-prose h2,
.service-detail-prose h3,
.service-detail-prose h4 {
    color: var(--theme-text);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.service-detail-prose h2 {
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    font-size: clamp(1.375rem, 3vw, 1.75rem);
}

.service-detail-prose p {
    font-size: 1.1875rem;
    line-height: 1.8;
    color: var(--theme-text);
}

.service-detail-prose ul {
    list-style: none;
    margin: 1.75rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-detail-prose ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 1.1875rem;
    font-weight: 600;
    line-height: 1.8;
    color: var(--theme-text);
}

.service-detail-prose ul li::before {
    content: "";
    flex-shrink: 0;
    width: 1.625rem;
    height: 1.625rem;
    margin-top: 0.125rem;
    border-radius: 9999px;
    background-color: var(--theme-dark-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.75rem;
}

.service-detail-prose ol {
    margin: 1.75rem 0;
    padding-left: 1.25rem;
    color: var(--theme-text);
}

.service-detail-prose ol li {
    margin-bottom: 0.625rem;
    font-size: 1.1875rem;
    line-height: 1.8;
}

.service-detail-empty {
    padding: 3rem 0;
    text-align: center;
    color: #94a3b8;
}

/* Service detail sidebar */
.service-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .service-detail-sidebar {
        position: sticky;
        top: 7rem;
    }
}

.service-detail-sidebar-nav {
    padding: 1.75rem 1.5rem;
    border-radius: 1.25rem;
    background: var(--corp-surface);
    border: 1px solid var(--corp-border);
}

.service-detail-sidebar-title {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 0.875rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--theme-text);
}

.service-detail-sidebar-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.75rem;
    height: 0.2rem;
    border-radius: 9999px;
    background: var(--theme-accent);
}

.service-detail-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.service-detail-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.875rem;
    padding: 0.95rem 1.125rem;
    border-radius: 9999px;
    background: #ffffff;
    color: var(--theme-text);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.35;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition:
        color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.service-detail-sidebar-link:hover {
    color: var(--theme-link-hover);
    box-shadow: 0 8px 24px -12px rgba(15, 23, 42, 0.14);
    transform: translateY(-1px);
}

.service-detail-sidebar-link.is-active {
    background: var(--theme-dark-bg);
    color: #ffffff;
    box-shadow: none;
}

.service-detail-sidebar-link.is-active:hover {
    color: #ffffff;
    background: var(--hero-panel-bg-deep);
}

.service-detail-sidebar-link-text {
    min-width: 0;
}

.service-detail-sidebar-link-icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    background: #ffffff;
    color: var(--header-accent);
    border: 1px solid var(--corp-border);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.service-detail-sidebar-link-icon svg {
    width: 0.875rem;
    height: 0.875rem;
    color: inherit;
    stroke: currentColor;
}

.service-detail-sidebar-link.is-active .service-detail-sidebar-link-icon {
    background: #ffffff;
    color: var(--header-accent);
    border-color: rgba(255, 255, 255, 0.85);
}

.service-detail-sidebar-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem 1.5rem;
    border-radius: 1.25rem;
    background: linear-gradient(160deg, var(--theme-dark-bg) 0%, var(--hero-panel-bg-deep) 100%);
    color: #ffffff;
    box-shadow: none;
    filter: none;
}

.service-detail-sidebar-cta::before,
.service-detail-sidebar-cta::after {
    content: none;
    display: none;
}

.service-detail-sidebar-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1.125rem;
    background: transparent;
    color: #ffffff;
}

.service-detail-sidebar-cta-icon [data-lucide],
.service-detail-sidebar-cta-icon svg {
    width: 3.09375rem;
    height: 3.09375rem;
    stroke-width: 2.25;
    color: inherit;
    stroke: currentColor;
}

.service-detail-sidebar-cta-label {
    font-size: 1.125rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

.service-detail-sidebar-cta-phone {
    display: block;
    margin-top: 0.625rem;
    font-size: clamp(1.375rem, 3vw, 1.625rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    box-shadow: none;
    text-shadow: none;
    transition: opacity 0.2s ease;
}

.service-detail-sidebar-cta-phone:hover {
    opacity: 0.88;
}

.service-detail-sidebar-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.35rem 0.35rem 0.35rem 1.25rem;
    border-radius: 9999px;
    background: #ffffff;
    color: var(--theme-text);
    font-size: 0.9375rem;
    font-weight: 600;
    box-shadow: none;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.service-detail-sidebar-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: none;
}

.service-detail-sidebar-cta-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: var(--theme-dark-bg);
    color: #ffffff;
    box-shadow: none;
}

.service-detail-sidebar-cta-btn-icon svg {
    width: 1rem;
    height: 1rem;
}

@media (max-width: 1023px) {
    .service-detail-sidebar-nav,
    .service-detail-sidebar-cta {
        padding: 1.5rem 1.25rem;
    }
}

/* —— Contact page —— */
.contact-page {
    background: transparent;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-page-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 4rem;
    }
}

.contact-page-eyebrow {
    margin-bottom: 1rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--theme-accent);
}

.contact-page-heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--theme-text);
}

.contact-page-lead {
    margin-top: 1rem;
    max-width: 28rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #64748b;
}

.contact-page-cards {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: 2.5rem;
}

.contact-page-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid #eef2f6;
    border-radius: 1rem;
    background: #ffffff;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

a.contact-page-card:hover {
    border-color: #e2e8f0;
    box-shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

.contact-page-card-icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: var(--theme-accent);
    color: var(--theme-accent-foreground);
}

.contact-page-card-icon--whatsapp {
    background: linear-gradient(145deg, #128c7e 0%, #25d366 100%);
}

.contact-page-card-icon [data-lucide],
.contact-page-card-icon svg {
    width: 1.125rem;
    height: 1.125rem;
    color: inherit;
    stroke: currentColor;
}

.contact-page-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.contact-page-card-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
}

.contact-page-card-value {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--theme-text);
}

a.contact-page-card:hover .contact-page-card-value {
    color: var(--theme-link-hover);
}

.contact-page-card--static .contact-page-card-value {
    font-weight: 600;
    color: var(--theme-text);
}

.contact-page-form-panel {
    padding: clamp(1.75rem, 4vw, 2.25rem);
    border: 1px solid var(--corp-border);
    border-radius: var(--corp-radius-xl);
    background: #ffffff;
    box-shadow: var(--corp-shadow-md);
}

.contact-page-form-header {
    margin-bottom: 1.75rem;
}

.contact-page-form-title {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--theme-text);
}

.contact-page-form-desc {
    margin-top: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-page-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .contact-page-form-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.contact-page-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-page-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #000000;
}

.contact-page-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background: #fafbfc;
    font-size: 0.9375rem;
    color: var(--theme-text);
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-page-input:focus {
    outline: none;
    border-color: var(--theme-text);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.06);
}

.contact-page-textarea {
    resize: vertical;
    min-height: 8rem;
}

.contact-page-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 3.25rem;
    margin-top: 0.25rem;
    padding: 0 1.5rem;
    border: none;
    border-radius: 0.875rem;
    background: var(--theme-accent);
    color: var(--theme-accent-foreground);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-page-submit svg {
    width: 1rem;
    height: 1rem;
}

.contact-page-submit:hover {
    background: var(--theme-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.contact-page-form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem) 1rem;
    min-height: 18rem;
}

.contact-page-form-success.hidden {
    display: none;
}

.contact-page-form-success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.25rem;
    border-radius: 9999px;
    background: var(--theme-accent-soft);
    color: var(--theme-accent);
}

.contact-page-form-success-icon svg {
    width: 2rem;
    height: 2rem;
}

.contact-page-form-success-title {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--theme-text);
}

.contact-page-form-success-text {
    margin-top: 0.75rem;
    max-width: 22rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #64748b;
}

.contact-page-form.hidden {
    display: none;
}

/* Prose styling */
.prose img { border-radius: 1rem; }
.prose a { color: var(--theme-link-hover); text-decoration: underline; }
.prose a:hover { color: var(--theme-link-hover-dark); }

.group:hover .group-hover\:text-brand-600,
.group:hover .group-hover\:text-link {
    color: var(--theme-link-hover) !important;
}

.group:hover .group-hover\:bg-brand-600,
.group:hover .group-hover\:bg-link {
    background-color: var(--theme-link-hover) !important;
}

.hover\:ring-brand-600:hover,
.hover\:ring-link:hover {
    --tw-ring-color: var(--theme-link-hover) !important;
}

/* Floating actions (desktop) */
.floating-whatsapp {
    background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.38);
}

.floating-whatsapp:hover {
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.48);
}

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

#floating-actions a,
#floating-actions-mobile a {
    animation: float 3s ease-in-out infinite;
}

#floating-actions-mobile {
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* Mobile action bar */
:root {
    --mobile-action-bar-height: calc(3.5rem + env(safe-area-inset-bottom, 0px));
}

#mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 45;
    width: 100%;
    max-width: 100vw;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    pointer-events: none;
}

#mobile-action-bar .mobile-action-bar-inner {
    pointer-events: auto;
}

.mobile-action-bar-inner {
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-action-bar-btn {
    flex: 1 1 0;
    min-width: 0;
}

.mobile-action-bar-call + .mobile-action-bar-whatsapp {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-action-bar-whatsapp {
    background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
}

@media (max-width: 1023px) {
    body.has-mobile-action-bar {
        padding-bottom: var(--mobile-action-bar-height);
    }
}

/* —— Mobil optimizasyon —— */
@media (max-width: 1023px) {
    .site-header-band .site-header-container {
        padding-left: var(--site-content-gutter-x);
        padding-right: var(--site-content-gutter-x);
    }

    .site-header-band {
        min-height: 4.5rem;
    }

    .site-header-inner {
        gap: 0.5rem;
        min-height: 4.5rem;
    }

    .site-header-end {
        display: flex;
        align-items: center;
        gap: 0.375rem;
        flex-shrink: 0;
        margin-left: auto;
    }

    .site-header-end-cart {
        display: flex;
        align-items: center;
    }

    .site-header-trailing {
        display: none;
    }

    .site-header-actions {
        display: flex;
        gap: 0.375rem;
        flex-shrink: 0;
        margin-left: 0;
    }

    .site-header-logo {
        height: 2.25rem;
        max-width: min(10.5rem, calc(100vw - 10.5rem));
    }

    .site-header-title {
        font-size: 1.25rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .site-header-tools {
        gap: 0.375rem;
    }

    .site-header-cart {
        width: 2.5rem;
        min-width: 2.5rem;
        height: 2.5rem;
    }

    .mobile-menu-drawer-logo {
        max-width: min(9.5rem, 55vw);
    }

    .about-page-intro-visual {
        width: min(100%, 22rem);
        overflow: hidden;
    }

    .about-page-intro {
        gap: 2.5rem;
    }
}

@media (max-width: 639px) {
    :root {
        --home-section-gap: clamp(3.625rem, 7.5vw, 5rem);
        --home-section-pad-y: clamp(3.375rem, 7vw, 4.5rem);
        --home-section-intro-space: clamp(1.25rem, 3.5vw, 1.75rem);
        --about-section-space: clamp(3rem, 7vw, 4rem);
    }

    .about-page > .about-page-section:first-child {
        padding-top: calc(var(--about-section-space) * 0.75);
    }

    .about-media-stack {
        min-height: 0;
        max-height: 22rem;
        aspect-ratio: 4 / 5;
    }

    .home-about-grid {
        gap: 2rem;
    }

    .home-about-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

    .home-about-text {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .about-page-intro-visual {
        width: min(100%, 18.5rem);
        overflow: hidden;
    }

    .about-page-intro-visual-accent {
        inset: 0.875rem 0 -0.875rem 0.875rem;
    }

    .about-page-intro-title {
        font-size: clamp(1.625rem, 6.5vw, 2rem) !important;
    }

    .about-page-intro-content p {
        font-size: 0.9375rem;
    }

    .about-page-card {
        padding: 1.5rem 1.25rem;
    }

    .home-features-item {
        padding: 1.5rem 1.25rem;
    }

    .home-features-heading {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .home-services-marquee-link {
        padding: 0 1.25rem;
        font-size: calc(0.875rem * 1.2);
    }

    .service-card-visual {
        min-height: calc(22rem * 0.8);
        aspect-ratio: 3 / 3.2;
    }

    .service-card-content {
        padding: 1.5rem 1.25rem 1.625rem;
    }

    .page-header-content h1 {
        font-size: clamp(1.5rem, 6.5vw, 2rem);
    }

    .site-footer .site-container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .mobile-menu-link,
    .mobile-menu-sublink {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .ui-btn-primary,
    .ui-btn-outline {
        padding: 0.75rem 1.25rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .home-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    #mobile-action-bar {
        display: none;
    }
}

/* Page transitions */
main {
    animation: fadeIn 0.4s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
