/* public/styles.css: 온패스(ONPASS) 통합 스타일 시트 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700;800&display=swap');

:root {
  --font-main: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-hero: #101827;
  --text-primary: #172131;
  --text-secondary: #697386;
  --text-muted: #94a3b8;
  
  --color-primary-blue: #3267ed;
  --color-blue-border: #5280ed;
  --color-blue-light: #eff6ff;
  --color-blue-hover: #2554c7;

  --color-youtube-red: #d92534;
  --color-red-border: #e34250;
  --color-red-light: #fef2f2;
  --color-red-hover: #b91c1c;

  --color-soldout: #94a3b8;
  --color-soldout-border: #cbd5e1;
  --color-soldout-bg: #f1f5f9;

  --radius-card: 20px;
  --radius-btn: 12px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-card: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-blue: 0 14px 30px -4px rgba(50, 103, 237, 0.22);
  --shadow-red: 0 14px 30px -4px rgba(217, 37, 52, 0.22);
  --shadow-gray: 0 6px 16px -2px rgba(100, 116, 139, 0.15);

  --transition-normal: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 3px solid var(--color-primary-blue);
  outline-offset: 2px;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.brand-logo img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-normal);
}

.nav-link:hover {
  color: var(--text-primary);
}

.btn-header-support {
  padding: 0.5rem 1.15rem;
  background: #f1f5f9;
  color: #334155;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-btn);
  transition: var(--transition-normal);
}

.btn-header-support:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(180deg, var(--bg-hero) 0%, #1e293b 100%);
  color: #ffffff;
  padding: 4.5rem 1.5rem 4rem;
  text-align: center;
}

.hero-container {
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-title span {
  background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-features-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.hero-feature-item svg {
  color: #60a5fa;
}

/* Products Section */
.products-section {
  max-width: 1100px;
  margin: -2.5rem auto 4rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Card Base */
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 2.25rem 2rem;
  border: 2px solid transparent;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  position: relative;
}

/* Card - Gemini Available */
.product-card.card-gemini.card-available {
  border-color: var(--color-blue-border);
}

/* Card - YouTube Available */
.product-card.card-youtube.card-available {
  border-color: var(--color-red-border);
}

/* Card - Sold Out */
.product-card.card-soldout {
  border-color: var(--color-soldout-border);
  background: #ffffff;
}

/* Card Hover */
@media (hover: hover) and (pointer: fine) {
  .product-card.card-gemini.card-available:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
    border-color: var(--color-primary-blue);
  }
  .product-card.card-youtube.card-available:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
    border-color: var(--color-youtube-red);
  }
  .product-card.card-soldout:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gray);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card {
    transition: none !important;
  }
  .product-card:hover {
    transform: none !important;
  }
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.product-status-tag {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  letter-spacing: 0.02em;
}

.tag-available-blue {
  background: var(--color-blue-light);
  color: var(--color-primary-blue);
}

.tag-available-red {
  background: var(--color-red-light);
  color: var(--color-youtube-red);
}

.tag-soldout {
  background: var(--color-soldout-bg);
  color: #64748b;
}

.card-title {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.card-period-badge {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

/* Price Box */
.price-box {
  margin: 0.5rem 0 1.75rem;
  padding: 1.25rem 1.35rem;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}

.price-original-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
}

.original-strikethrough {
  font-size: 0.88rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  letter-spacing: -0.01em;
}

.badge-discount-blue {
  background: #dbeafe;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.badge-discount-red {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-number {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-unit {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.price-monthly-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  margin-top: 0.65rem;
  flex-wrap: wrap;
}

.monthly-badge-blue {
  background: #e0f2fe;
  color: #0369a1;
}

.monthly-badge-red {
  background: var(--color-red-light);
  color: var(--color-youtube-red);
}

.soldout-price-box {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  text-align: center;
  padding: 1.35rem 1rem;
}

.soldout-original {
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: line-through;
  margin-bottom: 0.35rem;
}

.soldout-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.05em;
}

.soldout-desc {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 0.35rem;
}

/* Feature List */
.feature-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.icon-blue { color: var(--color-primary-blue); }
.icon-red { color: var(--color-youtube-red); }
.icon-gray { color: #94a3b8; }

.feature-text {
  font-size: 0.96rem;
  line-height: 1.5;
}

.feature-strong {
  font-weight: 700;
  color: var(--text-primary);
}

.feature-sub {
  color: var(--text-secondary);
  margin-left: 0.25rem;
}

.card-soldout .feature-strong {
  color: #64748b;
}

/* Card Button */
.btn-card-action {
  width: 100%;
  padding: 1.15rem 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-normal);
  color: #ffffff;
}

.btn-card-blue {
  background: var(--color-primary-blue);
}
.btn-card-blue:hover {
  background: var(--color-blue-hover);
}

.btn-card-red {
  background: var(--color-youtube-red);
}
.btn-card-red:hover {
  background: var(--color-red-hover);
}

.btn-card-soldout {
  background: #cbd5e1;
  color: #64748b;
  cursor: not-allowed;
}

/* Section Common */
.content-section {
  max-width: 1000px;
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary-blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eff6ff;
  color: var(--color-primary-blue);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--text-secondary);
  transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 3.5rem 1.5rem 2.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #1e293b;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.footer-info-line {
  color: #64748b;
  font-size: 0.85rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: #475569;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #ffffff;
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 92vh;
}

.modal-header {
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header-gemini {
  border-top: 5px solid var(--color-primary-blue);
}

.modal-header-youtube {
  border-top: 5px solid var(--color-youtube-red);
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.modal-close-btn {
  font-size: 1.5rem;
  color: #94a3b8;
  line-height: 1;
  padding: 0.25rem;
}
.modal-close-btn:hover { color: #0f172a; }

.modal-body {
  padding: 1.5rem 1.75rem;
  overflow-y: auto;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.form-label .req {
  color: #ef4444;
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.98rem;
  transition: var(--transition-normal);
}

.form-input:focus {
  border-color: var(--color-primary-blue);
  box-shadow: 0 0 0 3px rgba(50, 103, 237, 0.15);
  outline: none;
}

.modal-youtube .form-input:focus {
  border-color: var(--color-youtube-red);
  box-shadow: 0 0 0 3px rgba(217, 37, 52, 0.15);
}

.consent-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.consent-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.btn-submit-order {
  width: 100%;
  padding: 1.15rem;
  border-radius: var(--radius-btn);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  transition: var(--transition-normal);
}

.btn-submit-gemini { background: var(--color-primary-blue); }
.btn-submit-gemini:hover { background: var(--color-blue-hover); }

.btn-submit-youtube { background: var(--color-youtube-red); }
.btn-submit-youtube:hover { background: var(--color-red-hover); }

/* Success Box */
.success-notice-box {
  padding: 1.25rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.success-order-num {
  font-weight: 800;
  font-size: 1.1rem;
  color: #166534;
  margin-bottom: 0.5rem;
}

/* Support Text View */
.support-text-view {
  white-space: pre-wrap;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: #f8fafc;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

/* Responsive */
@media (max-width: 650px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.15rem;
  }
  .price-number {
    font-size: 2.2rem;
  }
  .header-container {
    padding: 0.75rem 1rem;
  }
}

/* ========================================================================= */
/* 관리자(Admin) 전용 스타일 (/admin)                                         */
/* ========================================================================= */
.admin-body {
  background: #f1f5f9;
  min-height: 100vh;
}

.admin-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 1.5rem;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #cbd5e1;
}

.admin-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-title {
  font-size: 1.5rem;
  font-weight: 800;
}

/* Filter Controls */
.admin-controls-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.period-btn-group {
  display: flex;
  background: #f1f5f9;
  padding: 0.25rem;
  border-radius: 10px;
}

.period-btn {
  padding: 0.45rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  color: var(--text-secondary);
  transition: var(--transition-normal);
}

.period-btn.active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.date-nav-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.date-input {
  padding: 0.45rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.9rem;
}

.btn-date-nav {
  padding: 0.45rem 0.75rem;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
}
.btn-date-nav:hover { background: #e2e8f0; }

/* Status Cards Grid */
.status-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.status-stat-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.25rem;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition-normal);
}

.status-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.status-stat-card.active {
  border-color: var(--color-primary-blue);
  background: #eff6ff;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.stat-amount {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
}

.stat-count {
  font-size: 0.88rem;
  color: #64748b;
  margin-top: 0.2rem;
}

/* Breakdown & Order Table Cards */
.admin-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.card-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.admin-card-title {
  font-size: 1.15rem;
  font-weight: 800;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
  min-width: 800px;
}

.admin-table th {
  background: #f8fafc;
  padding: 0.85rem 1rem;
  font-weight: 700;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
}

.admin-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: #f8fafc;
}

/* Badges in Admin Table */
.badge-status {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
}

.badge-new { background: #dbeafe; color: #1e40af; }
.badge-contacted { background: #fef3c7; color: #92400e; }
.badge-completed { background: #dcfce7; color: #166534; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }

.badge-noti {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.noti-submitted { background: #dcfce7; color: #166534; }
.noti-failed { background: #fee2e2; color: #991b1b; }
.noti-pending { background: #f1f5f9; color: #64748b; }

/* Pagination */
.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.pagination-pages {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-page {
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
}
.btn-page.active {
  background: var(--color-primary-blue);
  color: #ffffff;
  border-color: var(--color-primary-blue);
}

/* Collapsible Settings Area */
.settings-details {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.settings-summary {
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  padding: 0.25rem 0;
}

.settings-inner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

@media (max-width: 960px) {
  .status-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .settings-inner-grid {
    grid-template-columns: 1fr;
  }
}
