/**
 * Domain Checker — Modern Unified Card Layout
 * Tek yapı: ana sonuç + TR Fırsatları + Alternatif Öneriler kartları birebir aynı.
 * Eski /assets/css/pages/domain-checker.css içindeki .result, .result.available,
 * .result .new/.old, .status-icon kuralları bu dosyada AGRESİF override ediliyor.
 * NOT: Mevcut JS selector'ları korundu (.addtocart, .domain-year-select,
 * .item-price USD/TRY, .result.available, #domainYearSelect, updateYearPrice).
 */

/* ============================================================
   1) TRUST + GOOGLE REVIEWS BAR
   ============================================================ */
.domain-trust-bar {
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
}
.domain-trust-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    min-height: 28px;
}
.domain-trust-bar .trust-signals {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    line-height: 1;
}
.domain-trust-bar .trust-signals > div {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
    font-size: 13px;
    line-height: 1;
    height: 22px;
}
.domain-trust-bar .trust-signals > div i { font-size: 15px; color: #F97316; line-height: 1; }
.domain-trust-bar .trust-signals > div strong { color: #1f2937; font-weight: 700; }

/* Google reviews — baseline'sız forced flex hizalama */
.domain-trust-bar .google-reviews-container,
.domain-trust-bar .google-reviews,
.domain-trust-bar .google-reviews a,
.domain-trust-bar .google-reviews a > span {
    display: inline-flex !important;
    align-items: center !important;
    line-height: 1 !important;
    height: 22px;
    margin: 0 !important;
    padding: 0 !important;
}
.domain-trust-bar .google-reviews a {
    gap: 6px;
    font-size: 13px;
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
}
.domain-trust-bar .google-reviews a strong { color: #F97316; font-weight: 700; }
.domain-trust-bar .google-reviews a img {
    display: block !important;
    vertical-align: middle !important;
    margin: 0 !important;
}
.domain-trust-bar .google-reviews a .logo  { height: 16px !important; width: auto !important; }
.domain-trust-bar .google-reviews a .stars { height: 14px !important; width: auto !important; }

@media (max-width: 991px) {
    .domain-trust-bar .container { gap: 1.25rem; }
    .domain-trust-bar .trust-signals { gap: 1rem; }
}
@media (max-width: 576px) {
    .domain-trust-bar { padding: 14px 0; }
    .domain-trust-bar .trust-signals > div { font-size: 12px; }
}

/* ============================================================
   2) SONUÇ BAŞLIĞI — available kartın üstü
   ============================================================ */
.dc-result-heading {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #15803d;
    margin: 0 0 14px;
    padding: 6px 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: block;
}
.dc-result-heading i { color: #F97316; margin-right: 8px; font-size: 16px; }
@media (max-width: 576px) { .dc-result-heading { font-size: 13px; padding: 4px 0; } }

/* ============================================================
   3) TEK TİP KART YAPISI — tüm sonuç/öneri kartları
   (ana sonuç, TR fırsatları, alternatif öneriler hepsi aynı)
   ============================================================ */

/* Eski .result { text-align:center } kuralını sıfırla */
.dc-card,
.dc-card * { text-align: left; }

.dc-card {
    display: flex;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    font-family: 'Inter', 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    float: none !important;
}

/* Legacy domain-checker.min.css'teki #result .result {display:none} kuralı (spec 0,1,1),
   inline style="display:none" kalktığında computed display'i hâlâ none yapar — jQuery .show() de
   bunu görüp inline `display: block` enjekte eder, bu da grid/flex'i sıfırlar.
   Çözüm: bilinen varyantların her biri için bu seviyenin üstünde bir kural tanımla (spec 0,2,1). */
#result .result.dc-card          { display: flex; }
#result .result.dc-hero-match    { display: grid; }
#result .result.dc-result-heading { display: block; }
.dc-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

/* Sabit sıra — HTML order ile senkron */
.dc-card > .dc-card-icon    { order: 1; flex: 0 0 auto; float: none !important; }
.dc-card > .dc-card-info    { order: 2; flex: 1 1 auto; min-width: 0; margin: 0; float: none !important; }
.dc-card > .dc-card-price   { order: 3; flex: 0 0 auto; float: none !important; margin: 0 10px 0 0; text-align: right !important; }
.dc-card > .dc-card-actions { order: 4; flex: 0 0 auto; float: none !important; margin: 0; }

/* ===== Ana kart (is-main) — Varyant A: Saf Ivory + Turuncu Border ===== */
.dc-card.is-main {
    background: #FFFBF5;
    border: 2px solid #F97316;
    box-shadow: 0 2px 12px rgba(249, 115, 22, 0.10);
    padding: 16px 20px;
}
.dc-card.is-main:hover {
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.14);
}
.dc-card.is-unavailable { background: #fafbfc; }
.dc-card.is-error { background: #fef2f2; border-color: #fecaca; }

/* ===== Icon Badge — Varyant A Saf (Stripe/Linear Soft Tile) ===== */
.dc-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    background: rgba(22, 163, 74, 0.10);
    border: 1px solid rgba(22, 163, 74, 0.18);
    color: #16a34a;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
/* Yeşil verified-badge SVG (yıldız + tick) — CSS mask ile renklendirilir, hover'da koyulaşır.
   Mask alanı tüm container'ı kaplar; içindeki Font Awesome <i.fa-check> gizlenir. */
.dc-icon-success {
    background-color: #71d265;
    -webkit-mask: url("/assets/img/icons/check-badge.svg") center/contain no-repeat;
            mask: url("/assets/img/icons/check-badge.svg") center/contain no-repeat;
    border: none;
    box-shadow: none;
}
.dc-icon-success > i.fa-check { display: none; }
.dc-icon-transfer {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 2px solid #F97316;
    color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.10);
}
.dc-icon-error    { background: rgba(220, 38, 38, 0.10);  border-color: rgba(220, 38, 38, 0.18);  color: #dc2626; }
.dc-card.is-main .dc-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 22px;
}
/* Hover: SVG badge daha koyu yeşil */
.dc-card:hover .dc-icon-success {
    background-color: #16a34a;
}
.dc-card:hover .dc-icon-transfer { box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18); }
.dc-card:hover .dc-icon-error    { background: rgba(220, 38, 38, 0.15);  border-color: rgba(220, 38, 38, 0.28); }

/* ===== Info (domain + badge + meta) ===== */
.dc-domain-name {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    word-break: break-all;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.dc-card.is-main .dc-domain-name { font-size: 20px; color: #1f2937; }
.dc-card.is-error .dc-domain-name { color: #dc2626; }

/* .domainname span'ı eski /assets/css/pages/domain-checker.css'te yeşile (#4caf50) zorlanıyor — override */
#result .result .dc-domain-name,
#result .result .dc-domain-name .domainname,
#result .result.available .domainname,
.dc-card .dc-domain-name .domainname { color: inherit !important; }
.dc-card.is-main .dc-domain-name,
.dc-card.is-main .dc-domain-name .domainname { color: #1f2937 !important; }
.dc-card.is-unavailable .dc-domain-name,
.dc-card.is-unavailable .dc-domain-name .domainname { color: #1f2937 !important; }
.dc-card.is-error .dc-domain-name,
.dc-card.is-error .dc-domain-name .domainname { color: #dc2626 !important; }

.dc-domain-meta {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.dc-domain-meta small { color: #9ca3af; }

/* ===== Badge'ler ===== */
.dc-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    vertical-align: middle;
    letter-spacing: 0.3px;
}
.dc-badge-available-solid {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    padding: 5px 14px;
    font-size: 12px;
    letter-spacing: 0.6px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.35);
    animation: dc-pulse-available 2s ease-in-out infinite;
}
@keyframes dc-pulse-available {
    0%, 100% { box-shadow: 0 2px 8px rgba(22, 163, 74, 0.35); }
    50%      { box-shadow: 0 2px 14px rgba(22, 163, 74, 0.55); }
}
.dc-badge-available {
    background: #d1fae5;
    color: #065f46;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.dc-badge-unsigned {
    background: #fee2e2;
    color: #991b1b;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.dc-badge-taken {
    background: #dbeafe;
    color: #1e40af;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
}

/* %70 İndirim sticker — .tr ailesi domain fiyat alanı üstü */
.dc-badge-discount {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff !important;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    line-height: 1;
    box-shadow: 0 1px 3px rgba(220, 38, 38, 0.25);
    margin: 0 0 6px auto;
    white-space: nowrap;
}
.dc-badge-discount i { font-size: 9px; color: #fbbf24; }
.dc-card-price { display: flex; flex-direction: column; align-items: flex-end; }
.dc-card-price > .old,
.dc-card-price > .new { width: 100%; }
@media (max-width: 768px) {
    .dc-card-price { align-items: flex-start; }
    .dc-badge-discount { margin-right: auto; margin-left: 0; }
}

/* ===== Price (önemli: eski .result.available .new/.old { float:right } OVERRIDE) ===== */
.dc-card-price {
    min-width: 90px;
    text-align: right;
    line-height: 1.2;
}
.dc-card .dc-card-price .old,
.dc-card .dc-card-price .new,
.dc-card.is-main .dc-card-price .old,
.dc-card.is-main .dc-card-price .new,
.result.available .dc-card-price .old,
.result.available .dc-card-price .new {
    float: none !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: right !important;
    line-height: 1.2 !important;
    letter-spacing: normal !important;
}
.dc-card-price .old {
    font-size: 12px;
    color: #9ca3af !important;
    text-decoration: line-through;
}
.dc-card-price .new {
    font-size: 18px;
    font-weight: 800;
    color: #15803d !important;
}
.dc-card-price .new > span[style] {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280 !important;
}
.dc-card.is-main .dc-card-price .new { font-size: 22px; }
.dc-card.is-main .dc-card-price .old { font-size: 13px; }

/* ===== Actions (year select + Sepete Ekle butonu) ===== */
.dc-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.dc-card-actions .dc-year-select {
    border-radius: 10px;
    border: 1.5px solid #d1d5db;
    background: #fff;
    padding: 0 26px 0 12px;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    height: 38px;          /* .dc-btn-cart ile eşit yükseklik — flex satırda hizalı */
    width: 86px;
    min-width: 0;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%236b7280' d='M5 6L0 0h10z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.dc-card-actions .dc-year-select:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.dc-btn-cart {
    background: linear-gradient(135deg, #FFC300 0%, #FFB300 100%);
    color: #1f2937;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(255, 195, 0, 0.25);
    line-height: 1.2;
    float: none !important;
    width: auto !important;
}
.dc-btn-cart:hover:not(:disabled):not(.btn-success) {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 195, 0, 0.4);
}
.dc-btn-cart:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 195, 0, 0.3);
}
.dc-btn-cart.btn-success {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 2px 6px rgba(22, 163, 74, 0.35);
}

.dc-btn-transfer {
    background: linear-gradient(135deg, #F97316 0%, #ea580c 100%);
    color: #fff;
    box-shadow: 0 1px 4px rgba(249, 115, 22, 0.30);
    transition: all 0.3s ease;
}
.dc-btn-transfer:hover { box-shadow: 0 3px 12px rgba(249, 115, 22, 0.45); transform: translateY(-1px); }

/* ===== Transfer Avantajları Bölümü — unavailable kartın altında ===== */
.dc-transfer-benefits {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 10px;
}
.dc-benefits-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}
.dc-benefits-header i { color: #F97316; font-size: 16px; }
.dc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}
.dc-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
}
.dc-benefit-item > i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 1px;
}
.dc-benefit-item strong {
    color: #1f2937;
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
    line-height: 1.3;
}
.dc-benefit-item small {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.4;
    display: block;
}
@media (max-width: 768px) {
    .dc-transfer-benefits { padding: 14px 16px; }
    .dc-benefits-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ===== Transfer kartı (EPP input + Transfer Et butonu) ===== */
.dc-transfer-actions {
    display: flex;
    align-items: flex-end;   /* label+input bottom ile buton bottom aynı hizada */
    flex-wrap: wrap;
    gap: 10px;
    white-space: normal;
}
.dc-transfer-actions .dc-btn-cart {
    padding: 11px 22px;   /* input yüksekliğiyle eşleşsin */
    height: 40px;
}
.dc-epp-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 190px;
}
.dc-epp-label { font-size: 11px; color: #6b7280; font-weight: 500; margin: 0; line-height: 1; }
.dc-epp-input {
    border-radius: 8px;
    border: 1.5px solid #d1d5db;
    padding: 8px 12px;
    font-size: 13px;
    background: #fff;
    transition: border-color 0.15s;
    height: 40px;
    box-sizing: border-box;
}
.dc-epp-input:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

/* Transfer kartı — domain adı + badge'ler + açıklama arası nefes */
.dc-card.is-unavailable .dc-card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dc-card.is-unavailable .dc-domain-name { margin-bottom: 0; }
.dc-card.is-unavailable .dc-domain-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.dc-card.is-unavailable .dc-meta-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.dc-card.is-unavailable .dc-transfer-note {
    color: #374151;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.5;
    padding: 8px 12px;
    background: #fff7ed;
    border-left: 3px solid #F97316;
    border-radius: 0 6px 6px 0;
    display: block;
    width: 100%;
}
.dc-card.is-unavailable .dc-transfer-note strong { color: #16a34a; font-weight: 700; }

/* ============================================================
   4) SECTION HEADER — koyu lacivert şerit
   ============================================================ */
.dc-section { margin-top: 1.5rem; }
/* Section header — beyaz kart + alt 2px renk vurgusu (Inetmar standardı, 2026-05-07).
   Varyantlar: is-alt (turuncu, default), is-tr (kırmızı), is-success (yeşil), is-info (mavi). */
.dc-section-header {
    background: #fff;
    color: #0F172A;
    padding: 14px 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 2px solid #F97316;
    border-radius: 14px 14px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02);
}
.dc-section-header.is-alt   { background: linear-gradient(135deg, #fff 0%, #fff7ed 100%); border-bottom-color: #F97316; }
.dc-section-header.is-tr    { background: linear-gradient(135deg, #fff 0%, #fef2f2 100%); border-bottom-color: #DC2626; }
.dc-section-header.is-success { background: linear-gradient(135deg, #fff 0%, #ECFDF5 100%); border-bottom-color: #10B981; }
.dc-section-header.is-info  { background: linear-gradient(135deg, #fff 0%, #eff6ff 100%); border-bottom-color: #3B82F6; }

.dc-section-header.is-alt   .dc-section-icon { background: rgba(249, 115, 22, 0.10); color: #EA580C; }
.dc-section-header.is-tr    .dc-section-icon { background: rgba(220, 38, 38, 0.10); color: #DC2626; }
.dc-section-header.is-success .dc-section-icon { background: rgba(16, 185, 129, 0.10); color: #047857; }
.dc-section-header.is-info  .dc-section-icon { background: rgba(59, 130, 246, 0.10); color: #1D4ED8; }

.dc-section-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    color: #0F172A;
}
.dc-section-sub {
    display: inline-flex;
    align-items: center;
    font-size: 12.5px;
    color: #64748B;
    font-weight: 500;
    line-height: 1.3;
}
.dc-section-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(15, 23, 42, 0.06);
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.dc-section-body {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-top: none;
    border-radius: 0 0 14px 14px;
    padding: 14px 16px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}
.dc-section-body .dc-card:last-child { margin-bottom: 0; }
.dc-section-body:empty { display: none; }

/* ============================================================
   5a) STICKY CART CTA BAR — sayfa altı sabit bar
   ============================================================ */
.dc-sticky-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -2px 14px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
    z-index: 500;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
}
.dc-sticky-cart-bar.active { transform: translateY(0); }

.dc-sticky-cart-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.dc-sticky-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1f2937;
    font-weight: 500;
}
.dc-sticky-info > i {
    color: #F97316;
    font-size: 18px;
}
.dc-sticky-info strong {
    color: #F97316;
    font-weight: 800;
    font-size: 16px;
    padding: 0 2px;
}

.dc-sticky-btn {
    background: linear-gradient(135deg, #FFC300 0%, #FFB300 100%);
    color: #1f2937;
    border: none;
    border-radius: 10px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(255, 195, 0, 0.3);
    white-space: nowrap;
}
.dc-sticky-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 195, 0, 0.45);
}
.dc-sticky-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 195, 0, 0.3);
}

/* Sticky bar aktifken body padding + FAB/Tawk offset */
body.dc-has-sticky-cart { padding-bottom: 72px; }
body.dc-has-sticky-cart #tawkchat-container,
body.dc-has-sticky-cart .tawk-min-container,
body.dc-has-sticky-cart iframe[title*="chat" i] {
    bottom: 80px !important;
}

@media (max-width: 768px) {
    .dc-sticky-cart-bar { padding: 9px 0; }
    .dc-sticky-cart-bar .container {
        padding-left: 12px;
        padding-right: 12px;
        gap: 10px;
    }
    .dc-sticky-info { font-size: 13px; gap: 8px; }
    .dc-sticky-info > i { font-size: 16px; }
    .dc-sticky-info strong { font-size: 15px; }
    .dc-sticky-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    body.dc-has-sticky-cart { padding-bottom: 68px; }
    body.dc-has-sticky-cart #tawkchat-container,
    body.dc-has-sticky-cart .tawk-min-container,
    body.dc-has-sticky-cart iframe[title*="chat" i] {
        bottom: 76px !important;
    }
}
@media (max-width: 480px) {
    .dc-sticky-info span { font-size: 12px; }
    .dc-sticky-info strong { font-size: 14px; }
}

/* ============================================================
   5) LOADER
   ============================================================ */
.dc-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 2rem;
    text-align: center;
}
.dc-loader-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #e5e7eb;
    border-top-color: #F97316;
    border-radius: 50%;
    animation: dc-spin 0.8s linear infinite;
}
.dc-loader-text { font-size: 14px; color: #6b7280; }
@keyframes dc-spin { to { transform: rotate(360deg); } }

/* ============================================================
   6) RESPONSIVE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
    .dc-card {
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px 16px;
    }
    .dc-card > .dc-card-icon    { flex: 0 0 auto; }
    .dc-card > .dc-card-info    { flex: 1 1 calc(100% - 62px); }
    .dc-card > .dc-card-price   { flex: 1 1 100%; text-align: left !important; margin: 2px 0 0 0; }
    .dc-card > .dc-card-price .old,
    .dc-card > .dc-card-price .new { text-align: left !important; }
    .dc-card > .dc-card-actions { flex: 1 1 100%; justify-content: stretch; margin: 0; }

    .dc-card-icon { width: 44px; height: 44px; font-size: 18px; }
    .dc-card.is-main .dc-card-icon { width: 46px; height: 46px; font-size: 19px; }
    .dc-domain-name { font-size: 17px; }
    .dc-card.is-main .dc-domain-name { font-size: 19px; }
    .dc-card-price .new { font-size: 17px; }
    .dc-card.is-main .dc-card-price .new { font-size: 20px; }

    .dc-card-actions .dc-year-select { flex: 0 0 84px; width: 84px; }
    .dc-card-actions .dc-btn-cart { flex: 1; justify-content: center; }

    .dc-transfer-actions .dc-epp-wrap { flex: 1 1 100%; min-width: 0; }
    .dc-transfer-actions .dc-btn-cart { flex: 1 1 100%; }

    .dc-section-header { padding: 10px 16px; }
    .dc-section-title { font-size: 14px; }
    .dc-section-sub { width: 100%; font-size: 11px; }
}
