* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
}

body {
    color: #1e293b;
}

.split-screen {
    display: flex;
    min-height: 100vh;
}

.left-panel {
    flex: 1;
    background:
        linear-gradient(rgba(8, 20, 40, 0.56), rgba(8, 20, 40, 0.74)),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 56px;
}

.brand-content {
    width: 100%;
    max-width: 540px;
}

.brand-kicker {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #dbeafe;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 22px;
}

.brand-name {
    font-size: 3.1rem;
    line-height: 1.14;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.8px;
}

.brand-content p {
    font-size: 1.02rem;
    line-height: 1.8;
    font-weight: 300;
    color: #e2e8f0;
    max-width: 500px;
}

.right-panel {
    flex: 1;
    background: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 42px 28px;
}

.form-container {
    width: 100%;
    max-width: 430px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 32px 28px 28px;
    box-shadow: none;
}

.register-page .form-container {
    max-width: 700px;
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-header h2 {
    color: #111827;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-header p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
}

.form-header--register-minimal {
    text-align: left;
    margin-bottom: 22px;
}

.error-msg {
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 18px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
    min-width: 0;
}

.input-group > label {
    position: absolute;
    top: -10px;
    left: 14px;
    background: #ffffff;
    padding: 0 8px;
    color: #475569;
    font-size: 0.78rem;
    font-weight: 600;
    z-index: 1;
    border-radius: 999px;
}

.input-icon {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 14px 15px;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-icon:focus-within {
    border-color: #334155;
    box-shadow: 0 0 0 3px rgba(51, 65, 85, 0.08);
}

.input-icon i {
    color: #94a3b8;
    font-size: 1rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.input-icon input,
.input-icon textarea,
.input-icon select {
    width: 100%;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.95rem;
    color: #111827;
    font-family: inherit;
}

.input-icon input::placeholder,
.input-icon textarea::placeholder,
.input-icon select {
    color: #9ca3af;
}

.input-icon select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.input-icon select option {
    color: #111827;
}

.input-icon--textarea {
    align-items: flex-start;
}

.input-icon--select {
    position: relative;
}

.input-icon--select::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #94a3b8;
    font-size: 0.88rem;
    pointer-events: none;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.input-icon--select-pro {
    border-color: #cbd5e1;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 18px rgba(15, 23, 42, 0.04);
    border-radius: 12px;
}

.input-icon--select-pro:hover {
    border-color: #94a3b8;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 10px 22px rgba(15, 23, 42, 0.06);
    transform: translateY(-1px);
}

.input-icon--select-pro:focus-within {
    border-color: #334155;
    background: linear-gradient(180deg, #ffffff 0%, #eef2ff 100%);
    box-shadow: 0 0 0 3px rgba(51, 65, 85, 0.08), 0 12px 24px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.input-icon--select-pro select {
    font-weight: 600;
    color: #334155;
    padding-right: 24px;
}

.input-icon--select-pro i,
.input-icon--select-pro::after {
    color: #64748b;
}

.input-icon--select-pro::after {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.12);
}

.input-icon--select-pro select:focus {
    color: #0f172a;
}

.input-icon--select-pro select option {
    color: #0f172a;
    background: #ffffff;
}

.input-icon--select-pro select option:checked {
    background: #e2e8f0;
}

.input-icon--select-pro select::-ms-expand {
    display: none;
}

@supports selector(option:hover) {
    .input-icon--select-pro select option:hover {
        background: #f1f5f9;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .input-icon--select-pro {
        transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.18s ease;
    }
}

.input-icon--select-pro .fa-solid {
    color: #475569;
}

.input-icon--select-pro select:not([value=""]) {
    color: #0f172a;
}

.custom-select {
    position: relative;
}

.custom-select select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    inset: 0;
}

.custom-select__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 18px rgba(15, 23, 42, 0.04);
    padding: 15px 16px;
    color: #334155;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.custom-select__trigger:hover {
    border-color: #cbd5e1;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}


.custom-select__icon,
.custom-select__chevron {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(148, 163, 184, 0.12);
    color: #64748b;
    flex-shrink: 0;
}

.custom-select__label {
    flex: 1;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
}

.custom-select__menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 30;
    max-height: 260px;
    overflow-y: auto;
    padding: 8px;
    border: 1px solid #dbe4ee;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(10px);
}

.custom-select__option {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    padding: 11px 12px;
    border-radius: 10px;
    color: #334155;
    font-size: 0.94rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.custom-select__option:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.custom-select__option.is-selected {
    background: #ecfdf5;
    color: #166534;
    font-weight: 700;
}

.custom-select.is-open .custom-select__chevron {
    transform: rotate(180deg);
}

.custom-select__menu::-webkit-scrollbar {
    width: 10px;
}

.custom-select__menu::-webkit-scrollbar-track {
    background: transparent;
}

.custom-select__menu::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.custom-select__menu::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
    background-clip: padding-box;
}

.address-panel {
    padding: 18px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.address-panel__header {
    margin-bottom: 16px;
}

.address-panel__header span {
    display: block;
    color: #111827;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.address-panel__header p {
    color: #6b7280;
    font-size: 0.88rem;
    line-height: 1.6;
}

.address-panel .input-group {
    margin-bottom: 0;
}

.address-panel .form-grid {
    gap: 16px 14px;
}

.address-panel .input-icon textarea {
    min-height: 108px;
}

.input-icon--textarea i {
    margin-top: 4px;
}

.input-icon textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.7;
}

.forgot-password {
    text-align: right;
    margin-bottom: 24px;
    margin-top: -6px;
}

.forgot-password a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-password a:hover,
.register-link a:hover {
    color: var(--theme-primary);
    text-decoration: none;
}

.login-btn,
.step-btn--ghost {
    width: 100%;
    padding: 14px 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.login-btn {
    background: #334155;
    color: #ffffff;
    border: 1px solid #334155;
    letter-spacing: 0.2px;
}

.login-btn:hover {
    background: #1f2937;
    border-color: #1f2937;
}

.login-btn:active {
    transform: translateY(1px);
}

.step-btn--ghost {
    background: #ffffff;
    color: #475569;
    border: 1px solid #d1d5db;
}

.step-btn--ghost:hover {
    border-color: #94a3b8;
    background: #f8fafc;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 28px 0;
    color: #94a3b8;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.divider span {
    padding: 0 15px;
    font-size: 0.82rem;
    font-weight: 500;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.social-btn {
    width: 52px;
    height: 52px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-btn:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    transform: translateY(-2px);
}

.register-link {
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 22px;
}

.register-link a {
    color: #334155;
    font-weight: 600;
    text-decoration: none;
    margin-left: 5px;
    transition: color 0.2s ease;
}

.forgot-password-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 22px;
    padding-top: 4px;
}

.forgot-password-links a {
    color: #64748b;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.forgot-password-links a:hover {
    color: var(--theme-primary);
    text-decoration: none;
}

.register-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}

.register-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 62px;
    padding: 10px 8px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    color: #64748b;
    text-align: center;
}

.register-step span {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 700;
}

.register-step small {
    font-size: 0.77rem;
    font-weight: 600;
    line-height: 1.3;
}

.register-step.is-active {
    border-color: #cbd5e1;
    background: #f1f5f9;
    color: #111827;
}

.register-step.is-complete {
    border-color: #86efac;
    background: #f0fdf4;
    color: #166534;
}

.register-step.is-active span {
    background: #334155;
    border-color: #334155;
    color: #ffffff;
}

.register-step.is-complete span {
    background: #16a34a;
    border-color: #16a34a;
    color: #ffffff;
}

.register-step.is-complete small {
    color: #166534;
}

.register-step-panel {
    display: none;
}

.register-step-panel.is-active {
    display: block;
}

.form-section {
    margin-bottom: 8px;
}

.form-section__header {
    margin-bottom: 18px;
}

.form-section__header h3 {
    font-size: 1.02rem;
    color: #111827;
    margin-bottom: 6px;
}

.form-section__header p {
    color: #6b7280;
    font-size: 0.92rem;
    line-height: 1.7;
}

.register-form-wrap {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 14px;
}

.form-grid--single {
    grid-template-columns: 1fr;
}

.form-grid--register-alt {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.input-group--full {
    grid-column: 1 / -1;
}

.input-group--choice {
    margin-top: 2px;
}

.customer-type-toggle {
    display: flex;
    gap: 10px;
    width: 100%;
    flex-wrap: nowrap;
}

.customer-type-option {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
}

.customer-type-option input {
    position: absolute;
    inset: 0;
    opacity: 0;
    margin: 0;
    cursor: pointer;
}

.customer-type-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #ffffff;
    color: #374151;
    font-size: 0.94rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.customer-type-option span i {
    color: #64748b;
    flex-shrink: 0;
}

.customer-type-option:hover span {
    border-color: #94a3b8;
    background: #f8fafc;
}

.customer-type-option input:focus + span {
    border-color: #334155;
    box-shadow: 0 0 0 3px rgba(51, 65, 85, 0.08);
}

.customer-type-option input:checked + span {
    border-color: #334155;
    background: #f1f5f9;
    color: #111827;
}

.conditional-group[hidden] {
    display: none !important;
}

.conditional-group--grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 14px;
}

.conditional-group--grid .input-group--full {
    grid-column: 1 / -1;
}

.agreement-boxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.agreement-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.7;
}

.agreement-box input {
    margin-top: 3px;
    accent-color: #334155;
}

.agreement-box a {
    color: #334155;
    font-weight: 600;
    text-decoration: none;
}

.agreement-box a:hover {
    text-decoration: underline;
}

.step-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}

.step-btn {
    width: 100%;
}

@media (max-width: 900px) {
    .split-screen {
        flex-direction: column;
    }

    .left-panel {
        min-height: 300px;
        padding: 42px 22px;
        align-items: flex-end;
    }

    .brand-content,
    .brand-content p {
        max-width: 100%;
    }

    .brand-name {
        font-size: 2.6rem;
    }

    .right-panel {
        padding: 32px 18px 40px;
    }

    .form-container,
    .register-page .form-container {
        max-width: 100%;
    }

    .register-steps,
    .form-grid,
    .form-grid--register-alt,
    .conditional-group--grid {
        grid-template-columns: 1fr;
    }

    .customer-type-toggle,
    .step-actions {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .form-container {
        padding: 24px 18px 20px;
        border-radius: 14px;
    }

    .register-panel-card {
        padding: 18px;
    }

    .forgot-password-links {
        gap: 12px;
        margin-top: 18px;
        justify-content: flex-start;
    }
}


/* Domain sayfası için güvenli kapsama */
body:has(.domain-hero) {
    background-color: #ffffff;
    color: #4a5568;
    line-height: 1.6;
}

body:has(.domain-hero) .domain-hero,
body:has(.domain-hero) .domain-features {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body:has(.domain-hero) .domain-features ul,
body:has(.domain-hero) .domain-extensions {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

body:has(.domain-hero) .domain-search-form {
    margin-bottom: 0;
}

body:has(.domain-hero) main.container.py-5,
body:has(.domain-hero) .domain-features {
    width: 100%;
}

/* Hero Section (Arama Alanı) */
.domain-hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 100px 0 100px;
    color: #ffffff;
}

body:has(.domain-hero) main.container.py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

body:has(.domain-hero) .section-title {
    margin-bottom: 2.5rem !important;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(30, 41, 59, 0.85);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 24px;
    color: var(--theme-dark);
    margin-bottom: 10px;
}

.section-title p {
    color: #718096;
}

.feature-icon {
    color: var(--theme-primary);
}

.btn-search {
    background-color: var(--theme-primary);
}

.btn-search:hover {
    background-color: var(--theme-primary-hover);
}

.ext-box.highlight {
    background-color: rgba(29, 161, 242, 0.18);
    border-color: rgba(29, 161, 242, 0.38);
}


@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 24px;
    }
}

/* Arama Formu */
.domain-transfer-form {
    max-width: 930px;
    margin: 0 auto 40px;
    box-sizing: border-box;
}

.domain-transfer-form .search-input-group {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 16px;
    box-sizing: border-box;
    border: 1px solid transparent;
    overflow: hidden;
}


.domain-transfer-form .search-input-group:last-of-type {
    margin-bottom: 0;
}

.domain-transfer-form .transfer-code-group {
    margin-top: 16px;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(6px);
}

.domain-transfer-form .transfer-code-group input,
.domain-transfer-form .transfer-code-group input::placeholder,
.domain-transfer-form .transfer-code-group .search-icon {
    color: rgba(255, 255, 255, 0.88);
}

.domain-transfer-form .transfer-code-group input {
    caret-color: #ffffff;
}

.domain-transfer-form .transfer-code-group input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.domain-transfer-form .search-input-group input {
    min-width: 0;
    color: #2d3748;
    background: transparent;
}

.domain-transfer-form .search-input-group input::placeholder {
    color: #94a3b8;
}

.domain-transfer-form .search-input-group:focus-within {
    border: 1px solid rgba(29, 161, 242, 0.22);
    box-shadow: none;
}

.domain-transfer-form .transfer-code-group:focus-within {
    border-color: rgba(255, 255, 255, 0.48);
}

.domain-transfer-form .search-icon {
    flex-shrink: 0;
}

.domain-transfer-form .search-input-group:focus-within .search-icon {
    color: var(--theme-primary);
}

.domain-transfer-form .transfer-code-group:focus-within .search-icon {
    color: #ffffff;
}

.transfer-code-note {
    max-width: 930px;
    margin: 12px auto 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.84);
}

.btn-transfer-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--theme-primary);
    color: #ffffff;
    line-height: 1;
    transition: background-color 0.3s ease;
}

.btn-transfer-submit:hover {
    background-color: var(--theme-primary-hover);
}

.btn-transfer-submit:focus-visible {
    outline-offset: 2px;
}

.domain-transfer-steps {
    width: 100%;
}

.domain-transfer-steps .section-title p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 575px) {
    .domain-transfer-form {
        margin-bottom: 28px;
    }

    .domain-transfer-form .search-input-group {
        margin-bottom: 12px;
    }

    .domain-transfer-form .search-input-group:last-of-type {
        margin-bottom: 0;
    }
}

.search-input-group {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 6px;
    padding: 8px;
    max-width: 930px;
    margin: 0 auto 40px;
}

.search-icon {
    color: #a0aec0;
    font-size: 18px;
    padding: 0 15px;
}


.domain-transfer-form .search-input-group:first-child .btn-search {
    width: auto;
}
.domain-transfer-form .search-input-group:focus-within {
    border: 1px solid rgba(29, 161, 242, 0.22);
    box-shadow: none;
}

.domain-transfer-form .search-input-group input {
    min-width: 0;
    color: #2d3748;
    background: transparent;
}

.domain-transfer-form .search-input-group input::placeholder {
    color: #94a3b8;
}

.domain-transfer-form .search-icon {
    flex-shrink: 0;
}

.domain-transfer-form .search-input-group:focus-within .search-icon {
    color: var(--theme-primary);
}

.transfer-code-group {
    margin-bottom: 24px;
}

.btn-transfer-submit,
.domain-transfer-form .btn-search {
    border-radius: 5px;
}

.btn-transfer-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 15px 30px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--theme-primary);
    color: #ffffff;
    line-height: 1;
    transition: background-color 0.3s ease;
}

.btn-transfer-submit:hover {
    background-color: var(--theme-primary-hover);
}

.btn-transfer-submit:focus-visible {
    outline-offset: 2px;
}

.domain-transfer-steps {
    width: 100%;
}

.domain-transfer-steps .section-title p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.transfer-process-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.transfer-process-flow::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, rgba(29, 161, 242, 0.12), rgba(29, 161, 242, 0.48), rgba(29, 161, 242, 0.12));
    z-index: 0;
}

.transfer-process-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.transfer-process-step__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.transfer-process-step__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 0 0 10px #f8fbff, 0 18px 34px rgba(15, 23, 42, 0.14);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.transfer-process-step__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(29, 161, 242, 0.08);
    color: #475569;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.transfer-process-step__body {
    width: 100%;
    padding: 6px 10px 0;
}

.transfer-process-step__body h3 {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    color: #0f172a;
}

.transfer-process-step__body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.72;
    color: #5b6777;
}

.transfer-process-step__body::before {
    content: "";
    display: block;
    width: 38px;
    height: 2px;
    margin: 0 auto 14px;
    background: linear-gradient(90deg, transparent, rgba(11, 60, 93, 0.35), transparent);
}

.transfer-process-step--prepare .transfer-process-step__count {
    background: linear-gradient(135deg, #0f172a, #334155);
}

.transfer-process-step--unlock .transfer-process-step__count {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.transfer-process-step--code .transfer-process-step__count {
    background: linear-gradient(135deg, #0891b2, #0e7490);
}

.transfer-process-step--start .transfer-process-step__count {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.transfer-process-step--finish .transfer-process-step__count {
    background: linear-gradient(135deg, #059669, #047857);
}

.transfer-process-step--prepare .transfer-process-step__tag {
    color: #0f172a;
}

.transfer-process-step--unlock .transfer-process-step__tag {
    color: #1d4ed8;
}

.transfer-process-step--code .transfer-process-step__tag {
    color: #0e7490;
}

.transfer-process-step--start .transfer-process-step__tag {
    color: #6d28d9;
}

.transfer-process-step--finish .transfer-process-step__tag {
    color: #047857;
}

.transfer-process-step:hover .transfer-process-step__count {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 0 0 10px #f8fbff, 0 22px 38px rgba(15, 23, 42, 0.18);
}

@media (max-width: 1199px) {
    .transfer-process-flow {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 30px;
    }

    .transfer-process-flow::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .transfer-process-flow {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .transfer-process-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }

    .transfer-process-step__head {
        align-items: center;
        flex-shrink: 0;
    }

    .transfer-process-step__count {
        width: 58px;
        height: 58px;
        font-size: 17px;
        box-shadow: 0 0 0 8px #f8fbff, 0 14px 28px rgba(15, 23, 42, 0.14);
    }

    .transfer-process-step__body {
        padding: 2px 0 0;
    }

    .transfer-process-step__body::before {
        margin: 0 0 12px;
        width: 30px;
        background: linear-gradient(90deg, rgba(11, 60, 93, 0.35), transparent);
    }
}

@media (max-width: 420px) {
    .transfer-process-step {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .transfer-process-step__head {
        align-items: center;
    }

    .transfer-process-step__count {
        width: 54px;
        height: 54px;
        font-size: 16px;
        box-shadow: 0 0 0 7px #f8fbff, 0 12px 22px rgba(15, 23, 42, 0.12);
    }

    .transfer-process-step__body {
        padding-top: 0;
    }

    .transfer-process-step__body::before {
        margin: 0 auto 12px;
        width: 34px;
        background: linear-gradient(90deg, transparent, rgba(11, 60, 93, 0.35), transparent);
    }

    .transfer-process-step__body h3 {
        font-size: 16px;
    }

    .transfer-process-step__body p {
        font-size: 13px;
        line-height: 1.6;
    }
}

@media (max-width: 991px) {
    .domain-transfer-steps .features-grid {
        grid-template-columns: 1fr;
    }
}

.domain-transfer-steps .feature-item {
    height: 100%;
}

.domain-transfer-steps .feature-item:hover {
    transform: none;
}

.domain-transfer-steps .feature-icon {
    align-self: start;
}

.domain-transfer-steps .feature-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.domain-faq-section--spaced {
    margin-top: 88px;
    padding-top: 24px;
}

@media (max-width: 767px) {
    .domain-faq-section--spaced {
        margin-top: 64px;
        padding-top: 12px;
    }
}

.domain-transfer-steps .feature-text h3,
.domain-transfer-steps .feature-text p {
    margin-bottom: 0;
}

.search-input-group {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 6px;
    padding: 8px;
    max-width: 930px;
    margin: 0 auto 40px;
}

@media (max-width: 575px) {
    .domain-transfer-form {
        margin-bottom: 28px;
    }

    .domain-transfer-form .search-input-group {
        margin-bottom: 12px;
    }

    .domain-transfer-form .search-input-group:last-of-type {
        margin-bottom: 16px;
    }
}

.search-icon {
    color: #a0aec0;
    font-size: 18px;
    padding: 0 15px;
}
.search-icon {
    color: #a0aec0;
    font-size: 18px;
    padding: 0 15px;
}

.search-input-group input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 15px 0;
    color: #2d3748;
}

.btn-search {
    background-color: var(--theme-primary);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-search:hover {
    background-color: var(--theme-primary-hover);
}

/* Uzantı Fiyatları */
.domain-extensions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.ext-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 15px 20px;
    text-align: center;
    min-width: 120px;
    transition: transform 0.3s, background-color 0.3s;
}

.ext-box:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.ext-box.highlight {
    background-color: rgba(29, 161, 242, 0.18);
    border-color: rgba(29, 161, 242, 0.38);
}

.ext-box strong {
    color: #ffffff;
}

.ext-box.highlight strong {
    color: #ffffff;
}

.ext-box.highlight span {
    color: rgba(255, 255, 255, 0.92);
}

.ext-box strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.ext-box span {
    font-size: 12px;
    color: #cbd5e1;
}



/* Özellikler Alanı */
.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    margin-bottom: 10px;
}

.section-title p {
    margin-bottom: 0;
}

.feature-text h3 {
    color: var(--theme-dark);
}

.feature-text p {
    color: var(--hero-text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    position: relative;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    grid-template-areas:
        "icon title"
        "desc desc";
    column-gap: 16px;
    row-gap: 10px;
    align-items: start;
    padding: 20px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 5px;
    background-color: #ffffff;
    overflow: hidden;
    isolation: isolate;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.feature-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.05), transparent 45%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 0;
}

.feature-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    background:
        linear-gradient(var(--theme-primary), var(--theme-primary)) top left / 0 2px no-repeat,
        linear-gradient(var(--theme-primary), var(--theme-primary)) top right / 2px 0 no-repeat,
        linear-gradient(var(--theme-primary), var(--theme-primary)) bottom right / 0 2px no-repeat,
        linear-gradient(var(--theme-primary), var(--theme-primary)) bottom left / 2px 0 no-repeat;
}

.feature-item:hover {
    background-color: #ffffff;
    border-color: rgba(29, 161, 242, 0.16);
    box-shadow: none;
    transform: none;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover::after {
    opacity: 1;
    animation: feature-border-trace 1.1s linear forwards;
}

@keyframes feature-border-trace {
    0% {
        background-size:
            0 2px,
            2px 0,
            0 2px,
            2px 0;
    }
    24% {
        background-size:
            100% 2px,
            2px 0,
            0 2px,
            2px 0;
    }
    25% {
        background-size:
            100% 2px,
            2px 0,
            0 2px,
            2px 0;
    }
    49% {
        background-size:
            100% 2px,
            2px 100%,
            0 2px,
            2px 0;
    }
    50% {
        background-size:
            100% 2px,
            2px 100%,
            0 2px,
            2px 0;
    }
    74% {
        background-size:
            100% 2px,
            2px 100%,
            100% 2px,
            2px 0;
    }
    75% {
        background-size:
            100% 2px,
            2px 100%,
            100% 2px,
            2px 0;
    }
    100% {
        background-size:
            100% 2px,
            2px 100%,
            100% 2px,
            2px 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .feature-item:hover::after {
        animation: none;
        opacity: 1;
        background-size:
            100% 2px,
            2px 100%,
            100% 2px,
            2px 100%;
    }
}

.feature-item:focus-within::after {
    opacity: 1;
    background-size:
        100% 2px,
        2px 100%,
        100% 2px,
        2px 100%;
}

.feature-item:focus-within {
    border-color: rgba(29, 161, 242, 0.16);
}

@supports not (background: linear-gradient(red, red) top left / 0 2px no-repeat) {
    .feature-item::after {
        display: none;
    }

    .feature-item:hover,
    .feature-item:focus-within {
        border-color: var(--theme-primary);
    }
}

.feature-item > * {
    position: relative;
    z-index: 1;
}

.feature-item:hover .feature-icon,
.feature-item:hover .feature-text h3,
.feature-item:hover .feature-text p {
    transition: color 0.25s ease;
}

.feature-item:hover .feature-icon {
    color: var(--theme-primary);
}

.feature-item:hover .feature-text h3 {
    color: var(--theme-dark);
}

.feature-item:hover .feature-text p {
    color: #5f7184;
}

.feature-icon {
    grid-area: icon;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 22px;
    color: var(--theme-primary);
    line-height: 1;
}

.feature-text {
    display: contents;
}

.feature-text h3 {
    grid-area: title;
    align-self: center;
    font-size: 13px;
    color: #2d3748;
    margin: 0;
    line-height: 1.35;
}

.feature-text p {
    grid-area: desc;
    font-size: 13px;
    color: #718096;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 575px) {
    .feature-item {
        grid-template-columns: 24px minmax(0, 1fr);
        column-gap: 14px;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
        font-size: 19px;
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .main-nav { display: none; } /* Mobilde menüyü gizledim, hamburger menü eklenebilir */
}

@media (max-width: 768px) {
    .search-input-group {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        background: transparent;
        padding: 0;
        margin: 0 auto 28px;
    }

    .search-input-group input {
        width: 100%;
        min-width: 0;
        border-radius: 5px;
        margin-bottom: 0;
        padding: 15px;
        background: #ffffff;
    }

    .btn-search {
        width: 100%;
        padding: 15px 18px;
        border-radius: 5px;
    }

    .search-icon {
        display: none;
    }
}

@media (max-width: 575px) {
    .domain-hero {
        padding: 72px 0;
        overflow-x: clip;
    }

    .domain-hero .container,
    main.container.py-5 {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-content {
        text-align: left !important;
    }

    .hero-content h1 {
        font-size: 22px;
        line-height: 1.35;
        margin-bottom: 22px;
    }

    .section-title,
    .domain-pricing-modern .section-title,
    .domain-faq-section .section-title {
        margin-bottom: 24px !important;
        text-align: left !important;
    }

    .section-title h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .section-title p,
    .domain-pricing-modern .section-title p,
    .domain-faq-section .section-title p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
    }

    body:has(.domain-hero) main.container.py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    body:has(.domain-hero) .section-title {
        margin-bottom: 1.75rem !important;
    }

    .domain-extensions {
        width: 100%;
        justify-content: stretch;
        gap: 10px;
        margin-top: 4px;
    }

    .ext-box {
        box-sizing: border-box;
        flex: 1 1 calc(50% - 10px);
        min-width: 0;
        max-width: 100%;
        padding: 14px 12px;
    }

    .ext-box strong {
        font-size: 16px;
    }

    .ext-box span {
        font-size: 11px;
    }

    .features-grid,
    .domain-faq-grid {
        width: 100%;
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 12px;
    }

    .feature-item,
    .pricing-list-item,
    .domain-faq-item,
    .rw-main-result-box,
    .rw-suggestion-result-box {
        max-width: 100%;
        box-sizing: border-box;
        overflow-wrap: anywhere;
    }

    .feature-item {
        padding: 18px;
        row-gap: 8px;
    }

    .feature-icon {
        font-size: 18px;
    }

    .feature-text h3 {
        font-size: 15px;
        line-height: 1.4;
        hyphens: auto;
    }

    .feature-text p {
        font-size: 13px;
        line-height: 1.6;
    }

    .domain-features.mb-5,
    .domain-query-result.mb-5 {
        margin-bottom: 2rem !important;
    }

    .domain-pricing-modern,
    .domain-faq-section {
        width: 100%;
        margin-top: 2.5rem !important;
        padding-top: 0 !important;
    }

    .domain-pricing-list,
    .domain-pricing-list-more,
    .rw-suggestions-box {
        width: 100%;
        gap: 12px;
    }

    .domain-pricing-list-more.mt-3 {
        margin-top: 12px !important;
    }

    .domain-pricing-toggle {
        width: 100%;
        margin-top: 14px;
        padding: 12px 16px;
        touch-action: manipulation;
        font-size: 16px;
    }

    .domain-pricing-modern .pricing-list-header {
        display: none !important;
    }

    .pricing-list-item {
        padding: 16px 18px;
    }

    .pricing-list-item::before {
        width: 3px;
        border-radius: 5px 0 0 5px;
    }

    .pricing-list-item .col-ext,
    .pricing-list-item .col-price,
    .domain-pricing-modern .pricing-list-item .col-ext,
    .domain-pricing-modern .pricing-list-item .col-price {
        width: 100%;
        min-width: 0;
    }

    .pricing-list-item .col-ext {
        gap: 8px;
        padding-bottom: 12px;
        align-items: center;
    }

    .pricing-list-item .col-price {
        row-gap: 2px;
        align-items: baseline;
        justify-content: space-between;
        min-width: 0;
    }

    .pricing-list-item .col-price strong,
    .pricing-list-item .col-price span {
        word-break: break-word;
    }

    .pricing-list-item .col-price > :not(.price-label) {
        max-width: calc(100% - 96px);
    }

    .domain-pricing-modern .col-price small {
        margin-left: 0;
    }

    .domain-doc-hint {
        width: 22px;
        height: 22px;
    }

    .ext-name {
        hyphens: auto;
    }

    .rw-domain-exact-wrapper,
    .domain-query-result,
    .domain-features,
    .domain-pricing-modern,
    .domain-faq-section,
    .hero-content {
        width: 100%;
        overflow-x: clip;
    }

    .rw-main-result-box,
    .rw-suggestion-result-box {
        padding: 16px;
        gap: 16px;
        margin-bottom: 16px;
    }

    .rw-main-result-box > *,
    .rw-suggestion-result-box > * {
        width: 100%;
    }

    .rw-status-success,
    .rw-status-danger {
        border-left-width: 4px;
    }

    .rw-mrb-left,
    .rw-mrb-right,
    .domain-pricing-modern .pricing-list-item .col-ext,
    .domain-pricing-modern .pricing-list-item .col-price {
        min-width: 0;
    }

    .rw-mrb-left {
        gap: 14px;
        width: 100%;
    }

    .rw-mrb-icon i {
        font-size: 32px;
    }

    .rw-mrb-domain {
        font-size: 22px;
        line-height: 1.25;
        word-break: break-word;
        hyphens: auto;
    }

    .rw-mrb-message {
        font-size: 13px;
        line-height: 1.5;
    }

    .rw-mrb-right,
    .rw-suggestion-result-box .rw-mrb-right {
        width: 100%;
        gap: 12px;
    }

    .rw-mrb-pricing,
    .rw-suggestion-result-box .rw-mrb-pricing {
        width: 100%;
        min-width: 0;
        order: 1;
        text-align: left;
    }

    .rw-mrb-new-price {
        font-size: 20px;
        line-height: 1.2;
    }

    .rw-mrb-new-price small {
        display: block;
        margin-top: 4px;
        font-size: 12px;
    }

    .rw-mrb-actions,
    .rw-mrb-actions--danger,
    .rw-suggestion-result-box .rw-mrb-actions,
    .rw-suggestion-result-box .rw-mrb-actions--danger {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        order: 2;
        gap: 10px;
    }

    .rw-mrb-select-wrapper,
    .rw-suggestion-result-box .rw-mrb-select-wrapper,
    .rw-mrb-select {
        width: 100%;
    }

    .rw-btn-exact,
    .rw-suggestion-result-box .rw-btn-exact,
    .btn-search {
        width: 100%;
        min-height: 44px;
        justify-content: center;
        touch-action: manipulation;
        font-size: 16px;
    }

    .rw-mrb-select,
    .search-input-group input {
        font-size: 16px;
    }

    .rw-sg-title {
        font-size: 15px;
        line-height: 1.4;
    }

    .domain-faq-column {
        gap: 12px;
    }

    .domain-faq-item {
        width: 100%;
        margin-bottom: 0;
        border-radius: 5px;
    }

    .domain-faq-item summary {
        min-height: 56px;
        display: flex;
        align-items: center;
        padding-right: 52px;
    }

    .domain-faq-item summary::after {
        right: 16px;
    }

    .domain-faq-item p {
        font-size: 13px;
    }

    .domain-faq-item summary,
    .feature-text h3,
    .rw-mrb-domain {
        hyphens: auto;
    }
}

@media (max-width: 420px) {
    .domain-hero .container,
    main.container.py-5 {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .section-title p {
        font-size: 13px;
    }

    .ext-box {
        flex-basis: 100%;
        padding: 12px 10px;
    }

    .search-input-group {
        margin-bottom: 22px;
    }

    .search-input-group input,
    .btn-search,
    .rw-mrb-select,
    .rw-btn-exact,
    .domain-pricing-toggle {
        min-height: 44px;
    }

    .btn-search {
        font-size: 15px;
    }

    .search-input-group input {
        padding-left: 14px;
        padding-right: 14px;
    }

    .price-label {
        min-width: 84px;
    }

    .pricing-list-item .col-price > :not(.price-label) {
        max-width: calc(100% - 86px);
        text-align: right;
    }

    .domain-doc-tooltip {
        max-width: 180px;
        white-space: normal;
        line-height: 1.4;
    }

    .domain-pricing-modern .pricing-list-item {
        padding: 14px 16px;
    }

    .domain-pricing-modern .ext-name {
        font-size: 16px;
    }

    .domain-pricing-modern .pricing-list-item .col-price {
        gap: 6px;
    }

    .domain-pricing-modern .pricing-list-item .col-price strong,
    .domain-pricing-modern .pricing-list-item .col-price span,
    .rw-mrb-new-price {
        font-size: 18px;
    }

    .domain-pricing-modern .pricing-list-item .col-price small,
    .rw-mrb-new-price small {
        font-size: 12px;
    }

    .rw-mrb-left {
        align-items: flex-start;
        gap: 12px;
    }

    .rw-mrb-domain {
        font-size: 20px;
    }

    .rw-mrb-icon i {
        font-size: 28px;
    }

    .rw-main-result-box,
    .rw-suggestion-result-box {
        padding: 14px;
    }

    .rw-main-result-box .rw-mrb-actions,
    .rw-suggestion-result-box .rw-mrb-actions,
    .rw-main-result-box .rw-mrb-actions--danger,
    .rw-suggestion-result-box .rw-mrb-actions--danger {
        gap: 8px;
    }

    .rw-mrb-select {
        padding: 11px 14px;
    }

    .rw-sg-title {
        font-size: 14px;
    }

    .domain-faq-item summary {
        padding-right: 46px;
    }

    .domain-faq-item summary::after,
    .domain-pricing-toggle::after {
        font-size: 15px;
    }

    .domain-faq-item summary::after {
        width: 22px;
        height: 22px;
    }

    .domain-faq-item p,
    .rw-mrb-message,
    .feature-text p {
        line-height: 1.55;
    }
}

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 19px;
    }
}

@media (max-width: 575px) {
    .domain-faq-item summary,
    .domain-faq-item p,
    .pricing-list-item,
    .rw-main-result-box,
    .rw-suggestion-result-box {
        -webkit-tap-highlight-color: transparent;
    }

    .domain-pricing-toggle:focus-visible,
    .rw-btn-exact:focus-visible,
    .btn-search:focus-visible,
    .rw-mrb-select:focus-visible,
    .domain-faq-item summary:focus-visible {
        outline-offset: 2px;
    }
}

@media (max-width: 420px) {
    .domain-faq-grid {
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .rw-main-result-box:last-child,
    .rw-suggestion-result-box:last-child,
    .pricing-list-item:last-child,
    .domain-faq-item:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .domain-pricing-modern .pricing-list-item {
        align-items: start;
    }
}

@media (max-width: 575px) {
    .search-input-group input::placeholder {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .rw-mrb-price-suffix {
        margin-top: 3px;
    }
}

@media (max-width: 420px) {
    .domain-doc-hint {
        align-self: center;
    }
}

@media (max-width: 575px) {
    .domain-pricing-modern .pricing-list-item .col-price > .price-label + * + small {
        margin-left: 4px;
    }
}

@media (max-width: 575px) {
    .rw-suggestions-box {
        margin-top: 4px;
    }
}

@media (max-width: 575px) {
    .domain-pricing-modern .domain-pricing-list,
    .domain-pricing-modern .domain-pricing-list-more {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 420px) {
    .domain-faq-item p {
        padding-top: 2px;
    }
}

@media (max-width: 575px) {
    .domain-faq-section {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .domain-pricing-toggle,
    .rw-btn-exact,
    .btn-search,
    .rw-mrb-select,
    .search-input-group input {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .domain-pricing-modern .pricing-list-item .col-price,
    .domain-pricing-modern .pricing-list-item .col-ext,
    .rw-mrb-left,
    .rw-mrb-right,
    .rw-mrb-details {
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .domain-hero .container,
    main.container.py-5 {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 575px) {
    .rw-suggestion-result-box .rw-mrb-pricing {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .domain-faq-grid,
    .features-grid {
        grid-auto-rows: auto;
    }
}

@media (max-width: 420px) {
    .domain-pricing-toggle {
        padding-left: 14px;
        padding-right: 14px;
    }
}

@media (max-width: 575px) {
    .domain-pricing-modern .pricing-list-item .col-price {
        justify-content: space-between;
    }
}

@media (max-width: 575px) {
    .domain-hero .domain-search-form {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .domain-extensions,
    .features-grid,
    .domain-pricing-list,
    .domain-pricing-list-more,
    .rw-sg-list,
    .domain-faq-grid {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .domain-pricing-modern .pricing-list-item .col-price strong,
    .domain-pricing-modern .pricing-list-item .col-price span,
    .rw-mrb-new-price {
        font-size: 18px;
    }
}

@media (max-width: 420px) {
    .domain-pricing-modern .pricing-list-item .col-price small,
    .rw-mrb-new-price small {
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .rw-mrb-price-suffix {
        margin-top: 3px;
    }
}

@media (max-width: 575px) {
    .domain-pricing-modern .pricing-list-item .col-ext {
        align-items: center;
    }
}

@media (max-width: 420px) {
    .feature-item {
        row-gap: 8px;
    }
}

@media (max-width: 575px) {
    .domain-pricing-modern .pricing-list-item .col-price {
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .hero-content h1 {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .domain-features,
    .domain-pricing-modern,
    .domain-faq-section,
    .domain-query-result {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .ext-box {
        flex-basis: 100%;
    }
}

@media (max-width: 575px) {
    .domain-pricing-modern .pricing-list-item:first-child {
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    .domain-pricing-list .pricing-list-item,
    .domain-pricing-list-more .pricing-list-item {
        scroll-margin-top: 16px;
    }
}

@media (max-width: 420px) {
    .domain-pricing-modern .ext-name {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .domain-extensions .ext-box,
    .features-grid .feature-item,
    .domain-pricing-list .pricing-list-item,
    .domain-faq-grid .domain-faq-item {
        box-sizing: border-box;
    }
}

@media (max-width: 420px) {
    .domain-doc-tooltip {
        max-width: 180px;
        white-space: normal;
        line-height: 1.4;
    }
}

@media (max-width: 575px) {
    .domain-pricing-modern .col-price {
        row-gap: 2px;
    }
}

@media (max-width: 420px) {
    .domain-pricing-modern .pricing-list-item .col-price {
        gap: 6px;
    }
}/* Modern Div-Based Domain Pricing List */
.domain-pricing-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-list-header,
.pricing-list-item {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1fr;
    align-items: center;
}

.pricing-list-header {
    padding: 0 24px;
    font-weight: 700;
    color: #64748b;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.pricing-list-header .col-ext,
.pricing-list-header .col-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.pricing-list-header .col-ext {
    justify-content: flex-start;
}

.pricing-list-header .col-price {
    justify-content: center;
}

.pricing-list-header > .col-ext {
    justify-self: start;
}

.pricing-list-header > .col-price {
    justify-self: center;
}

.pricing-list-item {
    position: relative;
    overflow: visible;
}

.pricing-list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--theme-primary);
}

.pricing-list-item > * {
    position: relative;
    z-index: 1;
}

.pricing-list-item .col-ext {
    padding-left: 8px;
}

.pricing-list-item .col-price {
    padding-left: 8px;
}

#more-domain-prices[hidden] {
    display: none !important;
}

.domain-pricing-toggle {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid rgba(29, 161, 242, 0.2);
    border-radius: 999px;
    background: #ffffff;
    color: var(--theme-primary);
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.domain-pricing-toggle::after {
    content: "+";
    font-size: 18px;
    line-height: 1;
}

.domain-pricing-toggle[aria-expanded="true"]::after {
    content: "−";
}

.domain-pricing-toggle:hover {
    background: rgba(29, 161, 242, 0.06);
    border-color: rgba(29, 161, 242, 0.32);
}

.domain-pricing-toggle:focus-visible {
    outline: 2px solid rgba(29, 161, 242, 0.45);
    outline-offset: 3px;
}

.domain-pricing-more {
    display: none;
}

.domain-pricing-list-more {
    margin-top: 14px;
}

.domain-pricing-list + .domain-pricing-list-more + .domain-pricing-toggle,
.domain-pricing-list + .domain-pricing-toggle {
    align-self: center;
}

.domain-pricing-modern .domain-pricing-toggle {
    align-self: center;
}

.pricing-list-header i {
    color: var(--theme-primary);
    font-size: 14px;
}

.pricing-list-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    padding: 18px 24px;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.pricing-list-item:hover {
    border-color: rgba(29, 161, 242, 0.24);
    background-color: #fcfeff;
    transform: none;
    box-shadow: none;
}

.col-ext,
.col-price {
    min-width: 0;
}

.pricing-list-item .col-ext,
.pricing-list-item .col-price {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pricing-list-item .col-ext {
    justify-content: flex-start;
    gap: 10px;
}

.ext-name {
    font-size: 19px;
    font-weight: 800;
    color: var(--theme-dark);
    line-height: 1.1;
}

.domain-doc-hint {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(29, 161, 242, 0.1);
    color: var(--theme-primary);
    cursor: help;
    flex-shrink: 0;
}

.domain-doc-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    white-space: nowrap;
    background: #0b3c5d;
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    padding: 9px 11px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.domain-doc-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #0b3c5d transparent transparent transparent;
}

.domain-doc-hint:hover .domain-doc-tooltip,
.domain-doc-hint:focus .domain-doc-tooltip,
.domain-doc-hint:focus-visible .domain-doc-tooltip {
    opacity: 1;
    visibility: visible;
}

.pricing-list-item .col-price strong,
.pricing-list-item .col-price span {
    font-size: 16px;
    color: var(--theme-primary);
    font-weight: 700;
}

.pricing-list-item .col-price small {
    color: #7c93a6;
    font-size: 12px;
    margin-left: 4px;
}

.price-label {
    font-weight: 600;
    color: #64748b;
    font-size: 13px;
}

.domain-doc-hint:focus-visible {
    outline: 2px solid rgba(29, 161, 242, 0.45);
    outline-offset: 3px;
}

@media (max-width: 991px) {
    .pricing-list-item {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pricing-list-item .col-ext,
    .pricing-list-item .col-price {
        width: 100%;
        justify-content: space-between;
        text-align: left;
    }

    .pricing-list-item .col-ext {
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 14px;
        margin-bottom: 2px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .pricing-list-item .col-price {
        justify-content: flex-start;
        gap: 8px;
        flex-wrap: wrap;
    }

    .pricing-list-item .col-price > :not(.price-label) {
        margin-left: auto;
    }

    .pricing-list-item .col-price > .price-label + * + small {
        margin-left: 4px;
    }

    .price-label {
        min-width: 94px;
        display: inline-block;
    }

    .domain-doc-tooltip {
        left: auto;
        right: 0;
        transform: none;
    }

    .domain-doc-tooltip::after {
        left: auto;
        right: 10px;
        transform: none;
    }

    .domain-pricing-toggle {
        width: 100%;
    }

    .pricing-list-header {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .pricing-list-item {
        padding: 16px 18px;
    }

    .ext-name {
        font-size: 17px;
    }

    .pricing-list-item .col-price strong,
    .pricing-list-item .col-price span {
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    .pricing-list-item .price-label {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pricing-list-item,
    .domain-pricing-more summary,
    .domain-doc-tooltip {
        transition: none;
    }
}

/* Domain FAQ */
.domain-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.domain-faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.domain-faq-item {
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 5px;
    background: #ffffff;
    overflow: hidden;
    isolation: isolate;
}

.domain-faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 0;
}

.domain-faq-item:hover::before,
.domain-faq-item[open]::before {
    opacity: 1;
}

.domain-faq-item::after {
    display: none;
}

.domain-faq-item summary,
.domain-faq-item p {
    position: relative;
    z-index: 1;
}

.domain-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 52px 20px 20px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.5;
}

.domain-faq-item summary::-webkit-details-marker {
    display: none;
}

.domain-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(29, 161, 242, 0.1);
    color: var(--theme-primary);
    font-size: 16px;
    font-weight: 700;
}

.domain-faq-item[open] summary::after {
    content: "−";
}

.domain-faq-item p {
    margin: 0;
    padding: 0 20px 20px;
    color: #5b6777;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .domain-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .domain-faq-item summary {
        padding: 18px 48px 18px 18px;
        font-size: 14px;
    }

    .domain-faq-item p {
        padding: 0 18px 18px;
    }
}

/* ==========================================================================
   BİREBİR DOMAIN ARAMA SONUÇLARI TASARIMI (RIWISE)
   ========================================================================== */

.rw-domain-exact-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* --- Ana Sonuç Kutusu --- */
.rw-main-result-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-radius: 5px;
    background: #fff;
    margin-bottom: 30px;
    border: 1px solid #eaeaea;
    overflow: hidden;
    isolation: isolate;
    transition: all 0.3s ease;
}

.rw-main-result-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    background:
        linear-gradient(var(--rw-result-accent, var(--theme-primary)), var(--rw-result-accent, var(--theme-primary))) top left / 0 2px no-repeat,
        linear-gradient(var(--rw-result-accent, var(--theme-primary)), var(--rw-result-accent, var(--theme-primary))) top right / 2px 0 no-repeat,
        linear-gradient(var(--rw-result-accent, var(--theme-primary)), var(--rw-result-accent, var(--theme-primary))) bottom right / 0 2px no-repeat,
        linear-gradient(var(--rw-result-accent, var(--theme-primary)), var(--rw-result-accent, var(--theme-primary))) bottom left / 2px 0 no-repeat;
}

.rw-main-result-box:hover::after {
    opacity: 1;
    animation: feature-border-trace 1.1s linear forwards;
}

.rw-main-result-box:not(:hover)::after {
    animation: none;
}

.rw-main-result-box > * {
    position: relative;
    z-index: 1;
}

/* Başarı (Müsait) Durumu Stilleri */
.rw-status-success {
    --rw-result-accent: #10b981;
    border-left: 6px solid #10b981;
    background: linear-gradient(to right, #f2fdf7, #ffffff 15%);
}

.rw-status-success .rw-mrb-icon i {
    color: #10b981;
}

/* Hata (Alınmış) Durumu Stilleri */
.rw-status-danger {
    --rw-result-accent: #ef4444;
    border-left: 6px solid #ef4444;
    background: linear-gradient(to right, #fef2f2, #ffffff 15%);
}
.rw-status-danger .rw-mrb-icon i {
    color: #ef4444;
}

/* Sol Kısım (İkon ve Yazılar) */
.rw-mrb-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rw-mrb-icon i {
    font-size: 42px;
}

.rw-mrb-domain {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 4px 0;
    letter-spacing: -0.5px;
}

.rw-mrb-domain span {
    color: #6b7280;
    font-weight: 500;
}

.rw-mrb-message {
    font-size: 14px;
    color: #059669; /* Success text color */
    font-weight: 600;
}
.rw-status-danger .rw-mrb-message {
    color: #dc2626;
}

/* Sağ Kısım (Fiyat ve Butonlar) */
.rw-mrb-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.rw-mrb-pricing {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.rw-mrb-new-price {
    font-size: 24px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
}

.rw-mrb-new-price small {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

/* Aksiyon Alanı (Select ve Buton) */
.rw-mrb-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rw-mrb-select-wrapper {
    position: relative;
    width: 100px;
}

.rw-mrb-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}

.rw-mrb-select:focus {
    border-color: #3b82f6;
}

.rw-mrb-select-wrapper .select-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 12px;
    pointer-events: none;
}

.rw-btn-exact {
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.rw-btn-success {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
}

.rw-btn-success:hover {
    background: #059669;
    border-color: #059669;
    transform: translateY(-1px);
}

.rw-btn-transfer {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
}

.rw-btn-transfer:hover {
    background: #dc2626;
    border-color: #dc2626;
    transform: translateY(-1px);
}

.rw-btn-whois {
    background: var(--theme-primary);
    color: #fff;
    border-color: var(--theme-primary);
    text-decoration: none;
}

.rw-btn-whois:hover {
    background: var(--theme-primary-hover);
    border-color: var(--theme-primary-hover);
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.rw-btn-whois:focus,
.rw-btn-whois:active,
.rw-btn-whois:visited {
    color: #fff;
    text-decoration: none;
}

.rw-btn-exact i {
    font-size: 12px;
}

.rw-btn-exact:focus-visible {
    outline: 2px solid rgba(29, 161, 242, 0.25);
    outline-offset: 2px;
}

.rw-btn-exact:hover {
    text-decoration: none;
}

.rw-btn-exact,
.rw-btn-exact:hover,
.rw-btn-exact:focus,
.rw-btn-exact:active,
.rw-btn-exact:visited {
    text-decoration: none;
}

.rw-btn-transfer,
.rw-btn-transfer:hover,
.rw-btn-transfer:focus,
.rw-btn-transfer:active,
.rw-btn-transfer:visited,
.rw-btn-success,
.rw-btn-success:hover,
.rw-btn-success:focus,
.rw-btn-success:active,
.rw-btn-success:visited {
    color: #fff;
}

.rw-btn-whois,
.rw-btn-whois:hover,
.rw-btn-whois:focus,
.rw-btn-whois:active,
.rw-btn-whois:visited {
    color: #fff;
}

.rw-btn-exact,
.rw-btn-exact:hover,
.rw-btn-exact:focus,
.rw-btn-exact:active {
    box-shadow: none;
}

.rw-btn-whois::before,
.rw-btn-whois::after {
    content: none;
}

.rw-btn-whois {
    box-shadow: none;
}

.rw-btn-transfer {
    box-shadow: none;
}

.rw-btn-success {
    box-shadow: none;
}

.rw-btn-whois:hover,
.rw-btn-transfer:hover,
.rw-btn-success:hover {
    box-shadow: none;
}

.rw-btn-whois:focus-visible,
.rw-btn-transfer:focus-visible,
.rw-btn-success:focus-visible {
    box-shadow: none;
}

.rw-btn-whois,
.rw-btn-transfer,
.rw-btn-success {
    min-height: 38px;
}

.rw-btn-whois {
    position: relative;
}

.rw-btn-whois:hover::before,
.rw-btn-whois:focus::before,
.rw-btn-whois:active::before {
    content: none;
}

.rw-btn-whois:hover,
.rw-btn-whois:focus,
.rw-btn-whois:active {
    text-decoration: none !important;
}

.rw-btn-exact span {
    text-decoration: none;
}

.rw-btn-whois,
.rw-btn-transfer {
    background-image: none;
}

.rw-btn-success {
    background-image: none;
}

.rw-btn-whois:hover,
.rw-btn-transfer:hover,
.rw-btn-success:hover {
    background-image: none;
}

.rw-btn-whois,
.rw-btn-transfer,
.rw-btn-success {
    font-family: inherit;
}

.rw-btn-whois {
    -webkit-appearance: none;
    appearance: none;
}

.rw-btn-transfer,
.rw-btn-success {
    -webkit-appearance: none;
    appearance: none;
}

.rw-btn-exact::-moz-focus-inner {
    border: 0;
}

.rw-btn-whois {
    display: inline-flex;
}

.rw-btn-transfer {
    display: inline-flex;
}

.rw-btn-success {
    display: inline-flex;
}

.rw-btn-exact {
    justify-content: center;
}
.rw-mrb-actions--danger {
    gap: 10px;
}

.rw-mrb-actions--danger .rw-btn-exact {
    justify-content: center;
}

/* --- Alternatif Uzantılar Bölümü --- */
.rw-suggestions-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rw-sg-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #374151;
}

.rw-sg-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rw-suggestion-result-box {
    margin-bottom: 0;
}

.rw-suggestion-result-box::after,
.rw-suggestion-result-box:hover::after {
    opacity: 0;
    animation: none;
}

.rw-suggestion-result-box:hover {
    transform: none;
}

.rw-suggestion-result-box .rw-mrb-new-price {
    white-space: nowrap;
}

.rw-suggestion-result-box .rw-mrb-select-wrapper {
    width: 100px;
}

.rw-suggestion-result-box .rw-mrb-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rw-suggestion-result-box .rw-mrb-actions--danger {
    flex-wrap: wrap;
}

/* --- Mobil Uyum (Responsive) --- */
@media (max-width: 768px) {
    .rw-main-result-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 20px;
    }
    
    .rw-mrb-right {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .rw-mrb-actions {
        width: 100%;
    }
    
    .rw-mrb-select-wrapper {
        flex: 1;
    }
    
    .rw-btn-exact {
        flex: 2;
        justify-content: center;
    }

    .rw-suggestion-result-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 20px;
    }

    .rw-suggestion-result-box .rw-mrb-right {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .rw-suggestion-result-box .rw-mrb-actions {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .rw-suggestion-result-box .rw-mrb-actions,
    .rw-suggestion-result-box .rw-mrb-actions--danger {
        flex-direction: column;
        align-items: stretch;
    }

    .rw-suggestion-result-box .rw-btn-exact {
        width: 100%;
    }
}