/* --- CORE CONFIGURATION & VARIABLES --- */
        :root {
            --primary: #ff6b00;
            --primary-hover: #e05e00;
            --dark: #111111;
            --light: #ffffff;
            --bg-accent: #f5f7fa;
            --text-main: #1a1a1a;
            --text-muted: #5c5c5c;
            --border-color: #e2e8f0;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 10px 20px rgba(0,0,0,0.05);
            --shadow-lg: 0 20px 40px rgba(0,0,0,0.08);
            --glass: rgba(255, 255, 255, 0.85);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --header-top-h: 34px;
            --header-top-bg: #252525;
            --header-main-h: 76px;
            --header-mkt-h: 0px;
            --header-total-h: calc(var(--header-top-h) + var(--header-main-h) + var(--header-mkt-h));
            --slogan-indirim: var(--primary);
            --slogan-indirim-dark: var(--primary-hover);
            --slogan-yeni: #2d2d2d;
            --slogan-yeni-dark: var(--dark);
            --slogan-domain: #22c55e;
            --slogan-domain-dark: #16a34a;
            --slogan-hosting: #0891b2;
            --slogan-hosting-dark: #0e7490;
            --slogan-bayilik: #d97706;
            --slogan-bayilik-dark: #b45309;
            --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--font-sans);
            outline: none;
        }

        html {
            scroll-behavior: smooth;
            margin: 0;
            padding: 0;
            max-width: 100%;
            overflow-x: hidden;
            overflow-x: clip;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        body {
            margin: 0;
            padding: var(--header-total-h) 0 0;
            background-color: var(--light);
            color: var(--text-main);
            font-weight: 500;
            font-variation-settings: 'opsz' 18;
            line-height: 1.6;
            max-width: 100%;
            overflow-x: hidden;
            overflow-x: clip;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--dark);
            line-height: 1.15;
            font-variation-settings: 'opsz' 32;
        }

        p, li, label, input, textarea, select, button {
            font-variation-settings: 'opsz' 18;
        }

        .btn {
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        .section-header h2 {
            font-variation-settings: 'opsz' 36;
            letter-spacing: -0.04em;
        }

        .section-header p {
            font-weight: 500;
            color: var(--text-muted);
        }

        strong, b {
            font-weight: 700;
            color: var(--dark);
        }

        /* Sabit header altında #anchor bölümleri */
        #domain,
        #products,
        #hosting,
        #testimonials,
        #reseller,
        #blog,
        #services {
            scroll-margin-top: var(--header-total-h);
        }

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

        ul {
            list-style: none;
        }

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

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            box-sizing: border-box;
        }

        @media (max-width: 768px) {
            .container {
                padding-left: max(16px, env(safe-area-inset-left, 0px));
                padding-right: max(16px, env(safe-area-inset-right, 0px));
            }
        }

        /* --- BUTTONS & BADGES --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            font-weight: 600;
            font-size: 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }

        .btn-block {
            width: 100%;
            box-sizing: border-box;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--light);
        }

        .btn-primary:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--dark);
            border: 2px solid var(--border-color);
        }

        .btn-secondary:hover {
            background-color: var(--dark);
            color: var(--light);
            border-color: var(--dark);
            transform: translateY(-2px);
        }

        .badge {
            display: inline-block;
            padding: 6px 12px;
            font-size: 12px;
            font-weight: 600;
            border-radius: 50px;
            background-color: rgba(255, 107, 0, 0.1);
            color: var(--primary);
            margin-bottom: 16px;
        }

        /* --- SECTION STRUCTURE --- */
        .section-padding {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 16px;
        }

        /* --- SITE HEADER --- */
        @keyframes header-pulse {
            0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.65); }
            70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
            100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
        }

        @keyframes slogan-shine {
            0% { transform: translateX(-130%) skewX(-20deg); }
            100% { transform: translateX(230%) skewX(-20deg); }
        }

        @keyframes slogan-pulse-indirim {
            0%, 100% {
                box-shadow: 0 2px 6px rgba(255, 107, 0, 0.3);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 2px 14px rgba(255, 107, 0, 0.55);
                transform: scale(1.06);
            }
        }

        @keyframes slogan-pulse-yeni {
            0%, 100% {
                box-shadow: 0 2px 5px rgba(17, 17, 17, 0.25);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 2px 12px rgba(17, 17, 17, 0.4);
                transform: scale(1.05);
            }
        }

        @keyframes slogan-pulse-domain {
            0%, 100% {
                box-shadow: 0 2px 6px rgba(34, 197, 94, 0.3);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 2px 14px rgba(34, 197, 94, 0.5);
                transform: scale(1.06);
            }
        }

        @keyframes slogan-pulse-hosting {
            0%, 100% {
                box-shadow: 0 2px 6px rgba(8, 145, 178, 0.3);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 2px 14px rgba(8, 145, 178, 0.5);
                transform: scale(1.06);
            }
        }

        @keyframes slogan-pulse-bayilik {
            0%, 100% {
                box-shadow: 0 2px 6px rgba(217, 119, 6, 0.3);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 2px 14px rgba(217, 119, 6, 0.5);
                transform: scale(1.06);
            }
        }

        @keyframes slogan-glow-indirim {
            0%, 100% { box-shadow: 0 2px 8px rgba(255, 107, 0, 0.35); }
            50% { box-shadow: 0 4px 18px rgba(255, 107, 0, 0.6); }
        }

        @keyframes slogan-glow-bayilik {
            0%, 100% { box-shadow: 0 2px 8px rgba(217, 119, 6, 0.35); }
            50% { box-shadow: 0 4px 18px rgba(217, 119, 6, 0.55); }
        }

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            max-width: 100%;
            z-index: 1100;
            margin: 0;
            padding: 0;
            background: var(--dark);
            box-shadow: none;
            transition: box-shadow 0.25s ease;
            overflow-x: clip;
        }

        .site-header.is-scrolled {
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
        }

        .site-header.is-scrolled .site-header__main {
            box-shadow: 0 1px 0 var(--border-color);
        }

        .site-header.is-mega-open .site-header__main {
            border-bottom-color: transparent;
        }

        .site-header__top {
            position: relative;
            z-index: 30;
            height: var(--header-top-h);
            background: var(--header-top-bg);
            color: rgba(255, 255, 255, 0.88);
            font-size: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            overflow: visible;
        }

        .site-header__top-inner {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .site-header__top-left,
        .site-header__top-right {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .site-header__top a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .site-header__top a:hover {
            color: #ffffff;
        }

        .site-header__pickers {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .site-header__picker {
            position: relative;
            z-index: 40;
        }

        .site-header__picker.is-open {
            z-index: 41;
        }

        .site-header__picker-btn {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 3px 9px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.92);
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
            max-width: 180px;
        }

        .site-header__picker-btn:hover,
        .site-header__picker.is-open .site-header__picker-btn {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.28);
            color: #fff;
        }

        .site-header__picker-caret {
            font-size: 10px;
            opacity: 0.75;
        }

        .site-header__picker-label--short {
            display: none;
        }

        .site-header__picker-menu {
            position: absolute;
            top: calc(100% + 6px);
            right: 0;
            min-width: 160px;
            margin: 0;
            padding: 6px;
            list-style: none;
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            box-shadow: var(--shadow-md);
            z-index: 1350;
        }

        .site-header__picker-menu button {
            width: 100%;
            text-align: left;
            padding: 8px 12px;
            border: none;
            border-radius: 6px;
            background: transparent;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-main);
            cursor: pointer;
            transition: var(--transition);
        }

        .site-header__picker-menu button:hover,
        .site-header__picker-menu button[aria-selected="true"] {
            background: var(--bg-accent);
            color: var(--primary);
        }

        .site-header__live {
            color: #34d399;
            font-weight: 600;
        }

        .site-header__live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #34d399;
            animation: header-pulse 1.6s infinite;
        }

        .site-header__main {
            position: relative;
            height: auto;
            background: #ffffff;
            border-bottom: 1px solid var(--border-color);
            z-index: 20;
            overflow: visible;
        }

        .site-header__bar {
            position: relative;
            z-index: 3;
            height: auto;
            box-sizing: border-box;
            padding-top: 12px;
            padding-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        @media (min-width: 1025px) {
            .site-header__bar {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-wrap: nowrap;
                gap: 16px 20px;
            }

            .site-header--logged-in .site-header__bar {
                gap: 14px 18px;
            }

            .site-header__cluster {
                display: flex;
                align-items: center;
                flex: 0 1 auto;
                min-width: 0;
                gap: 16px 20px;
            }

            .site-header__logo {
                flex-shrink: 0;
            }

            .site-header__nav {
                flex: 0 1 auto;
                min-width: 0;
                overflow: visible;
            }

            .site-header__bar-end {
                flex: 0 0 auto;
                margin-left: 0;
                padding-left: 16px;
                border-left: 1px solid var(--border-color);
            }
        }

        .site-header__bar-end {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            margin-left: auto;
            position: relative;
            z-index: 4;
        }

        @media (min-width: 1025px) {
            .site-header__bar-end {
                margin-left: 0;
            }
        }

        /* Logo + menü */
        .site-header__cluster {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 20px;
            flex: 1 1 auto;
            min-width: 0;
        }

        @media (min-width: 1025px) {
            .site-header__cluster {
                flex: 0 1 auto;
            }
        }

        .site-header__main > .container.site-header__bar {
            padding-left: 24px;
            padding-right: 24px;
        }

        @media (min-width: 1025px) {
            .site-header__main > .container.site-header__bar {
                width: fit-content;
                max-width: calc(100% - 48px);
                margin-left: auto;
                margin-right: auto;
            }
        }

        .site-header__logo {
            flex-shrink: 0;
            margin: 0;
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -0.04em;
            color: var(--dark);
            line-height: 1;
        }

        .site-header__logo span {
            color: var(--primary);
        }

        .site-header__nav {
            position: static;
            flex: 1 1 auto;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: auto;
            max-width: 100%;
            min-width: 0;
            padding: 0;
            z-index: 3;
            overflow: visible;
        }

        .site-header__menu {
            display: flex;
            align-items: center;
            gap: 2px;
            list-style: none;
            height: auto;
            margin: 0;
            min-width: 0;
            flex-wrap: nowrap;
            overflow: visible;
        }

        .site-header__item {
            position: relative;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .site-header__nav .site-header__link,
        .site-header__link,
        .site-header__menu > .site-header__item > a.site-header__link,
        .site-header__menu > .site-header__item > button.site-header__link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 8px 11px;
            font-family: var(--font-sans);
            font-size: 14px;
            font-weight: 600;
            line-height: 1.4;
            color: var(--dark);
            letter-spacing: -0.02em;
            font-variation-settings: 'opsz' 24;
            border-radius: 8px;
            border: none;
            background: none;
            cursor: pointer;
            white-space: nowrap;
            transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
        }

        .site-header__link i {
            font-size: 10px;
            opacity: 0.65;
            color: var(--text-muted);
            transition: transform 0.25s ease, color 0.2s ease, opacity 0.2s ease;
        }

        .site-header__link:hover,
        .site-header__item.is-open > .site-header__link {
            color: var(--primary);
            background: rgba(255, 107, 0, 0.1);
            box-shadow: 0 1px 0 rgba(255, 107, 0, 0.15);
        }

        .site-header__link:hover i,
        .site-header__item.is-open > .site-header__link i {
            color: var(--primary);
            opacity: 1;
        }

        .site-header__item.is-open > .site-header__link i {
            transform: rotate(180deg);
        }

        /* Promo slogan rozetleri — header + sayfa içi */
        .promo-slogan {
            position: relative;
            display: inline-flex;
            align-items: center;
            overflow: hidden;
            padding: 2px 8px;
            font-size: 9px;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: #fff;
            border-radius: 999px;
            white-space: nowrap;
            pointer-events: none;
            flex-shrink: 0;
            isolation: isolate;
            vertical-align: middle;
        }

        .site-header__link .promo-slogan {
            flex-shrink: 0;
        }

        .promo-slogan::after {
            content: '';
            position: absolute;
            inset: -2px -40%;
            z-index: 1;
            background: linear-gradient(
                105deg,
                transparent 38%,
                rgba(255, 255, 255, 0.55) 50%,
                transparent 62%
            );
            transform: translateX(-130%) skewX(-20deg);
            animation: slogan-shine 2.8s ease-in-out infinite;
            pointer-events: none;
        }

        .promo-slogan--sm {
            padding: 1px 6px;
            font-size: 7px;
            letter-spacing: 0.04em;
        }

        .promo-slogan--indirim {
            background: linear-gradient(180deg, #ff8a3d 0%, var(--slogan-indirim) 55%, var(--slogan-indirim-dark) 100%);
            animation: slogan-pulse-indirim 2s ease-in-out infinite;
        }

        .promo-slogan--indirim::after {
            animation-delay: 0s;
        }

        .promo-slogan--yeni {
            background: linear-gradient(180deg, #444 0%, var(--slogan-yeni) 45%, var(--slogan-yeni-dark) 100%);
            animation: slogan-pulse-yeni 2.4s ease-in-out infinite;
            animation-delay: 0.35s;
        }

        .promo-slogan--yeni::after {
            animation-delay: 1.1s;
        }

        .promo-slogan--domain {
            padding: 2px 7px;
            font-size: 8px;
            letter-spacing: 0.03em;
            background: linear-gradient(180deg, #4ade80 0%, var(--slogan-domain) 55%, var(--slogan-domain-dark) 100%);
            animation: slogan-pulse-domain 2.1s ease-in-out infinite;
            animation-delay: 0.55s;
        }

        .promo-slogan--domain::after {
            animation-delay: 1.7s;
        }

        .promo-slogan--hosting {
            background: linear-gradient(180deg, #22d3ee 0%, var(--slogan-hosting) 55%, var(--slogan-hosting-dark) 100%);
            animation: slogan-pulse-hosting 2.15s ease-in-out infinite;
            animation-delay: 0.25s;
        }

        .promo-slogan--hosting::after {
            animation-delay: 0.9s;
        }

        .promo-slogan--bayilik {
            background: linear-gradient(180deg, #fbbf24 0%, var(--slogan-bayilik) 55%, var(--slogan-bayilik-dark) 100%);
            animation: slogan-pulse-bayilik 2.3s ease-in-out infinite;
            animation-delay: 0.8s;
        }

        .promo-slogan--bayilik::after {
            animation-delay: 2s;
        }

        .promo-slogan--coksatan {
            background: linear-gradient(180deg, #525252 0%, var(--slogan-yeni) 50%, var(--slogan-yeni-dark) 100%);
            animation: slogan-pulse-yeni 2.5s ease-in-out infinite;
            animation-delay: 0.15s;
        }

        .site-header__mega-links strong .promo-slogan {
            margin-left: 6px;
            vertical-align: middle;
        }

        .domain-search-sec .promo-slogan--domain {
            font-size: 11px;
            padding: 4px 14px;
            letter-spacing: 0.05em;
        }

        .domain-search-sec__inner {
            max-width: 920px;
            margin: 0 auto;
        }

        .domain-box__title-row {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 24px;
        }

        .domain-box__title-row h2 {
            margin: 0;
            font-size: clamp(28px, 4vw, 36px);
            line-height: 1.15;
        }

        .domain-box__promo {
            font-size: 12px;
            padding: 5px 16px;
        }

        .domain-search-footer {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 12px;
            max-width: 800px;
            margin: 40px auto 0;
            padding-top: 28px;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }

        .domain-search-footer .btn-secondary {
            background: #fff;
            color: var(--dark);
            border: 2px solid var(--border-color);
        }

        .domain-search-footer .btn-secondary:hover {
            background: var(--dark);
            color: #fff;
            border-color: var(--dark);
        }

        .tld-tag--campaign {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 14px 20px 12px;
            min-width: 96px;
        }

        .tld-tag--campaign .domain-tld__badge {
            position: static;
            transform: none;
            display: inline-flex;
            font-size: 10px;
            font-weight: 700;
            padding: 3px 11px;
            color: #ffffff;
            margin-top: 0;
        }

        .tld-tag--campaign .tld-tag__main {
            font-size: 15px;
            font-weight: 700;
            line-height: 1.2;
        }

        .tld-tag--campaign .tld-tag__main span {
            display: block;
            margin-top: 4px;
            font-size: 12px;
            font-weight: 700;
            color: #4ade80;
        }

        .prod-img .promo-slogan {
            position: absolute;
            z-index: 2;
        }

        .prod-img .promo-slogan--coksatan {
            top: 12px;
            right: 12px;
            left: auto;
        }

        .prod-img .promo-slogan--indirim {
            top: 12px;
            left: 12px;
        }

        .prod-img:has(.promo-slogan--indirim) .prod-tag {
            top: auto;
            bottom: 12px;
            left: 12px;
        }

        .pricing-card .promo-slogan--card {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 2;
        }

        .popular-badge.promo-slogan {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            padding: 4px 16px;
            font-size: 11px;
            border-radius: 50px;
            background: linear-gradient(180deg, #ff8a3d 0%, var(--slogan-indirim) 55%, var(--slogan-indirim-dark) 100%);
        }

        .popular-badge.promo-slogan.promo-slogan--indirim {
            animation: slogan-glow-indirim 2s ease-in-out infinite;
        }

        .popular-badge.promo-slogan.promo-slogan--bayilik {
            background: linear-gradient(180deg, #fbbf24 0%, var(--slogan-bayilik) 55%, var(--slogan-bayilik-dark) 100%);
            animation: slogan-glow-bayilik 2.3s ease-in-out infinite;
        }

        .popular-badge.promo-slogan::after {
            animation-delay: 0.4s;
        }

        @media (prefers-reduced-motion: reduce) {
            .promo-slogan,
            .promo-slogan::after {
                animation: none !important;
            }

            .promo-slogan--indirim {
                box-shadow: 0 2px 8px rgba(255, 107, 0, 0.28);
            }

            .promo-slogan--yeni,
            .promo-slogan--coksatan {
                box-shadow: 0 2px 6px rgba(17, 17, 17, 0.2);
            }

            .promo-slogan--domain {
                box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
            }

            .promo-slogan--hosting {
                box-shadow: 0 2px 8px rgba(8, 145, 178, 0.3);
            }

            .promo-slogan--bayilik {
                box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
            }
        }

        /* Yazılımlar — renk geçişi gölge/çift yazı yapmasın */
        .site-header__item--mega > .site-header__link {
            transition: none;
        }

        .site-header__item--mega > .site-header__link i {
            transition: transform 0.25s ease, opacity 0.2s ease;
        }

        .site-header__item--mega > .site-header__link .promo-slogan {
            contain: paint;
        }

        .site-header.is-mega-open .site-header__item--mega .site-header__link {
            color: var(--primary);
            background: rgba(255, 107, 0, 0.08);
        }

        .site-header.is-mega-open .site-header__item--mega .site-header__link i {
            transform: rotate(180deg);
            opacity: 1;
        }

        .site-header__item--mobile-only,
        .site-header__item--mobile-mega {
            display: none;
        }

        /* Fare geçişi: tetikleyici ile panel arasında boşluk kalmasın */
        @media (min-width: 1025px) {
            .site-header__item--has-dropdown::after {
                content: '';
                position: absolute;
                left: 0;
                right: 0;
                top: 100%;
                height: 14px;
            }

            .site-header__item--has-dropdown.is-open {
                z-index: 50;
            }

            .site-header__cluster,
            .site-header__nav,
            .site-header__menu {
                overflow: visible;
            }
        }

        .site-header__dropdown {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            min-width: 220px;
            padding: 8px;
            list-style: none;
            margin: 0;
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
            opacity: 0;
            visibility: hidden;
            transform: translateY(4px);
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
            z-index: 30;
            pointer-events: none;
        }

        @media (min-width: 1025px) {
            .site-header__dropdown::before {
                content: '';
                position: absolute;
                bottom: 100%;
                left: -12px;
                right: -12px;
                height: 16px;
            }
        }

        .site-header__item.is-open > .site-header__dropdown {
            pointer-events: auto;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .site-header__dropdown a {
            display: block;
            padding: 10px 14px;
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            letter-spacing: -0.01em;
            font-variation-settings: 'opsz' 20;
            border-radius: 8px;
        }

        .site-header__dropdown a:hover {
            background: rgba(255, 107, 0, 0.1);
            color: var(--primary);
        }

        .site-header__actions {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            margin: 0;
            padding: 0;
            flex-wrap: nowrap;
            overflow: visible;
        }

        .site-header__cart {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: #fff;
            color: var(--dark);
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            position: relative;
        }

        .site-header__cart:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .site-header__cart-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 20px;
            height: 20px;
            padding: 0 6px;
            border-radius: 50px;
            background: var(--primary);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            line-height: 1;
        }

        .site-header__notify {
            position: relative;
        }

        .site-header__notify-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: #fff;
            color: var(--dark);
            cursor: pointer;
            position: relative;
            font-size: 16px;
        }

        .site-header__notify-btn:hover,
        .site-header__notify.is-open .site-header__notify-btn {
            border-color: var(--primary);
            color: var(--primary);
        }

        .site-header__notify-badge {
            position: absolute;
            top: -4px;
            right: -4px;
            min-width: 18px;
            height: 18px;
            padding: 0 5px;
            border-radius: 50px;
            background: var(--primary);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            line-height: 18px;
            text-align: center;
        }

        .site-header__notify-panel {
            position: absolute;
            right: 0;
            top: calc(100% + 10px);
            bottom: auto;
            width: min(360px, calc(100vw - 24px));
            max-height: min(420px, 70vh);
            overflow: auto;
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            z-index: 10060;
        }

        .site-header__notify-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            padding: 12px 14px;
            border-bottom: 1px solid var(--border-color);
            font-size: 14px;
        }

        .site-header__notify-mark-all {
            margin: 0;
        }

        .site-header__notify-mark-all-btn {
            border: none;
            background: none;
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            padding: 0;
        }

        .site-header__notify-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .site-header__notify-item {
            border-bottom: 1px solid #f1f5f9;
        }

        .site-header__notify-item.is-unread {
            background: #fff7ed;
        }

        .site-header__notify-link {
            display: block;
            padding: 10px 14px;
            color: var(--text-main);
            text-decoration: none;
        }

        .site-header__notify-link:hover {
            background: #f8fafc;
        }

        .site-header__notify-title {
            display: block;
            font-size: 13px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 2px;
        }

        .site-header__notify-body {
            display: block;
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.35;
            margin-bottom: 4px;
        }

        .site-header__notify-link time {
            font-size: 11px;
            color: #94a3b8;
        }

        .site-header__notify-empty {
            padding: 20px 14px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .site-header__notify-foot {
            margin: 0;
            padding: 10px 14px;
            font-size: 12px;
            border-top: 1px solid var(--border-color);
            background: #fafbfc;
        }

        .site-header__notify-foot a {
            color: var(--primary);
            font-weight: 600;
        }

        .account-notify-list {
            list-style: none;
            margin: 0;
            padding: 0;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
        }

        .account-notify-list__item {
            border-bottom: 1px solid #f1f5f9;
        }

        .account-notify-list__item:last-child {
            border-bottom: none;
        }

        .account-notify-list__item.is-unread {
            background: #fff7ed;
        }

        .account-notify-list__link {
            display: block;
            padding: 14px 16px;
            color: inherit;
            text-decoration: none;
        }

        .account-notify-list__link strong {
            display: block;
            font-size: 14px;
            margin-bottom: 4px;
        }

        .account-notify-list__link span {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 4px;
        }

        .account-notify-list__link time {
            font-size: 12px;
            color: #94a3b8;
        }

        .site-header__action-login {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            letter-spacing: -0.02em;
            font-variation-settings: 'opsz' 24;
            white-space: nowrap;
            padding: 8px 4px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            background: none;
            cursor: pointer;
            font-family: inherit;
        }

        .site-header__action-login i {
            font-size: 14px;
        }

        .site-header__action-login:hover {
            color: var(--primary);
        }

        .site-header__action-quote {
            text-decoration: none;
            white-space: nowrap;
        }

        .site-header__action-quote i {
            font-size: 14px;
        }

        /* Mobil menü — üst CTA bloğu (masaüstünde gizli) */
        .site-header__mobile-cta {
            display: none;
            width: 100%;
            padding: 0 0 12px;
            margin: 0 0 10px;
            border-bottom: 1px solid var(--border-color);
        }

        .site-header__mobile-cta-inner {
            display: flex;
            flex-direction: column;
            gap: 8px;
            width: 100%;
        }

        .site-header__mobile-cta-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .site-header__mobile-cta-inner .btn {
            min-height: 42px;
            padding: 10px 12px;
            font-size: 13px;
            font-weight: 600;
        }

        .site-header__mobile-cta-quote {
            gap: 8px;
        }

        .site-header__mobile-cta-quote i {
            font-size: 14px;
        }

        .site-header__mobile-foot {
            display: none;
            margin-top: auto;
            flex-shrink: 0;
            width: 100%;
            padding: 16px 0 28px;
            border-top: 1px solid var(--border-color);
        }

        .site-header__mobile-foot-title {
            margin: 0 0 10px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--primary);
        }

        .site-header__mobile-foot-link {
            display: flex;
            align-items: center;
            gap: 12px;
            width: 100%;
            box-sizing: border-box;
            padding: 12px 16px;
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            text-decoration: none;
            border-radius: 8px;
        }

        .site-header__mobile-foot-link:hover {
            background: rgba(255, 107, 0, 0.06);
            color: var(--primary);
        }

        .site-header__mobile-foot-link i {
            width: 22px;
            flex-shrink: 0;
            text-align: center;
            color: var(--primary);
            font-size: 16px;
        }

        .site-header__mobile-foot-link span {
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .site-header__mobile-socials {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid var(--border-color);
        }

        .site-header__mobile-socials a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            color: var(--dark);
            font-size: 18px;
            transition: var(--transition);
        }

        .site-header__mobile-socials a:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(255, 107, 0, 0.06);
        }

        .site-header__action-quote,
        .site-header__action-register,
        .site-header__action-logout {
            padding: 8px 14px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.01em;
            font-variation-settings: 'opsz' 22;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            line-height: 1.25;
            min-height: 40px;
            box-sizing: border-box;
        }

        /* Giriş yapılmış — sağ blok geniş; menü ile çakışmayı önle */
        @media (min-width: 1025px) {
            .site-header--logged-in .site-header__menu {
                gap: 0;
            }

            .site-header--logged-in .site-header__link {
                padding: 8px 11px;
                font-size: 14px;
                font-variation-settings: 'opsz' 24;
                gap: 5px;
            }

            .site-header--logged-in .site-header__actions {
                gap: 8px;
            }
        }

        /* Masaüstü — menü ve aksiyonlar aynı tipografi (14px) */
        @media (min-width: 1025px) {
            .site-header__cluster {
                gap: 12px 16px;
            }

            .site-header__menu { gap: 2px; }
            .site-header__action-quote,
            .site-header__action-register {
                padding: 8px 14px;
                font-size: 14px;
                min-height: 40px;
            }
            .site-header__cart {
                font-size: 14px;
            }
            .site-header__actions {
                gap: 8px;
            }
            .site-header__bar-end {
                padding-left: 12px;
            }
        }


        .site-header__btn-ghost {
            padding: 10px 18px;
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: #ffffff;
            white-space: nowrap;
        }

        .site-header__btn-ghost:hover {
            border-color: var(--dark);
            background: var(--dark);
            color: #ffffff;
        }

        .site-header__toggle {
            display: none;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            background: #ffffff;
            color: var(--dark);
            font-size: 18px;
            cursor: pointer;
            flex-shrink: 0;
            transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
        }

        .site-header__toggle:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .site-header__backdrop {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.5);
            z-index: 10;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }

        /* Backdrop yalnızca mobil menü için (mega hover'da kaplamasın) */
        .site-header.is-nav-open .site-header__backdrop {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        /* Mega menu — kapalıyken display:none (visibility ile gölge yazı flaşı olmasın) */
        .site-header__mega {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            display: none;
            pointer-events: none;
            z-index: 12;
        }

        /* Fare geçiş köprüsü (Yazılımlar → panel) */
        .site-header.is-mega-open .site-header__mega::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 0;
            right: 0;
            height: 24px;
        }

        .site-header.is-mega-open .site-header__mega {
            display: block;
            pointer-events: auto;
        }

        .site-header.is-mega-open .site-header__mega-inner {
            animation: mega-panel-in 0.2s ease;
        }

        @keyframes mega-panel-in {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .site-header.is-mega-open .site-header__mega-inner {
                animation: none;
            }
        }

        .site-header.is-mega-open {
            background: #ffffff;
        }

        .site-header__mega-inner {
            background: #ffffff;
            border-top: 1px solid var(--border-color);
            border-bottom: 3px solid var(--primary);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .site-header__mega-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr) 280px;
            gap: 0;
            padding: 32px 0 6px;
        }

        .site-header__mega-col {
            padding: 0 24px 24px;
            border-right: 1px solid #eef2f6;
        }

        .site-header__mega-col:last-of-type {
            border-right: none;
        }

        .site-header__mega-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .site-header__mega-links {
            display: flex;
            flex-direction: column;
            gap: 2px;
            list-style: none;
        }

        .site-header__mega-links a {
            display: flex;
            gap: 12px;
            padding: 10px;
            margin: 0 -10px;
            border-radius: 10px;
        }

        .site-header__mega-links a:hover {
            background: var(--bg-accent);
        }

        .site-header__mega-links a:hover strong {
            color: var(--primary);
        }

        .site-header__mega-icon {
            width: 42px;
            height: 42px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 107, 0, 0.1);
            border-radius: 10px;
            color: var(--primary);
            font-size: 16px;
        }

        .site-header__mega-links strong {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: var(--dark);
            letter-spacing: -0.02em;
            font-variation-settings: 'opsz' 24;
            margin-bottom: 2px;
        }

        .site-header__mega-links small {
            font-size: 12px;
            font-weight: 500;
            color: var(--text-muted);
            line-height: 1.4;
        }

        .site-header__mega-card {
            margin: 0 0 24px 16px;
            padding: 24px;
            border-radius: 12px;
            background: linear-gradient(150deg, #161616, #2a2a2a);
            color: #fff;
            display: flex;
            flex-direction: column;
            min-height: 100%;
        }

        .site-header__mega-card-tag:not(.promo-slogan) {
            align-self: flex-start;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--primary);
            background: rgba(255, 107, 0, 0.15);
            padding: 4px 10px;
            border-radius: 50px;
            margin-bottom: 12px;
        }

        .site-header__mega-card-tag.promo-slogan {
            align-self: flex-start;
            margin-bottom: 12px;
            pointer-events: none;
        }

        .site-header__mega-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #fff;
        }

        .site-header__mega-card p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
            margin-bottom: 16px;
            flex: 1;
        }

        .site-header__mega-card .btn {
            width: 100%;
        }

        .site-header__mega-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            border-top: 1px solid var(--border-color);
            background: #f8fafc;
        }

        .site-header__mega-foot a {
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .site-header__mega-foot a:hover {
            color: var(--primary);
        }

        .site-header__mega-foot span {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* --- HERO (tam ekran video) --- */
        .hero {
            position: relative;
            min-height: calc(100svh - var(--header-total-h));
            min-height: calc(100dvh - var(--header-total-h));
            display: flex;
            align-items: center;
            padding: 72px 0 88px;
            overflow: hidden;
            max-width: 100%;
        }

        .hero__media {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            max-width: 100%;
        }

        .hero__video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            background: #0d0d0d;
            transform: translateZ(0);
            -webkit-transform: translateZ(0);
        }

        .hero__overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(17, 17, 17, 0.44) 0%, rgba(17, 17, 17, 0.24) 46%, rgba(17, 17, 17, 0.56) 100%),
                radial-gradient(80% 58% at 28% 42%, rgba(255, 107, 0, 0.1) 0%, rgba(255, 107, 0, 0) 70%);
            pointer-events: none;
        }

        .hero .container {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .hero__content {
            max-width: 720px;
        }

        .hero__brand {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px 24px;
            margin-bottom: 28px;
        }

        .hero__logo {
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 800;
            letter-spacing: -0.04em;
            color: #ffffff;
            line-height: 1;
            text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
        }

        .hero__logo span {
            color: var(--primary);
        }

        .hero__brand-line {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.72);
            padding-left: 20px;
            border-left: 2px solid var(--primary);
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
        }

        .hero .badge {
            background: rgba(255, 107, 0, 0.2);
            color: #ffb380;
            border: 1px solid rgba(255, 107, 0, 0.45);
            margin-bottom: 20px;
        }

        .hero__content h1 {
            font-size: clamp(32px, 4.5vw, 56px);
            font-weight: 800;
            line-height: 1.12;
            color: #ffffff;
            letter-spacing: -0.03em;
            margin-bottom: 22px;
            text-shadow: 0 5px 30px rgba(0, 0, 0, 0.62);
        }

        .hero__content p {
            font-size: clamp(16px, 2vw, 19px);
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.92);
            margin-bottom: 36px;
            max-width: 620px;
            text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .hero .btn-secondary {
            border-color: rgba(255, 255, 255, 0.45);
            color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
        }

        .hero .btn-secondary:hover {
            background: #ffffff;
            color: var(--dark);
            border-color: #ffffff;
        }

        .hero__sound {
            position: absolute;
            bottom: 28px;
            right: 28px;
            z-index: 3;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(8px);
            color: #fff;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.2s ease, border-color 0.2s ease;
        }

        .hero__sound:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        @media (max-width: 1024px) {
            .hero {
                min-height: calc(100svh - var(--header-main-h));
                min-height: calc(100dvh - var(--header-main-h));
            }
            .hero__brand-line {
                width: 100%;
                padding-left: 0;
                border-left: none;
                padding-top: 8px;
                border-top: 1px solid rgba(255, 255, 255, 0.15);
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 48px 0 64px;
            }
            .hero .container {
                padding-left: max(16px, env(safe-area-inset-left, 0px));
                padding-right: max(16px, env(safe-area-inset-right, 0px));
            }
            .hero-actions {
                flex-direction: column;
                flex-wrap: wrap;
                gap: 10px;
            }
            .hero-actions .btn {
                flex: 1 1 auto;
                width: 100%;
                min-width: 0;
                padding: 12px 16px;
                font-size: 14px;
                line-height: 1.35;
                white-space: normal;
                text-align: center;
            }
            .hero-actions .btn i {
                display: none;
            }
            .hero__sound {
                top: auto;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero__video {
                display: none;
            }
            .hero__media {
                background: url('https://images.pexels.com/videos/3255271/pictures/preview-0.jpg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
            }
        }

        /* --- STATS COUNTER BAR --- */
        .stats-bar {
            background: var(--dark);
            color: var(--light);
            padding: 20px 0;
            position: relative;
            z-index: 5;
            border-top: 1px solid rgba(255, 107, 0, 0.35);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px 12px;
            align-items: center;
        }

        .stat-item {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 6px 10px;
            text-align: left;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 28px;
            width: 1px;
            background: rgba(255, 255, 255, 0.12);
        }

        .stat-item__icon {
            width: 34px;
            height: 34px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: rgba(255, 107, 0, 0.12);
            color: var(--primary);
            font-size: 14px;
        }

        .stat-item__body {
            min-width: 0;
        }

        .stat-item__value {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary);
            margin: 0 0 2px;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .stat-item__label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.68);
            font-weight: 500;
            line-height: 1.3;
            margin: 0;
        }

        /* --- CATEGORIES SECTION --- */
        .categories-sec .section-header h2 {
            color: var(--dark);
        }

        .categories-sec .section-header h2 span {
            color: var(--primary);
        }

        .categories-sec .section-header p {
            color: var(--text-main);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .category-card {
            display: block;
            background-color: var(--light);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 32px 24px;
            text-align: center;
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
            cursor: pointer;
        }

        .category-card i {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
            transition: var(--transition);
        }

        .category-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary);
            background-color: var(--bg-accent);
        }

        .category-card:hover i {
            transform: scale(1.1);
        }

        /* --- DOMAIN SEARCH SECTION --- */
        .domain-search-sec {
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 48%);
            color: var(--text-main);
            position: relative;
            overflow: hidden;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .domain-box {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .domain-box h2 {
            font-weight: 800;
            color: var(--dark);
        }

        .search-form {
            display: flex;
            background: var(--light);
            padding: 8px;
            border-radius: 50px;
            box-shadow: var(--shadow-md);
            margin-bottom: 8px;
        }

        .search-form input {
            flex-grow: 1;
            border: none;
            background: transparent;
            padding: 0 24px;
            font-size: 16px;
            color: var(--dark);
            font-weight: 500;
        }

        .search-form .btn {
            border-radius: 50px;
            padding: 14px 36px;
        }

        .domain-search-alert {
            margin-bottom: 20px;
            text-align: left;
        }

        /* Domain sorgu sonuçları — beyaz panel (YERSOFT turuncu/beyaz) */
        .domain-box--tlds {
            margin-top: 32px;
            margin-bottom: 0;
        }

        .domain-box--tlds .tlds-wrapper {
            margin-top: 8px;
        }

        .domain-search-sec .domain-results-panel {
            max-width: 820px;
            margin: 20px auto 0;
            background: var(--light);
            color: var(--text-main);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
            text-align: left;
        }

        .domain-results-panel__header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 12px;
            padding: 10px 18px;
            background: linear-gradient(135deg, var(--primary) 0%, #ff8a3d 100%);
            color: #fff;
        }

        .domain-results-panel__label {
            margin: 0;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            opacity: 0.92;
        }

        .domain-results-panel__query {
            margin: 0;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: -0.01em;
            word-break: break-all;
            color: #fff;
        }

        .domain-results-panel__list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .domain-results-panel__row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 10px 16px;
            padding: 12px 18px;
            border-bottom: 1px solid var(--border-color);
        }

        .domain-results-panel__row:last-child {
            border-bottom: none;
        }

        .domain-results-panel__row.is-available {
            background: linear-gradient(90deg, #fff7ed 0%, #ffffff 48%);
        }

        .domain-results-panel__main {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 12px;
            min-width: 0;
            flex: 1 1 220px;
        }

        .domain-results-panel__icon {
            flex-shrink: 0;
            width: 34px;
            height: 34px;
            border-radius: 8px;
            background: rgba(255, 107, 0, 0.12);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
        }

        .domain-results-panel__name {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            word-break: break-all;
        }

        .domain-results-panel__meta {
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }

        .domain-results-panel__badge {
            font-size: 11px;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .domain-results-panel__badge--ok {
            background: #dcfce7;
            color: #15803d;
        }

        .domain-results-panel__badge--no {
            background: #f1f5f9;
            color: var(--text-muted);
        }

        .domain-results-panel__badge--premium {
            background: rgba(255, 107, 0, 0.12);
            color: var(--primary);
        }

        .domain-results-panel__price {
            font-size: 15px;
            font-weight: 700;
            color: var(--primary);
        }

        .domain-results-panel__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: flex-end;
            align-items: center;
            flex-shrink: 0;
        }

        .domain-results-panel__buy-form {
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }

        .domain-results-panel__years-label {
            margin: 0;
        }

        .domain-results-panel__years {
            min-width: 88px;
            padding: 8px 10px;
            font-size: 13px;
            font-weight: 600;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            background: #fff;
            color: var(--dark);
            cursor: pointer;
        }

        .domain-results-panel__price-period {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
        }

        .domain-results-panel__actions .btn {
            padding: 8px 14px;
            font-size: 13px;
            font-weight: 600;
            border-radius: 8px;
            white-space: nowrap;
        }

        .domain-search-sec .domain-results-panel__btn-outline.btn-secondary {
            background: #fff;
            color: var(--dark);
            border: 2px solid var(--border-color);
        }

        .domain-search-sec .domain-results-panel__btn-outline.btn-secondary:hover {
            background: var(--dark);
            color: #fff;
            border-color: var(--dark);
        }

        .domain-results-panel__note {
            margin: 0;
            padding: 10px 18px 12px;
            font-size: 12px;
            color: var(--text-muted);
            background: var(--bg-accent);
            text-align: center;
            line-height: 1.45;
        }

        @media (max-width: 768px) {
            .domain-results-panel__main {
                flex: 1 1 100%;
            }

            .domain-results-panel__actions {
                width: 100%;
                justify-content: stretch;
            }

            .domain-results-panel__actions .btn {
                flex: 1 1 calc(50% - 4px);
                text-align: center;
            }
        }

        .tlds-wrapper {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .tld-tag {
            background: #ffffff;
            padding: 10px 18px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .tld-tag > span,
        .tld-tag .tld-tag__main span {
            color: var(--primary);
            font-size: 11px;
            display: block;
            font-weight: 600;
            margin-top: 2px;
        }

        .tld-tag .promo-slogan {
            display: inline-flex;
            margin-top: 0;
        }

        .tld-tag:hover {
            background: #ffffff;
            border-color: rgba(255, 107, 0, 0.35);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .tld-tag--campaign {
            background: #f0fdf4;
            border-color: rgba(34, 197, 94, 0.35);
        }

        .tld-tag--campaign .tld-tag__main span {
            color: #16a34a;
        }

        @media (max-width: 768px) {
            .domain-search-sec.section-padding {
                padding: 32px 0 40px;
            }

            .domain-search-sec .container,
            .domain-search-sec__inner {
                max-width: 100%;
                padding-left: 16px;
                padding-right: 16px;
            }

            .domain-search-sec .domain-box {
                max-width: 100%;
                text-align: left;
            }

            .domain-search-sec .domain-box__title-row {
                flex-direction: row;
                flex-wrap: wrap;
                align-items: center;
                text-align: left;
                margin-bottom: 14px;
                gap: 8px 10px;
            }

            .domain-search-sec .domain-box__title-row h2 {
                font-size: 22px;
                margin: 0;
            }

            .domain-search-sec .domain-box__promo {
                font-size: 10px;
                padding: 4px 10px;
            }

            /* Arama: input + Sorgula yan yana, kompakt */
            .domain-search-sec .search-form.domain-search-form {
                flex-direction: row;
                align-items: center;
                border-radius: 12px;
                padding: 6px 6px 6px 14px;
                gap: 8px;
                margin-bottom: 16px;
                box-shadow: 0 2px 16px rgba(15, 23, 42, 0.08);
            }

            .domain-search-sec .search-form input {
                flex: 1 1 auto;
                width: auto;
                min-width: 0;
                padding: 10px 0;
                font-size: 16px;
                min-height: 44px;
                box-sizing: border-box;
            }

            .domain-search-sec .search-form input::placeholder {
                font-size: 14px;
            }

            .domain-search-sec .search-form .btn {
                width: auto;
                flex-shrink: 0;
                border-radius: 8px;
                padding: 10px 16px;
                font-size: 14px;
                white-space: nowrap;
            }

            .domain-search-sec .domain-box--tlds {
                margin-top: 16px;
            }

            /* 6 uzantı → 3 sütun, 2 satır; kampanya diğerleriyle aynı boyut */
            .domain-search-sec .tlds-wrapper {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 8px;
                width: 100%;
            }

            .domain-search-sec .tld-tag {
                width: 100%;
                min-width: 0;
                padding: 10px 6px;
                font-size: 13px;
                text-align: center;
                box-sizing: border-box;
            }

            .domain-search-sec .tld-tag > span,
            .domain-search-sec .tld-tag .tld-tag__main span {
                font-size: 10px;
                margin-top: 2px;
            }

            .domain-search-sec .tld-tag--campaign {
                grid-column: auto;
                padding: 8px 6px;
            }

            .domain-search-sec .tld-tag--campaign .promo-slogan {
                font-size: 8px;
                padding: 2px 6px;
                margin-bottom: 4px;
            }

            .domain-search-sec .tld-tag--campaign .tld-tag__main {
                font-size: 12px;
            }

            .domain-search-sec .domain-search-footer {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 8px;
                margin-top: 20px;
                padding-top: 16px;
                max-width: none;
            }

            .domain-search-sec .domain-search-footer .btn {
                width: 100%;
                margin: 0;
                padding: 10px 12px;
                font-size: 12px;
                justify-content: center;
                box-sizing: border-box;
            }

            .domain-search-sec .domain-search-footer .btn:first-child {
                grid-column: 1 / -1;
                font-size: 13px;
            }

            .domain-search-sec .domain-results-panel {
                margin-top: 16px;
                border-radius: 14px;
            }

            .domain-search-sec .domain-results-panel__header {
                padding: 10px 14px;
            }

            .domain-search-sec .domain-results-panel__row {
                padding: 12px 14px;
            }
        }

        /* --- FEATURED PRODUCTS --- */
        #products .section-header h2 span {
            color: var(--primary);
        }

        .products-section-cta {
            text-align: center;
            margin-top: 48px;
        }

        .products-section-cta .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            font-size: 13px;
            font-weight: 600;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .product-card {
            background: var(--light);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .prod-img {
            background: var(--bg-accent);
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            font-size: 48px;
            color: rgba(17,17,17,0.1);
            overflow: hidden;
        }

        a.prod-img {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        a.prod-img:hover .prod-img__photo {
            transform: scale(1.04);
        }

        .prod-img--photo {
            background: #e2e8f0;
        }

        .prod-img__photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.35s ease;
        }

        .prod-img--icon i {
            position: relative;
            z-index: 0;
        }

        .prod-img--demo {
            height: 230px;
            padding: 0;
            background: #f8f8f8;
            overflow: hidden;
        }

        .product-card-demo {
            position: absolute;
            inset: 0;
            z-index: 0;
            container-type: size;
            container-name: card-demo;
        }

        .product-card-demo__showcase {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f8f8;
            overflow: hidden;
        }

        .product-card-demo__showcase-inner {
            position: relative;
            width: 1000px;
            height: 550px;
            flex-shrink: 0;
            transform: scale(var(--showcase-scale, min(calc(100cqw / 1000), calc(100cqh / 550))));
            transform-origin: center center;
            transition: transform 0.35s ease;
            box-sizing: border-box;
        }

        .product-card-demo__showcase-inner *,
        .product-card-demo__showcase-inner *::before,
        .product-card-demo__showcase-inner *::after {
            box-sizing: border-box;
        }

        a.prod-img--demo:hover .product-card-demo__showcase-inner {
            transform: scale(calc(var(--showcase-scale, min(calc(100cqw / 1000), calc(100cqh / 550))) * 1.015));
        }

        /* iMac — HTML ile birebir */
        .product-card-demo__imac {
            position: absolute;
            right: 130px;
            top: 20px;
            width: 620px;
            z-index: 1;
        }

        .product-card-demo__imac-screen {
            width: 100%;
            height: 370px;
            background: #000;
            border: 12px solid #222;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .product-card-demo__imac-screen::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 40%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.08),
                transparent
            );
            transform: skewX(-20deg);
            z-index: 2;
            pointer-events: none;
        }

        .product-card-demo__imac-stand {
            width: 120px;
            height: 80px;
            margin: 0 auto;
            background: linear-gradient(#dcdcdc, #9f9f9f);
            clip-path: polygon(25% 0, 75% 0, 100% 100%, 0 100%);
        }

        .product-card-demo__imac-base {
            width: 260px;
            height: 18px;
            margin: -2px auto 0;
            background: linear-gradient(#d9d9d9, #9a9a9a);
            border-radius: 50px;
        }

        /* iPhone — HTML ile birebir */
        .product-card-demo__iphone {
            position: absolute;
            right: 40px;
            bottom: 60px;
            width: 140px;
            height: 285px;
            background: #111;
            border-radius: 34px;
            padding: 8px;
            z-index: 5;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        }

        .product-card-demo__iphone-screen {
            width: 100%;
            height: 100%;
            background: #000;
            border-radius: 26px;
            overflow: hidden;
            position: relative;
        }

        .product-card-demo__iphone-screen::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 40%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.08),
                transparent
            );
            transform: skewX(-20deg);
            z-index: 2;
            pointer-events: none;
        }

        .product-card-demo__iphone-notch {
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 68px;
            height: 16px;
            background: #111;
            border-radius: 20px;
            z-index: 10;
            pointer-events: none;
        }

        .product-card-demo__viewport {
            position: absolute;
            inset: 0;
            overflow: hidden;
            background: #fff;
            z-index: 1;
        }

        .product-card-demo__viewport iframe {
            position: absolute;
            top: 0;
            left: 0;
            border: 0;
            pointer-events: none;
            background: #fff;
        }

        .prod-img .prod-tag,
        .prod-img .promo-slogan {
            z-index: 2;
        }

        .prod-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--dark);
            color: var(--light);
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 4px;
        }

        .prod-details {
            padding: 24px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .prod-details h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .prod-details p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .prod-footer {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 12px;
            padding-top: 16px;
            border-top: 1px solid var(--border-color);
        }

        .prod-price-wrap {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
            min-width: 0;
        }

        .prod-price-row {
            display: flex;
            align-items: baseline;
            flex-wrap: nowrap;
            gap: 5px;
            line-height: 1.15;
        }

        .prod-price__amount {
            font-size: 18px;
            font-weight: 800;
            color: var(--dark);
            white-space: nowrap;
        }

        .prod-price__period {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 400;
            white-space: nowrap;
        }

        .prod-price-row--old .prod-price__amount {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
            text-decoration: line-through;
            text-decoration-thickness: 1px;
        }

        .prod-price-row--old .prod-price__period {
            font-size: 11px;
        }

        .prod-price-row--current .prod-price__amount {
            color: var(--primary);
        }

        .prod-footer .btn {
            flex-shrink: 0;
            align-self: flex-end;
        }

        .prod-footer__btns {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 8px;
            flex-shrink: 0;
        }

        .product-card-cart-form {
            margin: 0;
        }

        .product-card-cart-form .btn {
            width: 100%;
            align-self: stretch;
        }

        /* Legacy prod-price (hosting vb.) */
        .prod-price {
            font-size: 18px;
            font-weight: 800;
            color: var(--dark);
        }

        .prod-price span {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 400;
        }

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

        /* --- HOSTING PACKAGES --- */
        #hosting .section-header h2 span {
            color: var(--primary);
        }

        .hosting-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            align-items: stretch;
        }

        .hosting-plan-card {
            display: flex;
            flex-direction: column;
            padding: 28px 20px 24px;
            height: 100%;
        }

        .hosting-plan-card .pricing-header h3 {
            font-size: 18px;
            margin-bottom: 6px;
        }

        .hosting-plan-card .pricing-header p {
            font-size: 12px;
            line-height: 1.4;
            margin-bottom: 14px;
        }

        .hosting-plan-card .hosting-billing-toggle {
            margin-bottom: 14px;
        }

        .hosting-plan-card .price-box {
            font-size: 30px;
            margin-bottom: 16px;
        }

        .hosting-plan-card .price-box span {
            font-size: 12px;
        }

        .hosting-plan-card .pricing-features {
            gap: 5px;
            margin-bottom: 18px;
            flex: 1 1 auto;
        }

        .hosting-plan-card .pricing-features li {
            font-size: 12px;
            line-height: 1.35;
            align-items: flex-start;
            gap: 7px;
        }

        .hosting-plan-card .pricing-features li i {
            font-size: 10px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .hosting-plan-card .pricing-card__actions {
            margin-top: auto;
        }

        .service-package-card.hosting-plan-card {
            display: flex;
            flex-direction: column;
            height: 100%;
            padding: 28px 20px 24px;
        }

        .service-package-card.hosting-plan-card .service-package-card__desc {
            font-size: 12px;
            line-height: 1.4;
            margin-bottom: 14px;
        }

        .service-package-card.hosting-plan-card .service-package-card__features {
            gap: 5px;
            margin-bottom: 18px;
            flex: 1 1 auto;
        }

        .service-package-card.hosting-plan-card .service-package-card__features li {
            font-size: 12px;
            line-height: 1.35;
            align-items: flex-start;
            gap: 7px;
        }

        .service-package-card.hosting-plan-card .service-package-card__price {
            font-size: 30px;
            margin-bottom: 16px;
        }

        .service-package-card.hosting-plan-card .service-package-card__price .hosting-plan-card__period {
            font-size: 12px;
        }

        .pricing-card {
            background: var(--light);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px 24px;
            position: relative;
            transition: var(--transition);
        }

        .pricing-card.featured {
            border: 2px solid var(--primary);
            box-shadow: var(--shadow-md);
            transform: scale(1.03);
        }

        .popular-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: var(--light);
            padding: 4px 16px;
            font-size: 11px;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pricing-header h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .pricing-header p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        .hosting-billing-toggle {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px;
            margin-bottom: 20px;
            background: rgba(15, 23, 42, 0.06);
            border-radius: 999px;
        }

        .hosting-billing-toggle__btn {
            border: 0;
            background: transparent;
            color: var(--text-muted);
            font-size: 12px;
            font-weight: 700;
            padding: 8px 16px;
            border-radius: 999px;
            cursor: pointer;
            transition: var(--transition);
        }

        .hosting-billing-toggle__btn.is-active {
            background: var(--light);
            color: var(--dark);
            box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
        }

        .hosting-plan-card__price {
            display: flex;
            flex-wrap: wrap;
            align-items: baseline;
            gap: 6px;
        }

        .price-box {
            font-size: 36px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 30px;
        }

        .price-box span {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 400;
        }

        .pricing-features {
            margin-bottom: 36px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .pricing-features li {
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pricing-features li i {
            color: #10b981;
        }

        .pricing-card .btn {
            width: 100%;
        }

        .pricing-card__actions {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: auto;
        }

        .pricing-card__quote-link {
            font-size: 0.8125rem;
            text-align: center;
            color: var(--color-muted, #64748b);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .pricing-card__quote-link:hover {
            color: var(--color-primary, #2563eb);
        }


        .pricing-card:hover:not(.featured) {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--dark);
        }

        /* --- WHY YERSOFT --- */
        .why-sec {
            background-color: var(--bg-accent);
        }

        .why-sec .section-header h2 .why-brand__yer,
        .reseller-sec .section-header h2 .why-brand__yer {
            color: var(--dark);
        }

        .why-sec .section-header h2 .why-brand__soft,
        .reseller-sec .section-header h2 .why-brand__soft {
            color: var(--primary);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .why-card {
            background: var(--light);
            padding: 36px;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .why-card i {
            font-size: 28px;
            color: var(--primary);
            background: rgba(255,107,0,0.06);
            padding: 14px;
            border-radius: 10px;
            margin-bottom: 24px;
            display: inline-block;
        }

        .why-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .why-card p {
            font-size: 14px;
            color: var(--text-muted);
        }

        .why-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--border-color);
        }

        /* --- TESTIMONIALS --- */
        #testimonials .section-header h2 span {
            color: var(--primary);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .review-card {
            background: var(--light);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 32px;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .review-text {
            font-size: 14px;
            font-style: italic;
            color: var(--text-main);
            margin-bottom: 24px;
            position: relative;
        }

        .review-user {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .user-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--bg-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--primary);
            border: 2px solid var(--border-color);
        }

        .user-meta h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--dark);
        }

        .user-meta p {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* --- RESELLER PACKAGES --- */
        .reseller-sec {
            background-color: var(--bg-accent);
        }

        .reseller-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .reseller-sec__cta {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-top: 24px;
        }

        .reseller-sec__cta .btn {
            padding: 10px 22px;
            font-size: 14px;
            line-height: 1.35;
            min-height: 0;
        }

        @media (max-width: 768px) {
            .reseller-sec__cta {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
                max-width: 300px;
                margin-left: auto;
                margin-right: auto;
            }

            .reseller-sec__cta .btn {
                width: 100%;
                padding: 11px 18px;
                font-size: 14px;
            }
        }

        /* --- BLOG SECTION --- */
        #blog .section-header h2 span {
            color: var(--primary);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .blog-card {
            background: var(--light);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
        }

        .blog-card__media {
            display: block;
            overflow: hidden;
        }

        .blog-cover {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
        }

        .blog-cover--card {
            height: 220px;
        }

        .blog-cover--hero {
            min-height: clamp(280px, 42vw, 520px);
        }

        .blog-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .blog-cover--fallback {
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.35);
            font-size: 48px;
            background: linear-gradient(135deg, var(--primary) 0%, #c2410c 45%, var(--dark) 100%);
        }

        .blog-cover--card.blog-cover--fallback {
            font-size: 40px;
        }

        .blog-card:hover .blog-cover img {
            transform: scale(1.06);
        }

        /* Eski .blog-img — geriye dönük */
        .blog-img {
            background: #e2e8f0;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: rgba(0,0,0,0.1);
        }

        .blog-content {
            padding: 24px;
        }

        .blog-date {
            font-size: 12px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
        }

        .blog-content h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .blog-content h3 a:hover {
            color: var(--primary);
        }

        .blog-content p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .blog-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .blog-card:hover .blog-link {
            color: var(--primary);
        }

        /* Blog detay — ana sayfa / liste ile aynı dil */
        .blog-detail-page {
            background: var(--light);
        }

        .blog-detail-hero {
            position: relative;
            background: var(--dark);
            overflow: hidden;
            min-height: clamp(320px, 48vh, 560px);
        }

        .blog-detail-hero > .blog-cover {
            position: absolute;
            inset: 0;
            width: 100%;
            min-height: 100%;
        }

        .blog-detail-hero > .blog-cover--hero {
            min-height: clamp(320px, 48vh, 560px);
        }

        .blog-detail-hero__overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: flex-end;
            background: linear-gradient(180deg, rgba(17, 17, 17, 0.15) 0%, rgba(17, 17, 17, 0.55) 45%, rgba(17, 17, 17, 0.92) 100%);
            pointer-events: none;
        }

        .blog-detail-hero__inner {
            position: relative;
            z-index: 1;
            padding: 48px 0 56px;
            pointer-events: auto;
            text-align: left;
            max-width: 820px;
        }

        .blog-detail-hero__breadcrumb {
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 16px;
        }

        .blog-detail-hero__breadcrumb a {
            color: #fff;
        }

        .blog-detail-hero__breadcrumb a:hover {
            color: var(--primary);
        }

        .blog-detail-hero__meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .blog-detail-hero__date {
            color: var(--primary);
            margin: 0;
        }

        .blog-detail-hero__tag {
            margin: 0;
        }

        .blog-detail-hero__title {
            font-size: clamp(28px, 4.5vw, 44px);
            font-weight: 800;
            line-height: 1.15;
            color: #fff;
            margin: 0 0 16px;
            letter-spacing: -0.02em;
        }

        .blog-detail-hero__lead {
            font-size: clamp(16px, 2vw, 19px);
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.88);
            margin: 0;
            max-width: 640px;
        }

        .page-body--blog-detail {
            padding: 48px 0 100px;
            background: var(--bg-accent);
        }

        .blog-detail-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 300px;
            gap: 32px;
            align-items: start;
            margin-bottom: 64px;
        }

        .blog-detail-article {
            background: var(--light);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px 44px;
            box-shadow: var(--shadow-md);
            font-size: 17px;
            line-height: 1.8;
            max-width: none;
            margin: 0;
        }

        .blog-detail-article h2 {
            font-size: 24px;
            font-weight: 800;
            color: var(--dark);
            margin: 2.2em 0 0.65em;
            padding-top: 1.2em;
            border-top: 1px solid var(--border-color);
            letter-spacing: -0.02em;
        }

        .blog-detail-article h2:first-child {
            margin-top: 0;
            padding-top: 0;
            border-top: none;
        }

        .blog-detail-article h3 {
            font-size: 19px;
            font-weight: 700;
            margin: 1.6em 0 0.5em;
            color: var(--dark);
        }

        .blog-detail-article p {
            margin: 0 0 1.15em;
            color: var(--text-main);
        }

        .blog-detail-article ul,
        .blog-detail-article ol {
            margin: 0 0 1.25em 1.2em;
        }

        .blog-detail-article li {
            margin-bottom: 0.45em;
        }

        .blog-detail-article a {
            color: var(--primary);
            font-weight: 600;
        }

        .blog-detail-article img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 1.5em 0;
            border: 1px solid var(--border-color);
        }

        .blog-detail-article blockquote {
            margin: 1.75em 0;
            padding: 20px 24px;
            border-left: 4px solid var(--primary);
            background: #fff7ed;
            border-radius: 0 12px 12px 0;
            color: var(--text-main);
            font-size: 1.05em;
        }

        .blog-detail-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 28px;
        }

        .blog-detail-widget {
            background: var(--light);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: calc(var(--header-total-h) + 20px);
        }

        .blog-detail-widget__title {
            font-size: 17px;
            font-weight: 800;
            margin: 0 0 10px;
            color: var(--dark);
        }

        .blog-detail-widget p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0 0 16px;
            line-height: 1.6;
        }

        .blog-detail-widget .btn-block {
            width: 100%;
            justify-content: center;
            margin-bottom: 10px;
        }

        .blog-detail-widget .btn-block:last-child {
            margin-bottom: 0;
        }

        .blog-detail-related {
            padding-top: 8px;
        }

        .blog-detail-related .section-header {
            margin-bottom: 36px;
        }

        @media (max-width: 992px) {
            .blog-detail-layout {
                grid-template-columns: 1fr;
            }

            .blog-detail-widget {
                position: static;
            }

            .blog-detail-article {
                padding: 28px 24px;
            }
        }

        @media (max-width: 640px) {
            .blog-detail-hero__inner {
                padding: 32px 0 40px;
            }
        }

        /* --- FOOTER --- */
        footer {
            background-color: var(--dark);
            color: rgba(255,255,255,0.7);
            padding: 80px 0 0 0;
            font-size: 14px;
            border-top: 4px solid var(--primary);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr repeat(4, 1fr);
            gap: 40px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .footer-logo-side h2 {
            color: var(--light);
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .footer-logo-side h2 span { color: var(--primary); }

        .footer-logo-side p {
            margin-bottom: 24px;
            font-size: 13px;
            line-height: 1.6;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
        }

        .footer-socials a {
            background: rgba(255,255,255,0.05);
            width: 36px;
            height: 36px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
        }

        .footer-socials a:hover {
            background: var(--primary);
        }

        .footer-logo-side .footer-newsletter {
            margin-top: 28px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-logo-side .footer-newsletter h3 {
            color: var(--light);
            font-size: 15px;
            font-weight: 600;
            margin: 0 0 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-newsletter__text {
            color: rgba(255, 255, 255, 0.65);
            font-size: 13px;
            margin: 0 0 10px;
            line-height: 1.5;
        }

        .footer-col h3 {
            color: var(--light);
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-col ul a:hover {
            color: var(--primary);
            padding-left: 4px;
        }

        .bottom-footer {
            padding: 30px 0;
            text-align: center;
            font-size: 13px;
            color: rgba(255,255,255,0.4);
        }

        /* --- RESPONSIVE ADJUSTMENTS --- */
        @media (min-width: 1025px) {
            .site-header__nav {
                position: relative;
            }

            .site-header__nav::after {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 20px;
                height: 100%;
                pointer-events: none;
                background: linear-gradient(90deg, transparent, #fff 85%);
                opacity: 0;
                transition: opacity 0.2s ease;
            }

            .site-header__nav.is-scrollable::after {
                opacity: 1;
            }
        }

        @media (max-width: 1200px) {
            .site-header__cluster { gap: 12px; }
            .site-header__menu { gap: 2px; }
            .site-header__link { padding: 8px 11px; font-size: 14px; }
            .site-header__mega-grid {
                grid-template-columns: 1fr 1fr;
            }
            .site-header__mega-card {
                grid-column: 1 / -1;
                margin: 12px 24px 24px;
                min-height: auto;
            }
            .categories-grid, .products-grid, .hosting-grid { grid-template-columns: repeat(2, 1fr); }
            .why-grid, .testimonials-grid, .reseller-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 1024px) {
            html,
            body {
                width: 100%;
                overscroll-behavior-x: none;
            }

            body {
                touch-action: pan-y pinch-zoom;
            }

            body.page-home .site-home,
            body.page-home .site-home > section {
                width: 100%;
                max-width: 100%;
                overflow-x: clip;
            }

            .mkt-site-banners,
            .mkt-site-banner {
                max-width: 100%;
            }

            .mkt-site-banner,
            .mkt-site-banner__link {
                white-space: normal;
                overflow-wrap: anywhere;
                word-break: break-word;
            }

            :root {
                --header-mkt-h: 0px;
                --header-total-h: var(--header-main-h);
            }

            /* Kampanya bandı — JS ölçümü gelene kadar yaklaşık tahmin (fazla padding = beyaz boşluk) */
            :root:has(.mkt-site-banners) {
                --header-mkt-h: 44px;
                --header-total-h: calc(var(--header-main-h) + var(--header-mkt-h));
            }

            .site-header__top { display: none; }

            .site-header.is-nav-open .mkt-site-banners {
                display: none;
            }

            /* Menü açıkken kampanya bandı gizli — boş gri şerit kalmasın */
            .site-header.is-nav-open .site-header__nav {
                top: var(--header-main-h);
            }

            .site-header__nav {
                position: fixed;
                top: calc(var(--header-main-h) + var(--header-mkt-h));
                right: 0;
                left: auto;
                bottom: 0;
                width: 100%;
                max-width: 100%;
                flex: none;
                display: none !important;
                background: #ffffff;
                padding: 16px 20px 32px;
                box-sizing: border-box;
                overflow-y: auto;
                overflow-x: hidden;
                transform: none;
                transition: none;
                z-index: 1102;
                border-top: 1px solid var(--border-color);
                visibility: hidden;
                pointer-events: none;
            }

            .site-header.is-nav-open .site-header__nav {
                display: flex !important;
                flex-direction: column;
                visibility: visible;
                pointer-events: auto;
                overflow-x: hidden;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                overscroll-behavior: contain;
                touch-action: pan-y;
            }

            .site-header__mobile-foot {
                display: block;
            }

            .site-header.is-nav-open .site-header__main {
                z-index: 25;
            }

            .site-header__menu {
                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
            }

            .site-header__item {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                flex-shrink: 0;
            }

            .site-header__link {
                width: 100%;
                box-sizing: border-box;
                justify-content: flex-start;
                gap: 8px;
                flex-wrap: wrap;
                padding: 14px 16px;
                font-size: 15px;
            }

            .site-header__link i.fa-chevron-down {
                margin-left: auto;
                flex-shrink: 0;
            }

            .site-header__link .promo-slogan {
                margin-left: 0;
                order: 0;
                font-size: 8px;
                padding: 2px 7px;
            }

            .site-header__item--mobile-mega .site-header__mega-label {
                display: block !important;
                padding: 18px 16px 6px !important;
                margin: 0;
                font-size: 11px;
                font-weight: 700;
                letter-spacing: 0.08em;
                text-transform: uppercase;
                color: var(--primary);
            }

            .site-header__item--mobile-only .site-header__link {
                font-weight: 500;
            }

            .site-header__dropdown {
                position: static;
                top: auto;
                left: auto;
                width: 100%;
                max-width: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                border-radius: 0 0 10px 10px;
                margin: -4px 0 8px;
                padding: 4px 0 8px;
                display: none;
                min-width: 0;
                pointer-events: auto;
                background: rgba(255, 107, 0, 0.04);
            }

            .site-header__dropdown li {
                list-style: none;
                margin: 0;
                width: 100%;
            }

            .site-header__dropdown a {
                display: block;
                width: 100%;
                box-sizing: border-box;
                padding: 12px 16px 12px 28px;
                font-size: 15px;
                font-weight: 500;
                white-space: normal;
                border-radius: 0;
            }

            .site-header__dropdown a:hover {
                background: rgba(255, 107, 0, 0.08);
            }

            .site-header__item.is-open > .site-header__link {
                border-radius: 10px 10px 0 0;
            }

            .site-header__item.is-open > .site-header__dropdown {
                display: block;
                pointer-events: auto;
            }

            .site-header__item--mega {
                display: none;
            }

            .site-header__item--mobile-only,
            .site-header__item--mobile-mega {
                display: list-item;
            }

            .site-header__action-login,
            .site-header__action-register,
            .site-header__action-logout,
            .site-header__action-quote {
                display: none;
            }

            .site-header__bar {
                justify-content: space-between;
                gap: 12px;
            }

            .site-header__cluster {
                flex: 0 1 auto;
                justify-content: flex-start;
                gap: 0;
                min-width: 0;
            }

            .site-header__bar-end {
                gap: 8px;
                flex-shrink: 0;
            }

            .site-header__logo {
                font-size: 22px;
            }

            .site-header__actions {
                gap: 0;
                flex-shrink: 0;
            }

            .site-header__cart {
                width: 44px;
                height: 44px;
                padding: 0;
                justify-content: center;
                border-radius: 10px;
                position: relative;
            }

            .site-header__cart i {
                font-size: 17px;
            }

            .site-header__cart-badge {
                position: absolute;
                top: -4px;
                right: -4px;
                min-width: 18px;
                height: 18px;
                padding: 0 4px;
                font-size: 10px;
                border: 2px solid #fff;
            }

            .site-header__toggle {
                display: flex;
                width: 44px;
                height: 44px;
                border-radius: 10px;
            }

            .site-header.is-nav-open .site-header__toggle {
                border-color: var(--primary);
                color: var(--primary);
                background: rgba(255, 107, 0, 0.08);
            }

            .site-header__main > .container.site-header__bar {
                padding-left: max(16px, env(safe-area-inset-left, 0px));
                padding-right: max(16px, env(safe-area-inset-right, 0px));
            }

            .site-header__cart-text {
                display: none;
            }

            .site-header__mobile-cta {
                display: block;
                flex-shrink: 0;
                width: 100%;
            }

            .site-header__mobile-cta-inner .btn {
                min-height: 40px;
                padding: 9px 12px;
                font-size: 13px;
            }

            .site-header__mobile-foot {
                padding-bottom: 56px;
            }

            .site-header__menu,
            .site-header__mobile-foot {
                width: 100%;
            }

            .site-header__pickers {
                gap: 4px;
            }

            .site-header__picker-btn {
                padding: 4px 8px;
                font-size: 11px;
                max-width: 120px;
            }

            .site-header__picker-label {
                max-width: 72px;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .site-header__mega {
                display: none !important;
            }
        }

        /* Masaüstü — bar 76px sabit; body padding CSS tahmini + JS ile ince ayar */
        @media (min-width: 1025px) {
            :root {
                --header-total-h: calc(var(--header-top-h) + var(--header-main-h) + var(--header-mkt-h));
            }

            :root:has(.mkt-site-banners) {
                --header-mkt-h: 40px;
            }

            .site-header__main {
                height: var(--header-main-h);
                min-height: var(--header-main-h);
                max-height: var(--header-main-h);
                overflow: visible;
            }

            .site-header__bar {
                height: var(--header-main-h);
                min-height: var(--header-main-h);
                max-height: var(--header-main-h);
                padding-top: 0;
                padding-bottom: 0;
                overflow: visible;
            }
        }

        /* Masaüstü header — mobil kuralların tam geri alınması */
        @media (min-width: 1025px) {
            .site-header__bar {
                justify-content: center;
            }

            .site-header__cluster {
                display: flex;
                align-items: center;
                flex: 0 1 auto;
                min-width: 0;
            }

            .site-header__bar-end {
                flex-shrink: 0;
                align-self: center;
                margin-left: 0;
            }

            .site-header__nav,
            .site-header__nav#mainNav {
                position: static;
                top: auto;
                right: auto;
                bottom: auto;
                left: auto;
                width: auto;
                max-width: none;
                flex: 0 1 auto;
                min-width: 0;
                display: flex;
                align-items: center;
                padding: 0;
                margin: 0;
                background: transparent;
                border: none;
                transform: none;
                overflow: visible;
                z-index: 3;
            }

            .site-header__menu {
                flex-direction: row;
                flex-wrap: nowrap;
                align-items: center;
                gap: 2px;
                width: auto;
                max-width: none;
                height: auto;
                min-width: 0;
                overflow: visible;
            }

            .site-header__menu::-webkit-scrollbar {
                display: none;
            }

            .site-header__item {
                position: relative;
                width: auto;
                flex-direction: row;
                align-items: center;
                flex-shrink: 0;
            }

            .site-header__item--mobile-only,
            .site-header__item--mobile-mega,
            .site-header__mobile-cta,
            .site-header__mobile-foot {
                display: none !important;
            }

            .site-header__item--mega {
                display: flex;
            }

            .site-header__link {
                width: auto;
                box-sizing: border-box;
                justify-content: center;
                flex-wrap: nowrap;
                white-space: nowrap;
            }

            .site-header__link i.fa-chevron-down {
                margin-left: 0;
            }

            .site-header__dropdown {
                position: absolute;
                top: calc(100% + 8px);
                left: 0;
                width: auto;
                max-width: none;
                margin: 0;
                padding: 8px;
                opacity: 0;
                visibility: hidden;
                transform: translateY(4px);
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
                border: 1px solid var(--border-color);
                border-radius: 12px;
                background: #ffffff;
                pointer-events: none;
            }

            .site-header__dropdown a {
                display: block;
                width: auto;
                padding: 10px 14px;
                font-size: 14px;
                font-weight: 600;
                white-space: nowrap;
            }

            .site-header__item.is-open > .site-header__dropdown {
                display: block;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                pointer-events: auto;
            }

            .site-header__action-login,
            .site-header__action-register,
            .site-header__action-logout,
            .site-header__action-quote {
                display: inline-flex;
            }

            .site-header__toggle {
                display: none;
            }

            .site-header__actions {
                align-items: center;
                flex-wrap: nowrap;
                gap: 8px;
            }
        }

        /* --- PRODUCT DETAIL (YERSOFT bileşenleri) --- */
        .product-detail-page {
            background-color: var(--bg-accent);
        }

        .product-detail-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
            gap: 30px;
            align-items: start;
        }

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

        .product-detail-gallery {
            margin-bottom: 24px;
        }

        .product-detail-gallery .prod-img {
            position: relative;
            overflow: hidden;
            height: min(52vw, 420px);
            min-height: 280px;
            font-size: 72px;
            color: rgba(17, 17, 17, 0.12);
            background: #e2e8f0;
        }

        .product-detail-gallery .prod-img.prod-img--demo {
            height: min(56vw, 460px);
            min-height: 340px;
            background: #f8f8f8;
        }

        .product-detail-gallery .prod-img.prod-img--demo .product-card-demo {
            container-type: size;
        }

        .product-detail-prod-img__photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
        }

        .product-detail-gallery__cta {
            padding: 16px 20px 20px;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }

        .product-detail-gallery__cta .btn {
            width: 100%;
            max-width: 320px;
            padding: 9px 18px;
            font-size: 13px;
            white-space: nowrap;
        }

        body.product-demo-modal-open {
            overflow: hidden;
        }

        body.product-demo-modal-open #cookie-consent {
            visibility: hidden;
            pointer-events: none;
        }

        .product-demo-modal-root {
            position: fixed;
            inset: 0;
            z-index: 10200;
            display: flex;
            align-items: stretch;
            justify-content: stretch;
            padding: 0;
        }

        .product-demo-modal-root[hidden] {
            display: none !important;
        }

        .product-demo-modal-backdrop {
            position: absolute;
            inset: 0;
            z-index: 0;
            background: rgba(15, 23, 42, 0.55);
            backdrop-filter: blur(4px);
        }

        .product-demo-modal {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            width: 100%;
            height: 100%;
            max-width: none;
            max-height: none;
            background: var(--light);
            border-radius: 0;
            overflow: hidden;
            box-shadow: none;
            border: none;
        }

        .product-demo-modal__head {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 18px 22px;
            background: var(--dark);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--light);
        }

        .product-demo-modal__intro {
            flex: 1;
            min-width: 0;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .product-demo-modal__title-wrap {
            min-width: 0;
        }

        .product-demo-modal__title {
            margin: 0;
            font-size: clamp(16px, 2vw, 20px);
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
            color: var(--light);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .product-demo-modal__sub {
            margin: 4px 0 0;
            font-size: 12px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.55);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .product-demo-device-bar {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .product-demo-device {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            min-height: 40px;
            padding: 0 14px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.72);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .product-demo-device i {
            font-size: 14px;
        }

        .product-demo-device:hover {
            border-color: rgba(255, 255, 255, 0.28);
            color: var(--light);
            background: rgba(255, 255, 255, 0.08);
        }

        .product-demo-device.is-active {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--light);
            box-shadow: 0 6px 20px rgba(255, 107, 0, 0.28);
        }

        .product-demo-device.is-active:hover {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            color: var(--light);
        }

        .product-demo-modal__close {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            min-width: 36px;
            min-height: 36px;
            padding: 0;
            border: none;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.88);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .product-demo-modal__close:hover {
            background: #fee2e2;
            color: #dc2626;
        }

        .product-demo-modal__body {
            flex: 1;
            min-height: 0;
            display: flex;
            flex-direction: column;
            background: #fff;
            overflow: hidden;
        }

        .product-demo-frame-wrap {
            flex: 1;
            min-height: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            overflow: hidden;
            container-type: size;
            container-name: demo-viewport;
        }

        .product-demo-frame-wrap.is-device-desktop {
            align-items: stretch;
            justify-content: stretch;
            background: #fff;
        }

        .product-demo-frame-wrap.is-device-tablet,
        .product-demo-frame-wrap.is-device-mobile {
            background:
                radial-gradient(ellipse 80% 60% at 50% 20%, rgba(255, 255, 255, 0.55), transparent 70%),
                linear-gradient(180deg, #e4e8ef 0%, #d5dbe4 100%);
        }

        .product-demo-frame {
            position: relative;
            display: flex;
            flex-direction: column;
            min-height: 0;
            overflow: hidden;
            transition:
                width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-radius 0.35s ease,
                box-shadow 0.35s ease,
                padding 0.35s ease,
                background 0.35s ease;
        }

        .product-demo-frame__browser {
            display: none;
            flex-shrink: 0;
            align-items: center;
            gap: 7px;
            height: 36px;
            padding: 0 14px;
            background: #eceff3;
            border-bottom: 1px solid #d8dee6;
        }

        .product-demo-frame__browser-dot {
            width: 11px;
            height: 11px;
            border-radius: 50%;
            background: #d1d5db;
        }

        .product-demo-frame__browser-dot:nth-child(1) { background: #ff5f57; }
        .product-demo-frame__browser-dot:nth-child(2) { background: #febc2e; }
        .product-demo-frame__browser-dot:nth-child(3) { background: #28c840; }

        .product-demo-frame__screen {
            position: relative;
            flex: 1;
            min-height: 0;
            width: 100%;
            overflow: hidden;
            background: #fff;
        }

        .product-demo-device-chrome {
            display: none;
            pointer-events: none;
            z-index: 4;
        }

        .product-demo-device-chrome__island,
        .product-demo-device-chrome__ipad-camera,
        .product-demo-device-chrome__home-bar {
            display: none;
            position: absolute;
        }

        .product-demo-frame--desktop {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 0;
            box-shadow: none;
            background: #fff;
        }

        .product-demo-frame--desktop .product-demo-frame__browser {
            display: flex;
        }

        .product-demo-frame--desktop .product-demo-frame__screen {
            border-radius: 0;
        }

        .product-demo-frame--tablet {
            aspect-ratio: 834 / 1194;
            width: min(100cqw, calc(100cqh * 834 / 1194));
            height: min(100cqh, calc(100cqw * 1194 / 834));
            flex-shrink: 0;
            border: none;
            border-radius: 36px;
            padding: 16px;
            background:
                linear-gradient(140deg, rgba(255, 255, 255, 0.14) 0%, transparent 28%),
                linear-gradient(168deg, #48484a 0%, #2c2c2e 12%, #1c1c1e 28%, #000 52%, #1a1a1c 78%, #3a3a3c 100%);
            box-shadow:
                0 0 0 1px rgba(255, 255, 255, 0.1) inset,
                0 1px 0 rgba(255, 255, 255, 0.08) inset,
                0 0 0 1px rgba(0, 0, 0, 0.85),
                0 40px 80px rgba(0, 0, 0, 0.45),
                0 16px 32px rgba(0, 0, 0, 0.3);
        }

        .product-demo-frame--tablet .product-demo-frame__screen {
            border-radius: 20px;
            background: #000;
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.95);
        }

        .product-demo-frame--tablet .product-demo-device-chrome--ipad {
            display: block;
        }

        .product-demo-frame--tablet .product-demo-device-chrome__ipad-camera {
            display: block;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 35%, #4a4a4c, #0a0a0a 75%);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
        }

        .product-demo-frame--tablet .product-demo-frame__iframe,
        .product-demo-frame--tablet .product-demo-frame__loader {
            border-radius: 20px;
        }

        .product-demo-frame--mobile {
            aspect-ratio: 430 / 932;
            width: min(100cqw, calc(100cqh * 430 / 932));
            height: min(100cqh, calc(100cqw * 932 / 430));
            flex-shrink: 0;
            border: none;
            border-radius: 62px;
            padding: 13px;
            background:
                linear-gradient(140deg, rgba(255, 255, 255, 0.12) 0%, transparent 26%),
                linear-gradient(175deg, #636366 0%, #3a3a3c 10%, #1c1c1e 24%, #000 50%, #1a1a1c 74%, #48484a 100%);
            box-shadow:
                0 0 0 1px rgba(255, 255, 255, 0.1) inset,
                0 0 0 1px rgba(0, 0, 0, 0.75),
                0 44px 88px rgba(0, 0, 0, 0.5),
                0 18px 36px rgba(0, 0, 0, 0.35);
        }

        .product-demo-frame--mobile::before,
        .product-demo-frame--mobile::after {
            content: '';
            position: absolute;
            border-radius: 3px;
            z-index: 6;
            pointer-events: none;
        }

        .product-demo-frame--mobile::before {
            left: -3px;
            top: 22%;
            width: 4px;
            height: 32px;
            background: linear-gradient(90deg, #3a3a3c, #0a0a0a);
            border-radius: 2px 0 0 2px;
            box-shadow:
                0 52px 0 0 #1c1c1e,
                0 96px 0 0 #1c1c1e;
        }

        .product-demo-frame--mobile::after {
            right: -3px;
            top: 28%;
            width: 4px;
            height: 72px;
            background: linear-gradient(-90deg, #3a3a3c, #0a0a0a);
            border-radius: 0 2px 2px 0;
        }

        .product-demo-frame--mobile .product-demo-frame__screen {
            border-radius: 50px;
            background: #000;
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.95);
        }

        .product-demo-frame--mobile .product-demo-device-chrome--iphone {
            display: block;
        }

        .product-demo-frame--mobile .product-demo-device-chrome__island {
            display: block;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            width: 132px;
            height: 38px;
            border-radius: 22px;
            background: #000;
            box-shadow:
                0 0 0 1px rgba(255, 255, 255, 0.08),
                inset 0 1px 3px rgba(255, 255, 255, 0.05);
        }

        .product-demo-frame--mobile .product-demo-device-chrome__island::before {
            content: '';
            position: absolute;
            top: 50%;
            right: 28px;
            transform: translateY(-50%);
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #1e3a5f, #050508 80%);
            opacity: 0.9;
        }

        .product-demo-frame--mobile .product-demo-device-chrome__island::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 24px;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #0a0a0a;
        }

        .product-demo-frame--mobile .product-demo-device-chrome__home-bar {
            display: block;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 36%;
            max-width: 140px;
            height: 5px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.88);
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
        }

        .product-demo-frame--mobile .product-demo-frame__iframe,
        .product-demo-frame--mobile .product-demo-frame__loader {
            border-radius: 50px;
        }

        .product-demo-frame__iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
            background: #fff;
            z-index: 1;
        }

        .product-demo-frame__loader,
        .product-demo-frame__blocked {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 14px;
            padding: 28px 24px;
            text-align: center;
            background: rgba(255, 255, 255, 0.97);
            z-index: 2;
        }

        .product-demo-frame__loader {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.2s ease, visibility 0.2s ease;
        }

        .product-demo-frame__loader.is-active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .product-demo-frame__loader i {
            font-size: 28px;
            color: var(--primary);
        }

        .product-demo-frame__loader span {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-muted);
        }

        .product-demo-frame__blocked-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: #fff7ed;
            border: 1px solid rgba(255, 107, 0, 0.25);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        .product-demo-frame__blocked p {
            margin: 0;
            max-width: 340px;
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-muted);
        }

        .product-demo-frame__retry {
            margin-top: 2px;
            font-size: 13px;
            padding: 10px 18px;
        }

        @media (max-width: 900px) {
            .product-demo-modal__head {
                flex-wrap: wrap;
                padding: 14px 16px;
                gap: 12px;
            }

            .product-demo-modal__intro {
                flex: 1 1 100%;
            }

            .product-demo-device-bar {
                flex: 1;
                justify-content: center;
            }

            .product-demo-device span {
                display: none;
            }

            .product-demo-device {
                flex: 1;
                padding: 0 10px;
            }

            .product-demo-frame-wrap.is-device-tablet,
            .product-demo-frame-wrap.is-device-mobile {
                padding: 8px;
            }
        }

        @media (max-width: 560px) {
            .product-demo-modal__head {
                padding: 12px 14px;
                gap: 10px;
            }

            .product-demo-modal__sub {
                display: none;
            }

            .product-demo-modal__title {
                font-size: 14px;
            }

            .product-demo-modal__close {
                width: 44px;
                height: 44px;
                min-width: 44px;
                min-height: 44px;
            }

            .product-demo-device {
                min-height: 44px;
            }

            .product-demo-frame-wrap {
                padding: 0;
                -webkit-overflow-scrolling: touch;
            }

            .product-demo-frame--mobile,
            .product-demo-frame--tablet,
            .product-demo-frame--desktop {
                width: 100% !important;
                height: 100% !important;
                min-height: 0 !important;
                max-height: none !important;
                padding: 0 !important;
                border: none !important;
                border-radius: 0 !important;
                background: #fff !important;
                box-shadow: none !important;
            }

            .product-demo-frame--mobile::before,
            .product-demo-frame--mobile::after {
                display: none;
            }

            .product-demo-frame--mobile .product-demo-device-chrome,
            .product-demo-frame--tablet .product-demo-device-chrome {
                display: none !important;
            }

            .product-demo-frame--mobile .product-demo-frame__screen,
            .product-demo-frame--tablet .product-demo-frame__screen,
            .product-demo-frame--desktop .product-demo-frame__screen {
                border-radius: 0;
            }

            .product-demo-frame--mobile .product-demo-frame__iframe,
            .product-demo-frame--tablet .product-demo-frame__iframe,
            .product-demo-frame--desktop .product-demo-frame__iframe {
                border-radius: 0;
            }
        }

        .product-detail-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 16px;
            position: sticky;
            top: calc(var(--header-total-h) + 12px);
            z-index: 15;
        }

        .product-detail-tab {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: var(--light);
            font-weight: 600;
            font-size: 14px;
            color: var(--text-muted);
            cursor: pointer;
            transition: var(--transition);
        }

        .product-detail-tab:hover {
            border-color: var(--dark);
            color: var(--dark);
        }

        .product-detail-tab.is-active {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--light);
        }

        .product-detail-tab.is-active:hover {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            color: var(--light);
        }

        .product-detail-panel {
            display: none;
        }

        .product-detail-panel.is-active {
            display: flex;
        }

        .product-detail-panel__title {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin: 0 0 16px;
        }

        .product-detail-panel__inner {
            width: 100%;
        }

        .product-detail-sidebar {
            position: sticky;
            top: calc(var(--header-total-h) + 16px);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .product-detail-reseller {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            padding: 18px;
            background: var(--light);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
        }

        .product-detail-reseller__icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--bg-accent);
            color: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .product-detail-reseller__title {
            display: block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .product-detail-reseller__text {
            margin: 0;
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .product-detail-reseller__text a {
            color: var(--dark);
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .product-detail-reseller__text a:hover {
            color: var(--primary);
        }

        .product-detail-buy {
            text-align: center;
            padding: 32px 24px;
        }

        .product-detail-buy .product-detail-license {
            background: var(--bg-accent);
            color: var(--dark);
            margin-bottom: 12px;
        }

        .product-detail-license i {
            margin-right: 4px;
            color: var(--text-muted);
        }

        .product-detail-price-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin: 0 0 8px;
        }

        .product-detail-old-price {
            font-size: 15px;
            color: var(--text-muted);
            text-decoration: line-through;
            margin: 0 auto 6px;
            text-align: center;
        }

        .product-detail-price {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin: 0 auto 20px;
        }

        .product-detail-price__amount {
            font-size: 36px;
            font-weight: 800;
            color: var(--dark);
            line-height: 1.15;
        }

        .product-detail-price__period {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-muted);
            margin-top: 6px;
        }

        .product-detail-price__note {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .product-detail-perks {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 24px;
            text-align: left;
        }

        .product-detail-perk {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            background: var(--bg-accent);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            color: var(--dark);
            line-height: 1.35;
        }

        .product-detail-perk i {
            flex-shrink: 0;
            font-size: 15px;
            color: var(--dark);
            background: var(--light);
            border: 1px solid var(--border-color);
            padding: 8px;
            border-radius: 8px;
        }

        .product-detail-buy .btn {
            width: 100%;
            margin-bottom: 10px;
            padding: 9px 18px;
            font-size: 13px;
            white-space: nowrap;
            gap: 6px;
        }

        .product-detail-buy .btn:last-child {
            margin-bottom: 0;
        }

        .product-detail-buy .product-detail-cart-form {
            margin-bottom: 10px;
        }

        .product-detail-buy .product-detail-cart-form .btn {
            margin-bottom: 0;
        }

        .product-detail-specs {
            padding: 32px 24px;
        }

        .product-detail-specs .pricing-header h3 {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            margin-bottom: 0;
        }

        .product-detail-specs .pricing-header h3 i {
            color: var(--text-muted);
        }

        .product-detail-specs .pricing-features {
            margin-bottom: 20px;
        }

        .product-detail-support {
            margin: 0;
            padding-top: 16px;
            border-top: 1px solid var(--border-color);
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .product-detail-support a {
            display: block;
            color: var(--dark);
            font-weight: 600;
            margin-top: 4px;
        }

        .product-detail-support a:hover {
            color: var(--primary);
        }

        @media (max-width: 1100px) {
            .product-detail-layout {
                grid-template-columns: 1fr;
            }

            .product-detail-sidebar {
                position: static;
            }

            .product-detail-tabs {
                position: static;
            }
        }

        @media (max-width: 600px) {
            .product-detail-perks {
                grid-template-columns: 1fr;
            }

            .product-detail-gallery .prod-img {
                height: 240px;
            }

            .product-detail-gallery .prod-img.prod-img--demo {
                height: 280px;
                min-height: 280px;
            }
        }

        @media (max-width: 380px) {
            .stats-grid {
                gap: 14px 8px;
            }
            .stat-item__value {
                font-size: 15px;
            }
            .stat-item__label {
                font-size: 9px;
                letter-spacing: -0.01em;
            }
            .stat-item__icon {
                width: 26px;
                height: 26px;
                font-size: 11px;
            }
        }

        @media (max-width: 1024px) {
            .stat-item::after { display: none; }
            .stats-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 14px 12px;
            }
            .stat-item {
                justify-content: flex-start;
                padding: 8px 10px;
                align-items: flex-start;
            }
        }

        @media (max-width: 768px) {
            .stats-bar { padding: 18px 0; }
            .stats-bar .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .stats-grid {
                gap: 16px 10px;
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .stat-item {
                gap: 8px;
                padding: 4px 2px;
            }
            .stat-item__icon {
                width: 30px;
                height: 30px;
                font-size: 12px;
                border-radius: 6px;
                margin-top: 2px;
            }
            .stat-item__value {
                font-size: 17px;
                line-height: 1.2;
            }
            .stat-item__label {
                font-size: 10px;
                line-height: 1.35;
                overflow-wrap: break-word;
                word-break: break-word;
            }
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .category-card--photo .category-card__media {
                height: 96px;
            }
            .category-card--photo h3 {
                font-size: 13px;
                line-height: 1.35;
                padding: 10px 8px 14px;
            }
            .category-card:not(.category-card--photo) {
                padding: 20px 12px;
            }
            .category-card:not(.category-card--photo) i {
                font-size: 26px;
                margin-bottom: 12px;
            }
            .category-card:not(.category-card--photo) h3 {
                font-size: 13px;
            }
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .product-card .prod-img {
                height: 118px;
            }
            .product-card .prod-img--demo {
                height: 168px;
            }
            .product-card .prod-details {
                padding: 12px 10px 14px;
            }
            .product-card .prod-details h3 {
                font-size: 13px;
                line-height: 1.35;
                margin-bottom: 6px;
            }
            .product-card .prod-details p {
                font-size: 11px;
                line-height: 1.4;
                margin-bottom: 10px;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            .product-card .prod-footer {
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
                padding-top: 10px;
            }
            .product-card .prod-price__amount {
                font-size: 14px;
            }
            .product-card .prod-price-row--old .prod-price__amount {
                font-size: 12px;
            }
            .product-card .prod-price__period {
                font-size: 10px;
            }
            .product-card .prod-footer .btn {
                width: 100%;
                padding: 7px 8px !important;
                font-size: 11px !important;
            }
            .product-card .prod-tag {
                top: 6px;
                left: 6px;
                font-size: 9px;
                padding: 2px 6px;
            }
            .product-card .prod-img .promo-slogan {
                font-size: 9px;
                padding: 2px 6px;
            }
            .product-card .prod-img .promo-slogan--coksatan {
                top: 6px;
                right: 6px;
            }
            .product-card .prod-img .promo-slogan--indirim {
                top: 6px;
                left: 6px;
            }
            .product-card .prod-img:has(.promo-slogan--indirim) .prod-tag {
                bottom: 6px;
                left: 6px;
            }
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .why-card {
                padding: 16px 12px;
            }
            .why-card i {
                font-size: 22px;
                padding: 10px;
                margin-bottom: 12px;
            }
            .why-card h3 {
                font-size: 13px;
                line-height: 1.35;
                margin-bottom: 8px;
            }
            .why-card p {
                font-size: 11px;
                line-height: 1.45;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            .why-card--visual {
                padding: 0;
                overflow: hidden;
            }
            .why-card--visual .service-card-media {
                margin: 0 0 10px;
                height: 96px;
            }
            .why-card--visual h3,
            .why-card--visual p {
                padding-left: 12px;
                padding-right: 12px;
            }
            .why-card--visual p {
                padding-bottom: 14px;
            }
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .review-card {
                padding: 14px 12px;
            }
            .review-text {
                font-size: 11px;
                line-height: 1.45;
                margin-bottom: 12px;
                display: -webkit-box;
                -webkit-line-clamp: 4;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            .review-user {
                gap: 8px;
            }
            .user-avatar {
                width: 36px;
                height: 36px;
                font-size: 11px;
                flex-shrink: 0;
            }
            .user-meta h4 {
                font-size: 12px;
            }
            .user-meta p {
                font-size: 10px;
                line-height: 1.3;
            }
            .hosting-grid, .reseller-grid, .blog-grid, .footer-grid { grid-template-columns: 1fr; }
        }

        /* Hesabım — domain yönetimi */
        .account-domain-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 20px 0;
            border-bottom: 1px solid #e8e8e8;
            padding-bottom: 12px;
        }
        .account-domain-tabs__link {
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            color: #444;
            font-weight: 600;
            font-size: 14px;
        }
        .account-domain-tabs__link.is-active,
        .account-domain-tabs__link:hover {
            background: var(--primary, #ff6b00);
            color: #fff;
        }
        .account-back-link {
            display: inline-block;
            margin-bottom: 12px;
            color: var(--primary, #ff6b00);
            text-decoration: none;
            font-weight: 600;
        }
        .account-dns-form.page-form {
            max-width: none;
            margin: 0;
            width: 100%;
        }
        .account-dns-form.page-form label {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin: 0;
            font-weight: 600;
            font-size: 13px;
        }
        .account-dns-form.page-form input,
        .account-dns-form.page-form select {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font: inherit;
            box-sizing: border-box;
        }
        .account-dns-form.page-form input:disabled {
            background: #f1f5f9;
            color: #64748b;
            cursor: not-allowed;
        }
        .account-dns-form__grid {
            display: grid;
            gap: 12px 16px;
            align-items: end;
        }
        .account-dns-form__grid--main {
            grid-template-columns: 100px minmax(120px, 1fr) minmax(160px, 2fr) 90px;
            margin-bottom: 12px;
        }
        .account-dns-form__grid--extras {
            grid-template-columns: repeat(3, minmax(100px, 140px));
            margin-bottom: 16px;
        }
        .account-dns-form__grid--extras:not(:has(.account-dns-field:not([hidden]))) {
            display: none;
        }
        .account-dns-form__grid--edit {
            grid-template-columns: 90px minmax(100px, 1fr) minmax(140px, 2fr) 80px repeat(3, minmax(80px, 100px));
        }
        @media (max-width: 768px) {
            .account-dns-form__grid--edit {
                grid-template-columns: 1fr 1fr;
            }
        }
        .account-dns-form__actions {
            display: flex;
            justify-content: flex-start;
            padding-top: 4px;
        }
        .account-dns-form__field--host small,
        .account-dns-form__field-hint {
            font-weight: 400;
            font-size: 11px;
            color: #64748b;
            margin-top: -2px;
        }
        @media (max-width: 768px) {
            .account-dns-form__grid--main {
                grid-template-columns: 1fr 1fr;
            }
            .account-dns-form__grid--main .account-dns-form__field--value {
                grid-column: 1 / -1;
            }
            .account-dns-form__grid--extras {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .account-dns-form__grid--main,
            .account-dns-form__grid--extras {
                grid-template-columns: 1fr;
            }
            .account-dns-form__grid--main .account-dns-form__field--value {
                grid-column: auto;
            }
        }
        .account-stat-card--link {
            text-decoration: none;
            color: inherit;
            transition: box-shadow 0.2s, border-color 0.2s;
        }
        .account-stat-card--link:hover {
            border-color: var(--primary, #ff6b00);
            box-shadow: 0 4px 12px rgba(255, 107, 0, 0.15);
        }
        .btn-sm {
            padding: 6px 12px;
            font-size: 13px;
        }
        .account-domain-overview h4,
        .account-domain-security h4,
        .account-domain-renew h4 {
            margin: 24px 0 12px;
            font-size: 16px;
        }
        .account-domain-settings,
        .account-domain-renew,
        .account-domain-auth-code {
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px solid #eee;
        }
        .account-domain-check {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 10px 0;
            font-size: 14px;
            cursor: pointer;
        }
        .account-domain-check input {
            width: 18px;
            height: 18px;
            accent-color: var(--primary, #ff6b00);
        }
        .account-domain-hint {
            color: #666;
            font-size: 13px;
            line-height: 1.5;
            margin: 8px 0 16px;
        }
        .account-domain-meta {
            font-size: 13px;
            color: #555;
            margin-top: 12px;
        }
        .account-domain-renew-form {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            gap: 12px;
        }
        .account-domain-renew__years select {
            min-width: 120px;
            margin-left: 6px;
        }
        .account-dns-edit-row td {
            background: #fafafa;
            padding: 16px !important;
        }
        .account-dns-field[hidden] {
            display: none !important;
        }
        .account-inline-form,
        .account-inline-forward-form {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .account-contact-fieldset {
            border: 1px solid #e8e8e8;
            border-radius: 10px;
            padding: 16px;
            margin: 16px 0;
        }
        .account-contact-fieldset legend {
            font-weight: 700;
            padding: 0 8px;
        }
        .account-contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 12px;
        }
        .account-contact-grid__wide {
            grid-column: 1 / -1;
        }
        .account-contact-grid label {
            display: flex;
            flex-direction: column;
            gap: 4px;
            font-size: 13px;
        }
        .account-contacts-form__same {
            margin-bottom: 8px;
        }
        .account-forward-form__grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
            margin-bottom: 16px;
        }
        .account-forward-form__grid label {
            display: flex;
            flex-direction: column;
            gap: 4px;
            font-size: 13px;
        }
        .account-domain-auth-code__box {
            margin: 12px 0;
            padding: 16px;
            background: #111;
            border-radius: 8px;
        }
        .account-domain-auth-code__box code {
            color: #fff;
            font-size: 18px;
            letter-spacing: 0.05em;
            word-break: break-all;
        }
        .account-ns-form.page-form {
            max-width: none;
            margin: 0;
            width: 100%;
        }
        .account-ns-form.page-form label {
            margin: 0;
        }
        .account-ns-form__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px 20px;
            max-width: 720px;
            margin-bottom: 16px;
        }
        .account-ns-form__field {
            display: flex;
            flex-direction: column;
            gap: 6px;
            font-weight: 600;
            font-size: 13px;
            color: #334155;
        }
        .account-ns-form__field input {
            display: block;
            width: 100%;
            max-width: none;
            margin: 0;
            padding: 10px 12px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font: inherit;
            font-weight: 400;
            box-sizing: border-box;
        }
        .account-ns-form__field input:focus {
            outline: none;
            border-color: var(--primary, #ff6b00);
            box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12);
        }
        .account-ns-form__actions {
            max-width: 720px;
        }
        @media (max-width: 600px) {
            .account-ns-form__grid {
                grid-template-columns: 1fr;
            }
        }
        .account-table__actions {
            white-space: nowrap;
        }

        /* --- GÖRSEL İÇERİK (v19) --- */
        .page-hero--has-image {
            background:
                linear-gradient(135deg, rgba(17, 17, 17, 0.82) 0%, rgba(34, 34, 34, 0.78) 100%),
                var(--page-hero-image) center / cover no-repeat;
        }

        .category-card--photo {
            padding: 0;
            overflow: hidden;
        }

        .category-card--photo .category-card__media {
            display: block;
            height: 120px;
            overflow: hidden;
        }

        .category-card--photo .category-card__photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .category-card--photo h3 {
            padding: 16px 12px 20px;
        }

        .pricing-plan-media {
            margin: -8px -8px 16px;
            border-radius: 12px 12px 0 0;
            overflow: hidden;
            height: 140px;
        }

        .pricing-card.featured .pricing-plan-media {
            margin-top: 12px;
        }

        .pricing-plan-media__photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .service-card-media {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 160px;
            margin: -36px -36px 20px -36px;
            border-radius: 12px 12px 0 0;
            overflow: hidden;
            background: var(--bg-accent);
            text-decoration: none;
            color: rgba(17, 17, 17, 0.12);
        }

        .why-card--visual .service-card-media {
            margin: -36px -36px 16px;
        }

        .service-card-media--photo {
            background: #e2e8f0;
        }

        .service-card-media__photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.35s ease;
        }

        a.service-card-media:hover .service-card-media__photo {
            transform: scale(1.04);
        }

        .service-card-media--icon {
            font-size: 40px;
            color: var(--primary);
        }

        .site-header__mega-card-visual {
            margin: -4px -4px 12px;
            border-radius: 10px;
            overflow: hidden;
            max-height: 120px;
        }

        .site-header__mega-card-photo {
            width: 100%;
            height: 120px;
            object-fit: cover;
            display: block;
        }

        .product-detail-thumbs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 16px 20px;
            border-top: 1px solid var(--border-color);
            background: #fafafa;
        }

        .product-detail-thumb {
            border: 2px solid var(--border-color);
            border-radius: 8px;
            padding: 0;
            width: 72px;
            height: 56px;
            overflow: hidden;
            cursor: pointer;
            background: #fff;
            transition: var(--transition);
        }

        .product-detail-thumb.is-active,
        .product-detail-thumb:hover {
            border-color: var(--primary);
        }

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

        .footer-site-map {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px 18px;
            padding: 16px 0 8px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 24px;
        }

        .footer-site-map a {
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.72);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-site-map a:hover {
            color: var(--primary);
        }

        .mkt-site-banners {
            background: linear-gradient(90deg, #ff6b00 0%, #ff8f3d 100%);
            color: #fff;
            font-size: 13px;
            line-height: 1.45;
            text-align: center;
        }

        .mkt-site-banner {
            padding: 10px 16px;
        }

        @media (max-width: 1024px) {
            .mkt-site-banner {
                padding: 10px 14px;
                font-size: 12px;
            }
        }

        .mkt-site-banner__link {
            color: inherit;
            text-decoration: none;
        }

        .mkt-site-banner strong { font-weight: 700; }
        .mkt-site-banner span { opacity: 0.95; margin-left: 6px; }

        body.affiliate-ref-modal-open {
            overflow: hidden;
        }

        .affiliate-ref-modal-root {
            position: fixed;
            inset: 0;
            z-index: 10200;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px 16px;
        }

        .affiliate-ref-modal-root[hidden] {
            display: none !important;
        }

        .affiliate-ref-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.55);
            backdrop-filter: blur(4px);
        }

        .affiliate-ref-modal {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 440px;
            background: #fff;
            border-radius: 20px;
            padding: 32px 28px 24px;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--border-color);
            text-align: center;
        }

        .affiliate-ref-modal__close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 36px;
            height: 36px;
            padding: 0;
            border: none;
            border-radius: 10px;
            background: var(--bg-accent);
            color: var(--text-main);
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .affiliate-ref-modal__close:hover {
            background: #fee2e2;
            color: #dc2626;
        }

        .affiliate-ref-modal__icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            margin: 0 auto 16px;
            border-radius: 50%;
            background: rgba(255, 107, 0, 0.12);
            color: var(--primary);
            font-size: 24px;
        }

        .affiliate-ref-modal__title {
            margin: 0 0 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
        }

        .affiliate-ref-modal__text {
            margin: 0 0 22px;
            font-size: 15px;
            line-height: 1.55;
            color: var(--text-muted);
        }

        .affiliate-ref-modal__text strong {
            color: #9a3412;
        }

        .affiliate-ref-modal__btn {
            width: 100%;
        }

        @media (max-width: 768px) {
            .affiliate-ref-modal {
                padding: 28px 20px 20px;
            }

            .affiliate-ref-modal__title {
                font-size: 18px;
            }

            .affiliate-ref-modal__text {
                font-size: 14px;
            }
        }

        body.cart-added-modal-open {
            overflow: hidden;
        }

        .cart-added-modal-root {
            position: fixed;
            inset: 0;
            z-index: 10210;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px 16px;
        }

        .cart-added-modal-root[hidden] {
            display: none !important;
        }

        .cart-added-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.55);
            backdrop-filter: blur(4px);
        }

        .cart-added-modal {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 460px;
            background: #fff;
            border-radius: 20px;
            padding: 32px 28px 24px;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--border-color);
            text-align: center;
        }

        .cart-added-modal__close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 36px;
            height: 36px;
            padding: 0;
            border: none;
            border-radius: 10px;
            background: var(--bg-accent);
            color: var(--text-main);
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cart-added-modal__close:hover {
            background: #fee2e2;
            color: #dc2626;
        }

        .cart-added-modal__icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            margin: 0 auto 16px;
            border-radius: 50%;
            background: rgba(34, 197, 94, 0.12);
            color: #16a34a;
            font-size: 26px;
        }

        .cart-added-modal__title {
            margin: 0 0 8px;
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
        }

        .cart-added-modal__message {
            margin: 0 0 18px;
            font-size: 15px;
            line-height: 1.5;
            color: var(--text-muted);
        }

        .cart-added-modal__product {
            display: flex;
            align-items: center;
            gap: 14px;
            margin: 0 0 22px;
            padding: 14px;
            border-radius: 14px;
            background: var(--bg-accent);
            text-align: left;
        }

        .cart-added-modal__thumb {
            flex: 0 0 72px;
            width: 72px;
            height: 72px;
            min-width: 72px;
            min-height: 72px;
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .cart-added-modal__thumb[hidden] {
            display: none !important;
        }

        .cart-added-modal__thumb img {
            width: 100%;
            height: 100%;
            max-width: none;
            min-height: 100%;
            object-fit: cover;
            display: block;
        }

        .cart-added-modal__thumb img[hidden] {
            display: none !important;
        }

        .cart-added-modal__thumb-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            background: var(--bg-accent);
            color: rgba(17, 17, 17, 0.22);
            font-size: 28px;
        }

        .cart-added-modal__thumb-icon[hidden] {
            display: none !important;
        }

        .cart-added-modal__product-body {
            min-width: 0;
            flex: 1;
        }

        .cart-added-modal__product-title {
            display: block;
            margin-bottom: 4px;
            font-size: 15px;
            line-height: 1.35;
            color: var(--dark);
        }

        .cart-added-modal__product-price {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
        }

        .cart-added-modal__actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .cart-added-modal__btn {
            width: 100%;
        }

        @media (max-width: 768px) {
            .cart-added-modal {
                padding: 28px 20px 20px;
            }

            .cart-added-modal__title {
                font-size: 18px;
            }

            .cart-added-modal__actions {
                grid-template-columns: 1fr;
            }
        }

        .cart-coupon {
            margin-bottom: 12px;
            padding: 12px;
            border: 1px dashed #e2e8f0;
            border-radius: 8px;
            background: #f8fafc;
        }

        .cart-coupon__label {
            display: block;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #64748b;
        }

        .cart-coupon__form {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }

        .cart-coupon__input {
            flex: 1;
            min-width: 140px;
            padding: 8px 10px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .cart-coupon__applied {
            margin: 0 0 8px;
            font-size: 14px;
        }

        .cart-summary__row {
            display: flex;
            justify-content: space-between;
            margin: 4px 0;
            font-size: 14px;
        }

        .cart-summary__row--discount strong { color: #16a34a; }

        .checkout-total--discount { color: #16a34a; }

        .footer-newsletter__form {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-newsletter__input {
            padding: 10px 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 14px;
        }

        .footer-newsletter__input::placeholder { color: rgba(255, 255, 255, 0.5); }

        .site-float-stack {
            position: fixed;
            left: 16px;
            right: auto;
            bottom: max(18px, env(safe-area-inset-bottom, 0px));
            z-index: 10040;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
            pointer-events: none;
        }

        body:has(#cookie-consent:not([hidden])) .site-float-stack {
            bottom: calc(112px + env(safe-area-inset-bottom, 0px));
        }

        .site-float-stack > a {
            pointer-events: auto;
            position: relative !important;
            right: auto !important;
            bottom: auto !important;
            top: auto !important;
            left: auto !important;
            flex-shrink: 0;
            margin: 0;
        }

        .whatsapp-float {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #25d366;
            color: #fff;
            text-decoration: none;
            border: 2px solid rgba(255, 255, 255, 0.95);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
        }
        .whatsapp-float i {
            font-size: 30px;
            line-height: 1;
            font-family: "Font Awesome 6 Brands";
            font-weight: 400;
            font-style: normal;
            -webkit-font-smoothing: antialiased;
        }
        .whatsapp-float:hover {
            background: #1ebe5d;
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
        }

        /* Site analizi — WhatsApp balonu gibi (üstte) */
        .site-audit-float {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: #fff;
            text-decoration: none;
            border: 2px solid rgba(255, 255, 255, 0.95);
            box-shadow: 0 12px 28px rgba(255, 107, 0, 0.35);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
        }

        .site-audit-float i {
            font-size: 26px;
            line-height: 1;
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-style: normal;
            -webkit-font-smoothing: antialiased;
        }

        .site-audit-float:hover {
            background: var(--primary-hover);
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 16px 34px rgba(255, 107, 0, 0.42);
        }

        @media (max-width: 768px) {
            .site-float-stack {
                left: 12px;
                right: auto;
                bottom: max(12px, env(safe-area-inset-bottom, 0px));
                gap: 10px;
            }

            body:has(#cookie-consent:not([hidden])) .site-float-stack {
                bottom: calc(104px + env(safe-area-inset-bottom, 0px));
            }

            .site-float-stack .whatsapp-float,
            .site-float-stack .site-audit-float {
                width: 52px;
                height: 52px;
            }

            .site-float-stack .whatsapp-float i {
                font-size: 28px;
            }

            .site-float-stack .site-audit-float i {
                font-size: 24px;
            }
        }

        /* Payment, invoice, search */
        .payment-page .payment-bank dl {
            margin: 16px 0;
        }
        .payment-paytr iframe {
            border-radius: 8px;
        }
        .search-form__row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form__row input[type="search"] {
            flex: 1;
            min-width: 200px;
        }
        .search-results {
            list-style: none;
            padding: 0;
            margin: 0 0 32px;
        }
        .search-results li {
            padding: 12px 0;
            border-bottom: 1px solid #f1f5f9;
        }
        .search-section-title {
            margin-top: 28px;
            font-size: 1.1rem;
        }
        .kb-list {
            list-style: none;
            padding: 0;
        }
        .kb-list li {
            padding: 16px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .kb-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 24px;
        }
        .cookie-consent[hidden] {
            display: none !important;
        }
        .ticket-thread {
            margin: 16px 0;
        }
        .ticket-msg {
            padding: 8px 12px;
            margin-bottom: 0;
            border-radius: 10px;
            background: #f8fafc;
        }
        .ticket-msg--admin {
            background: #eff6ff;
        }
        @media print {
            .no-print,
            .invoice-actions,
            header,
            footer,
            .account-sidebar,
            .whatsapp-float,
            .site-audit-float,
            .site-float-stack {
                display: none !important;
            }
            body.invoice-print,
            body.invoice-print-page {
                background: #fff;
            }
            .invoice-wrap {
                max-width: 800px;
                margin: 0 auto;
                padding: 24px;
            }
            .invoice-table {
                width: 100%;
                border-collapse: collapse;
            }
            .invoice-table th,
            .invoice-table td {
                border: 1px solid #ccc;
                padding: 8px;
            }
        }
        .invoice-wrap {
            max-width: 720px;
            margin: 40px auto;
            padding: 24px;
        }
        .invoice-meta {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 4px 16px;
            margin: 20px 0;
        }

        /* Order timeline */
        .order-timeline { margin: 16px 0 0; }
        .order-timeline__list {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .order-timeline__list--scroll {
            max-height: 280px;
            overflow-y: auto;
            padding-right: 4px;
        }
        .order-timeline__item {
            position: relative;
            padding: 0 0 14px 24px;
        }
        .order-timeline__item:last-child {
            padding-bottom: 0;
        }
        .order-timeline__item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 16px;
            bottom: 0;
            width: 2px;
            background: var(--border, #e2e8f0);
        }
        .order-timeline__dot {
            position: absolute;
            left: 0;
            top: 4px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary, #2563eb);
            z-index: 1;
        }
        .order-timeline__body strong { display: block; font-size: 0.9375rem; line-height: 1.35; }
        .order-timeline__body time { display: block; font-size: 0.8125rem; color: var(--muted, #64748b); margin-top: 2px; }
        .order-timeline__body p { margin: 4px 0 0; font-size: 0.8125rem; color: var(--muted, #64748b); word-break: break-word; }
        .order-timeline__toggle {
            margin-top: 10px;
            padding: 0;
            border: 0;
            background: none;
            color: var(--primary, #2563eb);
            font-size: 0.8125rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        /* KVKK çerez bandı — kompakt yatay şerit */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 10050;
            background: #fff;
            color: #0f172a;
            border-top: 1px solid #e2e8f0;
            box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.1);
            padding: 10px 16px;
        }
        .cookie-consent__inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px 18px;
            color: #0f172a;
        }
        .cookie-consent__copy {
            flex: 1 1 220px;
            min-width: 0;
            font-size: 0.8125rem;
            line-height: 1.45;
            color: #475569;
        }
        .cookie-consent__title {
            margin: 0;
            font-size: inherit;
            font-weight: 700;
            color: #0f172a;
        }
        .cookie-consent__title::after {
            content: ' — ';
            font-weight: 400;
            color: #94a3b8;
        }
        .cookie-consent__text {
            margin: 0;
            font-size: inherit;
            color: inherit;
        }
        .cookie-consent__cats {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 14px;
            flex: 0 1 auto;
        }
        .cookie-consent__cats li {
            margin: 0;
            font-size: 0.8125rem;
            color: #334155;
        }
        .cookie-consent__cats label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            color: #334155;
            white-space: nowrap;
        }
        .cookie-consent__cats input[type="checkbox"] {
            margin: 0;
            flex-shrink: 0;
        }
        .cookie-consent__actions {
            display: flex;
            gap: 8px;
            flex-wrap: nowrap;
            align-items: center;
            flex-shrink: 0;
            margin-left: auto;
        }
        .cookie-consent .btn--compact {
            padding: 8px 14px;
            font-size: 0.8125rem;
        }
        @media (max-width: 720px) {
            .cookie-consent {
                padding: 12px max(14px, env(safe-area-inset-right, 0px)) max(12px, env(safe-area-inset-bottom, 0px)) max(14px, env(safe-area-inset-left, 0px));
            }
            .cookie-consent__inner {
                display: grid;
                grid-template-columns: 1fr;
                gap: 8px;
                align-items: start;
            }
            .cookie-consent__copy {
                flex: none;
                width: 100%;
            }
            .cookie-consent__title {
                display: block;
                margin-bottom: 4px;
            }
            .cookie-consent__title::after {
                content: none;
            }
            .cookie-consent__text {
                display: block;
            }
            .cookie-consent__cats {
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
                gap: 6px;
            }
            .cookie-consent__cats li {
                width: 100%;
            }
            .cookie-consent__cats label {
                white-space: normal;
                align-items: flex-start;
                line-height: 1.35;
            }
            .cookie-consent__actions {
                margin-left: 0;
                width: 100%;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .cookie-consent__actions .btn {
                width: 100%;
                justify-content: center;
                text-align: center;
            }
        }
        .hp-field {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0);
            clip-path: inset(50%);
            white-space: nowrap;
            border: 0;
            pointer-events: none;
        }
        .hp-field input {
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: 0 !important;
            border: 0 !important;
            pointer-events: none;
        }

        .license-activate-form { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 8px; }

        /* Admin KPI */
        .admin-grid--kpi { margin-bottom: 16px; }
        .admin-stat--accent strong { color: var(--admin-primary, #2563eb); }

        /* Yönetici müşteri hesabına giriş banner */
        .admin-impersonation-banner {
            position: sticky;
            top: 0;
            z-index: 10050;
            background: linear-gradient(90deg, #1e3a5f 0%, #2563eb 100%);
            color: #fff;
            box-shadow: 0 2px 12px rgba(15, 23, 42, 0.18);
        }

        .admin-impersonation-banner__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 10px 0;
            flex-wrap: wrap;
        }

        .admin-impersonation-banner__text {
            margin: 0;
            font-size: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .admin-impersonation-banner__btn {
            background: #fff !important;
            color: #1e3a5f !important;
            border-color: #fff !important;
            white-space: nowrap;
        }

        .admin-impersonation-banner__btn:hover {
            background: #f1f5f9 !important;
        }

        body:has(.admin-impersonation-banner) .site-header--impersonating {
            top: 0;
        }
