/* --- Базовые стили и переменные --- */
:root {
    --brand-blue: #0085ff;
    --brand-blue-hover: #0076d6;
    --bg-gray: #f9fafb;
    --text-main: #1a1a1a;
    --text-muted: #6b7280;
    --border-color: #f0f1f3;
}

body {
    background: #f8fafc;
    font-family: 'Golos Text', -apple-system, sans-serif;
}

#order-standard_cart {
    padding-bottom: 80px;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* --- Layout Container --- */
.layout-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-main-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 32px;
}

/* --- Hero Section --- */
.domain-hero-section {
    padding: 60px 0;
}
.domain-hero-section .layout-container {
    text-align: center;
}
.main-title {
    font-family: 'Golos Text', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
    max-width: 671px;
    margin: 0 auto 12px;
    color: #1E293B;
}
.sub-title {
    font-family: 'Golos Text', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    max-width: 785px;
    margin: 0 auto 32px;
    color: #64748B;
}

/* Search Wrapper */
.search-wrapper {
    width: 100%;
    margin-bottom: 32px;
}
.custom-search-group {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}
.custom-search-group input {
    flex: 1;
    width: 100%;
    height: 64px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    padding: 0 20px;
    font-size: 16px;
    background: #fff;
    box-shadow: 0 0 0 1px #1D87E4;
}
.custom-search-group button {
    height: 64px;
    padding: 0 32px;
    border-radius: 16px;
    border: none;
    background: #1D87E4;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: .2s ease;
}
.custom-search-group button:hover {
    background: #1673C7;
}

/* Domain Badges */
.domain-tld-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.tld-badge {
    background: #fff;
    border: 1px solid #E2E8F0;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    color: #475569;
}
.tld-label {
    font-weight: 500;
    color: #64748B;
    margin-right: 10px;
}

/* --- Шаги: С чего начать --- */
.how-to-start-section {
    padding: 60px 0;
}
.how-to-start-section .layout-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#order-standard_cart .how-to-start-section .section-main-title {
    font-family: 'Golos Text', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
    color: #0F172A;
    margin-bottom: 12px;
    text-align: center;
}
.how-to-start-section .section-subtitle {
    font-family: 'Golos Text', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #64748B;
    max-width: 785px;
    text-align: center;
    margin-bottom: 32px;
}

/* Steps Cards */
.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
.step-card {
    background: #fff;
    min-height: 80px; /* Было жестко height: 80px */
    height: auto;
    padding: 16px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    flex: 1;
    border: 1px solid #E6EDF5;
}
.step-number {
    width: 32px;
    height: 32px;
    background-color: var(--brand-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    margin-right: 12px;
    flex-shrink: 0;
}
.step-text {
    font-size: 16px;
    font-weight: 500;
    color: #1E293B;
    margin: 0;
    text-align: left;
}
.step-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Преимущества домена --- */
.domain-benefits-section {
    padding: 60px 0;
}
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}
.benefit-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 32px;
    border-radius: 24px;
    border: 1px solid #E6EDF5;
    min-height: 180px; /* Было жестко height: 180px */
    height: auto;
}
.benefit-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: flex-start;
}
.benefit-icon svg {
    width: 24px;
    height: 24px;
}
.benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    line-height: 1.3;
    margin: 0;
}
.benefit-desc {
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

/* --- CTA Баннер --- */
.domain-cta-banner {
    padding: 60px 0;
}
.cta-content {
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 24px;
    min-height: 248px;
    padding: 24px 24px 32px;
    background: linear-gradient(90.41deg, #0D87EF 0.36%, #1367D7 99.76%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: center;
}
.cta-content .cta-title {
    font-size: 32px;
    font-weight: 600;
    color: #FFFFFF !important;
    margin: 0;
}
.cta-subtitle {
    font-size: 16px;
    line-height: 20px;
    color: rgba(255,255,255,0.9);
    margin: 12px 0 0 0;
}
.btn-cta-white {
    margin-top: 14px;
    padding: 10px 20px;
    height: 40px;
    border-radius: 8px;
    background: #fff;
    color: #363636;
    font-weight: 500;
}
.btn-cta-white:hover {
    background: #f1f5f9;
    text-decoration: none;
    color: rgba(54, 54, 54, 1);
}

/* --- Хостинг для бизнеса (Особенности) --- */

.hosting-features-section {
    padding: 60px 0; 
}

.hosting-features-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 280px);
    gap: 16px;
    justify-content: center;
    width: 100%;
}

.hosting-features-section .benefit-card {
    width: 280px;
    height: 176px;
    padding: 24px 24px; 
    border-radius: 24px;
    border: 1px solid #E6EDF5;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
}

.hosting-features-section .benefit-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
}

.hosting-features-section .benefit-icon svg {
    width: 30px;
    height: 30px;
}

.hosting-features-section .benefit-title {
    font-family: 'Golos Text', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin: 4px 0;
    color: #1E293B;
}

.hosting-features-section .benefit-desc {
    font-family: 'Golos Text', sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    color: #64748B;
    width: 100%; 
}

.hosting-features-section .benefit-card {
    min-height: 176px;
    height: auto;
}

/* =========================
   Тарифы Хостинга (Слайдер)
   ========================= */
.hosting-plans-section {
    padding: 60px 0;
    background-color: #f8fafc;
}
.slider-container {
    max-width: 1170px;
    margin: 40px auto 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}
.plans-slider-track {
    display: flex;
    gap: 30px;
    transition: transform .6s cubic-bezier(.22, .61, .36, 1);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.plans-slider-track::-webkit-scrollbar {
    display: none;
}
.plans-slider-track.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

/* Карточка тарифа */
.plan-card {
    scroll-snap-align: start; 
    flex: 0 0 320px !important; 
    width: 320px !important;
    min-height: 520px !important; 
    height: auto !important;
    background: #ffffff;
    border-radius: 22px;
    padding: 28px 28px 90px 28px; 
    border: 1px solid #E6EDF5;
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
}

.plan-name {
    font-size: 13px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.02em;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-size: 30px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 5px;
}
.plan-price span {
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
}
.plan-header {
    min-height: 80px; 
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.plan-header:after {
    content: "";
    display: block;
    height: 1px;
    background: #F1F5F9;
    margin: 20px 0;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1; 
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    line-height: 1.4;
    color: #334155;
}
.feature-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}
.feature-icon svg {
    width: 100%;
    height: 100%;
}
.feature-text b {
    font-weight: 700;
    color: #1E293B;
}
.hosting-plans-section .section-subtitle {
    max-width: 640px;
    margin: 8px auto 0;
    text-align: center;

    font-size: 16px;
    line-height: 26px;
    color: #64748B;
}
.btn-plan {

position:absolute;

left:12px;   /* еще шире */
right:12px;

bottom:10px; /* еще ниже */

height:40px;

display:flex;
align-items:center;
justify-content:center;

background:#1E88E5;

color:#fff;

border-radius:8px;

font-weight:600;
}
.btn-plan:hover {
    background: #0073dd;
    text-decoration: none;
    color: #fff;
}

.plan-card .badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    z-index: 1;
}
.badge-green { background-color: #22C55E; }
.badge-orange { background-color: #F59E0B; }

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 0;
}
.arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s;
}
.arrow-btn:hover:not(:disabled) {
    box-shadow: 0px 6px 16px rgba(0,0,0,0.1);
}
.arrow-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}

/* --- Перенос Домена --- */
.domain-transfer-section {
    padding: 60px 0;
}
.transfer-wrapper {
    display: flex;
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    gap: 80px;
    align-items: flex-start;
    width: 100%;
}
.transfer-left {
    flex: 1;
}
.transfer-left h2 {
    font-family: 'Golos Text', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 16px;
}
.transfer-desc {
    font-size: 16px;
    line-height: 24px;
    color: #64748B;
    margin-bottom: 24px;
}
.transfer-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.t-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 24px;
}
.t-point svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    margin-top: 0;
    flex-shrink: 0;
}
.btn-cta-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    border-radius: 8px;
    background: var(--brand-blue);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}
.btn-cta-blue:hover {
    background: var(--brand-blue-hover);
    color: #fff;
    text-decoration: none;
}
.transfer-right {
    flex: 1;
    display: flex;
    justify-content: center;
}
.transfer-steps-box {
    background: #F1F5F9;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 420px;
}
.transfer-step {
    background: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.ts-num {
    width: 32px;
    height: 32px;
    background: var(--brand-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}
.ts-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

/* --- FAQ --- */
.faq-section {
    padding: 60px 0;
}
.faq-list {
    max-width: 1170px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: #fff;
    border-radius: 20px;
    padding: 24px 28px;
    transition: .25s ease;
    cursor: pointer;
    border: 1px solid #F1F5F9;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
}
.faq-answer {
    display: none;
    margin-top: 12px;
    font-size: 16px;
    line-height: 24px;
    color: #64748B;
}
.faq-icon {
    transition: .25s ease;
    flex-shrink: 0;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.header-lined, .domain-pricing, .domain-promo-box.hidden { display: none !important; }

@media (max-width: 1200px) {
    .plan-card { flex: 0 0 calc(33.333% - 16px) !important; width: calc(33.333% - 16px) !important; }
    .hosting-features-section .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .steps-container { flex-direction: column; }
    .step-divider { transform: rotate(90deg); padding: 15px 0; }
    .step-card { width: 100%; }
    .transfer-wrapper { flex-direction: column; padding: 30px 20px; gap: 40px; }
}

@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .hosting-features-section .benefits-grid { grid-template-columns: 1fr; }
    .custom-search-group { flex-direction: column; background: transparent; border: none; box-shadow: none; gap: 10px; }
    .custom-search-group input { border-radius: 10px; padding: 15px; border: 1px solid #dee2e6 !important; }
    .custom-search-group button { padding: 15px; border-radius: 10px; width: 100%; }
    .plan-card { flex: 0 0 calc(50% - 15px) !important; width: calc(50% - 15px) !important; }
}

@media (max-width: 520px) {
    .plan-card { flex: 0 0 100% !important; width: 100% !important; }
}

/* ==========================
   РЕЗУЛЬТАТЫ ПОИСКА ДОМЕНА
   ========================== */

.primary-loader-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 0 12px;
    font-size: 15px;
    font-weight: 500;
    color: #64748B;
    margin: 0;
}
.primary-loader-custom i { color: #0D87EF; }

.suggestions-loader-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 0 8px;
    font-size: 14px;
    color: #64748B;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
}
.suggestions-loader-custom i { color: #0D87EF; }

.primary-result-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    padding: 28px 32px;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.result-msg {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}
.result-msg--success { color: #16a34a; }
.result-msg--error   { color: #dc2626; }

.result-price-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 4px 0 0;
}
.result-price {
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
}

.btn-result-cart {
    height: 44px;
    padding: 0 28px !important;
    border-radius: 10px !important;
    border: none !important;
    background: #1D87E4 !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: background .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-result-cart:hover { background: #1673C7 !important; }

.btn-result-support {
    display: none;
    height: 44px;
    padding: 0 24px;
    border-radius: 10px;
    background: #F1F5F9;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    align-items: center;
    transition: background .2s;
}
.btn-result-support:hover { background: #E2E8F0; text-decoration: none; }

.suggested-domains {
    margin-top: 16px;
}

.suggested-domains .panel-heading,
.suggested-domains .card-header { display: none !important; }

#domainSuggestions .domain-suggestion {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #E2E8F0 !important;
    padding: 14px 24px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: border-color .2s, box-shadow .2s;
    box-shadow: none !important;
    background-image: none !important;
}

#domainSuggestions .domain-suggestion:last-child {
    margin-bottom: 0;
}

#domainSuggestions .domain-suggestion .domain {
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
}
#domainSuggestions .domain-suggestion .extension {
    font-size: 16px;
    font-weight: 400;
    color: #64748B;
}

#domainSuggestions .domain-suggestion .actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
#domainSuggestions .domain-suggestion .price {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    white-space: nowrap;
}

.btn-ds-cart {
    height: 40px !important;
    padding: 0 20px !important;
    border-radius: 10px !important;
    border: none !important;
    background: #1D87E4 !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: background .2s;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.btn-ds-cart:hover { background: #1673C7 !important; }

#DomainSearchResults hr,
#DomainSearchResults .divider { display: none !important; }
#DomainSearchResults .alert,
#DomainSearchResults .panel,
#DomainSearchResults .well {
    border: 0 !important;
    box-shadow: none !important;
    background-image: none !important;
    margin-bottom: 0 !important;
}

@media (max-width: 600px) {
    .primary-result-card { padding: 20px 16px; }
    .result-price-row    { flex-direction: column; align-items: flex-start; }
    #domainSuggestions .domain-suggestion { flex-direction: column; align-items: flex-start; }
    #domainSuggestions .domain-suggestion .actions { width: 100%; justify-content: space-between; }
}


.plan-features ul{
list-style:none;
padding:0;
margin:0;
display:flex;
flex-direction:column;
gap:14px;
}

.plan-features li{
display:flex;
align-items:flex-start;
gap:12px;
}

.feature-icon{
flex-shrink:0;
width:38px;
height:38px;
}

.feature-text{
flex:1;
line-height:1.4;
}

.feature-text b{
margin-right:4px;
}


/* =========================
   РЕЗУЛЬТАТЫ ПОИСКА ДОМЕНА 
   ========================= */

.primary-loader-custom {
    text-align: center;
    padding: 24px 0;
    color: #64748b;
    font-size: 15px;
    margin: 0;
}
.primary-loader-custom i { color: #0D87EF; margin-right: 8px; }

.suggestions-loader-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 0;
    font-size: 14px;
    color: #64748B;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
}
.suggestions-loader-custom i { color: #0D87EF; }

#primaryLookupResult {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100% !important;
}

#domainSuggestions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-top: 8px;
    width: 100% !important;
}

.result-invalid {
    font-size: 14px;
    color: #DC2626;
    margin: 0;
    padding: 0;
    background: transparent !important;
    border: none !important;
}

.domain-contact-support,
.domain-price { display: none !important; }

.suggested-domains .panel-heading,
.suggested-domains .card-header { display: none !important; }

#domainSuggestions > .domain-suggestion.list-group-item:first-child {
    display: none !important;
}

.custom-result-row { display: contents; }


.result-row,
#domainSuggestions .domain-suggestion {
    background: #fff !important;
    border-radius: 20px !important;
    border: 1px solid #e8ecf1 !important;
    padding: 22px 28px !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04) !important;
    background-image: none !important;
    list-style: none !important;
}

/* Flex-раскладка — только видимые */
.result-row:not([style*="display: none"]),
#domainSuggestions .domain-suggestion {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.result-row[style*="display: none"] {
    display: none !important;
}

p.result-row {
    font-size: 0 !important;  
    line-height: normal !important;
}

.result-left {
    flex: 1 !important;
    min-width: 0 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #1a1f2e !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    text-align: left !important;
    margin-right: auto !important;
}

.result-left strong {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #1a1f2e !important;
    display: block !important;
    text-align: left !important;
}

#domainSuggestions .domain-suggestion .domain {
    font-size: 16px;
    font-weight: 500;
    color: #1a1f2e;
}
#domainSuggestions .domain-suggestion .extension {
    font-size: 16px;
    color: #1a1f2e;
}

/* ================================================================
   БЕЙДЖИ
   ================================================================ */
.badge-taken {
    height: 40px;
    padding: 0 20px;
    background: #fde8ec;
    color: #2b2f33;
    border: 1.5px solid #f4b8c8;
    border-radius: 12px;
    font-size: 15px !important;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.badge-available {
    height: 40px;
    padding: 0 20px;
    background: #e8fdf0;
    color: #2b2f33;
    border: 1.5px solid #86efac;
    border-radius: 12px;
    font-size: 15px !important;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}


.btn-result-cart {
    height: 40px !important;
    padding: 0 24px !important;
    border-radius: 12px !important;
    border: none !important;
    
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: opacity .2s;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    box-shadow: none !important;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-ds-cart {
    height: 40px !important;
    padding: 0 22px !important;
    border-radius: 12px !important;
    border: none !important;
    
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: opacity .2s;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: none !important;
}

.whois-btn-trigger {
    height: 40px;
    padding: 0 22px;
    border-radius: 12px;
    border: 1.5px solid #dde2ea;
    background: #fff;
    color: #4b5563;
    font-size: 15px !important;
    font-weight: 500;
    cursor: pointer;
    transition: background .15s, border-color .15s;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}
.whois-btn-trigger:hover { background: #f8fafc; border-color: #b0b9c6; }
.whois-btn-trigger i { font-size: 12px; }

#domainSuggestions .btn.unavailable {
    height: 40px !important;
    padding: 0 20px !important;
    border-radius: 12px !important;
    border: 1.5px solid #f4b8c8 !important;
    background: #fde8ec !important;
    color: #d6456e !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    cursor: default;
    pointer-events: none;
    box-shadow: none !important;
    display: inline-flex !important;
    align-items: center;
}

#domainSuggestions .domain-suggestion .actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
}
#domainSuggestions .domain-suggestion .price {
    font-size: 15px;
    font-weight: 600;
    color: #1a1f2e;
    white-space: nowrap;
}


.result-row .whois-inject-block {
    display: flex !important;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

.result-row .whois-result-container {
    display: none !important;
}


#DomainSearchResults hr,
#DomainSearchResults .divider { display: none !important; }
#DomainSearchResults .alert,
#DomainSearchResults .panel,
#DomainSearchResults .well {
    border: 0 !important;
    box-shadow: none !important;
    background-image: none !important;
    margin-bottom: 0 !important;
}
#domainSuggestions li,
#domainSuggestions tr { border-bottom: 0 !important; }


@media (max-width: 576px) {
    .result-row:not([style*="display: none"]) {
        flex-wrap: wrap;
    }
    .result-left { width: 100% !important; flex: none !important; }
    #domainSuggestions .domain-suggestion {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    #domainSuggestions .domain-suggestion .actions {
        width: 100%;
        justify-content: space-between;
    }
}

.layout-container {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.suggested-domains,
#DomainSearchResults,
#searchDomainInfo,
#primaryLookupResult,
.domain-checker-result-headline {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

p.domain-unavailable.result-row,
p.domain-available.result-row {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}
.result-row,
#domainSuggestions .domain-suggestion {
    padding: 19px 28px !important;
}

#primaryLookupResult {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

#domainSuggestions {
    gap: 8px;
}

#DomainSearchResults,
#searchDomainInfo,
.domain-checker-result-headline,
.suggested-domains,
#suggestionsLoader {
    margin: 0 !important;
    padding: 0 !important;
}

#suggestionsLoader {
    padding: 14px 0 !important;
}


.badge-taken,
.badge-available,
.whois-btn-trigger {
    height: 40px !important;
    line-height: 40px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle !important;
    box-sizing: border-box !important;
}

.whois-inject-block {
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle !important;
    gap: 10px !important;
}

p.result-row {
    display: flex !important;
    align-items: center !important;
}


.badge-taken,
.whois-btn-trigger {
    height: 40px !important;
    line-height: 1 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.transfer-wrapper {
    display: flex;
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    gap: 48px;
    align-items: flex-start;
    width: 100%;
}

.transfer-left {
    flex: 1.4;
}

.transfer-right {
    flex: 1;
}
