/* ================================================
   Dryàs Account Center — CSS completo e unificato
   ================================================ */

[hidden] { display: none !important; }

/* ---- Overlay ---- */
.dac-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dac-overlay.is-open {
  display: flex;
  animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---- Modal ---- */
.dac-modal {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 820px;
  max-height: 85vh;
  display: grid;
  grid-template-columns: 260px 1fr;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from { transform: translateY(30px) scale(0.95); opacity: 0; }
  to   { transform: translateY(0) scale(1);       opacity: 1; }
}

/* ---- Close button ---- */
.dac-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: #6b7280;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.dac-close:hover  { background: #fff; color: #111827; transform: scale(1.05); box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.dac-close:active { transform: scale(0.95); }

/* ---- Sidebar ---- */
.dac-sidebar {
  background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
  padding: 32px 20px;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

.dac-sidebar-header {
  margin-bottom: 28px;
  text-align: center;
}

.dac-sidebar-icon {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
}

.dac-sidebar-logo { width: 56px; height: 56px; object-fit: contain; }

.dac-sidebar-header h2 {
  font-size: 18px; font-weight: 700; color: #1f2937;
  margin: 0 0 4px; letter-spacing: -0.02em;
}
.dac-sidebar-header p {
  font-size: 13px; color: #6b7280; margin: 0; font-weight: 500;
}

.dac-nav { display: flex; flex-direction: column; gap: 4px; }

.dac-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  position: relative;
}

.dac-nav-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.dac-nav-icon i { width: 18px; height: 18px; }

.dac-nav-arrow {
  width: 14px; height: 14px; margin-left: auto;
  opacity: 0; transform: translateX(-4px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dac-nav-item:hover {
  background: rgba(107,114,128,0.08);
  color: #374151;
  transform: translateX(2px);
}
.dac-nav-item:hover .dac-nav-arrow { opacity: 1; transform: translateX(0); }

.dac-nav-item.active {
  background: linear-gradient(135deg, #8b9a7e 0%, #7a8a6d 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(139,154,126,0.25);
}
.dac-nav-item.active .dac-nav-arrow { opacity: 1; transform: translateX(0); }

/* ---- Content area ---- */
.dac-content {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 32px 36px;
  background: #ffffff;
  max-height: 85vh;
}
.dac-content::-webkit-scrollbar       { width: 6px; }
.dac-content::-webkit-scrollbar-track { background: transparent; }
.dac-content::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }
.dac-content::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

/* ---- Panels ---- */
.dac-panel { display: none; animation: fadeInContent 0.3s ease; }

@keyframes fadeInContent {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dac-panel.active { display: block; }

.dac-panel-header { display: block; }
.dac-panel-header h3 {
  font-size: 24px; font-weight: 800; color: #111827;
  margin: 0 0 4px; letter-spacing: -0.03em;
}
.dac-panel-header p {
  font-size: 14px; color: #6b7280;
  margin: 0 0 32px; font-weight: 500;
}

/* ---- Form ---- */
.dac-form { display: flex; flex-direction: column; gap: 22px; }

.dac-field { display: flex; flex-direction: column; gap: 8px; }

.dac-label { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: #111827; }
.dac-label i { width: 16px; height: 16px; color: #6b7280; }

.dac-hint { font-size: 12px; color: #9ca3af; font-weight: 500; margin-top: -2px; }

.dac-input {
  height: 46px; padding: 0 16px;
  border: 2px solid #e5e7eb; border-radius: 10px;
  font-size: 14px; background: #ffffff;
  color: #111827; font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.dac-input::placeholder { color: #9ca3af; }
.dac-input:hover        { border-color: #d1d5db; }
.dac-input:focus        { outline: none; border-color: #8b9a7e; box-shadow: 0 0 0 3px rgba(139,154,126,0.1); }
.dac-input:disabled     { background: #f9fafb; color: #6b7280; cursor: not-allowed; border-color: #e5e7eb; }

/* ---- Link items ---- */
.dac-link {
  display: inline-flex; align-items: center; gap: 12px;
  color: #111827; text-decoration: none; font-size: 14px; font-weight: 600;
  padding: 14px 16px; border-radius: 10px;
  background: #f9fafb; border: 2px solid #f3f4f6;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.dac-link-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dac-link-icon i { width: 18px; height: 18px; color: #374151; }
.dac-link-arrow { width: 16px; height: 16px; margin-left: auto; color: #9ca3af; transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
.dac-link:hover { background: #fff; border-color: #e5e7eb; transform: translateX(4px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.dac-link:hover .dac-link-arrow { transform: translateX(4px); color: #6b7280; }

/* ---- Footer ---- */
.dac-footer {
  display: flex; justify-content: flex-end; gap: 10px;
  margin-top: 32px; padding-top: 24px;
  border-top: 2px solid #f3f4f6;
}

/* ---- Buttons ---- */
.dac-btn {
  height: 44px; padding: 0 24px; border-radius: 10px; border: none;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex; align-items: center; gap: 8px;
}

.dac-btn-ghost {
  background: transparent; color: #6b7280; border: 2px solid #e5e7eb;
}
.dac-btn-ghost:hover  { background: #f9fafb; color: #374151; border-color: #d1d5db; transform: translateY(-1px); }
.dac-btn-ghost:active { transform: translateY(0); }

.dac-btn-primary {
  background: linear-gradient(135deg, #8b9a7e 0%, #7a8a6d 100%);
  color: #ffffff; box-shadow: 0 2px 8px rgba(139,154,126,0.25);
}
.dac-btn-primary:hover     { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(139,154,126,0.35); }
.dac-btn-primary:active    { transform: translateY(0);    box-shadow: 0 2px 8px rgba(139,154,126,0.25); }
.dac-btn-primary:disabled  { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: 0 2px 8px rgba(139,154,126,0.15); }
.dac-btn-primary i { width: 16px; height: 16px; }

/* Small variant */
.dac-btn--sm { height: 36px; padding: 0 14px; font-size: 13px; border-radius: 8px; }
.dac-btn--sm i { width: 14px; height: 14px; }

/* Danger (outlined) */
.dac-btn-danger {
  background: rgba(239,68,68,0.08);
  border: 1.5px solid rgba(239,68,68,0.22);
  color: #b91c1c; font-weight: 700; cursor: pointer;
}
.dac-btn-danger:hover { background: rgba(239,68,68,0.13); border-color: rgba(239,68,68,0.35); }

/* Danger solid — per conferma azioni distruttive */
.dac-btn-danger-solid {
  background: #dc2626; color: #ffffff; border: none;
  font-weight: 700; cursor: pointer;
  box-shadow: 0 2px 8px rgba(220,38,38,0.25);
  transition: all 0.2s ease;
}
.dac-btn-danger-solid:hover  { background: #b91c1c; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(220,38,38,0.35); }
.dac-btn-danger-solid:active { transform: translateY(0); }
.dac-btn-danger-solid i { width: 14px; height: 14px; }

/* Sublabel dentro ai pulsanti (es. "via Stripe") */
.dac-btn-sublabel {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(17,24,39,0.38); margin-left: 2px;
}

/* ---- Empty state ---- */
.dac-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; text-align: center; }
.dac-empty-icon { width: 64px; height: 64px; background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.dac-empty-icon i { width: 32px; height: 32px; color: #9ca3af; }
.dac-empty h4 { font-size: 16px; font-weight: 700; color: #111827; margin: 0 0 6px; }
.dac-empty p  { font-size: 13px; color: #9ca3af; margin: 0; font-weight: 500; }

/* ---- Mobile menu list (hidden on desktop) ---- */
.dac-menu-list { display: none; }

/* ================================================
   SUBSCRIPTION PANEL
   ================================================ */

/* ---- Plan Hero card ---- */
.dac-sub-hero {
  background: #fff;
  border: 1.5px solid rgba(17,24,39,0.09);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(17,24,39,0.06);
}

.dac-sub-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 16px;
  background: linear-gradient(135deg, #f8faf7 0%, #f3f5f1 100%);
  border-bottom: 1.5px solid rgba(17,24,39,0.07);
}

.dac-sub-plan-eyebrow {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(17,24,39,0.45); margin-bottom: 4px;
}

.dac-sub-plan-name {
  font-size: 26px; font-weight: 800; color: #111827;
  letter-spacing: -0.03em; line-height: 1; display: block;
}

/* NUOVO: prezzo mensile */
.dac-sub-plan-price {
  display: block;
  font-size: 13px; font-weight: 600;
  color: rgba(17,24,39,0.45);
  margin-top: 4px; letter-spacing: 0.01em;
}

.dac-sub-hero-badges {
  display: flex; flex-wrap: wrap; gap: 6px;
  justify-content: flex-end; padding-top: 2px;
}

/* ---- Info rows ---- */
.dac-sub-rows { display: flex; flex-direction: column; }

.dac-sub-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 12px 20px;
  border-bottom: 1px solid rgba(17,24,39,0.05);
  transition: background 0.15s ease;
}
.dac-sub-row:last-child { border-bottom: none; }
.dac-sub-row:hover { background: rgba(17,24,39,0.015); }

.dac-sub-row-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: rgba(17,24,39,0.55);
}
.dac-sub-row-label i { width: 14px; height: 14px; flex-shrink: 0; color: rgba(17,24,39,0.35); }

.dac-sub-row-value { font-size: 13px; font-weight: 700; color: #111827; text-align: right; }

/* Gruppo valore + pill giorni sulla stessa riga */
.dac-sub-row-value-group {
  display: flex; align-items: center; gap: 8px; justify-content: flex-end;
}

/* Pill giorni rimanenti */
.dac-sub-days-pill {
  display: inline-flex; align-items: center;
  padding: 2px 9px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
  white-space: nowrap;
}
.dac-sub-days-pill:empty { display: none; }
.dac-sub-days-pill--ok     { background: rgba(16,185,129,0.10); color: #065f46; border: 1px solid rgba(16,185,129,0.22); }
.dac-sub-days-pill--warn   { background: rgba(245,158,11,0.12); color: #92400e; border: 1px solid rgba(245,158,11,0.28); }
.dac-sub-days-pill--urgent { background: rgba(239,68,68,0.10);  color: #991b1b; border: 1px solid rgba(239,68,68,0.22); }

/* ---- Note (warning banner) ---- */
.dac-sub-note {
  margin: 0; padding: 12px 20px;
  font-size: 13px; font-weight: 600; color: #92400e;
  background: rgba(245,158,11,0.08);
  border-top: 1.5px solid rgba(245,158,11,0.18);
  border-bottom: 1.5px solid rgba(245,158,11,0.18);
  line-height: 1.5;
}

/* ---- Actions area ---- */
.dac-sub-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding: 14px 20px;
  background: rgba(17,24,39,0.015);
  border-top: 1.5px solid rgba(17,24,39,0.07);
}

/* ---- NUOVO: link testuale discreto "Disattiva rinnovo" ---- */
.dac-sub-cancel-row {
  display: flex; justify-content: center;
  padding: 10px 20px 14px;
  border-top: 1px solid rgba(17,24,39,0.05);
}

.dac-sub-cancel-link {
  background: none; border: none;
  padding: 4px 8px;
  font-size: 12px; font-weight: 600;
  color: rgba(17,24,39,0.35);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(17,24,39,0.18);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  border-radius: 4px;
}
.dac-sub-cancel-link:hover    { color: #b91c1c; text-decoration-color: rgba(185,28,28,0.4); }
.dac-sub-cancel-link:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---- Badges ---- */
.dac-badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  white-space: nowrap;
}
.dac-badge--success  { background: rgba(16,185,129,0.10); border-color: rgba(16,185,129,0.25); color: #065f46; }
.dac-badge--warning  { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.30); color: #92400e; }
.dac-badge--danger   { background: rgba(239,68,68,0.10);  border-color: rgba(239,68,68,0.25);  color: #991b1b; }
.dac-badge--neutral  { background: rgba(17,24,39,0.04);   border-color: rgba(17,24,39,0.12);   color: rgba(17,24,39,0.65); }
.dac-badge--override { background: rgba(139,154,126,0.12); border-color: rgba(139,154,126,0.30); color: #3d4f34; }

/* ================================================
   MODALE DI CONFERMA
   ================================================ */
.dac-confirm-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; transition: opacity 0.2s ease;
}
.dac-confirm-overlay.is-visible { opacity: 1; }
.dac-confirm-overlay[hidden]    { display: none !important; }

.dac-confirm-modal {
  background: #ffffff; border-radius: 16px;
  padding: 32px 28px 24px;
  max-width: 400px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.06);
  transform: translateY(10px) scale(0.97);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}
.dac-confirm-overlay.is-visible .dac-confirm-modal { transform: translateY(0) scale(1); }

.dac-confirm-icon {
  width: 52px; height: 52px;
  background: rgba(245,158,11,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.dac-confirm-icon i { width: 24px; height: 24px; color: #d97706; }

.dac-confirm-title {
  font-size: 18px; font-weight: 800; color: #111827;
  margin: 0 0 10px; letter-spacing: -0.02em;
}

.dac-confirm-body {
  font-size: 14px; color: #6b7280; line-height: 1.6;
  margin: 0 0 24px; font-weight: 500;
}
.dac-confirm-body strong { color: #111827; font-weight: 700; }

.dac-confirm-actions { display: flex; gap: 10px; justify-content: center; }
.dac-confirm-actions .dac-btn { flex: 1; justify-content: center; }
/* ================================================
   NUOVI STILI — Promo card Free + info rows
   ================================================ */

/* ---- Promo card (piano Free non attivo) ---- */
.dac-sub-promo {
  border: 2px solid rgba(139,154,126,0.25);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8faf7 0%, #f1f5ef 100%);
  margin-top: 4px;
}

.dac-sub-promo-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 20px 16px;
}

.dac-sub-promo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #8b9a7e 0%, #7a8a6d 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(139,154,126,0.3);
}
.dac-sub-promo-icon i { width: 22px; height: 22px; color: #ffffff; }

.dac-sub-promo-text {
  display: flex; flex-direction: column; gap: 4px;
}
.dac-sub-promo-text strong {
  font-size: 15px; font-weight: 800; color: #111827; letter-spacing: -0.02em;
}
.dac-sub-promo-text span {
  font-size: 13px; color: #6b7280; font-weight: 500; line-height: 1.5;
}

.dac-sub-promo-features {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid rgba(139,154,126,0.15);
  padding: 4px 0;
}

.dac-sub-promo-feat {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 20px;
  font-size: 13px; font-weight: 600; color: #374151;
  border-bottom: 1px solid rgba(17,24,39,0.04);
}
.dac-sub-promo-feat:last-child { border-bottom: none; }
.dac-sub-promo-feat i {
  width: 15px; height: 15px; color: #8b9a7e; flex-shrink: 0;
}

.dac-sub-promo-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px 16px 16px;
  border-radius: 10px;
  font-size: 14px;
  text-decoration: none;
  height: 46px;
}
.dac-sub-promo-cta i { width: 18px; height: 18px; }

/* Mobile promo */
@media (max-width: 768px) {
  .dac-sub-promo { margin-top: 0; }
  .dac-sub-promo-cta { height: 52px; border-radius: 12px; font-size: 15px; }
}
/* ================================================
   RESPONSIVE — Mobile
   ================================================ */
@media (max-width: 768px) {
  .dac-overlay  { padding: 0; background: #ffffff; }

  .dac-modal {
    grid-template-columns: 1fr;
    max-height: 100vh; height: 100vh;
    border-radius: 0; max-width: 100%;
    box-shadow: none;
    animation: slideUpMobile 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes slideUpMobile {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }

  .dac-sidebar { display: none; }

  .dac-close {
    top: 12px; right: 12px;
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
  }
  .dac-close i { width: 20px; height: 20px; color: #374151; }

  .dac-content { padding: 20px 20px 32px; max-height: 100vh; -webkit-overflow-scrolling: touch; }

  .dac-panel-header {
    text-align: left; margin-bottom: 28px;
    padding-top: 36px; border-bottom: 1px solid #f3f4f6; padding-bottom: 20px;
  }
  .dac-panel-header h3 { font-size: 26px; margin-bottom: 6px; color: #111827; }
  .dac-panel-header p  { font-size: 14px; margin-bottom: 0; color: #6b7280; display: block; }

  /* Mobile navigation list */
  .dac-menu-list { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; padding-top: 28px; border-top: 1px solid #f3f4f6; }

  .dac-menu-item {
    display: flex; align-items: center; gap: 14px;
    padding: 16px; background: #ffffff; border: 1.5px solid #e5e7eb;
    border-radius: 12px; text-decoration: none; color: #111827;
    font-size: 15px; font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer; -webkit-tap-highlight-color: transparent;
  }
  .dac-menu-item:active { transform: scale(0.98); background: #f9fafb; border-color: #d1d5db; }

  .dac-menu-item-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: linear-gradient(135deg, #8b9a7e 0%, #7a8a6d 100%);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(139,154,126,0.2);
  }
  .dac-menu-item-icon i { width: 20px; height: 20px; color: #ffffff; }
  .dac-menu-item-label  { flex: 1; font-weight: 600; }
  .dac-menu-item-arrow  { width: 18px; height: 18px; color: #9ca3af; }

  /* Form mobile */
  .dac-form  { gap: 20px; }
  .dac-field { gap: 8px; }
  .dac-label { font-size: 14px; font-weight: 700; color: #111827; }
  .dac-label i { width: 16px; height: 16px; }
  .dac-hint  { font-size: 12px; line-height: 1.4; color: #9ca3af; }

  .dac-input {
    height: 52px; font-size: 16px; padding: 0 16px;
    border-radius: 12px; background: #fafafa; border: 1.5px solid #e5e7eb;
  }
  .dac-input:focus    { background: #ffffff; border-color: #8b9a7e; box-shadow: 0 0 0 3px rgba(139,154,126,0.1); }
  .dac-input:disabled { background: #f3f4f6; color: #6b7280; }

  .dac-link { font-size: 15px; padding: 16px; border-radius: 12px; background: #fafafa; border: 1.5px solid #e5e7eb; }
  .dac-link-icon { width: 42px; height: 42px; border-radius: 10px; }
  .dac-link-icon i { width: 20px; height: 20px; }

  .dac-footer { flex-direction: column-reverse; gap: 10px; margin-top: 32px; padding: 24px 0 0; border-top: 1px solid #f3f4f6; }

  .dac-btn {
    width: 100%; justify-content: center;
    height: 52px; font-size: 15px; border-radius: 12px; font-weight: 700;
  }
  .dac-btn i { width: 18px; height: 18px; }
  .dac-btn-ghost { border: 1.5px solid #e5e7eb; }

  /* Subscription mobile */
  .dac-sub-hero-top   { flex-direction: column; gap: 10px; }
  .dac-sub-hero-badges { justify-content: flex-start; }
  .dac-sub-plan-name  { font-size: 22px; }
  .dac-sub-actions    { flex-direction: column; align-items: stretch; }
  .dac-btn--sm        { height: 44px; justify-content: center; width: 100%; }

  /* Empty state mobile */
  .dac-empty { padding: 60px 20px; }
  .dac-empty-icon { width: 64px; height: 64px; border-radius: 16px; margin-bottom: 16px; }
  .dac-empty-icon i { width: 32px; height: 32px; }
  .dac-empty h4 { font-size: 17px; margin-bottom: 8px; }
  .dac-empty p  { font-size: 13px; line-height: 1.5; max-width: 280px; }

  /* Confirm modal mobile */
  .dac-confirm-modal { padding: 24px 20px 20px; }
  .dac-confirm-actions { flex-direction: column-reverse; }
  .dac-confirm-actions .dac-btn { height: 48px; }

  .dac-sub-cancel-row { padding-bottom: 16px; }
}

@media (max-width: 380px) {
  .dac-content { padding: 16px 16px 28px; }
  .dac-panel-header { padding-top: 32px; padding-bottom: 16px; }
  .dac-panel-header h3 { font-size: 24px; }
  .dac-panel-header p  { font-size: 13px; }
  .dac-menu-item { padding: 14px; font-size: 14px; }
  .dac-menu-item-icon { width: 40px; height: 40px; }
  .dac-menu-item-icon i { width: 18px; height: 18px; }
  .dac-btn { height: 50px; font-size: 14px; }
}