
/* ============================================================
   SEPET SAYFASI — tam yeniden yazıldı
   ============================================================ */

/* Sepet ve ödeme sayfalarında geniş container */
.dlst-cart-page-body .dlst-page-content,
.dlst-checkout-page-body .dlst-page-content {
    max-width: 1200px;
}
.dlst-cart-page-body .dlst-page-title,
.dlst-checkout-page-body .dlst-page-title {
    display: none; /* dlst-cart-wrap kendi başlığını koyuyor */
}

.dlst-cart-wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* ── Boş sepet ── */
.dlst-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    gap: 16px;
}
.dlst-cart-empty-icon {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: var(--dlst-bg-card);
    border: 1px solid var(--dlst-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--dlst-text-2);
    margin-bottom: 8px;
}
.dlst-cart-empty h2 {
    font-size: 24px; font-weight: 700;
    color: var(--dlst-text); margin: 0;
}
.dlst-cart-empty p {
    color: var(--dlst-text-2); font-size: 15px; margin: 0;
}

/* ── Layout ── */
.dlst-cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}
@media (max-width: 900px) {
    .dlst-cart-layout { grid-template-columns: 1fr; }
    .dlst-cart-summary-col { order: -1; }
}

/* ── Başlık ── */
.dlst-cart-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dlst-text);
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.dlst-cart-count-badge {
    background: var(--dlst-primary-glow, rgba(245,166,35,.15));
    color: var(--dlst-primary);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* ── Sepet ürün listesi ── */
.dlst-cart-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--dlst-border);
    border-radius: 12px;
    overflow: hidden;
}

.dlst-cart-item {
    display: grid;
    grid-template-columns: 64px 1fr 110px 80px 80px 32px;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--dlst-bg-card);
    border-bottom: 1px solid var(--dlst-border);
    transition: background .2s;
}
.dlst-cart-item:last-child { border-bottom: none; }
.dlst-cart-item:hover { background: var(--dlst-bg-card-2, var(--dlst-bg-2)); }

@media (max-width: 1024px) {
    .dlst-cart-item {
        grid-template-columns: 64px 1fr 100px 80px 32px;
    }
    .dlst-cart-item-price {
        display: none;
    }
}

@media (max-width: 768px) {
    .dlst-cart-item {
        grid-template-columns: 56px 1fr auto;
        grid-template-rows: auto auto;
        gap: 10px;
        padding: 14px 14px;
    }
    .dlst-cart-item-price { display: none; }
    .dlst-cart-item-qty   { grid-column: 2; }
    .dlst-cart-item-total { grid-column: 3; grid-row: 2; text-align: right; }
    .dlst-cart-item-remove{ grid-column: 3; grid-row: 1; justify-self: end; }
}

/* Thumbnail */
.dlst-cart-item-thumb {
    width: 64px; height: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--dlst-bg-2);
    border: 1px solid var(--dlst-border);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.dlst-cart-item-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.dlst-cart-item-thumb:hover img { transform: scale(1.06); }
.dlst-cart-item-thumb-placeholder {
    font-size: 28px;
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
    text-decoration: none;
}

/* Ürün bilgisi */
.dlst-cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.dlst-cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dlst-text);
    text-decoration: none;
    white-space: normal;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dlst-cart-item-name:hover { color: var(--dlst-primary); }
.dlst-cart-item-meta {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}
.dlst-cart-item-variant {
    font-size: 11px;
    background: var(--dlst-bg-2);
    border: 1px solid var(--dlst-border);
    color: var(--dlst-text-2);
    padding: 1px 7px;
    border-radius: 4px;
}
.dlst-cart-item-license {
    font-size: 10px;
    font-weight: 700;
    background: rgba(245,166,35,.12);
    color: var(--dlst-primary);
    padding: 1px 7px;
    border-radius: 4px;
    letter-spacing: .4px;
}
.dlst-cart-item-delivery {
    font-size: 11px;
    color: #3fb950;
    font-weight: 600;
}

/* Adet kontrolü */
.dlst-qty-ctrl {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--dlst-border);
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}
.dlst-qty-btn {
    background: var(--dlst-bg-2);
    border: none;
    width: 32px; height: 36px;
    cursor: pointer;
    font-size: 17px;
    color: var(--dlst-text);
    transition: background .2s, color .2s;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.dlst-qty-btn:hover {
    background: var(--dlst-primary);
    color: #fff;
}
.dlst-qty-input {
    width: 42px;
    border: none;
    border-left: 1px solid var(--dlst-border);
    border-right: 1px solid var(--dlst-border);
    background: var(--dlst-bg-card);
    color: var(--dlst-text);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 0;
    height: 36px;
    -moz-appearance: textfield;
}
.dlst-qty-input::-webkit-inner-spin-button,
.dlst-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.dlst-qty-input:focus { outline: none; }

/* Fiyatlar */
.dlst-cart-item-price {
    font-size: 14px;
    color: var(--dlst-text-2);
    text-align: center;
    white-space: nowrap;
}
.dlst-cart-item-total {
    font-size: 15px;
    font-weight: 700;
    color: var(--dlst-text);
    text-align: right;
    white-space: nowrap;
}

/* Sil butonu */
.dlst-cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dlst-text-2);
    width: 32px; height: 32px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, color .2s;
    flex-shrink: 0;
}
.dlst-cart-item-remove:hover {
    background: rgba(248,81,73,.12);
    color: #f85149;
}

/* ── Alışverişe devam ── */
.dlst-cart-continue {
    margin-top: 16px;
}
.dlst-cart-continue-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--dlst-text-2);
    text-decoration: none;
    transition: color .2s;
}
.dlst-cart-continue-link:hover { color: var(--dlst-primary); }

/* ── Cross-sell ── */
.dlst-cart-crosssell {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--dlst-border);
}
.dlst-cart-crosssell h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dlst-text);
    margin: 0 0 16px;
}
.dlst-crosssell-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
@media (max-width: 600px) {
    .dlst-crosssell-grid { grid-template-columns: 1fr; }
}
.dlst-crosssell-card {
    background: var(--dlst-bg-card);
    border: 1px solid var(--dlst-border);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    transition: border-color .2s;
}
.dlst-crosssell-card:hover { border-color: var(--dlst-primary); }
.dlst-crosssell-thumb {
    width: 100%; aspect-ratio: 16/9;
    background: var(--dlst-bg-2);
    border-radius: 7px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
}
.dlst-crosssell-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dlst-crosssell-info { width: 100%; }
.dlst-crosssell-name {
    font-size: 13px; font-weight: 600;
    color: var(--dlst-text); text-decoration: none;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    line-height: 1.4;
}
.dlst-crosssell-name:hover { color: var(--dlst-primary); }
.dlst-crosssell-price {
    display: block;
    font-size: 14px; font-weight: 700;
    color: var(--dlst-primary);
    margin-top: 4px;
}

/* ── Özet kartı ── */
.dlst-cart-summary-card {
    background: var(--dlst-bg-card);
    border: 1px solid var(--dlst-border);
    border-radius: 14px;
    padding: 24px;
    position: sticky;
    top: 80px;
}
.dlst-cart-summary-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dlst-text);
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--dlst-border);
}

/* Özet satırlar */
.dlst-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.dlst-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--dlst-text-2);
}
.dlst-summary-row--discount { color: #3fb950; }
.dlst-discount-amount { font-weight: 700; }

/* Kupon chip */
.dlst-coupon-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(63,185,80,.1);
    color: #3fb950;
    border: 1px solid rgba(63,185,80,.25);
    padding: 1px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 4px;
}
.dlst-coupon-chip button {
    background: none; border: none; cursor: pointer;
    color: inherit; font-size: 13px; line-height: 1;
    padding: 0 1px;
}

/* Toplam */
.dlst-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 0;
    border-top: 1px solid var(--dlst-border);
    border-bottom: 1px solid var(--dlst-border);
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--dlst-text);
    font-weight: 600;
}
.dlst-summary-total strong {
    font-size: 22px;
    font-weight: 900;
    color: var(--dlst-primary);
}

/* Kupon bölümü */
.dlst-coupon-section { margin-bottom: 16px; }
.dlst-coupon-form {
    display: flex;
    gap: 8px;
}
.dlst-coupon-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid var(--dlst-border);
    border-radius: 8px;
    background: var(--dlst-bg-2);
    color: var(--dlst-text);
    font-size: 13px;
    transition: border-color .2s;
}
.dlst-coupon-form input:focus {
    outline: none;
    border-color: var(--dlst-primary);
}
.dlst-coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(63,185,80,.08);
    border: 1px solid rgba(63,185,80,.2);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--dlst-text);
}
.dlst-coupon-remove-btn {
    background: none; border: none; cursor: pointer;
    color: #f85149; font-size: 12px; font-weight: 600;
    text-decoration: underline;
}
.dlst-coupon-msg {
    font-size: 12px;
    margin-top: 6px;
    min-height: 18px;
}
.dlst-coupon-msg--error { color: #f85149; }
.dlst-coupon-msg--success { color: #3fb950; }

/* Checkout butonu */
.dlst-checkout-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    margin-bottom: 16px;
    gap: 8px;
}

/* Güven satırı */
.dlst-cart-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 14px;
}
.dlst-cart-trust span {
    font-size: 11px;
    background: var(--dlst-bg-2);
    border: 1px solid var(--dlst-border);
    border-radius: 6px;
    padding: 6px 8px;
    text-align: center;
    color: var(--dlst-text-2);
}

/* Ödeme ikonları */
.dlst-cart-pay-icons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}
.dlst-pay-icon-pill {
    font-size: 10px;
    font-weight: 700;
    background: var(--dlst-bg-2);
    border: 1px solid var(--dlst-border);
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--dlst-text-2);
}

/* ── Buton sistemi ── */
.dlst-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
}
.dlst-btn-primary {
    background: var(--dlst-primary);
    color: #fff;
}
.dlst-btn-primary:hover {
    background: var(--dlst-primary-dark, #e6941a);
    color: #fff;
    transform: translateY(-1px);
}
.dlst-btn-ghost {
    background: var(--dlst-bg-2);
    color: var(--dlst-text);
    border: 1.5px solid var(--dlst-border);
}
.dlst-btn-ghost:hover {
    border-color: var(--dlst-primary);
    color: var(--dlst-primary);
}
.dlst-btn-outline {
    background: transparent;
    border: 1.5px solid var(--dlst-primary);
    color: var(--dlst-primary);
}
.dlst-btn-outline:hover {
    background: var(--dlst-primary);
    color: #fff;
}
.dlst-btn-sm { padding: 6px 12px; font-size: 12px; }
.dlst-btn-full { width: 100%; justify-content: center; }

/* ── Cross-sell kartları ── */
.dlst-cs-card {
    background: var(--dlst-bg-card);
    border: 1px solid var(--dlst-border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s, transform .2s;
}
.dlst-cs-card:hover {
    border-color: var(--dlst-primary);
    transform: translateY(-2px);
}
.dlst-cs-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--dlst-bg-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    overflow: hidden;
}
.dlst-cs-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dlst-cs-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.dlst-cs-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--dlst-text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}
.dlst-cs-name:hover { color: var(--dlst-primary); }
.dlst-cs-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--dlst-primary);
}
.dlst-cs-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    padding: 8px 10px;
    background: var(--dlst-primary);
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
.dlst-cs-btn:hover {
    background: var(--dlst-primary-dark, #e6941a);
    transform: translateY(-1px);
}
.dlst-cs-nostock {
    font-size: 11px;
    color: var(--dlst-text-2);
    text-align: center;
    padding: 6px 0;
}

/* ── Sepet grid ── */
.dlst-cart-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}
@media (max-width: 860px) {
    .dlst-cart-grid { grid-template-columns: 1fr; }
    .dlst-cart-grid > div:last-child { order: 1; }
}

/* ── Sepet item grid ── */
.dlst-cart-item {
    display: grid;
    grid-template-columns: 72px 1fr 120px 80px 90px 32px;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--dlst-bg-card);
    border-bottom: 1px solid var(--dlst-border);
    transition: background .15s;
}
.dlst-cart-item:last-child { border-bottom: none; }
.dlst-cart-item:hover { background: var(--dlst-bg-card-2, var(--dlst-bg-2)); }

@media (max-width: 640px) {
    .dlst-cart-item {
        grid-template-columns: 56px 1fr auto;
        grid-template-rows: auto auto;
        gap: 8px;
        padding: 12px;
    }
    .dlst-item-unit-price { display: none; }
    .dlst-item-qty { grid-column: 2; grid-row: 2; }
    .dlst-item-total { grid-column: 3; grid-row: 2; text-align: right; font-size: 14px; }
    .dlst-item-remove { grid-column: 3; grid-row: 1; justify-self: end; }
    .dlst-item-thumb {
        grid-row: 1 / span 2;
        width: 56px !important;
        height: 56px !important;
    }
    .dlst-item-name {
        white-space: normal !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
}

/* ── Item thumb ── */
.dlst-item-thumb {
    width: 72px; height: 72px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--dlst-bg-2);
    border: 1px solid var(--dlst-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}
.dlst-item-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ── Item info ── */
.dlst-item-info { min-width: 0; }
.dlst-item-name {
    font-size: 14px; font-weight: 600;
    color: var(--dlst-text);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    margin-bottom: 5px;
}
.dlst-item-name:hover { color: var(--dlst-primary); }
.dlst-item-pills { display: flex; gap: 5px; flex-wrap: wrap; }
.dlst-pill { font-size: 10px; font-weight: 700; padding: 1px 6px; border-radius: 4px; text-transform: uppercase; letter-spacing: .3px; }
.dlst-pill-license { background: rgba(245,166,35,.15); color: var(--dlst-primary); }
.dlst-pill-variant { background: var(--dlst-bg-2); border: 1px solid var(--dlst-border); color: var(--dlst-text-2); }
.dlst-pill-instant { background: rgba(63,185,80,.1); color: #3fb950; }

/* ── Qty ── */
.dlst-item-qty { display: flex; }
.dlst-qty-ctrl {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--dlst-border);
    border-radius: 7px;
    overflow: hidden;
}
.dlst-qty-btn {
    background: var(--dlst-bg-2);
    border: none;
    width: 30px; height: 32px;
    cursor: pointer;
    font-size: 16px;
    color: var(--dlst-text);
    transition: background .15s;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.dlst-qty-btn:hover { background: var(--dlst-primary); color: #fff; }
.dlst-qty-input {
    width: 38px; height: 32px;
    border: none;
    border-left: 1px solid var(--dlst-border);
    border-right: 1px solid var(--dlst-border);
    background: var(--dlst-bg-card);
    color: var(--dlst-text);
    font-size: 13px; font-weight: 600;
    text-align: center;
    -moz-appearance: textfield;
}
.dlst-qty-input::-webkit-inner-spin-button,
.dlst-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.dlst-qty-input:focus { outline: none; }

/* ── Fiyatlar ── */
.dlst-item-unit-price { font-size: 13px; color: var(--dlst-text-2); text-align: center; white-space: nowrap; }
.dlst-item-total { font-size: 15px; font-weight: 700; color: var(--dlst-text); text-align: right; white-space: nowrap; }

/* ── Sil butonu ── */
.dlst-item-remove {
    background: none; border: none; cursor: pointer;
    color: var(--dlst-text-2);
    width: 28px; height: 28px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s, color .15s;
}
.dlst-item-remove:hover { background: rgba(248,81,73,.12); color: #f85149; }

/* ── Summary card ── */
.dlst-summary-card {
    background: var(--dlst-bg-card);
    border: 1px solid var(--dlst-border);
    border-radius: 14px;
    overflow: hidden;
    position: sticky;
    top: 80px;
}
.dlst-summary-header { padding: 16px 18px 12px; border-bottom: 1px solid var(--dlst-border); }
.dlst-summary-header h3 { font-size: 15px; font-weight: 700; color: var(--dlst-text); margin: 0; }
.dlst-summary-body { padding: 14px 18px; display: flex; flex-direction: column; gap: 10px; }
.dlst-summary-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--dlst-text-2); }
.dlst-coupon-tag { display: inline-flex; align-items: center; gap: 3px; background: rgba(63,185,80,.1); border: 1px solid rgba(63,185,80,.2); color: #3fb950; padding: 1px 6px; border-radius: 20px; font-size: 10px; font-weight: 700; margin-left: 4px; }
.dlst-coupon-tag button { background: none; border: none; cursor: pointer; color: inherit; padding: 0; font-size: 12px; }
.dlst-summary-total { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 18px; border-top: 1px solid var(--dlst-border); border-bottom: 1px solid var(--dlst-border); font-size: 15px; font-weight: 600; color: var(--dlst-text); }
.dlst-summary-total strong { font-size: 22px; font-weight: 900; color: var(--dlst-primary); }
.dlst-coupon-wrap { padding: 0 18px 12px; }
.dlst-coupon-applied-bar { display: flex; justify-content: space-between; align-items: center; background: rgba(63,185,80,.08); border: 1px solid rgba(63,185,80,.2); border-radius: 7px; padding: 9px 12px; font-size: 13px; color: var(--dlst-text); }
.dlst-coupon-remove { background: none; border: none; cursor: pointer; color: #f85149; font-size: 12px; font-weight: 600; text-decoration: underline; }
.dlst-coupon-fields { display: flex; gap: 7px; }
.dlst-coupon-input { flex: 1; padding: 8px 11px; border: 1.5px solid var(--dlst-border); border-radius: 7px; background: var(--dlst-bg-2); color: var(--dlst-text); font-size: 13px; }
.dlst-coupon-input:focus { outline: none; border-color: var(--dlst-primary); }
.dlst-coupon-apply { background: var(--dlst-bg-2); border: 1.5px solid var(--dlst-border); color: var(--dlst-text); padding: 8px 12px; border-radius: 7px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .15s; white-space: nowrap; }
.dlst-coupon-apply:hover { border-color: var(--dlst-primary); color: var(--dlst-primary); }
.dlst-checkout-wrap { padding: 0 18px 12px; }
.dlst-btn-checkout { display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%; padding: 13px; border-radius: 9px; border: none; background: var(--dlst-primary); color: #fff; font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none; transition: background .2s, transform .15s; }
.dlst-btn-checkout:hover { background: var(--dlst-primary-dark, #e6941a); color: #fff; transform: translateY(-1px); }
.dlst-trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 0 18px 16px; }
.dlst-trust-cell { background: var(--dlst-bg-2); border: 1px solid var(--dlst-border); border-radius: 6px; padding: 6px 8px; font-size: 11px; color: var(--dlst-text-2); text-align: center; }

/* ════════════════════════════════════════
   CHECKOUT SAYFASI
   ════════════════════════════════════════ */

.dlstore-checkout-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.dlstore-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

@media (max-width: 860px) {
    .dlstore-checkout-layout {
        grid-template-columns: 1fr;
    }
    /* Mobilde özet forma geçiş kolaylaştırsın diye alta gidiyor, sticky kalkıyor */
    .dlstore-checkout-summary {
        order: 2;
        position: static;
    }
}

/* ── Form wrap ── */
.dlstore-checkout-form-wrap h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dlst-text);
    margin: 0 0 24px;
}

/* ── Yüzen etiket (floating label) ── */
.dlst-form-group-floating {
    position: relative;
    margin-bottom: 20px;
}

.dlst-form-group-floating .dlst-input-field {
    width: 100%;
    height: 58px;
    padding: 22px 16px 8px;
    border: 1.5px solid var(--dlst-border);
    border-radius: 10px;
    background: var(--dlst-bg-card);
    color: var(--dlst-text);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

.dlst-form-group-floating .dlst-input-field:focus {
    border-color: var(--dlst-primary);
    box-shadow: 0 0 0 3px var(--dlst-primary-glow, rgba(245,166,35,.15));
}

.dlst-form-group-floating label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--dlst-text-2);
    pointer-events: none;
    transition: top .18s ease, transform .18s ease, font-size .18s ease, color .18s ease;
    line-height: 1;
    white-space: nowrap;
}

/* Odaklanınca VEYA içi doluyken label yukarı kaç */
.dlst-form-group-floating .dlst-input-field:focus ~ label,
.dlst-form-group-floating .dlst-input-field:not(:placeholder-shown) ~ label {
    top: 12px;
    transform: none;
    font-size: 11px;
    font-weight: 600;
    color: var(--dlst-primary);
}

.dlst-form-group-floating .description {
    font-size: 11px;
    color: var(--dlst-text-2);
    margin-top: 6px;
    padding-left: 4px;
}

/* ── Ödeme yöntemleri ── */
.dlstore-payment-methods {
    margin-top: 28px;
}

.dlstore-payment-methods h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dlst-text);
    margin: 0 0 14px;
}

.dlstore-payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1.5px solid var(--dlst-border);
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    font-size: 14px;
    font-weight: 500;
    color: var(--dlst-text);
}

.dlstore-payment-option input[type="radio"] {
    accent-color: var(--dlst-primary);
    width: 16px; height: 16px;
    flex-shrink: 0;
}

.dlstore-payment-option.active,
.dlstore-payment-option:hover {
    border-color: var(--dlst-primary);
    background: var(--dlst-primary-glow, rgba(245,166,35,.06));
}

.dlst-havale-info {
    margin-top: 8px;
    padding: 14px 16px;
    background: var(--dlst-bg-2);
    border: 1px solid var(--dlst-border);
    border-radius: 8px;
    font-size: 13px;
    color: var(--dlst-text);
    line-height: 1.8;
    white-space: pre-line;
}

/* ── Premium buton ── */
.dlst-btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--dlst-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 16px var(--dlst-primary-glow, rgba(245,166,35,.3));
}

.dlst-btn-premium:hover {
    background: var(--dlst-primary-dark, #e6941a);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--dlst-primary-glow, rgba(245,166,35,.4));
}

.dlst-btn-premium.dlst-btn-full { width: 100%; }

.dlst-btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: transparent;
    color: var(--dlst-text);
    border: 1.5px solid var(--dlst-border);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .2s, color .2s;
}

.dlst-btn-secondary-outline:hover {
    border-color: var(--dlst-primary);
    color: var(--dlst-primary);
}

.dlst-place-order-btn { min-height: 52px; }

/* ── Link ── */
.dlst-link {
    color: var(--dlst-primary);
    text-decoration: underline;
}
.dlst-link:hover { color: var(--dlst-primary-dark, #e6941a); }

/* ── Checkout özeti ── */
.dlstore-checkout-summary {
    background: var(--dlst-bg-card);
    border: 1px solid var(--dlst-border);
    border-radius: 14px;
    padding: 24px;
    position: sticky;
    top: 80px;
}

.dlstore-checkout-summary h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dlst-text);
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--dlst-border);
}

.dlstore-checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--dlst-text-2);
    padding: 8px 0;
    border-bottom: 1px solid var(--dlst-border);
    gap: 12px;
}

.dlstore-checkout-item:last-of-type { border-bottom: none; }

.dlstore-checkout-grand {
    padding: 14px 0 6px;
    font-size: 15px;
    color: var(--dlst-text);
    border-top: 2px solid var(--dlst-border) !important;
    margin-top: 4px;
}

.dlstore-checkout-grand strong:last-child {
    font-size: 20px;
    color: var(--dlst-primary);
}

.dlstore-checkout-trust {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--dlst-border);
}

.dlstore-checkout-trust div {
    flex: 1;
    min-width: 80px;
    font-size: 11px;
    font-weight: 600;
    color: var(--dlst-text-2);
    background: var(--dlst-bg-2);
    border: 1px solid var(--dlst-border);
    border-radius: 6px;
    padding: 7px 6px;
    text-align: center;
}

/* ── Checkout giriş prompt ── */
.dlst-checkout-login-prompt {
    max-width: 480px;
    margin: 60px auto;
}

.dlst-account-card {
    background: var(--dlst-bg-card);
    border: 1px solid var(--dlst-border);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dlst-card-glow {
    position: absolute;
    top: -80px; left: 50%; transform: translateX(-50%);
    width: 300px; height: 200px;
    background: radial-gradient(circle, var(--dlst-primary-glow, rgba(245,166,35,.15)) 0%, transparent 70%);
    pointer-events: none;
}

.dlst-checkout-icon-wrap {
    margin: 0 auto 20px;
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--dlst-bg-2);
    border: 1px solid var(--dlst-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--dlst-text-2);
}

.dlst-checkout-cta-card h2 {
    font-size: 20px; font-weight: 800;
    color: var(--dlst-text); margin: 0 0 12px;
}

.dlst-checkout-cta-card p {
    font-size: 14px; color: var(--dlst-text-2);
    line-height: 1.7; margin: 0 0 28px;
}

.dlst-checkout-cta-actions {
    display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}

/* ════════════════════════════════════════
   SEPET BADGE (HEADER)
   ════════════════════════════════════════ */

/* ── Sepet badge (header) ── */
#dlst-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--dlst-primary);
    color: #fff;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    font-size: 10px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    pointer-events: none;
    z-index: 10;
    line-height: 1;
}
/* display JS tarafından cssText ile yönetilir (flex/none) */

/* ════════════════════════════════════════
   EFT / HAV ALE BİLDİRİM FORMU & BİLGİ KUTUSU
   ════════════════════════════════════════ */
.dlst-eft-info-box {
    background: var(--dlst-bg-card, #ffffff);
    border: 1.5px solid var(--dlst-border, #d0d7de);
    border-radius: 14px;
    padding: 22px 24px;
    margin: 24px auto;
    max-width: 620px;
}
.dlst-eft-info-box h3 {
    font-size: 15px; font-weight: 700;
    color: var(--dlst-text, #e6edf3);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--dlst-border, rgba(255,255,255,.08));
}
.dlst-eft-info-rows {
    font-size: 13px;
    color: var(--dlst-text, #e6edf3);
    line-height: 2;
    white-space: pre-line;
    margin-bottom: 12px;
}
.dlst-eft-ref-row, .dlst-eft-amount-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 12px;
    border-radius: 8px;
    background: var(--dlst-bg-2, #f6f8fa);
    border: 1px solid var(--dlst-border, #d0d7de);
    margin-top: 8px;
    font-size: 14px;
    color: var(--dlst-text-2, #555);
}
.dlst-eft-ref-code {
    font-family: monospace;
    font-size: 15px;
    font-weight: 800;
    color: var(--dlst-primary, #f5a623);
    letter-spacing: 1px;
}
.dlst-eft-amount-row strong { font-size: 18px; font-weight: 800; color: var(--dlst-primary, #f5a623); }
.dlst-copy-btn {
    background: var(--dlst-primary, #f5a623);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    margin-left: auto;
}
.dlst-copy-btn:hover { background: var(--dlst-primary-dark, #e6941a); }

/* Bildirim Formu */
.dlst-eft-notif-box {
    background: var(--dlst-bg-card, #ffffff);
    border: 1.5px solid var(--dlst-border, #d0d7de);
    border-radius: 14px;
    padding: 24px;
    margin: 20px auto;
    max-width: 620px;
}
.dlst-eft-notif-box h3 {
    font-size: 16px; font-weight: 700;
    color: var(--dlst-text, #e6edf3);
    margin: 0 0 8px;
}
.dlst-eft-notif-desc {
    font-size: 13px;
    color: var(--dlst-text-2, #8b949e);
    margin: 0 0 20px;
}
.dlst-eft-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 600px) { .dlst-eft-form-grid { grid-template-columns: 1fr; } }
.dlst-eft-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.dlst-eft-form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--dlst-text-2, #8b949e);
    text-transform: uppercase;
    letter-spacing: .4px;
}
.dlst-eft-form-group input,
.dlst-eft-form-group select,
.dlst-eft-form-group textarea {
    padding: 10px 12px;
    border: 1.5px solid var(--dlst-border, #d0d7de);
    border-radius: 8px;
    background: var(--dlst-bg-2, #ffffff);
    color: var(--dlst-text, #1a1d2e);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
    box-sizing: border-box;
    appearance: auto;
}
.dlst-eft-form-group input:focus,
.dlst-eft-form-group select:focus,
.dlst-eft-form-group textarea:focus {
    border-color: var(--dlst-primary, #f5a623);
    box-shadow: 0 0 0 3px var(--dlst-primary-glow, rgba(245,166,35,.15));
}

/* Karanlık mod */
[data-theme="dark"] .dlst-eft-form-group input,
[data-theme="dark"] .dlst-eft-form-group select,
[data-theme="dark"] .dlst-eft-form-group textarea {
    background: #161b22;
    color: #e6edf3;
    border-color: rgba(255,255,255,.12);
}

/* Select option — açık modda sistem rengi, karanlık modda koyu arka plan */
.dlst-eft-form-group select option {
    background: var(--dlst-bg-2, #ffffff);
    color: var(--dlst-text, #1a1d2e);
}
[data-theme="dark"] .dlst-eft-form-group select option {
    background: #1c2128;
    color: #e6edf3;
}

/* Başarı kartı */
.dlst-eft-success-card {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    gap: 12px;
}
.dlst-eft-success-card.show { display: flex; }
.dlst-eft-success-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(63,185,80,.12);
    border: 2px solid rgba(63,185,80,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
}
.dlst-eft-success-card h4 {
    font-size: 18px; font-weight: 800;
    color: var(--dlst-text, #1a1d2e);
    margin: 0;
}
.dlst-eft-success-card p {
    font-size: 14px;
    color: var(--dlst-text-2, #8b949e);
    margin: 0;
    line-height: 1.6;
}

.dlst-eft-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    margin-top: 18px;
    background: var(--dlst-primary, #f5a623);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
.dlst-eft-submit-btn:hover:not(:disabled) {
    background: var(--dlst-primary-dark, #e6941a);
    transform: translateY(-1px);
}
.dlst-eft-submit-btn:disabled { opacity: .7; cursor: not-allowed; }


/* ════════════════════════════════════════
   SHOPİER INLINE IFRAME
   ════════════════════════════════════════ */

.dlst-shopier-inline {
    width: 100%;
    min-width: 0;
    align-self: start;
    border: 1px solid var(--dlst-border, rgba(255,255,255,.08));
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--dlst-shadow, 0 4px 24px rgba(0,0,0,.12));
    animation: dlst-fadein .3s ease;
}

@keyframes dlst-fadein {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: none; }
}

/* Üst bilgi çubuğu */
.dlst-shopier-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: var(--dlst-primary);
    color: #fff;
    gap: 12px;
    flex-wrap: wrap;
}

.dlst-shopier-back-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.15);
    border: none;
    border-radius: 7px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    padding: 6px 12px;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}
.dlst-shopier-back-btn:hover { background: rgba(255,255,255,.28); }

.dlst-shopier-topbar-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    flex: 1;
    justify-content: center;
}

.dlst-shopier-topbar-order {
    font-size: 12px;
    background: rgba(255,255,255,.2);
    padding: 2px 9px;
    border-radius: 20px;
    font-weight: 600;
}

.dlst-shopier-topbar-timer {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    white-space: nowrap;
    background: rgba(0,0,0,.2);
    padding: 5px 10px;
    border-radius: 7px;
}

#dlst-shopier-timer {
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: .5px;
}

/* Yükleniyor */
.dlst-shopier-loading-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 640px;
    background: var(--dlst-bg-card, #1c2128);
    color: var(--dlst-text, #e6edf3);
}
.dlst-shopier-loading-inline p {
    font-size: 15px; font-weight: 600; margin: 0;
}
.dlst-shopier-loading-inline small {
    font-size: 12px; color: var(--dlst-text-2, #8b949e); text-align: center;
}

/* Spinner */
.dlst-shopier-spinner {
    width: 46px; height: 46px;
    border: 3px solid rgba(255,255,255,.1);
    border-top-color: var(--dlst-primary, #f5a623);
    border-radius: 50%;
    animation: dlst-spin .8s linear infinite;
}

/* iFrame — tam genişlik, yüksek */
.dlst-shopier-iframe-inline {
    width: 100%;
    height: 640px;
    border: none;
    display: block;
    background: #fff;
}

@media (max-width: 768px) {
    .dlst-shopier-topbar { border-radius: 10px 10px 0 0; }
    .dlst-shopier-iframe-inline { height: 85vh; min-height: 500px; }
    .dlst-shopier-topbar-info span:not(.dlst-shopier-topbar-order) { display: none; }
}


/* ════════════════════════════════════════
   ÖDEME SONUÇ KARTLARI (Teşekkür / İptal)
   ════════════════════════════════════════ */

.dlst-result-card {
    max-width: 560px;
    margin: 48px auto;
    text-align: center;
    padding: 48px 32px;
    background: var(--dlst-bg-card, #1c2128);
    border: 1.5px solid var(--dlst-border, rgba(255,255,255,.08));
    border-radius: 18px;
}

.dlst-result-icon { font-size: 52px; margin-bottom: 16px; }

.dlst-result-card h1 {
    font-size: 24px; font-weight: 800;
    color: var(--dlst-text, #e6edf3);
    margin: 0 0 12px;
}

.dlst-result-card p {
    font-size: 14px; line-height: 1.7;
    color: var(--dlst-text-2, #8b949e);
    margin: 0 0 24px;
}

.dlst-result-cancel  { border-color: rgba(248,81,73,.25);  }
.dlst-result-cancel .dlst-result-icon { filter: grayscale(.2); }

.dlst-result-notfound { border-color: rgba(139,148,158,.2); }

.dlst-result-order-info {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dlst-bg-2, #161b22);
    border: 1px solid var(--dlst-border, rgba(255,255,255,.06));
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--dlst-text-2, #8b949e);
    margin-bottom: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.dlst-result-order-info code {
    font-family: monospace;
    font-weight: 700;
    color: var(--dlst-primary, #f5a623);
    font-size: 14px;
}

.dlst-result-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.dlst-result-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all .2s;
}

.dlst-result-btn-primary {
    background: var(--dlst-primary, #f5a623);
    color: #fff;
}
.dlst-result-btn-primary:hover {
    background: var(--dlst-primary-dark, #e6941a);
    color: #fff;
    transform: translateY(-1px);
}

.dlst-result-btn-secondary {
    background: var(--dlst-bg-2, #161b22);
    color: var(--dlst-text, #e6edf3);
    border: 1.5px solid var(--dlst-border, rgba(255,255,255,.1));
}
.dlst-result-btn-secondary:hover {
    border-color: var(--dlst-primary, #f5a623);
    color: var(--dlst-primary, #f5a623);
}

/* ════════════════════════════════════════
   CHECKOUT SAYFASI İPTAL BİLDİRİMİ
   ════════════════════════════════════════ */

.dlst-payment-cancelled-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(248,81,73,.07);
    border: 1.5px solid rgba(248,81,73,.22);
    border-radius: 12px;
    margin-bottom: 24px;
}

.dlst-pcn-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }

.dlst-pcn-body { flex: 1; }
.dlst-pcn-body strong { font-size: 15px; font-weight: 700; color: var(--dlst-text, #e6edf3); display: block; margin-bottom: 4px; }
.dlst-pcn-body p { font-size: 13px; color: var(--dlst-text-2, #8b949e); margin: 0 0 10px; line-height: 1.6; }

.dlst-pcn-order-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dlst-bg-2, #161b22);
    border: 1px solid var(--dlst-border, rgba(255,255,255,.06));
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    color: var(--dlst-text-2, #8b949e);
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.dlst-pcn-order-info code { font-family: monospace; font-weight: 700; color: var(--dlst-primary, #f5a623); }
.dlst-pcn-amount { font-weight: 700; color: var(--dlst-text, #e6edf3); }

.dlst-pcn-items {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.dlst-pcn-items span {
    font-size: 11px;
    background: var(--dlst-bg-card, #1c2128);
    border: 1px solid var(--dlst-border, rgba(255,255,255,.06));
    color: var(--dlst-text-2, #8b949e);
    padding: 2px 8px;
    border-radius: 4px;
}

/* ════════════════════════════════════════
   SHOPIER İNLINE İPTAL MESAJI
   ════════════════════════════════════════ */

.dlst-shopier-cancel-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px 24px;
    background: var(--dlst-bg-card, #1c2128);
    text-align: center;
    min-height: 500px;
}

.dlst-shopier-cancel-icon { font-size: 48px; }

.dlst-shopier-cancel-msg h3 {
    font-size: 20px; font-weight: 800;
    color: var(--dlst-text, #e6edf3);
    margin: 0;
}
.dlst-shopier-cancel-msg p {
    font-size: 14px;
    color: var(--dlst-text-2, #8b949e);
    margin: 0;
}

.dlst-shopier-retry-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 11px 22px;
    background: var(--dlst-primary, #f5a623);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s;
}
.dlst-shopier-retry-btn:hover { background: var(--dlst-primary-dark, #e6941a); }


/* ════════════════════════════════════════
   CHECKOUT KUPON ALANI
   ════════════════════════════════════════ */
.dlst-co-coupon-box {
    display: flex;
    gap: 8px;
    margin: 12px 0 6px;
}
.dlst-co-coupon-box input {
    flex: 1;
    min-width: 0;
    padding: 9px 12px;
    border: 1.5px solid var(--dlst-border, #d0d7de);
    border-radius: 8px;
    background: var(--dlst-bg-2, #fff);
    color: var(--dlst-text, #1a1d2e);
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
}
[data-theme="dark"] .dlst-co-coupon-box input {
    background: #161b22;
    color: #e6edf3;
    border-color: rgba(255,255,255,.12);
}
.dlst-co-coupon-box input:focus { border-color: var(--dlst-primary, #f5a623); }
.dlst-co-coupon-box button {
    padding: 9px 16px;
    background: var(--dlst-bg-2, #f0f2f5);
    border: 1.5px solid var(--dlst-border, #d0d7de);
    border-radius: 8px;
    color: var(--dlst-text, #1a1d2e);
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s;
}
[data-theme="dark"] .dlst-co-coupon-box button {
    background: #21262d;
    color: #e6edf3;
    border-color: rgba(255,255,255,.12);
}
.dlst-co-coupon-box button:hover {
    border-color: var(--dlst-primary, #f5a623);
    color: var(--dlst-primary, #f5a623);
}
.dlst-co-coupon-msg {
    font-size: 12px;
    min-height: 16px;
    margin-bottom: 4px;
}
.dlst-co-coupon-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(63,185,80,.12);
    color: #3fb950;
    border: 1px solid rgba(63,185,80,.28);
    padding: 1px 4px 1px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 6px;
}
.dlst-co-coupon-tag button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    padding: 0 2px;
}

