@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ===== FONT ZORUNLU OVERRIDE ===== */
#alo-wrap,
#alo-wrap *,
#alo-wrap input,
#alo-wrap select,
#alo-wrap textarea,
#alo-wrap button,
#alo-wrap label,
#alo-wrap span,
#alo-wrap p,
#alo-wrap h1,
#alo-wrap h2,
#alo-wrap h3,
#alo-wrap h4,
.alo-track-wrap,
.alo-track-wrap * {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* ============================================
   ALO SİPARİŞ - Checkout UI
   ============================================ */


#alo-wrap {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif !important;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  color: #1e293b;
  box-sizing: border-box;
}

/* ---- Layout ---- */
.alo-checkout-layout {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 760px) {
  .alo-checkout-layout {
  max-width: 1160px;
  margin: 0 auto; grid-template-columns: 1fr; }
  .alo-checkout-summary { order: -1; }
}

/* ---- Adım indikatörü ---- */
.alo-checkout-header { margin-bottom: 28px; }
.alo-step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 6px;
}
.alo-step-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .3s;
}
.alo-step-dot.active { background: #0f172a; color: #fff; }
.alo-step-dot.done   { background: #10b981; color: #fff; }
.alo-step-line {
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  transition: background .3s;
}
.alo-step-line.active { background: #0f172a; }
.alo-step-label { font-size: 13px; color: #64748b; margin: 4px 0 0; }

/* ---- Bölümler ---- */
.alo-section { margin-bottom: 28px; }
.alo-section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #64748b;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
}

/* ---- Field grid ---- */
.alo-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) { .alo-field-grid { grid-template-columns: 1fr; } }
.alo-field-full { grid-column: 1 / -1; }
.alo-field { display: flex; flex-direction: column; gap: 5px; }

/* ---- Etiket & Input ---- */
.alo-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}
.alo-req { color: #ef4444; }
.alo-input {
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif !important;
  color: #1e293b;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
  -webkit-appearance: none;
}
.alo-input:hover  { border-color: #cbd5e1; }
.alo-input:focus  {
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15,23,42,.08);
  background: #fafafa;
}
.alo-textarea { resize: vertical; min-height: 88px; }
.alo-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* ---- Varyantlar ---- */
.alo-variants { display: flex; flex-wrap: wrap; gap: 10px; }
.alo-variant-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  min-width: 140px;
  text-align: left;
  transition: all .2s;
}
.alo-variant-card:hover { border-color: #94a3b8; background: #f8fafc; }
.alo-variant-card.alo-selected {
  border-color: #0f172a;
  background: #f8fafc;
  box-shadow: 0 0 0 3px rgba(15,23,42,.08);
}
.alo-variant-name { font-size: 14px; font-weight: 600; color: #1e293b; }
.alo-variant-price { font-size: 13px; color: #10b981; font-weight: 700; }
.alo-variant-check {
  position: absolute;
  top: 8px; right: 8px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.alo-variant-card.alo-selected .alo-variant-check { opacity: 1; }

/* ---- Onay kutuları ---- */
.alo-agreements { display: flex; flex-direction: column; gap: 10px; }
.alo-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.alo-checkbox {
  width: 18px; height: 18px;
  border: 1.5px solid #cbd5e1;
  border-radius: 4px;
  margin-top: 1px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #0f172a;
}
.alo-check-text {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}
.alo-check-text a { color: #3b82f6; text-decoration: none; }
.alo-check-text a:hover { text-decoration: underline; }

/* ---- Hata mesajı ---- */
.alo-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}
.alo-alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

/* ---- Ödeme butonu ---- */
.alo-pay-btn {
  width: 100%;
  padding: 15px 24px;
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  transition: background .2s, transform .1s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(15,23,42,.2);
}
.alo-pay-btn:hover:not(:disabled) {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15,23,42,.28);
}
.alo-pay-btn:active:not(:disabled) { transform: translateY(0); }
.alo-pay-btn:disabled { background: #94a3b8; cursor: not-allowed; box-shadow: none; }

/* ---- Güven satırı ---- */
.alo-trust-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.alo-trust-item {
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---- Sipariş özeti kartı ---- */
.alo-summary-card {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  position: sticky;
  top: 24px;
}
.alo-summary-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.alo-summary-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}
.alo-summary-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #10b981;
  margin: 0 0 4px;
}
.alo-summary-name {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}
.alo-summary-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 16px;
}
.alo-summary-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 16px 0;
}
.alo-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #475569;
  margin-bottom: 10px;
}
.alo-summary-total {
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;
}
.alo-summary-price-val {
  font-size: 22px;
  font-weight: 800;
  color: #10b981;
}
.alo-summary-val { font-weight: 600; color: #1e293b; }
.alo-summary-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}
.alo-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #64748b;
}
.alo-badge-item svg { color: #10b981; flex-shrink: 0; }

/* ---- Ödeme sayfası ---- */
.alo-pay-wrap { max-width: 680px; margin: 0 auto; }
.alo-pay-header { margin-bottom: 24px; }
.alo-pay-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #10b981;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 10px;
}

/* ---- Loading spinner ---- */
.alo-loading {
  text-align: center;
  padding: 60px 20px;
  color: #64748b;
}
.alo-spinner {
  width: 36px; height: 36px;
  border: 3px solid #e2e8f0;
  border-top-color: #0f172a;
  border-radius: 50%;
  animation: alo-spin .7s linear infinite;
  margin: 0 auto 16px;
}
@keyframes alo-spin { to { transform: rotate(360deg); } }

/* ---- Sonuç mesajları ---- */
.alo-result-success, .alo-result-fail {
  max-width: 520px;
  margin: 40px auto;
  text-align: center;
  padding: 48px 40px;
  border-radius: 16px;
}
.alo-result-success {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
}
.alo-result-fail {
  background: #fef2f2;
  border: 1.5px solid #fecaca;
}
.alo-result-icon { font-size: 52px; display: block; margin-bottom: 16px; }
.alo-result-success h3 { color: #15803d; font-size: 22px; margin: 0 0 12px; }
.alo-result-fail h3    { color: #dc2626; font-size: 22px; margin: 0 0 12px; }
.alo-result-success p, .alo-result-fail p { color: #475569; font-size: 15px; margin: 0 0 8px; }
.alo-result-order {
  display: inline-block;
  background: #fff;
  border: 1.5px solid #bbf7d0;
  border-radius: 8px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 18px;
  color: #0f172a;
  margin: 12px 0 20px;
  letter-spacing: .05em;
}
.alo-btn-retry {
  display: inline-block;
  margin-top: 16px;
  padding: 11px 28px;
  background: #0f172a;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif !important;
}

/* ---- Ödeme metodları ---- */
.alo-payment-methods { display: flex; flex-direction: column; gap: 10px; }
.alo-pm-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: all .2s;
  position: relative;
}
.alo-pm-card:hover { border-color: #94a3b8; background: #f8fafc; }
.alo-pm-card.alo-pm-selected { border-color: #0f172a; background: #f8fafc; box-shadow: 0 0 0 3px rgba(15,23,42,.08); }
.alo-pm-radio { display: none; }
.alo-pm-icon { color: #64748b; flex-shrink: 0; }
.alo-pm-card.alo-pm-selected .alo-pm-icon { color: #0f172a; }
.alo-pm-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.alo-pm-name { font-size: 15px; font-weight: 600; color: #1e293b; }
.alo-pm-desc { font-size: 12px; color: #94a3b8; }
.alo-pm-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .2s;
  flex-shrink: 0;
}
.alo-pm-card.alo-pm-selected .alo-pm-check { opacity: 1; }

/* ---- Banka havalesi sonuç ---- */
.alo-bank-result { max-width: 600px; margin: 0 auto; }
.alo-bank-success-header { text-align: center; margin-bottom: 24px; }
.alo-bank-success-header h3 { font-size: 22px; color: #0f172a; margin: 8px 0 6px; }
.alo-bank-success-header p { color: #64748b; margin: 0; }
.alo-bank-order-no {
  background: #fefce8;
  border: 1.5px solid #fde047;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 20px;
  text-align: center;
}
.alo-bank-order-no p { font-size: 13px; color: #854d0e; margin: 0 0 6px; font-weight: 600; }
.alo-bank-order-no strong { font-size: 24px; letter-spacing: .08em; color: #0f172a; }
.alo-bank-account-card {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 12px;
}
.alo-bank-name-title { font-size: 15px; font-weight: 700; color: #0f172a; margin: 0 0 12px; }
.alo-bank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
  gap: 10px;
}
.alo-bank-row:last-child { border-bottom: none; }
.alo-bank-row span { color: #64748b; flex-shrink: 0; }
.alo-bank-row strong { color: #1e293b; font-weight: 600; text-align: right; }
.alo-bank-iban strong { font-family: monospace; letter-spacing: .04em; font-size: 13px; }
.alo-copy-btn {
  margin-left: 8px;
  padding: 3px 10px;
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif !important;
  flex-shrink: 0;
}
.alo-copy-btn:hover { background: #1e293b; }
.alo-bank-email-note { text-align: center; font-size: 13px; color: #64748b; margin-top: 16px; }

/* Banka havalesi result sayfası (URL sonucu için) */
.alo-result-bank {
  max-width: 600px;
  margin: 40px auto;
  padding: 36px;
  background: #f0f9ff;
  border: 1.5px solid #bae6fd;
  border-radius: 16px;
  text-align: center;
}
.alo-result-bank h3 { color: #0369a1; font-size: 22px; margin: 8px 0 12px; }
.alo-bank-notice {
  background: #fefce8;
  border: 1px solid #fde047;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 16px 0;
  font-size: 14px;
  color: #854d0e;
  text-align: left;
}
.alo-bank-account {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  margin: 12px 0;
  text-align: left;
}
.alo-bank-name { font-weight: 700; color: #0f172a; margin: 0 0 8px; }
.alo-bank-table { width: 100%; font-size: 14px; }
.alo-bank-table td { padding: 4px 8px; }
.alo-bank-table td:first-child { color: #64748b; width: 120px; }
.alo-iban { font-family: monospace; font-weight: 700; letter-spacing: .04em; }

/* ---- Banka havalesi check ikonu ---- */
.alo-bank-check-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 14px rgba(16,185,129,.3);
}

/* ---- İletişim notu ---- */
.alo-contact-note {
  margin-top: 20px;
  padding: 14px 18px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  font-size: 13px;
  color: #0369a1;
  text-align: center;
  line-height: 1.6;
}
.alo-contact-note a { color: #0369a1; font-weight: 600; }

/* ---- Result sayfası iletişim notu ---- */
.alo-result-contact {
  margin-top: 20px;
  padding: 12px 16px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  font-size: 13px;
  color: #0369a1;
  line-height: 1.6;
}
.alo-result-contact a { color: #0369a1; font-weight: 600; }

/* ---- Addon (çoklu seçim) varyant kartları ---- */
.alo-variant-addon {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  transition: border-color .15s, background .15s;
  margin-bottom: 8px;
  width: 100%;
  box-sizing: border-box;
}
.alo-variant-addon:hover { border-color: #10b981; background: #f0fdf4; }
.alo-variant-addon.alo-selected { border-color: #10b981; background: #f0fdf4; }
.alo-variant-addon .alo-variant-name { flex: 1; font-weight: 600; color: #0f172a; }
.alo-variant-addon .alo-variant-price { font-size: 13px; color: #10b981; font-weight: 700; white-space: nowrap; }

/* ===== SİPARİŞ TAKİP ===== */
.alo-track-wrap {
  max-width: 560px;
  margin: 0 auto;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}
.alo-track-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.alo-track-header {
  text-align: center;
  padding: 36px 32px 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e2e8f0;
}
.alo-track-icon { font-size: 40px; margin-bottom: 12px; }
.alo-track-title {
  font-size: 22px; font-weight: 800; color: #0f172a; margin: 0 0 8px;
}
.alo-track-subtitle { font-size: 14px; color: #64748b; margin: 0; line-height: 1.6; }
.alo-track-form { padding: 28px 32px; }
.alo-track-field { margin-bottom: 16px; }
.alo-track-label {
  display: block; font-size: 12px; font-weight: 700; color: #64748b;
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px;
}
.alo-track-input {
  width: 100%; padding: 12px 14px; border: 1.5px solid #e2e8f0;
  border-radius: 10px; font-size: 14px; color: #0f172a;
  box-sizing: border-box; transition: border-color .15s, box-shadow .15s; outline: none;
}
.alo-track-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,.1);
}
.alo-track-error {
  background: #fee2e2; color: #991b1b; border: 1px solid #fecaca;
  border-radius: 8px; padding: 10px 14px; font-size: 13px;
  font-weight: 600; margin-bottom: 14px;
}
.alo-track-btn {
  width: 100%; padding: 13px; background: #6366f1; color: #fff; border: none;
  border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer;
  transition: background .15s, transform .1s; box-shadow: 0 2px 10px rgba(99,102,241,.3);
}
.alo-track-btn:hover:not(:disabled) { background: #4f46e5; transform: translateY(-1px); }
.alo-track-btn:disabled { opacity: .6; cursor: not-allowed; }

/* Sonuç kartı */
.alo-track-result-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; border-bottom: 1px solid #f1f5f9;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}
.alo-track-badge {
  display: inline-flex; align-items: center; padding: 5px 14px;
  border-radius: 20px; font-size: 13px; font-weight: 700;
}
.alo-track-badge.pending  { background: #fef3c7; color: #92400e; }
.alo-track-badge.paid     { background: #d1fae5; color: #065f46; }
.alo-track-badge.failed   { background: #fee2e2; color: #991b1b; }
.alo-track-badge.refunded { background: #f1f5f9; color: #475569; }
.alo-track-result-body { padding: 8px 0; }
.alo-track-result-row {
  display: flex; padding: 10px 28px; border-bottom: 1px solid #f8fafc; align-items: baseline;
}
.alo-track-result-row:last-child { border-bottom: none; }
.alo-track-result-key {
  width: 130px; flex-shrink: 0; font-size: 12px;
  font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: .04em;
}
.alo-track-result-val { font-size: 14px; color: #0f172a; }

/* Adımlar */
.alo-track-steps { padding: 20px 28px 8px; border-top: 1px solid #f1f5f9; }
.alo-steps-wrap {
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.alo-step {
  display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 0 0 auto;
}
.alo-step-circle {
  width: 44px; height: 44px; border-radius: 50%; background: #f1f5f9;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; border: 2px solid #e2e8f0; transition: all .2s;
}
.alo-step.done .alo-step-circle  { background: #d1fae5; border-color: #10b981; font-size: 16px; }
.alo-step.current .alo-step-circle { background: #ede9fe; border-color: #6366f1; box-shadow: 0 0 0 4px rgba(99,102,241,.15); }
.alo-step-label { font-size: 11px; font-weight: 600; color: #94a3b8; text-align: center; max-width: 70px; line-height: 1.3; }
.alo-step.done .alo-step-label    { color: #10b981; }
.alo-step.current .alo-step-label { color: #6366f1; }
.alo-step-line {
  flex: 1; height: 2px; background: #e2e8f0;
  margin: 0 4px; margin-bottom: 22px; min-width: 20px; transition: background .2s;
}
.alo-step-line.done { background: #10b981; }
.alo-track-reset-btn {
  background: none; border: 1.5px solid #e2e8f0; color: #64748b;
  padding: 9px 20px; border-radius: 8px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: border-color .15s, color .15s; margin-bottom: 20px;
}
.alo-track-reset-btn:hover { border-color: #6366f1; color: #6366f1; }

/* ===== ÜRÜN LİSTESİ ([alo_siparis] shortcode) ===== */
.alo-list-wrap { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.alo-list-header { text-align: center; margin-bottom: 36px; }
.alo-list-title {
  font-size: 28px; font-weight: 800; color: #0f172a; margin: 0 0 10px;
}
.alo-list-subtitle { font-size: 15px; color: #64748b; margin: 0; }

.alo-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.alo-pl-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .15s, box-shadow .15s;
}
.alo-pl-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
}
.alo-pl-card-body { padding: 24px 24px 16px; flex: 1; }
.alo-pl-icon { font-size: 32px; margin-bottom: 12px; }
.alo-pl-name { font-size: 17px; font-weight: 800; color: #0f172a; margin: 0 0 8px; }
.alo-pl-desc { font-size: 13px; color: #64748b; line-height: 1.6; margin: 0 0 14px; }
.alo-pl-variants { display: flex; flex-direction: column; gap: 5px; margin-top: 8px; }
.alo-pl-variant-tag {
  font-size: 12px; background: #f1f5f9; color: #475569;
  padding: 4px 10px; border-radius: 6px; font-weight: 500;
}
.alo-pl-card-foot {
  padding: 14px 24px 20px; border-top: 1px solid #f1f5f9;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.alo-pl-price { display: flex; align-items: baseline; gap: 4px; }
.alo-pl-price-from { font-size: 12px; color: #94a3b8; }
.alo-pl-price-val { font-size: 20px; font-weight: 800; color: #0f172a; }
.alo-pl-btn {
  display: inline-flex; align-items: center;
  padding: 9px 18px; background: #6366f1; color: #fff !important;
  border-radius: 9px; font-size: 13px; font-weight: 700; text-decoration: none !important;
  transition: background .15s; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(99,102,241,.3);
}
.alo-pl-btn:hover { background: #4f46e5; }
@media (max-width: 600px) {
  .alo-product-grid { grid-template-columns: 1fr; }
  .alo-list-title { font-size: 22px; }
}

/* ===== FULL-WIDTH BREAKOUT ===== */
#alo-wrap.alo-fullwidth {
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box !important;
}
#alo-wrap.alo-fullwidth .alo-checkout-layout,
#alo-wrap.alo-fullwidth .alo-store-wrap {
  max-width: 100% !important;
  width: 100% !important;
}

/* Belirli genişlik modları */
#alo-wrap.alo-width-960  { max-width: 960px  !important; }
#alo-wrap.alo-width-1200 { max-width: 1200px !important; }
#alo-wrap.alo-width-1400 {
  width: 100vw !important;
  max-width: 1400px !important;
  position: relative !important;
  left: 50% !important;
  margin-left: -700px !important;
}
@media (max-width: 1400px) {
  #alo-wrap.alo-width-1400 {
    left: 50% !important;
    margin-left: -50vw !important;
    max-width: 100vw !important;
  }
}
