/* ============================================================
   İnciSMM Plugin Frontend CSS
   Platform / Category / Order / Tracker Pages
   Uses theme CSS variables – supports Dark/Light mode
   ============================================================ */

/* ── Fallback variables (if theme not active) ───────────────── */
:root {
  --primary:        #7C3AED;
  --primary-dark:   #5B21B6;
  --primary-light:  rgba(124,58,237,.10);
  --primary-border: rgba(124,58,237,.25);
  --accent:         #06B6D4;
  --success:        #10B981;
  --warning:        #F59E0B;
  --danger:         #EF4444;
  --bg:             #F5F7FF;
  --bg-card:        #FFFFFF;
  --bg-card2:       #F8F9FF;
  --bg-section:     #F0F2FF;
  --text:           #0F172A;
  --text-muted:     #64748B;
  --text-light:     #94A3B8;
  --border:         #E2E8F0;
  --border-dark:    #CBD5E1;
  --shadow:         0 4px 16px rgba(0,0,0,.08);
  --shadow-md:      0 8px 32px rgba(0,0,0,.10);
  --shadow-primary: 0 8px 24px rgba(124,58,237,.22);
  --radius:         12px;
  --radius-lg:      16px;
  --header-h:       68px;
  --grad-primary:   linear-gradient(135deg,#7C3AED,#06B6D4);
}

/* ── Shared wrapper ─────────────────────────────────────────── */
.onaysmm-platform-page,
.onaysmm-category-page,
.onaysmm-order-page,
.onaysmm-tracker-page {
  background: var(--bg);
  color: var(--text);
  min-height: 70vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.onaysmm-breadcrumb {
  padding: 12px 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  font-size: .8rem; color: var(--text-light);
}
.onaysmm-breadcrumb .container { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.onaysmm-breadcrumb a { color: var(--text-muted); transition: color .15s; text-decoration: none; }
.onaysmm-breadcrumb a:hover { color: var(--primary); }
.onaysmm-breadcrumb .sep { margin: 0 4px; font-size: .6rem; }
.onaysmm-breadcrumb span { color: var(--text); font-weight: 500; }

/* ── Empty state ────────────────────────────────────────────── */
.onaysmm-empty { text-align: center; padding: 56px 20px; color: var(--text-light); }
.onaysmm-empty i { font-size: 2.8rem; margin-bottom: 14px; display: block; opacity: .35; }
.onaysmm-empty p { font-size: .95rem; margin-bottom: 18px; }

/* ──────────────────────────────────────────────────────────────
   PLATFORM PAGE
────────────────────────────────────────────────────────────── */
.platform-hero {
  padding: calc(var(--header-h) + 52px) 0 52px;
  text-align: center; position: relative; overflow: hidden;
}
.platform-hero::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.35); pointer-events: none;
}
.platform-hero-content { position: relative; z-index: 1; }

.platform-icon-xl {
  width: 72px; height: 72px; border-radius: 18px;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff;
  margin: 0 auto 18px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
}
.platform-hero h1 { font-size: clamp(1.9rem,5vw,3rem); font-weight: 800; color: #fff; margin-bottom: 10px; }
.platform-hero p { color: rgba(255,255,255,.82); font-size: 1rem; margin-bottom: 22px; }

.platform-stats { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }
.stat-badge {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 20px;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  border-radius: 11px; border: 1px solid rgba(255,255,255,.22);
  min-width: 84px;
}
.stat-badge .stat-num { font-size: 1.35rem; font-weight: 800; color: #fff; line-height: 1.2; }
.stat-badge .stat-label { font-size: .68rem; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .06em; }

.platform-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 13px; border-radius: 50px;
  background: rgba(255,255,255,.18); color: #fff;
  font-size: .8rem; font-weight: 600; margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,.25);
}

/* Categories grid */
.platform-categories { padding: 52px 0; }
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(275px,1fr)); gap: 14px; }

.category-card {
  display: block; text-decoration: none;
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: all .2s;
}
.category-card:hover { border-color: var(--primary-border); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.category-card-inner { display: flex; align-items: center; gap: 13px; padding: 18px; }
.category-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.category-info { flex: 1; min-width: 0; }
.category-info h3 { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.category-info p { font-size: .75rem; color: var(--text-light); }
.category-price { text-align: right; flex-shrink: 0; }
.category-price .from-label { display: block; font-size: .67rem; color: var(--text-light); }
.category-price .from-price { font-size: .9rem; font-weight: 700; color: var(--primary); }
.category-arrow { color: var(--text-light); font-size: .78rem; margin-left: 7px; transition: transform .2s; }
.category-card:hover .category-arrow { transform: translateX(4px); color: var(--primary); }

/* Why us */
.platform-why-us { padding: 56px 0; background: var(--bg-section); border-top: 1px solid var(--border); }
.platform-why-us h2 { font-size: clamp(1.2rem,3vw,1.8rem); font-weight: 700; text-align: center; margin-bottom: 32px; color: var(--text); }
.why-us-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 16px; }
.why-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 22px 18px; text-align: center; transition: all .2s; }
.why-card:hover { border-color: var(--primary-border); transform: translateY(-2px); box-shadow: var(--shadow); }
.why-card i { font-size: 1.7rem; margin-bottom: 12px; display: block; color: var(--primary); }
.why-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: 7px; color: var(--text); }
.why-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* Other platforms */
.all-platforms-nav { padding: 36px 0 52px; }
.all-platforms-nav h3 { font-size: .9rem; font-weight: 700; color: var(--text-muted); margin-bottom: 14px; text-align: center; }
.platforms-mini-nav { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.platform-mini-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 9px; border: 1.5px solid var(--border); font-size: .85rem; font-weight: 600; transition: all .2s; text-decoration: none; background: var(--bg-card); }
.platform-mini-btn:hover { border-color: var(--primary-border); transform: translateY(-1px); box-shadow: var(--shadow); }

/* ──────────────────────────────────────────────────────────────
   CATEGORY PAGE
────────────────────────────────────────────────────────────── */
.category-hero {
  padding: calc(var(--header-h) + 52px) 0 52px;
  text-align: center; position: relative; overflow: hidden;
}
.category-hero::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.38); pointer-events: none; }
.category-hero-content { position: relative; z-index: 1; }
.category-hero h1 { font-size: clamp(1.6rem,4vw,2.6rem); font-weight: 800; color: #fff; margin-bottom: 7px; }
.category-hero p { color: rgba(255,255,255,.8); }

.category-layout { display: grid; grid-template-columns: 255px 1fr; gap: 28px; padding: 36px 0 56px; align-items: start; }

/* Sidebar */
.category-sidebar { position: sticky; top: calc(var(--header-h) + 16px); }
.sidebar-widget { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 18px; margin-bottom: 14px; }
.sidebar-widget h4 { font-size: .875rem; font-weight: 700; color: var(--text); margin-bottom: 13px; display: flex; align-items: center; gap: 7px; padding: 0; }
.sidebar-widget h4 i { color: var(--primary); }
/* Toggle butonunu içeren h4 için margin sıfırla */
.sidebar-widget h4:has(.sidebar-toggle-btn) { margin-bottom: 0; }

.sidebar-category-list { display: flex; flex-direction: column; gap: 2px; list-style: none; padding: 0; margin: 0; }
.sidebar-category-list li a { display: flex; align-items: center; justify-content: space-between; padding: 8px 11px; border-radius: 8px; font-size: .85rem; color: var(--text-muted); text-decoration: none; transition: all .15s; }
.sidebar-category-list li a:hover, .sidebar-category-list li.active a { background: var(--primary-light); color: var(--primary); }
.sidebar-category-list .count { font-size: .7rem; background: var(--bg-section); padding: 2px 7px; border-radius: 50px; color: var(--text-light); }
.sidebar-category-list li.active .count { background: var(--primary); color: #fff; }

.info-list { display: flex; flex-direction: column; gap: 8px; list-style: none; padding: 0; }
.info-list li { display: flex; align-items: center; gap: 7px; font-size: .83rem; color: var(--text-muted); }
.info-list li i { color: var(--success); width: 14px; }

/* Sidebar tracker */
#sidebar-tracker .onaysmm-input { width: 100%; margin-bottom: 7px; }
.btn-track { width: 100%; padding: 9px; border-radius: 9px; background: var(--grad-primary); color: #fff; font-weight: 600; font-size: .85rem; border: none; cursor: pointer; transition: opacity .2s; font-family: inherit; }
.btn-track:hover { opacity: .88; }
.track-result-mini { padding: 11px; background: var(--bg-section); border-radius: 9px; border: 1px solid var(--border); font-size: .8rem; margin-top: 8px; }
.track-row { padding: 3px 0; color: var(--text-muted); }
.track-detail-link { display: inline-block; margin-top: 7px; color: var(--primary); font-size: .78rem; font-weight: 600; text-decoration: none; }
.track-error { padding: 9px; color: var(--danger); font-size: .83rem; }
.track-loading { text-align: center; padding: 14px; color: var(--text-muted); }

/* Toolbar */
.category-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 10px; }
.result-count { font-size: .85rem; color: var(--text-muted); }
.result-count strong { color: var(--text); }
.sort-options { display: flex; align-items: center; gap: 7px; font-size: .85rem; color: var(--text-muted); }

/* ── Inputs on white bg ────────────────────────────────────── */
.onaysmm-input {
  width: 100%; padding: 12px 14px;
  background: var(--input-bg, #F8FAFC);
  border: 1.5px solid var(--input-border, #E2E8F0);
  border-radius: 9px;
  color: var(--input-text, #0F172A);
  font-size: .9rem; transition: border-color .2s, box-shadow .2s;
  font-family: inherit; box-sizing: border-box;
}
.onaysmm-input:focus {
  outline: none;
  border-color: var(--primary, #7C3AED);
  box-shadow: 0 0 0 3px var(--primary-light, rgba(124,58,237,.1));
}
.onaysmm-input::placeholder { color: var(--input-placeholder, #94A3B8); }

.onaysmm-select {
  width: 100%; padding: 12px 34px 12px 14px;
  background: var(--input-bg, #F8FAFC);
  border: 1.5px solid var(--input-border, #E2E8F0);
  border-radius: 9px;
  color: var(--input-text, #0F172A);
  font-size: .9rem; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
  cursor: pointer; transition: border-color .2s; font-family: inherit; box-sizing: border-box;
}
.onaysmm-select:focus {
  outline: none;
  border-color: var(--primary, #7C3AED);
  box-shadow: 0 0 0 3px var(--primary-light, rgba(124,58,237,.1));
}

/* Service list */
.services-list { display: flex; flex-direction: column; gap: 12px; }
.service-item { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 18px 22px; transition: all .2s; position: relative; }
.service-item:hover { border-color: var(--primary-border); box-shadow: var(--shadow); }
.service-item.featured { border-color: var(--primary-border); }

.featured-badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 9px; border-radius: 50px; background: #FEF2F2; color: #DC2626; font-size: .7rem; font-weight: 700; margin-bottom: 7px; }
[data-theme="dark"] .featured-badge { background: rgba(239,68,68,.15); color: #F87171; }

.service-item-header { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.service-meta { flex: 1; min-width: 175px; }
.service-title { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.service-desc { font-size: .8rem; color: var(--text-muted); margin-bottom: 8px; }
.service-features-inline { display: flex; flex-wrap: wrap; gap: 5px; }
.feature-tag { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border-radius: 50px; background: var(--bg-section); font-size: .7rem; color: var(--text-muted); border: 1px solid var(--border); }
.feature-tag i { color: var(--success); font-size: .62rem; }

.service-quantity { text-align: center; flex-shrink: 0; }
.qty-badge { display: flex; flex-direction: column; align-items: center; padding: 9px 14px; background: var(--bg-section); border-radius: 9px; border: 1px solid var(--border); min-width: 76px; }
.qty-badge i { color: var(--primary); font-size: .82rem; margin-bottom: 4px; }
.qty-badge span { font-size: .95rem; font-weight: 800; color: var(--text); }
.qty-badge small { font-size: .65rem; color: var(--text-light); }

.service-pricing { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 7px; flex-shrink: 0; }
.price-main { font-size: 1.45rem; font-weight: 900; color: var(--primary); }
.price-base { font-size: .72rem; color: var(--text-light); }

.btn-order { display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: 9px; background: var(--grad-primary); color: #fff; font-size: .85rem; font-weight: 700; border: none; cursor: pointer; box-shadow: var(--shadow-primary); transition: transform .15s; white-space: nowrap; text-decoration: none; font-family: inherit; }
.btn-order:hover { transform: translateY(-1px); color: #fff; }

/* ──────────────────────────────────────────────────────────────
   ORDER PAGE
────────────────────────────────────────────────────────────── */
.order-hero { padding: calc(var(--header-h) + 52px) 0 52px; text-align: center; position: relative; overflow: hidden; }
.order-hero::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.38); pointer-events: none; }
.order-hero-content { position: relative; z-index: 1; }
.order-hero h1 { font-size: clamp(1.4rem,3vw,2.2rem); font-weight: 800; color: #fff; margin-bottom: 6px; }
.order-hero p { color: rgba(255,255,255,.78); }

.order-layout { display: grid; grid-template-columns: 1fr 310px; gap: 28px; padding: 36px 0 56px; align-items: start; }

/* Wizard */
.order-wizard-wrap { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 30px; }

.wizard-steps { display: flex; align-items: center; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.wizard-step { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.step-circle { width: 34px; height: 34px; border-radius: 50%; background: var(--bg-section); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 700; color: var(--text-light); transition: all .3s; }
.wizard-step.active .step-circle, .wizard-step.done .step-circle { background: var(--grad-primary); border-color: transparent; color: #fff; box-shadow: var(--shadow-primary); }
.wizard-step span { font-size: .7rem; color: var(--text-light); text-align: center; }
.wizard-step.active span { color: var(--primary); font-weight: 600; }
.step-line { flex: 1; height: 2px; background: var(--border); margin: 0 4px 18px; }

.wizard-panel { display: none; }
.wizard-panel.active { display: block; }

.step-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 5px; display: flex; align-items: center; gap: 7px; color: var(--text); }
.step-title i { color: var(--primary); }
.step-subtitle { font-size: .85rem; color: var(--text-muted); margin-bottom: 22px; }

.onaysmm-form-group { margin-bottom: 16px; }
.onaysmm-label { display: block; font-size: .78rem; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }
.required { color: var(--danger); }
.input-hint { display: block; font-size: .73rem; color: var(--text-light); margin-top: 5px; }

.step1-service-summary { background: var(--bg-section); border-radius: 9px; padding: 14px; margin-bottom: 22px; border: 1px solid var(--border); }
.sum-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: .85rem; color: var(--text-muted); }
.sum-row strong { color: var(--text); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.customer-type-toggle { display: flex; gap: 7px; margin-bottom: 18px; }
.type-btn { flex: 1; padding: 9px; border-radius: 9px; background: var(--bg-section); border: 1.5px solid var(--border); color: var(--text-muted); font-size: .85rem; font-weight: 600; cursor: pointer; transition: all .2s; font-family: inherit; }
.type-btn.active { background: var(--grad-primary); border-color: transparent; color: #fff; box-shadow: var(--shadow-primary); }

/* Coupon */
.coupon-section { margin-bottom: 22px; }
.coupon-input-wrap { display: flex; gap: 7px; margin-top: 6px; }
.coupon-input-wrap .onaysmm-input { flex: 1; }
.btn-apply-coupon { padding: 11px 17px; border-radius: 9px; background: var(--bg-section); border: 1.5px solid var(--border); color: var(--text); font-size: .85rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: all .2s; font-family: inherit; }
.btn-apply-coupon:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
#couponResult { margin-top: 7px; font-size: .8rem; }

/* Payment */
.payment-methods { display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
.payment-option { display: flex; align-items: center; gap: 13px; padding: 13px 16px; background: var(--bg-section); border: 1.5px solid var(--border); border-radius: 11px; cursor: pointer; transition: all .2s; }
.payment-option:hover { border-color: var(--primary-border); }
.payment-option.active { border-color: var(--primary); background: var(--primary-light); }
.payment-radio { width: 17px; height: 17px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s; }
.payment-option.active .payment-radio { border-color: var(--primary); }
.payment-option.active .payment-radio i { color: var(--primary); font-size: .52rem; }
.payment-option:not(.active) .payment-radio i { display: none; }
.payment-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--bg-card); display: flex; align-items: center; justify-content: center; font-size: .95rem; color: var(--primary); flex-shrink: 0; border: 1px solid var(--border); }
.payment-info strong { display: block; font-size: .875rem; color: var(--text); }
.payment-info span { font-size: .75rem; color: var(--text-light); }

/* EFT */
.eft-info-box { background: rgba(245,158,11,.07); border: 1px solid rgba(245,158,11,.25); border-radius: 11px; padding: 18px; margin-bottom: 18px; }
.eft-info-box h4 { font-size: .9rem; font-weight: 700; color: var(--warning); margin-bottom: 12px; }
.eft-detail { display: flex; gap: 11px; font-size: .85rem; margin-bottom: 6px; }
.eft-detail span { color: var(--text-muted); min-width: 78px; }
.eft-detail strong { color: var(--text); }
.eft-notice { margin-top: 12px; font-size: .8rem; color: var(--text-muted); background: var(--bg-section); padding: 11px; border-radius: 8px; }
.wa-link { display: inline-flex; align-items: center; gap: 5px; margin-left: 7px; color: #25D366; font-weight: 600; text-decoration: none; }

/* Wizard nav */
.wizard-nav { display: flex; justify-content: space-between; margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--border); }
.btn-wizard-back { display: flex; align-items: center; gap: 6px; padding: 10px 18px; border-radius: 9px; background: var(--bg-section); border: 1.5px solid var(--border); color: var(--text-muted); font-size: .85rem; font-weight: 600; cursor: pointer; transition: all .2s; font-family: inherit; }
.btn-wizard-back:hover { border-color: var(--border-dark); color: var(--text); }
.btn-wizard-next { display: flex; align-items: center; gap: 6px; padding: 10px 22px; border-radius: 9px; background: var(--grad-primary); color: #fff; font-size: .875rem; font-weight: 700; border: none; cursor: pointer; box-shadow: var(--shadow-primary); transition: transform .15s; font-family: inherit; }
.btn-wizard-next:hover { transform: translateY(-1px); }
.btn-place-order { background: linear-gradient(135deg,#10B981,#059669); box-shadow: 0 4px 14px rgba(16,185,129,.3); }

/* Success */
.order-success { text-align: center; padding: 36px 20px; }
.success-icon { font-size: 3.5rem; color: var(--success); margin-bottom: 18px; }
.order-success h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 9px; color: var(--text); }
.order-success p { margin-bottom: 18px; }
.success-order-num { font-size: .95rem; color: var(--text-muted); margin-bottom: 22px; }
.success-order-num strong { color: var(--primary); font-size: 1.05rem; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Summary sidebar */
.order-summary-sidebar { position: sticky; top: calc(var(--header-h) + 16px); }
.order-summary-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 22px; margin-bottom: 12px; }
.summary-title { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 16px; }
.summary-service { margin-bottom: 16px; }
.summary-platform { font-size: .8rem; font-weight: 700; margin-bottom: 5px; }
.summary-service-name { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.summary-category { font-size: .75rem; color: var(--text-light); }
.summary-divider { height: 1px; background: var(--border); margin: 12px 0; }
.summary-row { display: flex; justify-content: space-between; font-size: .85rem; padding: 4px 0; color: var(--text-muted); }
.summary-row strong { color: var(--text); }
.discount-text { color: var(--success) !important; }
.summary-total { display: flex; justify-content: space-between; font-size: 1rem; padding: 4px 0; }
.summary-total span { font-weight: 700; color: var(--text); }
.summary-total strong { color: var(--primary); font-size: 1.25rem; font-weight: 900; }
.summary-features { margin-top: 14px; display: flex; flex-direction: column; gap: 5px; }
.sum-feature { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--text-muted); }
.sum-feature i { color: var(--success); font-size: .7rem; }
.summary-guarantees { display: flex; flex-direction: column; gap: 5px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); }
.guarantee-item { display: flex; align-items: center; gap: 6px; font-size: .75rem; color: var(--text-muted); }
.guarantee-item i { color: var(--primary); width: 13px; }

.order-help-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 16px; }
.order-help-card h5 { font-size: .85rem; margin-bottom: 11px; display: flex; align-items: center; gap: 6px; color: var(--text); }
.order-help-card h5 i { color: var(--primary); }
.help-btn { display: flex; align-items: center; gap: 7px; padding: 9px 13px; border-radius: 9px; font-size: .83rem; font-weight: 600; margin-bottom: 7px; transition: opacity .2s; text-decoration: none; }
.help-btn.whatsapp { background: rgba(37,211,102,.1); color: #16A34A; border: 1px solid rgba(37,211,102,.25); }
.help-btn.phone { background: var(--bg-section); color: var(--text); border: 1px solid var(--border); }
.help-btn:hover { opacity: .82; }

/* ──────────────────────────────────────────────────────────────
   TRACKER PAGE
────────────────────────────────────────────────────────────── */
.tracker-hero { padding: calc(var(--header-h) + 52px) 0 52px; text-align: center; background: linear-gradient(145deg, var(--bg), var(--primary-light)); border-bottom: 1px solid var(--border); }
.tracker-hero-icon { width: 68px; height: 68px; border-radius: 17px; background: var(--grad-primary); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; color: #fff; margin: 16px auto 22px; box-shadow: var(--shadow-primary); }
.tracker-hero h1 { font-size: clamp(1.7rem,4vw,2.7rem); font-weight: 800; color: var(--text); margin-bottom: 8px; }
.tracker-hero p { color: var(--text-muted); }

.tracker-section { padding: 52px 0 72px; }
.tracker-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 32px; max-width: 660px; margin: 0 auto 44px; box-shadow: var(--shadow-md); }

.tracker-input-wrap { display: flex; align-items: center; background: var(--bg-section); border: 1.5px solid var(--border); border-radius: 11px; overflow: hidden; transition: border-color .2s; }
.tracker-input-wrap:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.tracker-input-icon { padding: 0 13px; color: var(--text-light); font-size: .95rem; flex-shrink: 0; }
.tracker-input { flex: 1; background: transparent!important; border: none!important; border-radius: 0!important; padding: 13px 0!important; font-size: .95rem!important; color: var(--text)!important; }
.tracker-input:focus { outline: none!important; box-shadow: none!important; }
.btn-tracker-search { display: flex; align-items: center; gap: 7px; padding: 13px 22px; background: var(--grad-primary); color: #fff; font-size: .9rem; font-weight: 700; border: none; cursor: pointer; white-space: nowrap; transition: opacity .2s; flex-shrink: 0; font-family: inherit; }
.btn-tracker-search:hover { opacity: .9; }

.tracker-hint { font-size: .78rem; color: var(--text-light); margin-top: 11px; }
.tracker-hint i { margin-right: 3px; }
.tracker-result { margin-top: 24px; }

.tracker-result-card { background: var(--bg-section); border: 1.5px solid var(--border); border-radius: 13px; overflow: hidden; }
.tresult-header { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; background: var(--primary-light); border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 9px; }
.tresult-num { font-size: .95rem; font-weight: 800; color: var(--text); }
.tresult-body { padding: 18px; }
.tresult-row { display: flex; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid var(--border); gap: 11px; }
.tresult-row:last-child { border-bottom: none; }
.tresult-label { font-size: .74rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: .05em; min-width: 105px; flex-shrink: 0; }
.tresult-val { font-size: .875rem; color: var(--text); flex: 1; }

.status-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 11px; border-radius: 50px; font-size: .75rem; font-weight: 700; }
.status-bekliyor   { background: rgba(245,158,11,.12); color: #D97706; }
.status-isleniyor  { background: rgba(59,130,246,.12); color: #2563EB; }
.status-tamamlandi { background: rgba(16,185,129,.12); color: #059669; }
.status-iptal      { background: rgba(239,68,68,.12); color: #DC2626; }
.pay-status-paid   { background: rgba(16,185,129,.12); color: #059669; }
.pay-status-pending{ background: rgba(245,158,11,.12); color: #D97706; }
.pay-status-failed { background: rgba(239,68,68,.12); color: #DC2626; }

.tracker-not-found,.tracker-loading { text-align: center; padding: 32px 18px; color: var(--text-muted); }
.tracker-not-found i,.tracker-loading i { font-size: 2.5rem; margin-bottom: 12px; display: block; opacity: .35; }

.tracker-info-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(195px,1fr)); gap: 14px; max-width: 860px; margin: 0 auto; }
.tracker-info-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: 13px; padding: 18px; text-align: center; transition: all .2s; }
.tracker-info-card:hover { border-color: var(--primary-border); transform: translateY(-2px); box-shadow: var(--shadow); }
.tinfo-icon { width: 44px; height: 44px; border-radius: 11px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1rem; margin: 0 auto 11px; }
.tracker-info-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: 5px; color: var(--text); }
.tracker-info-card p { font-size: .8rem; }

/* ── Shared buttons ─────────────────────────────────────────── */
.btn-primary { display: inline-flex; align-items: center; gap: 7px; padding: 10px 20px; border-radius: 9px; background: var(--grad-primary); color: #fff; font-size: .875rem; font-weight: 700; border: none; box-shadow: var(--shadow-primary); transition: transform .15s; cursor: pointer; text-decoration: none; font-family: inherit; }
.btn-primary:hover { transform: translateY(-1px); color: #fff; }
.btn-secondary { display: inline-flex; align-items: center; gap: 7px; padding: 10px 20px; border-radius: 9px; border: 1.5px solid var(--border-dark); color: var(--text); font-size: .875rem; font-weight: 600; background: var(--bg-card); transition: all .15s; text-decoration: none; cursor: pointer; font-family: inherit; }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* ── Responsive ─────────────────────────────────────────────── */
@media(max-width:900px){
  .category-layout,.order-layout{grid-template-columns:1fr}
  .category-sidebar,.order-summary-sidebar{position:static}
  /* Mobilde kategori listesi ÜSTTE, hizmetler altta */
  .category-sidebar{order:1}
  .category-main{order:2}
  /* Mobilde sipariş sayfası sidebar altta */
  .order-summary-sidebar{order:2}
  .order-wizard-wrap-outer{order:1}
  .form-grid{grid-template-columns:1fr}
  /* Kategori widget: sadece toggle gözükür, liste açılır/kapanır */
  .sidebar-widget:first-child .sidebar-category-list{display:none;margin-top:10px}
  .sidebar-widget:first-child .sidebar-category-list.is-open{display:block}
  /* Diğer widget'lar (info, tracker) mobilde gizle — sadece kategoriler göster */
  .sidebar-widget.info-box{display:none}
  .sidebar-widget:not(:first-child):not(.info-box):last-child{display:none}
  .sidebar-toggle-btn{display:flex;align-items:center;justify-content:space-between;width:100%;background:none;border:none;color:inherit;font-size:.875rem;font-family:inherit;font-weight:700;cursor:pointer;padding:0;text-align:left;line-height:1.4}
  .sidebar-toggle-btn .toggle-arrow{transition:transform .25s;font-style:normal;font-size:12px;flex-shrink:0}
  .sidebar-toggle-btn.is-open .toggle-arrow{transform:rotate(180deg)}
  /* Mobilde toolbar, kategori listesinin hemen altında */
  .category-toolbar{margin-top:0}
}
@media(min-width:901px){
  /* Masaüstü: toggle butonu tıklanamaz, liste her zaman açık */
  .sidebar-toggle-btn{pointer-events:none;display:flex;width:100%;cursor:default;background:none;border:none;padding:0;font-family:inherit;font-size:.875rem;font-weight:700;color:var(--text);text-align:left;gap:7px;align-items:center}
  .sidebar-toggle-btn .toggle-arrow{display:none}
  .sidebar-toggle-btn i:not(.toggle-arrow){color:var(--primary)}
  .sidebar-category-list{display:block !important}
  /* Masaüstü: h4 içindeki toggle butonun görünümü düzgün olsun */
  .sidebar-widget h4:has(.sidebar-toggle-btn){margin-bottom:13px}
}
@media(max-width:600px){
  .wizard-step span{display:none}
  .order-wizard-wrap{padding:18px 14px}
  .categories-grid{grid-template-columns:1fr}
  .why-us-grid{grid-template-columns:1fr 1fr}
  .service-item-header{flex-direction:column;align-items:flex-start}
  .service-pricing{align-items:flex-start;flex-direction:row;gap:14px;width:100%;justify-content:space-between}
  .tracker-input-wrap{flex-wrap:wrap}
  .btn-tracker-search{width:100%;justify-content:center;border-radius:0 0 9px 9px}
  .tracker-card{padding:18px 14px}
}
@media(max-width:400px){
  .why-us-grid{grid-template-columns:1fr}
  .stat-badge{min-width:70px;padding:8px 12px}
}

/* Dark mode inputs – frontend plugin pages */
[data-theme="dark"] .onaysmm-input {
  background: #1E1E30 !important;
  border-color: rgba(255,255,255,.10) !important;
  color: #E2E8F0 !important;
}
[data-theme="dark"] .onaysmm-input::placeholder { color: #64748B !important; }
[data-theme="dark"] .onaysmm-input:focus { border-color: var(--primary) !important; }
[data-theme="dark"] .onaysmm-select {
  background-color: #1E1E30 !important;
  border-color: rgba(255,255,255,.10) !important;
  color: #E2E8F0 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
}
[data-theme="dark"] .onaysmm-select option { background: #1A1A2E; color: #E2E8F0; }

/* ── Success page EFT info box — theme aware ──────────────── */
.success-eft-box {
  margin: 20px 0 0;
  background: var(--bg-section, #F8FAFC);
  border: 1.5px solid var(--border, #E2E8F0);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
}
.success-eft-box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary, #7C3AED);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.success-eft-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.success-eft-rows > div {
  font-size: .9rem;
  color: var(--text-muted, #64748B);
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.success-eft-rows > div span {
  font-weight: 600;
  color: var(--text, #0F172A);
  min-width: 90px;
}
.success-eft-rows > div strong {
  color: var(--text, #0F172A);
  font-weight: 600;
  word-break: break-all;
}
.success-eft-desc {
  color: var(--primary, #7C3AED) !important;
  background: var(--primary-light, rgba(124,58,237,.08));
  padding: 2px 10px;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
}

/* Dark mode override */
[data-theme="dark"] .success-eft-box {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .success-eft-rows > div { color: #94A3B8; }
[data-theme="dark"] .success-eft-rows > div span,
[data-theme="dark"] .success-eft-rows > div strong { color: #E2E8F0; }

/* Success actions — daha fazla üst boşluk */
.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px !important;
}

/* ══════════════════════════════════════════════════════════════
   EFT ÖDEME BİLDİRİM FORMU
══════════════════════════════════════════════════════════════ */
.onaysmm-payment-notif-wrap { padding: 40px 0; }
.opn-card {
  max-width: 720px; margin: 0 auto;
  background: var(--bg-card, #fff);
  border: 1.5px solid var(--border, #E2E8F0);
  border-radius: 18px;
  padding: 36px;
}
.opn-header { text-align: center; margin-bottom: 28px; }
.opn-header h2 {
  font-size: 1.5rem; font-weight: 800;
  color: var(--text, #0F172A);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
  justify-content: center;
}
.opn-header h2 i { color: var(--primary, #7C3AED); }
.opn-header p { color: var(--text-muted, #64748B); font-size: .95rem; }

.opn-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.opn-field { display: flex; flex-direction: column; }
.opn-field label {
  font-size: .82rem; font-weight: 600;
  color: var(--text, #0F172A);
  margin-bottom: 6px;
}
.opn-field .req { color: #EF4444; }
.opn-field input, .opn-field select, .opn-field textarea {
  padding: 11px 14px;
  background: var(--input-bg, #F8FAFC);
  border: 1.5px solid var(--input-border, #CBD5E1);
  border-radius: 10px;
  color: var(--input-text, #0F172A);
  font-size: 15px; font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.opn-field input:focus, .opn-field select:focus, .opn-field textarea:focus {
  outline: none;
  border-color: var(--primary, #7C3AED);
  box-shadow: 0 0 0 3px var(--primary-light, rgba(124,58,237,.1));
}
.opn-field small {
  color: var(--text-light, #94A3B8);
  font-size: .72rem; margin-top: 4px;
}

.opn-submit-btn {
  margin-top: 24px; width: 100%;
  padding: 14px 24px;
  background: var(--grad, linear-gradient(135deg,#7C3AED,#06B6D4));
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border: none; border-radius: 12px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: var(--shadow-p, 0 8px 24px rgba(124,58,237,.22));
  transition: transform .15s;
}
.opn-submit-btn:hover { transform: translateY(-2px); }
.opn-submit-btn:disabled { opacity: .7; cursor: not-allowed; }

.opn-msg {
  margin-top: 20px; padding: 14px 18px;
  border-radius: 10px;
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem;
}
.opn-msg-success {
  background: rgba(16,185,129,.1);
  border: 1.5px solid rgba(16,185,129,.3);
  color: #065F46;
}
.opn-msg-error {
  background: rgba(239,68,68,.1);
  border: 1.5px solid rgba(239,68,68,.3);
  color: #991B1B;
}

[data-theme="dark"] .opn-msg-success { color: #6EE7B7; }
[data-theme="dark"] .opn-msg-error { color: #FCA5A5; }

@media (max-width: 640px) {
  .opn-grid { grid-template-columns: 1fr; gap: 14px; }
  .opn-card { padding: 24px 18px; border-radius: 14px; }
}

/* ══════════════════════════════════════════════════════════════
   İLETİŞİM FORMU
══════════════════════════════════════════════════════════════ */
.onaysmm-contact-wrap { padding: 40px 0; max-width: 1100px; margin: 0 auto; }
.ocf-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px;
}

.ocf-info-card, .ocf-form-card {
  background: var(--bg-card, #fff);
  border: 1.5px solid var(--border, #E2E8F0);
  border-radius: 18px;
  padding: 32px;
}

.ocf-info-card h3, .ocf-form-card h3 {
  font-size: 1.35rem; font-weight: 800;
  color: var(--text, #0F172A);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.ocf-info-card h3 i, .ocf-form-card h3 i { color: var(--primary, #7C3AED); }
.ocf-info-card > p { color: var(--text-muted, #64748B); font-size: .9rem; margin-bottom: 24px; }

.ocf-info-list { display: flex; flex-direction: column; gap: 16px; }
.ocf-info-item { display: flex; align-items: flex-start; gap: 14px; }
.ocf-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--primary-light, rgba(124,58,237,.1));
  color: var(--primary, #7C3AED);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0;
}
.ocf-info-item > div:last-child { font-size: .88rem; color: var(--text-muted, #64748B); }
.ocf-info-item strong { color: var(--text, #0F172A); }
.ocf-info-item a { color: var(--primary, #7C3AED); text-decoration: none; }

.ocf-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.ocf-field { display: flex; flex-direction: column; }
.ocf-field label {
  font-size: .82rem; font-weight: 600;
  color: var(--text, #0F172A);
  margin-bottom: 6px;
}
.ocf-field .req { color: #EF4444; }
.ocf-field input, .ocf-field select, .ocf-field textarea {
  padding: 11px 14px;
  background: var(--input-bg, #F8FAFC);
  border: 1.5px solid var(--input-border, #CBD5E1);
  border-radius: 10px;
  color: var(--input-text, #0F172A);
  font-size: 15px; font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.ocf-field input:focus, .ocf-field select:focus, .ocf-field textarea:focus {
  outline: none;
  border-color: var(--primary, #7C3AED);
  box-shadow: 0 0 0 3px var(--primary-light, rgba(124,58,237,.1));
}

.ocf-submit-btn {
  margin-top: 20px; width: 100%;
  padding: 14px 24px;
  background: var(--grad, linear-gradient(135deg,#7C3AED,#06B6D4));
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border: none; border-radius: 12px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: var(--shadow-p, 0 8px 24px rgba(124,58,237,.22));
  transition: transform .15s;
}
.ocf-submit-btn:hover { transform: translateY(-2px); }
.ocf-submit-btn:disabled { opacity: .7; cursor: not-allowed; }

.ocf-msg {
  margin-top: 18px; padding: 14px 18px;
  border-radius: 10px;
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem;
}
.ocf-msg-success {
  background: rgba(16,185,129,.1);
  border: 1.5px solid rgba(16,185,129,.3);
  color: #065F46;
}
.ocf-msg-error {
  background: rgba(239,68,68,.1);
  border: 1.5px solid rgba(239,68,68,.3);
  color: #991B1B;
}
[data-theme="dark"] .ocf-msg-success { color: #6EE7B7; }
[data-theme="dark"] .ocf-msg-error { color: #FCA5A5; }

@media (max-width: 960px) {
  .ocf-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ocf-grid-2 { grid-template-columns: 1fr; }
  .ocf-info-card, .ocf-form-card { padding: 24px 18px; border-radius: 14px; }
}


/* ══════════════════════════════════════════════════════════════
   İLETİŞİM + EFT FORM — DARK MODE GÖRÜNÜRLÜK DÜZELTMESİ
══════════════════════════════════════════════════════════════ */

/* Tüm form label'ları her temada okunabilir */
[data-theme="dark"] .ocf-field label,
[data-theme="dark"] .opn-field label {
  color: #E2E8F0 !important;
  font-weight: 600;
}
[data-theme="light"] .ocf-field label,
[data-theme="light"] .opn-field label {
  color: #1E293B !important;
  font-weight: 600;
}

/* Zorunlu işaretler — kesin kırmızı */
.ocf-field .req,
.opn-field .req {
  color: #EF4444 !important;
  font-weight: 700;
  margin-left: 2px;
}

/* Inputlar — dark modda daha açık arka plan + belirgin border */
[data-theme="dark"] .ocf-field input,
[data-theme="dark"] .ocf-field select,
[data-theme="dark"] .ocf-field textarea,
[data-theme="dark"] .opn-field input,
[data-theme="dark"] .opn-field select,
[data-theme="dark"] .opn-field textarea {
  background: rgba(255,255,255,.06) !important;
  border: 1.5px solid rgba(255,255,255,.15) !important;
  color: #F1F5F9 !important;
  -webkit-text-fill-color: #F1F5F9 !important;
}
[data-theme="dark"] .ocf-field input::placeholder,
[data-theme="dark"] .ocf-field textarea::placeholder,
[data-theme="dark"] .opn-field input::placeholder,
[data-theme="dark"] .opn-field textarea::placeholder {
  color: rgba(255,255,255,.45) !important;
}
[data-theme="dark"] .ocf-field input:focus,
[data-theme="dark"] .ocf-field select:focus,
[data-theme="dark"] .ocf-field textarea:focus,
[data-theme="dark"] .opn-field input:focus,
[data-theme="dark"] .opn-field select:focus,
[data-theme="dark"] .opn-field textarea:focus {
  background: rgba(255,255,255,.08) !important;
  border-color: var(--primary, #7C3AED) !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,.2) !important;
}

/* Select option'lar dark modda */
[data-theme="dark"] .ocf-field select option,
[data-theme="dark"] .opn-field select option {
  background: #1A1A2E;
  color: #E2E8F0;
}

/* Light mode input'lar */
[data-theme="light"] .ocf-field input,
[data-theme="light"] .ocf-field select,
[data-theme="light"] .ocf-field textarea,
[data-theme="light"] .opn-field input,
[data-theme="light"] .opn-field select,
[data-theme="light"] .opn-field textarea {
  background: #F8FAFC !important;
  border: 1.5px solid #CBD5E1 !important;
  color: #0F172A !important;
  -webkit-text-fill-color: #0F172A !important;
}

/* Kartlar — dark modda */
[data-theme="dark"] .ocf-info-card,
[data-theme="dark"] .ocf-form-card,
[data-theme="dark"] .opn-card {
  background: rgba(255,255,255,.03) !important;
  border-color: rgba(255,255,255,.08) !important;
}

/* Bilgi kartı linkleri */
[data-theme="dark"] .ocf-info-item a { color: var(--primary, #A78BFA) !important; }
[data-theme="dark"] .ocf-info-item strong { color: #E2E8F0 !important; }
[data-theme="dark"] .ocf-info-item > div:last-child { color: #94A3B8 !important; }

/* Card başlıkları dark modda */
[data-theme="dark"] .ocf-info-card h3,
[data-theme="dark"] .ocf-form-card h3,
[data-theme="dark"] .opn-header h2 {
  color: #F1F5F9 !important;
}
[data-theme="dark"] .ocf-info-card > p,
[data-theme="dark"] .opn-header p {
  color: #94A3B8 !important;
}

/* ── Dark mode iletişim & ödeme bildirim formu input renkleri ── */
[data-theme="dark"] .ocf-field input,
[data-theme="dark"] .ocf-field select,
[data-theme="dark"] .ocf-field textarea,
[data-theme="dark"] .opn-field input,
[data-theme="dark"] .opn-field select,
[data-theme="dark"] .opn-field textarea {
  background: #1E1E30 !important;
  border-color: rgba(255,255,255,.12) !important;
  color: #E2E8F0 !important;
}
[data-theme="dark"] .ocf-field input::placeholder,
[data-theme="dark"] .ocf-field textarea::placeholder,
[data-theme="dark"] .opn-field input::placeholder,
[data-theme="dark"] .opn-field textarea::placeholder {
  color: #64748B !important;
}
[data-theme="dark"] .ocf-field select option,
[data-theme="dark"] .opn-field select option {
  background: #1A1A2E;
  color: #E2E8F0;
}
[data-theme="dark"] .ocf-info-card,
[data-theme="dark"] .ocf-form-card,
[data-theme="dark"] .opn-card {
  background: rgba(255,255,255,.04) !important;
  border-color: rgba(255,255,255,.08) !important;
}
[data-theme="dark"] .ocf-info-card h3,
[data-theme="dark"] .ocf-form-card h3,
[data-theme="dark"] .opn-header h2,
[data-theme="dark"] .ocf-field label,
[data-theme="dark"] .opn-field label,
[data-theme="dark"] .ocf-info-item strong {
  color: #E2E8F0 !important;
}
[data-theme="dark"] .ocf-info-card > p,
[data-theme="dark"] .opn-header p,
[data-theme="dark"] .ocf-info-item > div:last-child,
[data-theme="dark"] .opn-field small,
[data-theme="dark"] .ocf-field small {
  color: #94A3B8 !important;
}

/* ── İletişim formu — dış wrapper kart efekti KAPALI ──────── */
.onaysmm-contact-wrap {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 40px 0 !important;
}
/* Dış container'ın oluşturduğu kart efekti varsa kaldır */
.onaysmm-contact-wrap > .ocf-grid {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Aynısı ödeme bildirim formu için */
.onaysmm-payment-notif-wrap {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* ── Light mode formlar — kontrast artır ───────────────────── */
[data-theme="light"] .ocf-info-card,
[data-theme="light"] .ocf-form-card,
[data-theme="light"] .opn-card {
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  color: #0F172A !important;
}
[data-theme="light"] .ocf-info-card h3,
[data-theme="light"] .ocf-form-card h3,
[data-theme="light"] .opn-header h2,
[data-theme="light"] .ocf-field label,
[data-theme="light"] .opn-field label,
[data-theme="light"] .ocf-info-item strong {
  color: #0F172A !important;
}
[data-theme="light"] .ocf-info-card > p,
[data-theme="light"] .opn-header p,
[data-theme="light"] .ocf-info-item > div:last-child,
[data-theme="light"] .opn-field small,
[data-theme="light"] .ocf-field small {
  color: #64748B !important;
}
[data-theme="light"] .ocf-field input,
[data-theme="light"] .ocf-field select,
[data-theme="light"] .ocf-field textarea,
[data-theme="light"] .opn-field input,
[data-theme="light"] .opn-field select,
[data-theme="light"] .opn-field textarea {
  background: #F8FAFC !important;
  border: 1.5px solid #CBD5E1 !important;
  color: #0F172A !important;
}
[data-theme="light"] .ocf-field input::placeholder,
[data-theme="light"] .ocf-field textarea::placeholder,
[data-theme="light"] .opn-field input::placeholder,
[data-theme="light"] .opn-field textarea::placeholder {
  color: #94A3B8 !important;
}

/* İkonlar — admin rengi */
.ocf-info-card h3 i,
.ocf-form-card h3 i,
.opn-header h2 i,
.ocf-icon {
  color: var(--primary) !important;
}
[data-theme="light"] .ocf-icon {
  background: var(--primary-light) !important;
}
[data-theme="dark"] .ocf-icon {
  background: var(--primary-light) !important;
}
.ocf-info-item a { color: var(--primary) !important; }

/* ══════════════════════════════════════════════════════════════
   FILE INPUT — DOSYA SEÇ BUTONU (HER ÇEŞİT TEMA)
══════════════════════════════════════════════════════════════ */
input[type="file"]::file-selector-button,
input[type="file"]::-webkit-file-upload-button {
  background: var(--primary, #7C3AED);
  color: #fff;
  border: none;
  padding: 7px 14px;
  border-radius: 7px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 600;
  font-family: inherit;
  margin-right: 10px;
  transition: background .2s;
}
input[type="file"]::file-selector-button:hover,
input[type="file"]::-webkit-file-upload-button:hover {
  background: var(--primary-dark, #5B21B6);
}

/* Dark modda dosya input wrapper */
[data-theme="dark"] .opn-field input[type="file"],
[data-theme="dark"] .ocf-field input[type="file"],
[data-theme="dark"] .eft-notif-field input[type="file"] {
  color: #E2E8F0 !important;
}
[data-theme="dark"] input[type="file"]::file-selector-button,
[data-theme="dark"] input[type="file"]::-webkit-file-upload-button {
  background: var(--primary, #7C3AED) !important;
  color: #fff !important;
}

/* Step4 içi EFT bildirim formu stilleri */
.step4-eft-notif {
  margin-top: 24px;
  padding: 22px;
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  text-align: left;
}
.step4-eft-notif h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step4-eft-notif h4 i { color: var(--primary); }
.step4-eft-notif p {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0 0 18px;
}
.step4-eft-notif .eft-notif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.eft-notif-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.eft-notif-field label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
}
.eft-notif-field .req { color: #EF4444; }
.eft-notif-field input,
.eft-notif-field select,
.eft-notif-field textarea {
  padding: 9px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: .85rem;
  font-family: inherit;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.eft-notif-field input:focus,
.eft-notif-field select:focus,
.eft-notif-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,.15);
}
.eft-notif-field-full { grid-column: 1 / -1; }
.eft-notif-submit {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity .2s;
  font-family: inherit;
}
.eft-notif-submit:hover { opacity: .88; }
.eft-notif-submit:disabled { opacity: .6; cursor: not-allowed; }
.eft-notif-msg {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 9px;
  font-size: .87rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eft-notif-msg.success {
  background: rgba(16,185,129,.1);
  border: 1.5px solid rgba(16,185,129,.25);
  color: #065F46;
}
.eft-notif-msg.error {
  background: rgba(239,68,68,.1);
  border: 1.5px solid rgba(239,68,68,.25);
  color: #991B1B;
}
[data-theme="dark"] .eft-notif-msg.success { color: #6EE7B7; }
[data-theme="dark"] .eft-notif-msg.error   { color: #FCA5A5; }
[data-theme="dark"] .eft-notif-field input,
[data-theme="dark"] .eft-notif-field select,
[data-theme="dark"] .eft-notif-field textarea {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.15) !important;
  color: #F1F5F9 !important;
}
[data-theme="dark"] .eft-notif-field label { color: #E2E8F0; }
[data-theme="dark"] .eft-notif-field select option { background: #1A1A2E; color: #E2E8F0; }
@media (max-width: 600px) {
  .step4-eft-notif .eft-notif-grid { grid-template-columns: 1fr; }
}
