/* Evdema — Sepet sayfası modern UI */
body:has(.sepet-page) {
  background: #f5f5f5 !important;
}

.sepet-page .cell {
  background-color: transparent !important;
}

.sepet-page {
  --sp-orange: #f4822e;
  --sp-orange-hover: #e07020;
  --sp-text: #1a1a17;
  --sp-muted: #6b7280;
  --sp-line: #e8e8e8;
  --sp-bg: #f5f5f5;
  --sp-card: #fff;
  --sp-radius: 14px;
  --sp-danger: #dc2626;
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 48px;
  background: transparent;
  font-family: 'Poppins', sans-serif !important;
  color: var(--sp-text);
}

.sepet-page *,
.sepet-page *::before,
.sepet-page *::after {
  box-sizing: border-box;
}

/* Adım göstergesi */
.sepet-steps {
  margin: 0 0 16px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.03);
}

.sepet-steps-track {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  gap: 0;
}

.sepet-step {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  position: relative;
  z-index: 1;
  transition: color .2s ease;
}

.sepet-step .sepet-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f8fafc;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
  border: 1.5px solid #e2e8f0;
  box-shadow: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.sepet-step .sepet-step-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.sepet-step-line {
  flex: 1 1 auto;
  height: 1px;
  min-width: 28px;
  max-width: 72px;
  margin: 0 10px;
  background: #e2e8f0;
  border-radius: 1px;
  align-self: center;
  position: relative;
  top: 0;
}

.sepet-step.is-active {
  color: var(--sp-text);
  background: transparent;
}

.sepet-step.is-active .sepet-step-num {
  background: var(--sp-orange);
  border-color: var(--sp-orange);
  color: #fff;
  box-shadow: 0 2px 8px rgba(244, 130, 46, 0.28);
  transform: none;
}

.sepet-step.is-active .sepet-step-label {
  color: var(--sp-orange);
  font-weight: 700;
}

.sepet-step.is-done {
  color: var(--sp-text);
}

.sepet-step.is-done .sepet-step-num {
  background: #fff;
  border-color: var(--sp-orange);
  color: var(--sp-orange);
  box-shadow: none;
  font-size: 0;
}

.sepet-step.is-done .sepet-step-num::before {
  content: '✓';
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: var(--sp-orange);
}

.sepet-step.is-done .sepet-step-label {
  color: var(--sp-text);
}

/* Tamamlanan adımlar arası çizgi turuncu */
.sepet-step.is-done + .sepet-step-line {
  background: linear-gradient(90deg, var(--sp-orange), #fdba74);
}

.sepet-step.is-active + .sepet-step-line {
  background: #e2e8f0;
}

.sepet-step-sep {
  display: none;
}

@media (max-width: 560px) {
  .sepet-steps {
    padding: 8px 10px;
  }

  .sepet-steps-track {
    max-width: 100%;
  }

  .sepet-step .sepet-step-num {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }

  .sepet-step .sepet-step-label {
    font-size: 11px;
  }

  .sepet-step-line {
    min-width: 16px;
    margin: 0 6px;
  }
}

/* Ücretsiz kargo banner */
.sepet-page .ucretsiz_kargo_div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid #fed7aa;
  border-radius: var(--sp-radius);
}

.sepet-page .ucretsiz_kargo_div h1,
.sepet-page .ucretsiz_kargo_div h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--sp-text);
  line-height: 1.4;
}

.sepet-page .ucretsiz_kargo_div h1 b {
  color: var(--sp-orange);
  font-weight: 700;
}

.sepet-page .ucretsiz_kargo_div h2 {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sp-orange);
}

.sepet-page .ucretsiz_kargo_div i {
  font-size: 28px;
  color: var(--sp-orange);
}

/* Ana grid: ürünler + özet */
.sepet-page > .table.sepet_cerceve,
.sepet-page .login_izinli_pnl > .table.sepet_cerceve,
.sepet-page .table.sepet_cerceve {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

.sepet-page .table.sepet_cerceve > .col {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
  width: 100% !important;
  float: none !important;
}

.sepet-page .table.sepet_cerceve > .col > .cell {
  display: block !important;
  width: auto !important;
  float: none !important;
  padding: 0 !important;
}

/* Ürün listesi */
.sepet-page .urunler_list > .table,
.sepet-page .mobil_dzn.urunler_list > .table {
  display: flex !important;
  flex-direction: column;
  gap: 12px;
  width: 100% !important;
  float: none !important;
}

.sepet-page .sepet_satirlar {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 14px 16px !important;
  background: var(--sp-card);
  border: 1px solid var(--sp-line) !important;
  border-radius: var(--sp-radius);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  font-size: 14px !important;
}

.sepet-page .sepet_satirlar > .cell {
  display: block !important;
  float: none !important;
  width: auto !important;
  padding: 0 !important;
  border: none !important;
}

.sepet-page .sepet_urun_resim {
  flex: 1 1 280px;
  min-width: 0;
}

.sepet-page .sepet_urun_resim > a {
  display: flex !important;
  align-items: center;
  gap: 14px;
  text-decoration: none !important;
  color: var(--sp-text) !important;
  font-size: 14px !important;
}

.sepet-page .sepet_urun_resim img {
  width: 88px !important;
  height: 88px !important;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--sp-line);
  background: #fafafa;
  flex-shrink: 0;
}

.sepet-page .sepet_urun_bilgileri {
  display: block !important;
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
}

.sepet-page .sepet_urun_adi {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--sp-text) !important;
}

.sepet-page .sepet-iskonto-satir {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  clear: both;
}

.sepet-page .sepet-iskonto-arti {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  float: none !important;
  margin: 0;
  padding: 0;
  color: #666;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.sepet-page .sepet_iskonto_orani_satir {
  display: inline-flex;
  align-items: center;
  margin: 0 !important;
  padding: 2px 8px;
  border-radius: 999px;
  background: #fff7ed;
  color: var(--sp-orange);
  font-size: 11px;
  font-weight: 700;
  float: none !important;
  line-height: 1.3;
}

.sepet-page .sepet_satirlar > .cell:last-child {
  flex: 0 1 auto;
  margin-left: auto;
}

.sepet-page .sepet_satirlar > .cell:last-child > table {
  margin-top: 0 !important;
  width: auto !important;
}

.sepet-page .sepet_miktar_sutun {
  width: auto !important;
  padding-right: 16px;
}

.sepet-page .sepet_miktar_sutun .sepetim_hucreler table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--sp-line);
  border-radius: 10px;
  overflow: hidden;
  background: #fafafa;
}

.sepet-page .sepet_miktar_btn {
  width: 36px !important;
  height: 36px !important;
  margin: 0 !important;
  border: none !important;
  background: #fff !important;
  color: var(--sp-text) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  line-height: 36px !important;
}

.sepet-page .sepet_miktar_btn:hover {
  background: #fff7ed !important;
  color: var(--sp-orange) !important;
}

.sepet-page .sepet_urun_miktar_satir_txt {
  min-width: 36px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}

.sepet-page .sepet_sil_buton {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: 8px;
  border-radius: 8px;
  color: var(--sp-danger) !important;
  font-size: 15px !important;
  text-decoration: none !important;
}

.sepet-page .sepet_sil_buton:hover {
  background: #fef2f2;
}

.sepet-page .s_toplam_tutar {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--sp-text) !important;
  text-align: right !important;
  white-space: nowrap;
}

.sepet-page .s_birim_tutar {
  font-size: 12px !important;
  color: var(--sp-muted) !important;
  text-decoration: line-through;
}

.sepet-page .sepet_kargo_info {
  display: none !important;
}

.sepet-page .sepet_baslik {
  font-size: 14px !important;
  font-weight: 700 !important;
  margin-bottom: 8px;
}

.sepet-page .kargo_firmalari_radiolist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sepet-page .kargo_firmalari_radiolist label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--sp-card);
  border: 1px solid var(--sp-line);
  border-radius: 10px;
  cursor: pointer;
}

/* Sağ özet kart */
.sepet-page .sepet_sag_kisim,
.sepet-page .sepet-ozet-kart {
  width: 100% !important;
  max-width: none !important;
  position: sticky;
  top: 72px;
  text-align: left !important;
  padding: 0 !important;
  background: #fff !important;
  border: 1px solid var(--sp-line);
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.sepet-page .sepet-ozet-icerik {
  padding: 20px 18px 18px !important;
  background: #fff !important;
}

.sepet-page .sepet-ozet-baslik {
  margin: 0 0 16px;
  padding: 0 0 12px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--sp-text);
}

.sepet-page .sepet_toplam_sag {
  display: flex !important;
  flex-direction: column;
  gap: 0;
  width: 100% !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.sepet-page .sepet_toplam_sag > .col,
.sepet-page .sepet-ozet-satir {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 10px 0;
  border-bottom: none;
}

.sepet-page .sepet_toplam_sag > .col:not(.sepet-ozet-toplam) + .col:not(.sepet-ozet-toplam) {
  border-top: none;
}

.sepet-page .sepet_toplam_sag .cell {
  display: block !important;
  float: none !important;
  width: auto !important;
  padding: 0 !important;
  text-align: left !important;
  font-weight: 500 !important;
  color: var(--sp-muted) !important;
  background: transparent !important;
}

.sepet-page .sepet_toplam_sag .cell:nth-child(2) {
  display: none !important;
}

.sepet-page .sepet_toplam_sag .cell:last-child {
  margin-left: auto;
  text-align: right !important;
  color: var(--sp-text) !important;
  font-weight: 600 !important;
  font-variant-numeric: tabular-nums;
}

.sepet-page .sepet-ozet-toplam,
.sepet-page .sepet_toplam_sag > .col.sepet-ozet-toplam,
.sepet-page .sepet_toplam_sag > .col:last-child {
  margin-top: 6px !important;
  padding: 14px 0 4px !important;
  border-top: 1px solid var(--sp-line) !important;
  border-bottom: none !important;
}

.sepet-page .sepet-ozet-toplam .cell,
.sepet-page .sepet_toplam_sag > .col:last-child .cell {
  color: var(--sp-text) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.sepet-page .sepet-ozet-toplam .cell:last-child,
.sepet-page .sepet_toplam_sag > .col:last-child .cell:last-child,
.sepet-page .sepet-ozet-toplam .cell:last-child b,
.sepet-page .sepet_toplam_sag > .col:last-child .cell:last-child b {
  color: var(--sp-orange) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  line-height: 1.2;
}

/* Kupon */
.sepet-page .indirim_kupon,
.sepet-page .sepet-ozet-kupon {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.sepet-page .kupons {
  display: block !important;
  width: 100% !important;
}

.sepet-page .kupons .col {
  display: flex !important;
  align-items: stretch;
  gap: 8px;
  width: 100% !important;
  float: none !important;
}

.sepet-page .kupons .cell {
  float: none !important;
  width: auto !important;
  flex: 1;
  background: transparent !important;
  padding: 0 !important;
}

.sepet-page .kupons input[type=text] {
  width: 100% !important;
  height: 44px !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 0 12px !important;
  font-size: 13px !important;
  background: #fafafa !important;
  font-family: 'Poppins', sans-serif !important;
}

.sepet-page .kupons input[type=text]:focus {
  border-color: var(--sp-orange) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(244, 130, 46, 0.15);
  outline: none !important;
}

.sepet-page .kupons_button {
  flex: 0 0 auto !important;
  width: auto !important;
}

.sepet-page .kupons_button input {
  height: 44px !important;
  min-width: 72px;
  padding: 0 16px !important;
  border: none !important;
  border-radius: 10px !important;
  background: #1a1a17 !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif !important;
  cursor: pointer !important;
}

.sepet-page .kupons_button input:hover {
  background: #333 !important;
}

.sepet-page .hediye_kuponu_var {
  font-size: 12px;
  line-height: 1.45;
  color: var(--sp-muted);
  padding: 10px 12px !important;
  background: #fff7ed !important;
  border-radius: 10px;
}

.sepet-page .hediye_kuponu_var a {
  color: var(--sp-orange);
  font-weight: 600;
}

/* CTA butonları */
.sepet-page .sepet-ozet-aksiyonlar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.sepet-page .siparisi_tamamla_btn {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 48px !important;
  line-height: 48px !important;
  border: none !important;
  border-radius: 12px !important;
  background: var(--sp-orange) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
  font-family: 'Poppins', sans-serif !important;
  cursor: pointer !important;
  text-align: center;
  transition: background .2s ease, transform .15s ease;
}

.sepet-page .siparisi_tamamla_btn:hover,
.sepet-page .siparisi_tamamla_btn_green:hover {
  background: var(--sp-orange-hover) !important;
}

.sepet-page .siparisi_tamamla_btn_green {
  background: var(--sp-orange) !important;
}

.sepet-page .sepeti_temizle_btn_red {
  background: #fff !important;
  color: var(--sp-danger) !important;
  border: 1px solid #fecaca !important;
  height: 42px !important;
  line-height: 40px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}

.sepet-page .sepeti_temizle_btn_red:hover {
  background: #fef2f2 !important;
}

.sepet-page .bilgilendirme_chk {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--sp-muted);
}

.sepet-page .bilgilendirme_chk a {
  color: var(--sp-orange);
}

/* SweetAlert2 sepet */
.sepet-swal-popup {
  font-family: 'Poppins', sans-serif !important;
  border-radius: 16px !important;
}

.sepet-swal-confirm,
.sepet-swal-cancel {
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif !important;
}

/* Login / üyelik paneli */
.sepet-page #login_pnl .uyelik_tables,
.sepet-page .uyelik_tables {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100% !important;
}

.sepet-page .uyelik_table_rows {
  display: contents !important;
}

.sepet-page .uyelik_cells {
  display: block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 24px !important;
  background: var(--sp-card) !important;
  border: 1px solid var(--sp-line) !important;
  border-radius: var(--sp-radius) !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.sepet-page .uyelik_cells h1 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
}

.sepet-page .uyelik_textbox {
  width: 100% !important;
  height: 44px !important;
  margin-bottom: 12px !important;
  border: 1px solid #d8d8d8 !important;
  border-radius: 10px !important;
  padding: 0 12px !important;
  background: #fafafa !important;
}

.sepet-page .uyelik_textbox:focus {
  border-color: var(--sp-orange) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(244, 130, 46, 0.18);
  outline: none !important;
}

.sepet-page .uye_ol_btn {
  width: 100% !important;
  height: 46px !important;
  margin-top: 8px !important;
  border: none !important;
  border-radius: 10px !important;
  background: var(--sp-orange) !important;
  color: #fff !important;
  font-weight: 700 !important;
  cursor: pointer !important;
}

.sepet-page .sepet_sifremi_unuttum_div {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
}

.sepet-page .sepet_sifremi_unuttum_div a {
  color: var(--sp-orange);
}

/* Adres formu */
.sepet-page .sepet_form_wrapper {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.sepet-page .sepet_form_section {
  background: var(--sp-card) !important;
  border: 1px solid var(--sp-line) !important;
  border-radius: var(--sp-radius) !important;
  padding: 22px !important;
  margin-bottom: 16px !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.sepet-page .sepet_section_header {
  margin-bottom: 18px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

.sepet-page .sepet_section_header i {
  color: var(--sp-orange) !important;
  font-size: 18px !important;
}

.sepet-page .sepet_section_header h2 {
  font-size: 15px !important;
  letter-spacing: 0.02em;
  text-transform: none !important;
}

.sepet-page .sepet_form_group label .required {
  color: var(--sp-orange) !important;
}

.sepet-page .sepet_section_header i,
.sepet-page .sepet_form_group label span,
.sepet-page .modern_radio input,
.sepet-page .modern_checkbox input {
  color: var(--sp-orange) !important;
  accent-color: var(--sp-orange) !important;
}

.sepet-page .modern_input:focus,
.sepet-page .modern_select:focus {
  border-color: var(--sp-orange) !important;
}

.sepet-page .modern_input,
.sepet-page .modern_select,
.sepet-page .sepet_textbox {
  height: 44px !important;
  border: 1px solid #d8d8d8 !important;
  border-radius: 10px !important;
  padding: 0 12px !important;
  font-family: 'Poppins', sans-serif !important;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.sepet-page textarea.modern_input,
.sepet-page textarea.sepet_textbox {
  height: auto !important;
  min-height: 88px;
  padding: 10px 12px !important;
}

.sepet-page .modern_input:focus,
.sepet-page .modern_select:focus,
.sepet-page .sepet_textbox:focus {
  border-color: var(--sp-orange) !important;
  box-shadow: 0 0 0 3px rgba(244, 130, 46, 0.18) !important;
  outline: none !important;
}

.sepet-page .sepet_checkbox_wrapper {
  margin-bottom: 14px;
}

/* Ödeme aşaması */
.sepet-page .sepet_asama_3 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sepet-page .sepet_odeme_tur_btn {
  width: 100% !important;
  height: 52px !important;
  margin: 0 !important;
  border: 1px solid var(--sp-line) !important;
  border-radius: 12px !important;
  background: var(--sp-card) !important;
  color: var(--sp-text) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: border-color .2s ease, background .2s ease;
}

.sepet-page .sepet_odeme_tur_btn:hover {
  border-color: var(--sp-orange) !important;
  background: #fff7ed !important;
  color: var(--sp-orange) !important;
}

.sepet-page .kart_bilgileri_div,
.sepet-page .kart_form_container {
  background: var(--sp-card);
  border: 1px solid var(--sp-line);
  border-radius: var(--sp-radius);
  padding: 18px;
}

.sepet-page .basarili_odeme_div,
.sepet-page .basarisiz_odeme_div {
  text-align: center;
  padding: 40px 20px;
  background: var(--sp-card);
  border-radius: var(--sp-radius);
  border: 1px solid var(--sp-line);
}

.sepet-page .basarili_odeme_div i {
  color: #059669;
  font-size: 42px;
}

.sepet-page .basarisiz_odeme_div i {
  color: var(--sp-danger);
  font-size: 42px;
}

.sepet-page .kasaonu_firsatlari_pnl {
  margin-top: 20px;
  padding: 16px;
  background: var(--sp-card);
  border: 1px solid var(--sp-line);
  border-radius: var(--sp-radius);
}

.sepet-page .urun_detay_uyari_div {
  background: #fff7ed !important;
  color: #9a3412 !important;
  border: 1px solid #fed7aa;
  border-radius: 10px;
  line-height: 1.45 !important;
  padding: 12px 14px;
}

@media (max-width: 980px) {
  .sepet-page {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 10px 40px;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .sepet-page .login_izinli_pnl,
  .sepet-page .table.sepet_cerceve,
  .sepet-page .mobil_dzn,
  .sepet-page .urunler_list,
  .sepet-page .sepet-urun-listesi {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  .sepet-page .table.sepet_cerceve > .col {
    grid-template-columns: 1fr !important;
  }

  .sepet-page .sepet_sag_kisim {
    position: static;
    order: 2;
    width: 100% !important;
    max-width: 100% !important;
  }

  .sepet-page .uyelik_tables {
    grid-template-columns: 1fr !important;
  }

  /* Kart: dikey — başlık taşmasın */
  .sepet-page .sepet_satirlar,
  .sepet-page .col.sepet_satirlar,
  .sepet-page .mobil_dzn .col.sepet_satirlar {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: 12px !important;
  }

  .sepet-page .sepet_satirlar > .cell,
  .sepet-page .mobil_dzn .sepet_satirlar > .cell {
    display: block !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .sepet-page .sepet_urun_resim {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .sepet-page .sepet_urun_resim > a {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }

  .sepet-page .sepet_urun_resim img {
    width: 72px !important;
    height: 72px !important;
    float: none !important;
    flex: 0 0 72px !important;
  }

  .sepet-page .sepet_urun_bilgileri {
    position: static !important;
    display: block !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
    height: auto !important;
    margin: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: unset !important;
    z-index: auto !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
  }

  .sepet-page .sepet_urun_bilgileri > table {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: fixed !important;
  }

  .sepet-page .sepet_urun_adi {
    display: block !important;
    padding-left: 0 !important;
    text-align: left !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
  }

  .sepet-page .sepet_satirlar > .cell:last-child {
    margin-left: 0 !important;
    width: 100% !important;
  }

  .sepet-page .sepet_satirlar > .cell:last-child > table {
    margin-top: 0 !important;
    width: 100% !important;
    table-layout: fixed !important;
  }

  .sepet-page .sepet_miktar_sutun {
    width: auto !important;
    padding-right: 8px !important;
  }

  .sepet-page .sepet_toplam_sutun {
    width: auto !important;
    text-align: right !important;
  }

  .sepet-page .s_toplam_tutar {
    font-size: 15px !important;
    white-space: nowrap;
  }

  .sepet-page .urunler_list {
    margin-top: 0 !important;
  }
}

@media (max-width: 560px) {
  .sepet-page {
    padding: 10px 8px 36px;
  }

  .sepet-page .sepet_urun_resim img {
    width: 64px !important;
    height: 64px !important;
    flex-basis: 64px !important;
  }

  .sepet-page .ucretsiz_kargo_div {
    flex-direction: column;
    align-items: flex-start;
  }

  .sepet-page .sepet_miktar_btn {
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
  }
}

/* StyleSheet_mobile çakışma override */
.sepet-page .sepet_asama_1,
.sepet-page .sepet_asama_2,
.sepet-page .sepet_asama_3,
.sepet-page .sepet_asama_4 {
  margin-top: 0 !important;
}

.sepet-page .mobil_dzn.urunler_list > .table,
.sepet-page .mobil_dzn .table.sepet-urun-listesi {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 100% !important;
}

.sepet-page .mobil_dzn .col.sepet_satirlar {
  display: flex !important;
}

.sepet-page .mobil_dzn .sepet_satirlar > .cell {
  display: block !important;
}

.sepet-page .sepet_form_wrapper {
  padding: 0 !important;
}

.sepet-page .section_header_accent,
.sepet-page .sepet_section_header i {
  color: #f4822e !important;
}
