/* Hesap / Auth sayfa şablonları — paylaşılan stiller */
.acc-page { --acc-o: #E8740C; --acc-o-h: #d06508; --acc-d: #1a1a2e; --acc-t: #374151; --acc-tl: #6B7280; --acc-bg: #F9FAFB; --acc-bd: #E5E7EB; --acc-err: #DC2626; --acc-ok: #16A34A;
  background: linear-gradient(180deg, #FFF7EC 0%, #FFFFFF 60%); min-height: 100vh; padding: 112px 0 80px; color: var(--acc-t); }
.acc-wrap { max-width: 480px; margin: 0 auto; padding: 0 20px; }
.acc-wrap-wide { max-width: 1080px; }
.acc-card { background: #fff; border: 1px solid var(--acc-bd); border-radius: 18px; padding: 36px 32px; box-shadow: 0 20px 50px rgba(26,26,46,0.06); }
.acc-head { text-align: center; margin-bottom: 24px; }
.acc-badge { display: inline-block; background: rgba(232,116,12,0.12); color: var(--acc-o); font-size: 0.78rem; font-weight: 700; padding: 5px 12px; border-radius: 9999px; letter-spacing: 0.02em; margin-bottom: 12px; }
.acc-title { font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 800; color: var(--acc-d); margin: 0 0 6px; letter-spacing: -0.02em; }
.acc-sub { color: var(--acc-tl); font-size: 0.95rem; line-height: 1.55; margin: 0; }
.acc-form { display: flex; flex-direction: column; gap: 14px; margin-top: 6px; }
.acc-field { display: flex; flex-direction: column; gap: 6px; }
.acc-field label { font-size: 0.85rem; font-weight: 600; color: var(--acc-d); }
.acc-field input[type="text"], .acc-field input[type="email"], .acc-field input[type="password"], .acc-field input[type="tel"] {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--acc-bd); border-radius: 10px; font-size: 0.95rem; font-family: inherit; background: #fff; color: var(--acc-d); transition: border-color 0.15s, box-shadow 0.15s; }
.acc-field input:focus { outline: none; border-color: var(--acc-o); box-shadow: 0 0 0 3px rgba(232,116,12,0.15); }
.acc-field .hint { font-size: 0.8rem; color: var(--acc-tl); }
.acc-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 0.88rem; }
.acc-check { display: inline-flex; align-items: center; gap: 8px; color: var(--acc-t); cursor: pointer; }
.acc-check input { accent-color: var(--acc-o); }
.acc-link { color: var(--acc-o); font-weight: 600; text-decoration: none; }
.acc-link:hover { text-decoration: underline; }
.acc-btn { display: inline-flex; justify-content: center; align-items: center; gap: 8px; padding: 13px 20px; border-radius: 10px; font-weight: 700; font-size: 0.95rem; text-decoration: none; border: none; cursor: pointer; transition: transform 0.15s, background 0.2s; font-family: inherit; }
.acc-btn-primary { background: var(--acc-o); color: #fff; width: 100%; }
.acc-btn-primary:hover { background: var(--acc-o-h); transform: translateY(-1px); }
.acc-btn-ghost { background: #fff; border: 1.5px solid var(--acc-bd); color: var(--acc-d); }
.acc-btn-ghost:hover { border-color: var(--acc-o); color: var(--acc-o); }
.acc-divider { display: flex; align-items: center; gap: 14px; color: var(--acc-tl); font-size: 0.82rem; margin: 8px 0; }
.acc-divider::before, .acc-divider::after { content: ""; flex: 1; height: 1px; background: var(--acc-bd); }
.acc-alt { text-align: center; font-size: 0.9rem; color: var(--acc-tl); margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--acc-bd); }
.acc-alert { padding: 12px 14px; border-radius: 10px; font-size: 0.9rem; line-height: 1.5; margin-bottom: 4px; border: 1px solid transparent; }
.acc-alert-error { background: #FEF2F2; color: var(--acc-err); border-color: #FECACA; }
.acc-alert-ok { background: #F0FDF4; color: var(--acc-ok); border-color: #BBF7D0; }
.acc-dash { display: grid; grid-template-columns: 260px 1fr; gap: 32px; }
.acc-side { background: #fff; border: 1px solid var(--acc-bd); border-radius: 16px; padding: 22px; position: sticky; top: 96px; align-self: start; box-shadow: 0 10px 30px rgba(26,26,46,0.04); }
.acc-user { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; margin-bottom: 14px; border-bottom: 1px solid var(--acc-bd); }
.acc-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--acc-o), var(--acc-o-h)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; }
.acc-user-name { font-weight: 700; color: var(--acc-d); font-size: 0.95rem; }
.acc-user-mail { color: var(--acc-tl); font-size: 0.82rem; }
.acc-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.acc-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; color: var(--acc-t); font-size: 0.92rem; text-decoration: none; transition: background 0.15s, color 0.15s; }
.acc-nav a:hover, .acc-nav a.is-active { background: #FFF7EC; color: var(--acc-o); font-weight: 600; }
.acc-nav a.is-logout { color: var(--acc-err); margin-top: 8px; border-top: 1px solid var(--acc-bd); padding-top: 14px; border-radius: 0; }
.acc-main { background: #fff; border: 1px solid var(--acc-bd); border-radius: 16px; padding: 28px; }
.acc-main h2 { font-size: 1.3rem; font-weight: 800; color: var(--acc-d); margin: 0 0 16px; letter-spacing: -0.01em; }
.acc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-bottom: 20px; }
.acc-stat { background: var(--acc-bg); border: 1px solid var(--acc-bd); border-radius: 12px; padding: 16px; }
.acc-stat-label { font-size: 0.78rem; color: var(--acc-tl); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.acc-stat-val { font-size: 1.35rem; font-weight: 800; color: var(--acc-d); margin-top: 4px; }
.acc-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; margin-top: 8px; }
.acc-table th, .acc-table td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--acc-bd); }
.acc-table thead th { background: var(--acc-bg); color: var(--acc-d); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.acc-pill { display: inline-block; font-size: 0.76rem; font-weight: 700; padding: 3px 10px; border-radius: 9999px; }
.acc-pill-ok { background: #DCFCE7; color: #166534; }
.acc-pill-wait { background: #FEF3C7; color: #92400E; }
.acc-pill-cancel { background: #FEE2E2; color: #991B1B; }
.acc-pill-proc { background: #DBEAFE; color: #1E40AF; }
.acc-empty { text-align: center; padding: 48px 20px; color: var(--acc-tl); }
.acc-empty-icon { font-size: 2.4rem; margin-bottom: 10px; }
.acc-main .woocommerce-MyAccount-navigation { display: none; }
.acc-main .woocommerce-notices-wrapper { margin-bottom: 16px; }
.acc-main table.shop_table { border-collapse: collapse; width: 100%; font-size: 0.92rem; }
.acc-main table.shop_table th, .acc-main table.shop_table td { padding: 12px 10px; border-bottom: 1px solid var(--acc-bd); text-align: left; }
.acc-main .button, .acc-main button.woocommerce-Button { display: inline-block; background: var(--acc-o); color: #fff !important; padding: 10px 16px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; text-decoration: none; border: none; cursor: pointer; font-family: inherit; }
.acc-main .button:hover, .acc-main button.woocommerce-Button:hover { background: var(--acc-o-h); }
.acc-main form.woocommerce-EditAccountForm .form-row, .acc-main form.woocommerce-ResetPassword .form-row, .acc-main form.woocommerce-EditAddressForm .form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.acc-main form input[type="text"], .acc-main form input[type="email"], .acc-main form input[type="password"], .acc-main form input[type="tel"] {
  width: 100%; padding: 11px 13px; border: 1.5px solid var(--acc-bd); border-radius: 10px; font-size: 0.93rem; }
.acc-main form input:focus { outline: none; border-color: var(--acc-o); box-shadow: 0 0 0 3px rgba(232,116,12,0.15); }
/* --- Ek bileşenler (v2) --- */
.acc-main h3 { font-size: 1.05rem; font-weight: 700; color: var(--acc-d); margin: 22px 0 12px; }
.acc-muted { color: var(--acc-tl); font-size: 0.85rem; }
.acc-btn-sm { padding: 7px 14px; font-size: 0.82rem; border-radius: 8px; }
.acc-main .acc-btn-primary { width: auto; } /* dashboard form butonlarında full-width'i iptal */
.acc-table-wrap { width: 100%; overflow-x: auto; border: 1px solid var(--acc-bd); border-radius: 12px; }
.acc-table-wrap .acc-table { margin: 0; }
.acc-table-wrap .acc-table th, .acc-table-wrap .acc-table td { padding: 14px 16px; }
.acc-table-wrap .acc-table tbody tr:last-child td { border-bottom: 0; }
.acc-pager { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }
.acc-order-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.acc-notes { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 10px; }
.acc-notes li { background: var(--acc-bg); border-left: 3px solid var(--acc-o); border-radius: 8px; padding: 12px 14px; font-size: 0.9rem; }
.acc-notes time { display: block; color: var(--acc-tl); font-size: 0.78rem; margin-bottom: 4px; }
.acc-order-detail table.shop_table { margin-top: 0; }
.acc-order-detail address { font-style: normal; line-height: 1.55; color: var(--acc-t); }
/* Adresler */
.acc-addr-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 12px; }
.acc-addr-card { background: var(--acc-bg); border: 1px solid var(--acc-bd); border-radius: 12px; padding: 18px 18px 16px; }
.acc-addr-card header { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 10px; }
.acc-addr-card h3 { margin: 0; font-size: 1rem; }
.acc-addr-card address { font-style: normal; font-size: 0.92rem; line-height: 1.55; color: var(--acc-t); }
/* Form grid + actions + fieldset */
.acc-form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.acc-form-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--acc-bd); }
.acc-fieldset { border: 1px solid var(--acc-bd); border-radius: 12px; padding: 18px 18px 14px; margin: 18px 0 4px; }
.acc-fieldset legend { font-weight: 700; color: var(--acc-d); padding: 0 8px; font-size: 0.92rem; }
.acc-field .req { color: var(--acc-err); }
/* WC form-field (edit-address) uyumu */
.acc-main .acc-form .form-row { display: flex; flex-direction: column; gap: 6px; margin: 0; padding: 0; width: 100%; }
.acc-main .acc-form .form-row label { font-size: 0.85rem; font-weight: 600; color: var(--acc-d); }
.acc-main .acc-form .form-row .required { color: var(--acc-err); text-decoration: none; }
.acc-main .acc-form .form-row .woocommerce-input-wrapper { width: 100%; }
.acc-main .acc-form .form-row input, .acc-main .acc-form .form-row select, .acc-main .acc-form .form-row textarea {
  width: 100%; padding: 11px 13px; border: 1.5px solid var(--acc-bd); border-radius: 10px; font-size: 0.93rem; font-family: inherit; background: #fff; color: var(--acc-d); }
.acc-main .acc-form .form-row input:focus, .acc-main .acc-form .form-row select:focus, .acc-main .acc-form .form-row textarea:focus { outline: none; border-color: var(--acc-o); box-shadow: 0 0 0 3px rgba(232,116,12,0.15); }
.acc-main .select2-container--default .select2-selection--single { height: 44px; border: 1.5px solid var(--acc-bd); border-radius: 10px; padding: 6px 10px; }
.acc-main .select2-container--default .select2-selection--single .select2-selection__arrow { height: 42px; }

@media (max-width: 900px) {
  .acc-dash { grid-template-columns: 1fr; }
  .acc-side { position: static; }
  .acc-nav { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 4px; }
}
@media (max-width: 540px) {
  .acc-card { padding: 28px 22px; border-radius: 14px; }
  .acc-page { padding: 96px 0 48px; }
}
/* --- Order Detail — Modern Redesign (v5) --- */
.od-topbar { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #f1f5f9; display: flex; align-items: center; justify-content: space-between; }
.od-back { display: flex; align-items: center; gap: 8px; color: #64748B; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; }
.od-back:hover { color: var(--acc-o); transform: translateX(-4px); }

/* Stat Grid */
.od-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.od-stat-card { background: #fff; border: 1px solid #f1f5f9; border-radius: 16px; padding: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.03); display: flex; flex-direction: column; gap: 6px; }
.od-stat-icon { font-size: 1.4rem; margin-bottom: 4px; }
.od-stat-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: #94A3B8; letter-spacing: 0.05em; }
.od-stat-val { font-size: 0.95rem; font-weight: 700; color: #1E293B; word-break: break-all; }
.od-stat-id { font-family: monospace; color: var(--acc-o); font-size: 1.1rem; }
.od-stat-price { color: var(--acc-o); font-size: 1.1rem; font-weight: 800; }

/* Status Pills */
.od-status { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 9999px; font-size: 0.8rem; font-weight: 700; }
.od-status--wait { background: #FEF3C7; color: #92400E; }
.od-status--proc { background: #DBEAFE; color: #1E40AF; }
.od-status--ok   { background: #D1FAE5; color: #065F46; }
.od-status--off  { background: #FEE2E2; color: #991B1B; }

/* General Card */
.od-card { background: #fff; border: 1px solid #f1f5f9; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
.od-card-head { padding: 18px 24px; background: #fff; border-bottom: 1px solid #f1f5f9; display: flex; align-items: center; gap: 12px; }
.od-card-head--between { justify-content: space-between; }
.od-card-title { font-size: 1.05rem; font-weight: 700; color: #1E293B; }

/* Service/Wizard Styles */
.od-service-item { padding: 24px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px dashed #f1f5f9; }
.od-service-name { font-size: 1.2rem; font-weight: 800; color: #1E293B; }
.od-service-price { font-size: 1.3rem; font-weight: 900; color: var(--acc-o); }

.od-features { background: #F8FAFC; padding: 0; }
.od-features-head { padding: 12px 24px; font-size: 0.8rem; font-weight: 700; color: #64748B; text-transform: uppercase; background: #f1f5f9; border-bottom: 1px solid #e2e8f0; }
.od-feature-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 24px; border-bottom: 1px solid #e2e8f0; font-size: 0.92rem; }
.od-feature-label { color: #64748B; }
.od-feature-val { font-weight: 600; color: #1E293B; }
.od-feature-price { font-size: 0.85rem; font-weight: 700; color: #059669; }
.od-feature-total { padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; background: #fff; color: #1E293B; }
.od-feature-total strong { font-size: 1.2rem; color: var(--acc-o); }

/* Steps / Panels (Reference Match) */
.od-steps { padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.od-step { display: flex; gap: 20px; position: relative; padding-bottom: 10px; }
.od-step::before { content: ''; position: absolute; left: 24px; top: 48px; bottom: -10px; width: 2px; background: #f1f5f9; z-index: 0; }
.od-step:last-child::before { display: none; }

.od-step-num { width: 48px; height: 48px; min-width: 48px; background: var(--acc-o); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; z-index: 1; box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3); }
.od-step--done .od-step-num { background: #10B981; box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3); }

.od-step-body { flex: 1; background: #F8FAFC; border: 1px solid #f1f5f9; border-radius: 12px; padding: 18px 20px; transition: all 0.2s; }
.od-step:hover .od-step-body { background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.06); border-color: #E2E8F0; }

.od-step-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 10px; }
.od-step-title { font-size: 1.1rem; font-weight: 800; color: #1E293B; }

.od-badge { font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 8px; text-transform: uppercase; display: flex; align-items: center; gap: 5px; }
.od-badge--wait { background: #E2E8F0; color: #475569; }
.od-badge--proc { background: #FEF3C7; color: #92400E; }
.od-badge--ok   { background: #D1FAE5; color: #065F46; }

.od-step-content { font-size: 0.94rem; color: #475569; line-height: 1.7; }
.od-step-content p { margin: 0 0 10px; }
.od-step-content p:last-child { margin: 0; }
.od-step-empty { font-size: 0.88rem; font-style: italic; color: #94A3B8; margin: 0; }

/* Progress Inline */
.od-progress-inline { display: flex; align-items: center; gap: 12px; }
.od-progress-bar-wrap { width: 120px; height: 8px; background: #f1f5f9; border-radius: 9999px; overflow: hidden; }
.od-progress-bar { height: 100%; background: linear-gradient(90deg, #10B981, #34D399); transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.od-progress-label { font-size: 0.85rem; font-weight: 700; color: #64748B; }

/* Notice */
.od-notice { padding: 18px 24px; background: #EFF6FF; border: 1px solid #DBEAFE; border-radius: 16px; color: #1E40AF; font-size: 0.9rem; line-height: 1.6; }
.od-notice a { color: #2563EB; font-weight: 700; text-decoration: none; border-bottom: 2px solid #BFDBFE; }

@media (max-width: 1024px) {
    .od-stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .od-stat-grid { grid-template-columns: 1fr; }
    .od-step { flex-direction: column; gap: 10px; }
    .od-step::before { left: 24px; top: 48px; }
    .od-card-head--between { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* --- Support Ticket Styles --- */
.ticket-chat { display: flex; flex-direction: column; gap: 24px; margin-top: 20px; }
.chat-item { display: flex; flex-direction: column; max-width: 85%; }
.chat-item--user { align-self: flex-start; }
.chat-item--admin { align-self: flex-end; align-items: flex-end; }

.chat-meta { margin-bottom: 6px; font-size: 0.8rem; color: #64748B; display: flex; gap: 10px; }
.chat-item--admin .chat-meta { flex-direction: row-reverse; }
.chat-meta strong { color: #1E293B; }

.chat-bubble { padding: 16px 20px; border-radius: 18px; font-size: 0.95rem; line-height: 1.6; box-shadow: 0 4px 12px rgba(0,0,0,0.03); position: relative; }
.chat-item--user .chat-bubble { background: #fff; border: 1px solid #E2E8F0; border-bottom-left-radius: 4px; color: #334155; }
.chat-item--admin .chat-bubble { background: #1E293B; color: #fff; border-bottom-right-radius: 4px; }

.chat-title { font-size: 1.25rem; font-weight: 800; margin: 0 0 12px; color: inherit; }

.chat-reply { margin-top: 32px; background: #fff; border: 1px solid #E2E8F0; border-radius: 16px; padding: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.chat-reply textarea { width: 100%; border: 1px solid #f1f5f9; border-radius: 12px; padding: 16px; font-size: 0.95rem; line-height: 1.6; min-height: 120px; resize: vertical; background: #F8FAFC; transition: all 0.2s; }
.chat-reply textarea:focus { outline: none; border-color: var(--acc-o); background: #fff; box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1); }
.chat-reply-footer { display: flex; justify-content: flex-end; margin-top: 12px; }

/* Ticket Form */
.ticket-form .acc-form-group { margin-bottom: 20px; }
.ticket-form label { display: block; font-size: 0.88rem; font-weight: 700; color: #475569; margin-bottom: 8px; }
.ticket-form input[type="text"], .ticket-form select, .ticket-form textarea { width: 100%; padding: 12px 16px; border: 1px solid #E2E8F0; border-radius: 10px; font-size: 0.95rem; transition: border-color 0.2s; }
.ticket-form input:focus, .ticket-form select:focus, .ticket-form textarea:focus { outline: none; border-color: var(--acc-o); }
.acc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Dashboard Notice */
.acc-notice { padding: 14px 18px; border-radius: 12px; font-size: 0.88rem; margin-bottom: 20px; }
.acc-notice--info { background: #F0F9FF; border: 1px solid #BAE6FD; color: #0369A1; }

@media (max-width: 640px) {
    .chat-item { max-width: 100%; }
    .acc-form-row { grid-template-columns: 1fr; gap: 0; }
}

/* --- Notifications & Topbar --- */
.acc-topbar { display: flex; justify-content: flex-end; padding: 0 0 24px; margin-bottom: 24px; border-bottom: 1px solid #E2E8F0; }
/* Notification Bell & Dropdown (Global Header moved to styles.css) */

/* --- Profile Layout --- */
.profile-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 8px; }
.profile-section h2 { font-size: 1.2rem; border-bottom: 2px solid #F1F5F9; padding-bottom: 12px; margin-bottom: 20px; }
.acc-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* --- Files UI --- */
.od-files-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; min-height: 50px; }
.od-file-item { display: flex; align-items: center; gap: 14px; background: #F8FAFC; border: 1px solid #E2E8F0; padding: 12px 16px; border-radius: 12px; }
.od-file-icon { font-size: 1.5rem; }
.od-file-info { display: flex; flex-direction: column; flex: 1; }
.od-file-name { font-weight: 700; font-size: 0.9rem; color: #1E293B; margin-bottom: 6px; }

@media (max-width: 991px) {
    .profile-layout { grid-template-columns: 1fr; }
}

/* --- Dashboard Home --- */
.dash-welcome { margin-bottom: 32px; }
.dash-welcome h2 { font-size: 1.75rem; margin-bottom: 8px; color: #1E293B; }
.dash-welcome p { color: #64748B; font-size: 1.1rem; }

.dash-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 32px; }
.dash-stat-card { background: #fff; border: 1px solid #E2E8F0; padding: 20px; border-radius: 16px; display: flex; align-items: center; gap: 16px; transition: transform 0.2s; }
.dash-stat-card:hover { transform: translateY(-3px); border-color: var(--acc-o); }
.dash-stat-icon { width: 48px; height: 48px; background: #F8FAFC; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.dash-stat-label { font-size: 0.85rem; color: #64748B; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.dash-stat-val { font-size: 1.25rem; font-weight: 800; color: #1E293B; }

.dash-content-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; }
.dash-card { background: #fff; border: 1px solid #E2E8F0; border-radius: 16px; overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.dash-card-head { padding: 20px; border-bottom: 1px solid #F1F5F9; display: flex; justify-content: space-between; align-items: center; }
.dash-card-head h3 { font-size: 1rem; font-weight: 700; color: #1E293B; margin: 0; }
.dash-empty { padding: 40px; text-align: center; color: #94A3B8; font-size: 0.95rem; }

/* Project List */
.dash-project-list { padding: 12px; }
.dash-project-item { padding: 16px; border: 1px solid #F1F5F9; border-radius: 12px; margin-bottom: 10px; display: flex; align-items: center; gap: 24px; transition: all 0.2s; }
.dash-project-item:hover { border-color: #E2E8F0; background: #F8FAFC; }
.dash-project-info { flex: 1; }
.dash-project-num { font-size: 0.75rem; color: var(--acc-o); font-weight: 800; margin-bottom: 4px; }
.dash-project-title { font-size: 0.95rem; font-weight: 700; color: #1E293B; margin: 0; }
.dash-project-progress { width: 180px; }
.dash-progress-meta { display: flex; justify-content: space-between; font-size: 0.75rem; font-weight: 700; margin-bottom: 6px; color: #64748B; }
.dash-progress-bar { height: 6px; background: #F1F5F9; border-radius: 3px; overflow: hidden; }
.dash-progress-fill { height: 100%; background: var(--acc-o); border-radius: 3px; }
.dash-project-link { font-size: 0.85rem; font-weight: 700; color: var(--acc-o); text-decoration: none; padding: 8px 12px; background: #FFF7EC; border-radius: 8px; }

/* Ticket List */
.dash-ticket-list { padding: 12px; }
.dash-ticket-item { padding: 12px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #F1F5F9; }
.dash-ticket-item:last-child { border-bottom: none; }
.dash-ticket-main { display: flex; align-items: center; gap: 12px; }
.dash-ticket-status { width: 10px; height: 10px; border-radius: 50%; display: block; }
.ts-open { background: #3B82F6; }
.ts-replied { background: #10B981; }
.ts-closed { background: #94A3B8; }
.dash-ticket-title { font-size: 0.9rem; font-weight: 600; color: #1E293B; margin-bottom: 2px; }
.dash-ticket-date { font-size: 0.75rem; color: #94A3B8; }
.dash-ticket-btn { font-size: 1.1rem; text-decoration: none; opacity: 0.5; transition: opacity 0.2s; }
.dash-ticket-btn:hover { opacity: 1; }

.dash-promo-card { margin-top: 24px; background: #1E293B; border-radius: 16px; padding: 24px; color: #fff; text-align: center; }
.dash-promo-card h4 { margin: 0 0 8px; font-size: 1.1rem; }
.dash-promo-card p { font-size: 0.85rem; opacity: 0.8; margin-bottom: 16px; }

@media (max-width: 1200px) {
    .dash-content-grid { grid-template-columns: 1fr; }
    .dash-project-item { flex-direction: column; align-items: stretch; gap: 16px; }
    .dash-project-progress { width: 100%; }
}

@media (max-width: 640px) {
    .dash-stats { grid-template-columns: 1fr 1fr; }
}


