/* ══════════════════════════════════════════════════════════════════════
   DataTR Cart — Premium Styles for configureproduct.tpl
   Dark mode / Light mode uyumlu, Next.js tasarımıyla tutarlı
   ══════════════════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────────────── */
#order-standard_cart.dt-cart-premium {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    -webkit-font-smoothing: antialiased;
    padding: 0;
}

/* Sidebar tamamen gizle */
.cart-sidebar {
    display: none !important;
}

/* Cart body tam genişlik */
.dt-cart-fullwidth {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 !important;
    padding: 0 !important;
}

/* ── Sayfa Başlığı ────────────────────────────────────────────────── */
.dt-page-header {
    display: none !important;
}

/* ── Cart Layout (Main + Summary) ─────────────────────────────────── */
.dt-cart-layout {
    display: flex;
    gap: 32px;
    padding: 24px 24px 48px;
    max-width: 1280px;
    margin: 0 auto;
}

.dt-cart-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dt-cart-summary {
    width: 380px;
    flex-shrink: 0;
}

.dt-summary-sticky {
    position: sticky;
    top: 100px;
}

/* ── Premium Card ─────────────────────────────────────────────────── */
.dt-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dt-card:hover {
    border-color: rgba(148, 163, 184, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.dt-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.dt-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(99, 102, 241, 0.1));
    border-radius: 10px;
    color: #3b82f6;
    flex-shrink: 0;
}

.dt-card-icon svg {
    width: 20px;
    height: 20px;
}

.dt-card-header h2 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #f1f5f9;
    letter-spacing: -0.01em;
}

.dt-card-body {
    padding: 24px;
}

/* ── Product Info ─────────────────────────────────────────────────── */
/* Gradient border card */
.dt-card-gradient-border {
    position: relative;
    border: none !important;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
}

.dt-card-gradient-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    border-radius: 16px 16px 0 0;
}

/* Product hero layout */
/* ── Product Description ──────────────────────────────────────────── */
.dt-product-desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.7;
}

.dt-product-desc ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dt-product-desc ul li {
    font-size: 13px;
    color: #cbd5e1;
    padding: 4px 0;
    background: none;
    border: none;
    border-radius: 0;
}

.dt-product-desc ul li::before {
    content: "✦ ";
    color: #3b82f6;
    font-size: 10px;
    margin-right: 4px;
}


/* ── Select / Input Premium ───────────────────────────────────────── */
.dt-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 10px;
    color: #f1f5f9;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.dt-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.dt-select option {
    background: #0f172a;
    color: #f1f5f9;
}

/* ── Billing Cards Premium ────────────────────────────────────────── */
.dt-billing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.dt-billing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(148, 163, 184, 0.1);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    text-align: center;
}

.dt-billing-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.04);
    transform: translateY(-2px);
}

.dt-billing-active {
    border-color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.08) !important;
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.3), 0 4px 16px rgba(59, 130, 246, 0.15);
}

.dt-billing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border-radius: 20px;
    white-space: nowrap;
}

.dt-billing-badge-best {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
}

.dt-billing-period {
    font-size: 15px;
    font-weight: 700;
    color: #f1f5f9;
    letter-spacing: -0.01em;
}

.dt-billing-price {
    font-size: 16px;
    color: #e2e8f0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.dt-billing-active .dt-billing-period {
    color: #3b82f6;
}

.dt-billing-active .dt-billing-price {
    color: #93c5fd;
}

/* ── Options Grid ─────────────────────────────────────────────────── */
.dt-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dt-option-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dt-option-label {
    font-size: 13px;
    font-weight: 600;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Radio Group Premium ──────────────────────────────────────────── */
.dt-radio-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dt-radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s ease;
    margin: 0;
    font-weight: 400;
}

.dt-radio-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.05);
}

/* Native input'u gizle (iCheck zaten kendi wrapper'ını kullanıyor) */
.dt-radio-item input[type="radio"] {
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    overflow: hidden !important;
}

.dt-radio-indicator {
    display: none !important;
}

/* ── iCheck Premium Styling ──────────────────────────────────────── */
/* iCheck wrapper'ını premium radio indicator olarak stille */
.dt-radio-item .iradio_square-blue,
.dt-radio-item [class*="iradio_"] {
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(148, 163, 184, 0.3) !important;
    background: transparent !important;
    background-image: none !important;
    position: relative !important;
    display: inline-block !important;
    vertical-align: middle !important;
    flex-shrink: 0;
    transition: all 0.15s ease;
    margin: 0 !important;
    padding: 0 !important;
}

/* Seçili radio — mavi dolgu + beyaz nokta */
.dt-radio-item .iradio_square-blue.checked,
.dt-radio-item [class*="iradio_"].checked {
    border-color: #3b82f6 !important;
    background: #3b82f6 !important;
    background-image: none !important;
}

.dt-radio-item .iradio_square-blue.checked::after,
.dt-radio-item [class*="iradio_"].checked::after {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 6px !important;
    height: 6px !important;
    background: white !important;
    border-radius: 50% !important;
}

/* iCheck ins elementini gizle (eski sprite-based indicator) */
.dt-radio-item .iradio_square-blue ins,
.dt-radio-item [class*="iradio_"] ins {
    display: none !important;
}

/* Seçili row vurgulama — iCheck .checked class'ına dayalı */
.dt-radio-item:has(.iradio_square-blue.checked),
.dt-radio-item:has([class*="iradio_"].checked) {
    border-color: rgba(59, 130, 246, 0.3) !important;
    background: rgba(59, 130, 246, 0.08) !important;
}

.dt-radio-item:has(.iradio_square-blue.checked) .dt-radio-text,
.dt-radio-item:has([class*="iradio_"].checked) .dt-radio-text {
    color: #f1f5f9;
    font-weight: 500;
}

/* ── iCheck Checkbox Premium ─────────────────────────────────────── */
.dt-checkbox-item .icheckbox_square-blue,
.dt-checkbox-item [class*="icheckbox_"] {
    width: 18px !important;
    height: 18px !important;
    border-radius: 4px !important;
    border: 2px solid rgba(148, 163, 184, 0.3) !important;
    background: transparent !important;
    background-image: none !important;
    position: relative !important;
    display: inline-block !important;
    vertical-align: middle !important;
    flex-shrink: 0;
    transition: all 0.15s ease;
    margin: 0 !important;
    padding: 0 !important;
}

.dt-checkbox-item .icheckbox_square-blue.checked,
.dt-checkbox-item [class*="icheckbox_"].checked {
    border-color: #3b82f6 !important;
    background: #3b82f6 !important;
    background-image: none !important;
}

.dt-checkbox-item .icheckbox_square-blue.checked::after,
.dt-checkbox-item [class*="icheckbox_"].checked::after {
    content: "✓" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 11px !important;
    color: white !important;
    line-height: 1 !important;
}

.dt-checkbox-item .icheckbox_square-blue ins,
.dt-checkbox-item [class*="icheckbox_"] ins {
    display: none !important;
}

/* ── Checkbox Premium ────────────────────────────────────────────── */
.dt-checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.dt-checkbox-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.dt-checkbox-item input[type="checkbox"] {
    display: none;
}

.dt-checkbox-indicator {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 2px solid rgba(148, 163, 184, 0.3);
    flex-shrink: 0;
    transition: all 0.15s ease;
    position: relative;
}

.dt-checkbox-item input[type="checkbox"]:checked ~ .dt-checkbox-indicator {
    background: #3b82f6;
    border-color: #3b82f6;
}

.dt-checkbox-item input[type="checkbox"]:checked ~ .dt-checkbox-indicator::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.dt-checkbox-text {
    font-size: 13px;
    color: #cbd5e1;
}

/* ── Addon Cards ──────────────────────────────────────────────────── */
.dt-addons-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dt-addon-item {
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.15s ease;
}

.dt-addon-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.dt-addon-selected {
    border-color: rgba(59, 130, 246, 0.4) !important;
    background: rgba(59, 130, 246, 0.05);
}

.dt-addon-label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    cursor: pointer;
    margin: 0;
    font-weight: 400;
}

.dt-addon-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #3b82f6;
    flex-shrink: 0;
}

.dt-addon-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dt-addon-name {
    font-size: 14px;
    font-weight: 600;
    color: #f1f5f9;
}

.dt-addon-desc {
    font-size: 12px;
    color: #94a3b8;
}

.dt-addon-price {
    font-size: 14px;
    font-weight: 700;
    color: #3b82f6;
    white-space: nowrap;
}

/* ── Order Summary Card ───────────────────────────────────────────── */
.dt-card-summary {
    background: rgba(15, 23, 42, 0.8) !important;
    border-color: rgba(59, 130, 246, 0.15) !important;
}

.dt-card-summary .summary-container {
    font-size: 13px;
    padding: 0 16px 12px !important;
}

.dt-card-summary .product-name {
    font-size: 16px;
    font-weight: 700;
    color: #f1f5f9;
    display: block;
    margin-bottom: 4px;
}

.dt-card-summary .product-group {
    font-size: 12px;
    color: #64748b;
    display: block;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.dt-card-summary .clearfix {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    font-size: 13px;
}

.dt-card-summary .clearfix .float-left,
.dt-card-summary .clearfix .pull-left {
    color: #94a3b8;
}

.dt-card-summary .clearfix .float-right,
.dt-card-summary .clearfix .pull-right {
    color: #f1f5f9;
    font-weight: 500;
}

.dt-card-summary .summary-totals {
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    margin-top: 12px;
    padding-top: 12px;
}

.dt-card-summary .total-due-today {
    text-align: center;
    padding: 20px 0 8px;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    margin-top: 12px;
}

.dt-card-summary .total-due-today .amt {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #f1f5f9;
    letter-spacing: -0.02em;
}

.dt-card-summary .total-due-today span:last-child {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Continue Button ──────────────────────────────────────────────── */
.dt-btn-continue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    margin-top: 16px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.dt-btn-continue:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.dt-btn-continue:active {
    transform: translateY(0);
}

.dt-btn-continue svg {
    transition: transform 0.2s ease;
}

.dt-btn-continue:hover svg {
    transform: translateX(4px);
}

/* ── Quantity Input ───────────────────────────────────────────────── */
.dt-qty-input {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dt-qty-input input {
    width: 80px;
}

.dt-qty-label {
    font-size: 13px;
    color: #94a3b8;
}

/* ── Field Group ──────────────────────────────────────────────────── */
.dt-field-group {
    margin-bottom: 16px;
}

.dt-field-group .form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 10px;
    color: #f1f5f9;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.dt-field-help {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #64748b;
}

/* ── Loader ───────────────────────────────────────────────────────── */
.dt-card-summary .loader {
    text-align: center;
    padding: 12px;
    color: #3b82f6;
}

/* ── Order Summary Dark Mode ─────────────────────────────────────── */
#order-standard_cart.dt-cart-premium .summary-container,
.dt-cart-premium .summary-container,
.dt-cart-premium #producttotal {
    background-color: rgba(15, 23, 42, 0.8) !important;
    color: #cbd5e1 !important;
    border-radius: 10px;
    padding: 12px 16px !important;
    min-height: 80px !important;
    font-size: 13px;
}

.dt-cart-premium .summary-container .product-name {
    display: none !important;
}

.dt-cart-premium .summary-container .product-group {
    display: none !important;
}

.dt-cart-premium .summary-container .summary-totals {
    border-top-color: rgba(148, 163, 184, 0.15) !important;
    border-bottom-color: rgba(148, 163, 184, 0.15) !important;
}

.dt-cart-premium .summary-container .subtotal {
    border-bottom-color: rgba(148, 163, 184, 0.15) !important;
    color: #e2e8f0 !important;
}

.dt-cart-premium .summary-container .bordered-totals {
    border-bottom-color: rgba(148, 163, 184, 0.15) !important;
}

/* Total due today — dikey: label üstte, fiyat altta */
.dt-cart-premium .summary-container .total-due-today {
    display: flex !important;
    flex-direction: column-reverse !important;
    align-items: center !important;
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.dt-cart-premium .summary-container .total-due-today span {
    color: #94a3b8 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.dt-cart-premium .summary-container .total-due-today .amt {
    color: #3b82f6 !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em;
    white-space: nowrap !important;
}

.dt-cart-premium .summary-container .recurring-charges {
    color: #64748b !important;
}

.dt-cart-premium .summary-container a {
    color: #60a5fa !important;
}

.dt-cart-premium .summary-container .btn-continue-shopping {
    color: #94a3b8 !important;
}

/* Order Summary wrapper dark fix */
#order-standard_cart.dt-cart-premium .order-summary {
    background-color: transparent !important;
    border-bottom: none !important;
}

#order-standard_cart.dt-cart-premium .order-summary h2 {
    display: none !important;
}

/* Summary row price alignment fix - flexbox */
.dt-cart-premium .summary-container .clearfix {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start;
    float: none !important;
    margin-bottom: 2px;
}

.dt-cart-premium .summary-container .clearfix .pull-left,
.dt-cart-premium .summary-container .clearfix .float-left {
    float: none !important;
    flex: 1;
    min-width: 0;
    padding-right: 10px;
    word-wrap: break-word;
}

.dt-cart-premium .summary-container .clearfix .pull-right,
.dt-cart-premium .summary-container .clearfix .float-right {
    float: none !important;
    white-space: nowrap;
    text-align: right;
    font-weight: 600;
    flex-shrink: 0;
}

/* ── Validation Errors ────────────────────────────────────────────── */
#order-standard_cart.dt-cart-premium .alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    color: #fca5a5;
    padding: 16px 20px;
}

#order-standard_cart.dt-cart-premium .alert-warning {
    display: none;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 992px) {
    .dt-cart-layout {
        flex-direction: column;
    }

    .dt-cart-summary {
        width: 100%;
    }

    .dt-summary-sticky {
        position: static;
    }

    .dt-options-grid {
        grid-template-columns: 1fr;
    }

    .dt-billing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .dt-page-header {
        padding: 32px 16px 24px;
    }

    .dt-cart-layout {
        padding: 0 16px 32px;
    }

    .dt-card-body {
        padding: 16px;
    }

    .dt-product-desc ul {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════════════════════
   LIGHT MODE
   ══════════════════════════════════════════════════════════════════════ */
html:not(.dark) .dt-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(148, 163, 184, 0.2);
}

html:not(.dark) .dt-card:hover {
    border-color: rgba(148, 163, 184, 0.3);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

html:not(.dark) .dt-card-header h2 {
    color: #0f172a;
}

html:not(.dark) .dt-page-title {
    color: #0f172a;
}

html:not(.dark) .dt-page-subtitle {
    color: #64748b;
}

html:not(.dark) .dt-product-name {
    color: #0f172a;
}

html:not(.dark) .dt-product-desc {
    color: #475569;
}

html:not(.dark) .dt-select {
    background: #fff;
    border-color: rgba(148, 163, 184, 0.3);
    color: #0f172a;
}

html:not(.dark) .dt-select option {
    background: #fff;
    color: #0f172a;
}

html:not(.dark) .dt-radio-item {
    background: rgba(248, 250, 252, 0.8);
    border-color: rgba(148, 163, 184, 0.2);
}

html:not(.dark) .dt-radio-text {
    color: #334155;
}

html:not(.dark) .dt-checkbox-item {
    background: rgba(248, 250, 252, 0.8);
    border-color: rgba(148, 163, 184, 0.2);
}

html:not(.dark) .dt-checkbox-text {
    color: #334155;
}

html:not(.dark) .dt-option-label {
    color: #475569;
}

html:not(.dark) .dt-card-summary {
    background: rgba(248, 250, 252, 0.95) !important;
    border-color: rgba(59, 130, 246, 0.2) !important;
}

html:not(.dark) .dt-card-summary .product-name {
    color: #0f172a;
}

html:not(.dark) .dt-card-summary .clearfix .float-left,
html:not(.dark) .dt-card-summary .clearfix .pull-left {
    color: #64748b;
}

html:not(.dark) .dt-card-summary .clearfix .float-right,
html:not(.dark) .dt-card-summary .clearfix .pull-right {
    color: #0f172a;
}

html:not(.dark) .dt-card-summary .total-due-today .amt {
    color: #0f172a;
}

html:not(.dark) .dt-addon-name {
    color: #0f172a;
}

html:not(.dark) .dt-product-desc ul li {
    background: rgba(248, 250, 252, 0.8);
    border-color: rgba(148, 163, 184, 0.15);
    color: #475569;
}

html:not(.dark) .dt-field-group .form-control {
    background: #fff;
    border-color: rgba(148, 163, 184, 0.3);
    color: #0f172a;
}

html:not(.dark) #order-standard_cart.dt-cart-premium .alert-danger {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

html:not(.dark) .dt-billing-card {
    background: rgba(248, 250, 252, 0.8);
    border-color: rgba(148, 163, 184, 0.2);
}

html:not(.dark) .dt-billing-period {
    color: #0f172a;
}

html:not(.dark) .dt-billing-price {
    color: #64748b;
}

html:not(.dark) .dt-billing-active {
    border-color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.06) !important;
}

html:not(.dark) .dt-billing-active .dt-billing-period {
    color: #2563eb;
}

/* ── Light Mode: iCheck Radio Premium ────────────────────────────── */
html:not(.dark) .dt-radio-item .iradio_square-blue,
html:not(.dark) .dt-radio-item [class*="iradio_"] {
    border-color: rgba(148, 163, 184, 0.4) !important;
    background: transparent !important;
    background-image: none !important;
}

html:not(.dark) .dt-radio-item .iradio_square-blue.checked,
html:not(.dark) .dt-radio-item [class*="iradio_"].checked {
    border-color: #3b82f6 !important;
    background: #3b82f6 !important;
    background-image: none !important;
}

html:not(.dark) .dt-radio-item:has(.iradio_square-blue.checked),
html:not(.dark) .dt-radio-item:has([class*="iradio_"].checked) {
    border-color: rgba(59, 130, 246, 0.3) !important;
    background: rgba(59, 130, 246, 0.06) !important;
}

html:not(.dark) .dt-radio-item:has(.iradio_square-blue.checked) .dt-radio-text,
html:not(.dark) .dt-radio-item:has([class*="iradio_"].checked) .dt-radio-text {
    color: #1e40af;
    font-weight: 500;
}

/* ── Light Mode: iCheck Checkbox Premium ─────────────────────────── */
html:not(.dark) .dt-checkbox-item .icheckbox_square-blue,
html:not(.dark) .dt-checkbox-item [class*="icheckbox_"] {
    border-color: rgba(148, 163, 184, 0.4) !important;
    background: transparent !important;
    background-image: none !important;
}

html:not(.dark) .dt-checkbox-item .icheckbox_square-blue.checked,
html:not(.dark) .dt-checkbox-item [class*="icheckbox_"].checked {
    border-color: #3b82f6 !important;
    background: #3b82f6 !important;
    background-image: none !important;
}

/* ── Light Mode: Summary Container ───────────────────────────────── */
html:not(.dark) #order-standard_cart.dt-cart-premium .summary-container,
html:not(.dark) .dt-cart-premium .summary-container,
html:not(.dark) .dt-cart-premium #producttotal {
    background-color: rgba(248, 250, 252, 0.95) !important;
    color: #475569 !important;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

html:not(.dark) .dt-cart-premium .summary-container .product-name {
    color: #0f172a !important;
}

html:not(.dark) .dt-cart-premium .summary-container .product-group {
    color: #64748b !important;
}

html:not(.dark) .dt-cart-premium .summary-container .summary-totals {
    border-top-color: rgba(148, 163, 184, 0.2) !important;
    border-bottom-color: rgba(148, 163, 184, 0.2) !important;
}

html:not(.dark) .dt-cart-premium .summary-container .subtotal {
    border-bottom-color: rgba(148, 163, 184, 0.2) !important;
    color: #334155 !important;
}

html:not(.dark) .dt-cart-premium .summary-container .bordered-totals {
    border-bottom-color: rgba(148, 163, 184, 0.2) !important;
}

html:not(.dark) .dt-cart-premium .summary-container .total-due-today span {
    color: #64748b !important;
}

html:not(.dark) .dt-cart-premium .summary-container .total-due-today .amt {
    color: #1e40af !important;
}

html:not(.dark) .dt-cart-premium .summary-container .clearfix .pull-left,
html:not(.dark) .dt-cart-premium .summary-container .clearfix .float-left {
    color: #64748b !important;
}

html:not(.dark) .dt-cart-premium .summary-container .clearfix .pull-right,
html:not(.dark) .dt-cart-premium .summary-container .clearfix .float-right {
    color: #0f172a !important;
}

/* ══════════════════════════════════════════════════════════════════════
   DOMAIN SEÇİM SAYFASI (configureproductdomain.tpl) — DARK MODE FIX
   ══════════════════════════════════════════════════════════════════════ */

/* Alan adı seçenek kutuları (.option blokları) */
html.dark .domain-selection-options .option {
    background-color: #1e293b !important;
    border-color: #334155 !important;
    color: #e2e8f0 !important;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
}
html.dark .domain-selection-options .option label {
    color: #cbd5e1 !important;
}
html.dark .domain-selection-options .domain-input-group {
    background-color: #162032 !important;
    border-color: #334155 !important;
}

/* Input group www prefix */
html.dark .input-group-text,
html.dark .input-group-addon span {
    background-color: #1e293b !important;
    border-color: #475569 !important;
    color: #94a3b8 !important;
}

/* Spotlight TLD kartları */
html.dark .spotlight-tld-container .spotlight-tld {
    background-color: #1e293b !important;
    border-color: #334155 !important;
    color: #e2e8f0 !important;
}
html.dark .spotlight-tld-container .spotlight-tld .available.price {
    color: #4ade80 !important;
}
html.dark .spotlight-tld-container .spotlight-tld .btn.unavailable {
    background-color: #374151 !important;
    color: #9ca3af !important;
}

/* Önerilen domain listesi */
html.dark .suggested-domains .panel-heading,
html.dark .suggested-domains .card-header {
    background-color: #162032 !important;
    border-color: #334155 !important;
    color: #f1f5f9 !important;
}
html.dark .suggested-domains .panel-body,
html.dark .suggested-domains .card-body {
    background-color: #1e293b !important;
    color: #cbd5e1 !important;
}
html.dark .suggested-domains .panel-footer,
html.dark .suggested-domains .card-footer {
    background-color: #162032 !important;
    border-color: #334155 !important;
}
html.dark .suggested-domains .domain-suggestion.list-group-item {
    background-color: #1e293b !important;
    border-color: #334155 !important;
    color: #e2e8f0 !important;
}
html.dark .suggested-domains .domain-suggestion.list-group-item:hover {
    background-color: #263348 !important;
}
html.dark .suggested-domains .domain-suggestion .domain,
html.dark .suggested-domains .domain-suggestion .extension {
    color: #f1f5f9 !important;
}
html.dark .suggested-domains .domain-suggestion .price {
    color: #4ade80 !important;
}

/* Domain arama sonuç kutusu */
html.dark #DomainSearchResults {
    background-color: #1e293b !important;
    border-color: #334155 !important;
    border-radius: 8px;
    padding: 16px;
}
html.dark .domain-checker-available.headline {
    color: #4ade80 !important;
}
html.dark .domain-checker-unavailable.headline {
    color: #f87171 !important;
}
html.dark .domain-price .price {
    color: #4ade80 !important;
}

/* Primary domain header */
html.dark .primary-domain-header {
    color: #94a3b8 !important;
    border-color: #334155 !important;
}
