.page-hero { background: linear-gradient(135deg, #111 0%, #222 100%); color: #fff; padding: 56px 0 48px; text-align: center; }
.page-hero h1 { font-size: 36px; font-weight: 800; margin: 0 0 12px; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 640px; margin: 0 auto; font-size: 16px; }
.page-hero h1 span { color: var(--primary); }
.page-body { padding: 60px 0 100px; }
.page-content { max-width: 800px; margin: 0 auto; font-size: 16px; line-height: 1.75; }
.page-content h2 { margin: 1.5em 0 .5em; font-size: 22px; }
.page-form { max-width: 560px; margin: 0 auto; }
.page-form label { display: block; font-weight: 600; margin: 14px 0 6px; font-size: 14px; }
.page-form input, .page-form textarea, .page-form select { width: 100%; padding: 12px 14px; border: 1px solid var(--border-color); border-radius: 8px; font: inherit; }
.page-form textarea { min-height: 120px; }
.page-alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
.page-alert--ok { background: #dcfce7; color: #166534; }
.page-alert--info { background: #fff7ed; color: #9a3412; border: 1px solid rgba(255, 107, 0, 0.25); max-width: 920px; }
.cart-domain-tag { display: block; font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.breadcrumb a { color: var(--primary); }

/* Müşteri giriş / kayıt */
.page-body--auth {
    padding-top: 0;
}

.auth-card {
    max-width: 440px;
    margin: 0 auto;
    padding: 36px 32px 32px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.auth-card--account {
    max-width: 520px;
}

.auth-alert {
    background: #fee2e2;
    color: #991b1b;
    margin-bottom: 20px;
}

.auth-form .btn-block {
    width: 100%;
}

.auth-form__submit {
    margin-top: 20px;
    margin-bottom: 0;
}

.auth-card__switch {
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

.auth-card__switch a {
    font-weight: 600;
    color: var(--primary);
    margin-left: 4px;
}

.auth-card__switch a:hover {
    text-decoration: underline;
}

.auth-account-welcome {
    font-size: 18px;
    margin: 0 0 24px;
    color: var(--text-main);
}

.auth-account-dl {
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: minmax(120px, 38%) 1fr;
    gap: 12px 20px;
    font-size: 15px;
}

.auth-account-dl dt {
    font-weight: 600;
    color: var(--text-muted);
    margin: 0;
}

.auth-account-dl dd {
    margin: 0;
    color: var(--dark);
    word-break: break-word;
}

.auth-account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.auth-account-actions .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 28px 20px 24px;
    }

    .auth-account-dl {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .auth-account-dl dt {
        margin-top: 12px;
    }

    .auth-account-dl dt:first-child {
        margin-top: 0;
    }
}

.auth-card--wide { max-width: 640px; }
.auth-form__forgot { margin: 0 0 8px; font-size: 14px; text-align: right; }
.auth-form__forgot a { color: var(--primary); font-weight: 600; }
.auth-terms a { color: var(--primary); margin-left: 4px; }
.auth-dev-link { margin-top: 16px; font-size: 13px; word-break: break-all; }
.product-detail-cart-form { display: inline; }

/* Hesap paneli */
.page-body--account { padding: 48px 0 80px; }
.account-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}
.account-sidebar {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    position: sticky;
    top: calc(var(--header-total-h) + 16px);
}
.account-sidebar__user {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}
.account-sidebar__avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #ff8a3d);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}
.account-sidebar__user strong { display: block; font-size: 15px; }
.account-sidebar__user small { color: var(--text-muted); font-size: 12px; word-break: break-all; }
.account-nav { display: flex; flex-direction: column; gap: 4px; }
.account-nav__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
}
.account-nav__link:hover { background: var(--bg-accent); color: var(--primary); }
.account-nav__link.is-active { background: rgba(255, 107, 0, 0.12); color: var(--primary); font-weight: 600; }
.account-nav__badge {
    margin-left: auto;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.account-sidebar__logout {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}
.account-sidebar__logout:hover { color: #dc2626; }
.account-main { min-width: 0; }
.account-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.account-stat-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}
.account-stat-card strong { display: block; font-size: 28px; font-weight: 800; color: var(--dark); }
.account-stat-card span { font-size: 13px; color: var(--text-muted); }
.account-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.account-panel {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}
.account-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.account-panel__head h2 { margin: 0; font-size: 16px; }
.account-panel__head a { font-size: 13px; font-weight: 600; color: var(--primary); }
.account-empty { color: var(--text-muted); margin: 0; }
.account-list { list-style: none; margin: 0; padding: 0; }
.account-list li { border-bottom: 1px solid var(--border-color); }
.account-list li:last-child { border-bottom: none; }
.account-list a, .account-list__static {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
    padding: 12px 0;
    align-items: center;
}
.account-list a:hover .account-list__title { color: var(--primary); }
.account-list__title { font-weight: 600; font-size: 14px; grid-column: 1; }
.account-list__meta { font-size: 12px; color: var(--text-muted); grid-column: 1; }
.account-list__price { font-weight: 700; color: var(--primary); grid-column: 2; grid-row: 1 / span 2; }
.account-form { max-width: none; margin: 0; }
.account-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.account-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    margin: 16px 0 0;
    cursor: pointer;
}
.account-check input { width: auto; margin-top: 3px; }
.account-form__extra { margin-top: 20px; font-size: 14px; }
.account-table-wrap { overflow-x: auto; margin-bottom: 20px; }
.account-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}
.account-table th, .account-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
.account-table th { background: var(--bg-accent); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.account-table tr:last-child td { border-bottom: none; }
.account-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.account-badge--pending { background: #fef3c7; color: #92400e; }
.account-badge--confirmed { background: #dbeafe; color: #1e40af; }
.account-badge--completed { background: #dcfce7; color: #166534; }
.account-badge--cancelled { background: #fee2e2; color: #991b1b; }
.account-demo-list { list-style: none; margin: 20px 0 0; padding: 0; }
.account-demo-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 12px;
}
.account-demo-item__head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}
.account-demo-item__meta { font-size: 13px; color: var(--text-muted); margin: 0; }
.cart-empty-state {
    max-width: 420px;
    margin: 0 auto;
    padding: 32px 28px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}
.cart-empty-state__text {
    margin: 0 0 20px;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.5;
}
.cart-empty-state__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.cart-empty-state .btn--compact {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    width: auto;
    min-width: 0;
    white-space: nowrap;
}
@media (max-width: 400px) {
    .cart-empty-state__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .cart-empty-state .btn--compact {
        width: 100%;
        white-space: normal;
    }
}
.cart-summary {
    margin-top: 24px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}
.cart-summary__total { font-size: 18px; margin: 0 0 16px; }
.cart-summary__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cart-qty-input { width: 72px; padding: 8px; }
.cart-remove-btn {
    border: none;
    background: none;
    color: #dc2626;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.domain-tool-card {
    max-width: 640px;
    margin: 0 auto 24px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}
.domain-tool-card--highlight {
    border-color: rgba(255, 107, 0, 0.35);
}
.domain-tool-card__label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}
.domain-tool-card__hint {
    font-size: 14px;
    color: var(--text-muted);
    margin: 12px 0 0;
    line-height: 1.5;
}
.domain-tool-card h2,
.domain-tool-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
}
.whois-form__row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
}
.whois-form__row input[type="text"] {
    flex: 1;
    min-width: 200px;
}
.whois-form__row .btn {
    flex-shrink: 0;
}
.whois-results {
    max-width: 800px;
    margin: 24px auto 0;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
}
.whois-results__title {
    margin: 0 0 16px;
    font-size: 20px;
}
.whois-results__dl {
    display: grid;
    grid-template-columns: minmax(140px, 34%) 1fr;
    gap: 8px 16px;
    margin: 0 0 20px;
    font-size: 14px;
}
.whois-results__dl dt {
    font-weight: 600;
    color: var(--text-muted);
    margin: 0;
}
.whois-results__dl dd {
    margin: 0;
    word-break: break-word;
}
.whois-results__raw pre {
    font-size: 12px;
    line-height: 1.45;
    overflow-x: auto;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    max-height: 320px;
}
.whois-results__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.transfer-steps-list {
    margin: 0;
    padding-left: 20px;
    line-height: 1.7;
    color: var(--text-muted);
}
.domain-home-more {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.domain-page-sec {
    padding-top: 32px;
}
.checkout-lines { list-style: none; margin: 0 0 20px; padding: 0; }
.checkout-lines li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}
.checkout-total { font-size: 18px; margin-bottom: 20px; }
.checkout-review-title { margin: 0 0 16px; font-size: 18px; }

/* Giriş / kayıt modalları */
body.auth-modal-open { overflow: hidden; }

.site-header__auth-trigger {
    font-family: inherit;
    cursor: pointer;
}

button.site-header__action-login.site-header__auth-trigger {
    border: none;
    background: none;
    padding: 8px 4px;
}

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

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

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

.auth-modal {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    max-height: min(90vh, 720px);
    overflow-y: auto;
    background: #fff;
    border-radius: 20px;
    padding: 28px 28px 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.auth-modal[hidden] {
    display: none !important;
}

.auth-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    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;
    transition: background 0.2s ease, color 0.2s ease;
}

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

.auth-modal__brand {
    text-align: center;
    margin-bottom: 20px;
    padding-right: 28px;
}

.auth-modal__brand--login {
    margin-bottom: 16px;
}

.auth-modal__logo {
    display: inline-block;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--dark);
    line-height: 1.1;
}

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

.auth-modal__logo--solo {
    font-size: 40px;
}

.auth-modal__brand--register {
    margin-bottom: 22px;
    padding-top: 8px;
}

.auth-modal__tagline {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.auth-modal__alert {
    max-width: none;
    margin: 0 0 16px;
}

.auth-modal__form {
    max-width: none;
    margin: 0;
}

.auth-modal__form label {
    margin-top: 12px;
}

.auth-modal__switch {
    margin: 20px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

.auth-modal__switch-btn {
    border: none;
    background: none;
    padding: 0;
    margin-left: 4px;
    font: inherit;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    text-decoration: underline;
}

.auth-card--register-page .auth-modal__brand--register {
    padding-top: 4px;
}

@media (max-width: 480px) {
    .auth-modal {
        padding: 24px 20px 20px;
        border-radius: 16px;
    }

    .auth-modal__logo {
        font-size: 28px;
    }

    .auth-modal__logo--solo {
        font-size: 34px;
    }
}

@media (max-width: 900px) {
    .account-layout { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
    .account-stats { grid-template-columns: 1fr; }
    .account-panels { grid-template-columns: 1fr; }
    .account-form__row { grid-template-columns: 1fr; }
}

/* Ürün detay — ana stiller style.css içinde (.product-detail-*) */
.product-detail-page .page-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5em;
}
.product-detail-page .page-content ul li {
    position: relative;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid var(--border-color);
}
.product-detail-page .page-content ul li:last-child {
    border-bottom: none;
}
.product-detail-page .page-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #10b981;
}
.product-detail-panel__body h2,
.product-detail-panel__body h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin: 1.5em 0 0.5em;
}
.product-detail-panel__body h2:first-child,
.product-detail-panel__body h5:first-child {
    margin-top: 0;
}

/* Hizmet detay */
.page-body--service-detail {
    padding-top: 48px;
    background: #ffffff;
}
@media (min-width: 768px) {
    .page-body--service-detail {
        padding-top: 60px;
    }
}
.page-body#services {
    background: #ffffff;
}
.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(260px, 320px) 1fr;
    gap: 32px;
    align-items: start;
}
.service-detail-sidebar__card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    text-align: center;
}
.service-detail-hero-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 16 / 10;
}
.service-detail-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.service-detail-hero-icon {
    background: transparent;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    line-height: 1;
    margin: 0 auto 16px;
}
.service-detail-sidebar__title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--dark);
}
.service-detail-sidebar__excerpt {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0 auto 18px;
    max-width: 28ch;
}
.service-detail-sidebar__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-width: 260px;
    margin: 0 auto;
}
.service-detail-features {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}
.service-detail-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--dark);
    border-bottom: 1px solid var(--border-color);
}
.service-detail-features li:last-child {
    border-bottom: none;
}
.service-detail-features i {
    font-size: 16px;
    color: var(--primary);
    background: transparent;
    width: auto;
    height: auto;
    min-width: 0;
    display: inline-block;
    flex-shrink: 0;
    margin-top: 2px;
}
.service-detail-content {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 32px;
}
.service-detail-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1.75em 0 0.6em;
    color: var(--dark);
}
.service-detail-content h2:first-child {
    margin-top: 0;
}
.service-detail-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 1.25em 0 0.5em;
}
.service-detail-content ul {
    padding-left: 1.25em;
    margin: 0 0 1em;
}
.service-detail-content li {
    margin-bottom: 0.35em;
}
.page-body--service-detail .service-detail-related .why-card,
.page-body#services .why-card {
    background: #ffffff;
}
.page-body--service-detail .service-detail-related .why-card i,
.page-body#services .why-card i {
    font-size: 28px;
    color: var(--primary);
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 24px;
    display: inline-block;
}
.service-detail-related {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}
.service-detail-related h2 {
    font-size: 1.35rem;
    margin-bottom: 20px;
}
.service-detail-related__link {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}
.service-detail-related__link:hover {
    text-decoration: underline;
}
@media (max-width: 900px) {
    .service-detail-layout {
        grid-template-columns: 1fr;
    }
}

