:root {
  color-scheme: light;
  --bg: #e8f3f6;
  --surface: rgba(250, 253, 255, 0.88);
  --text: #0f2236;
  --muted: #4e6c7b;
  --accent: #0e9ca8;
  --accent-soft: rgba(14, 156, 168, 0.16);
  --border: rgba(14, 156, 168, 0.14);
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}

.card,
.actions,
.page-shell {
  min-width: 0;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    url('images/background.png') top center / cover no-repeat,
    radial-gradient(circle at top, rgba(14, 156, 168, 0.14), transparent 65%),
    linear-gradient(180deg, rgba(229, 248, 250, 0.75), rgba(229, 248, 250, 0.85));
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body {
  position: relative;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: none;
  pointer-events: none;
  z-index: -1;
}

.page-shell {
  background: rgba(255, 255, 255, 0.75);
}

.page-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 22px 24px 28px;
  background: rgba(231, 249, 251, 0.72);
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(14, 156, 168, 0.08);
}

.page-shell > * {
  position: relative;
  z-index: 1;
}

.hero,
.small-hero {
  text-align: center;
  margin: 0;
  padding: 0;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(14, 156, 168, 0.18);
  border-radius: 999px;
  background: rgba(14, 156, 168, 0.12);
  color: #0b5361;
  font-weight: 600;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.top-link:hover,
.top-link:focus-visible {
  background: rgba(14, 156, 168, 0.16);
  border-color: rgba(14, 156, 168, 0.35);
  color: #0e9ca8;
  transform: translateY(-1px);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85em 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.lang-button:hover,
.lang-button:focus-visible {
  border-color: rgba(14, 156, 168, 0.45);
}

.lang-button.active {
  background: #0e9ca8;
  border-color: #0e9ca8;
  color: #ffffff;
}

/* Ticket/link styles */
.ticket-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85em 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, color 180ms ease;
}

.ticket-link:hover,
.ticket-link:focus-visible {
  background: rgba(14, 156, 168, 0.12);
  border-color: rgba(14, 156, 168, 0.35);
  color: #0e9ca8;
  transform: translateY(-1px);
}

.ticket-at {
  font-size: 1.4rem;
  line-height: 1;
  display: block;
  color: currentColor;
}

/* Controls under hero: left = ticket, right = language buttons */
.hero-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  padding: 0 6px;
}

.logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 28px;
  background: rgba(14, 156, 168, 0.08);
  box-shadow: 0 18px 40px rgba(14, 156, 168, 0.12);
}

.logo-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.tagline {
  margin: 18px auto 0;
  max-width: 320px;
  color: var(--muted);
  font-size: 1rem;
}

.actions {
  width: 100%;
  min-width: 0;
  margin-bottom: 34px;
}

.action-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  min-height: 320px;
  padding: 28px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card-icon {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0;
  max-height: 240px;
  height: auto !important;
  border-radius: 24px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(14, 156, 168, 0.12);
  box-shadow: 0 18px 30px rgba(14, 156, 168, 0.10);
}

.card:hover,
.card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(14, 156, 168, 0.35);
  box-shadow: 0 18px 32px rgba(14, 156, 168, 0.12);
}

.card strong {
  font-size: 1.1rem;
}

.card span,
.card strong,
.workshop-item h3,
.workshop-item p,
.info h2,
.info p,
.info li,
.workshop-target li,
.repair-brands li,
.contact p,
.workshop-banner p,
.legal-content p,
.legal-content li {
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.workshop-cta {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.workshop-pricing {
  margin: 0 auto 2rem;
}

.workshop-pricing h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.pricing-blocks {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.pricing-block {
  flex: 1 1 220px;
  background: var(--card, #f9f9f9);
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 8px;
  overflow: hidden;
}

.pricing-block .pricing-table {
  margin-bottom: 0;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.pricing-table td, .pricing-table th {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--border, #e0e0e0);
  font-size: 1rem;
}

.pricing-table thead th {
  font-weight: 600;
  background: var(--card, #f0f0f0);
  text-align: left;
}

.pricing-table td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--border, #e0e0e0);
  font-size: 1rem;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table .price-value {
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
  color: var(--accent);
}

.pricing-note {
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1.25rem;
}

.workshop-booking {
  margin: 0 auto 2rem;
  text-align: center;
}

.workshop-booking h2 {
  margin-bottom: 0.5rem;
}

.workshop-booking > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* ── Calendar ── */
.cal-wrap {
  background: var(--card, #fff);
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  margin-bottom: 1rem;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: var(--accent);
  color: #fff;
}

.cal-month-label {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.cal-nav {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.3rem;
  border-radius: 6px;
  transition: background 150ms;
}

.cal-nav:hover {
  background: rgba(255,255,255,0.2);
}

.cal-grid-head {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--accent);
  padding: 0 0.5rem 0.5rem;
}

.cal-grid-head span {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 0.2rem 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 0.75rem;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.92rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 150ms, border-color 150ms, color 150ms;
  user-select: none;
}

.cal-day:hover:not(.cal-day--past):not(.cal-day--blocked):not(.cal-day--empty) {
  background: var(--accent);
  color: #fff;
}

.cal-day--empty {
  cursor: default;
}

.cal-day--past {
  color: var(--muted, #aaa);
  cursor: default;
}

.cal-day--today {
  border-color: var(--accent);
  font-weight: 700;
}

.cal-day--blocked {
  background: #fde8e8;
  color: #c0392b;
  cursor: not-allowed;
  text-decoration: line-through;
}

.cal-day--selected {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-color: transparent;
}

/* Legend */
.cal-legend {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  padding: 0.6rem 0.75rem 0.85rem;
  border-top: 1px solid var(--border, #e0e0e0);
  flex-wrap: wrap;
}

.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.cal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.cal-dot-available { background: var(--accent); }
.cal-dot-blocked   { background: #e05252; }
.cal-dot-selected  { background: var(--accent); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--accent); }

.cal-selected-label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.date-error {
  color: #e05252;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(14, 156, 168, 0.18);
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: #ffffff;
  color: #0d4f5d;
  border: 1px solid rgba(14, 156, 168, 0.2);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(14, 156, 168, 0.08);
}

.workshop-sections {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.workshop-sections > h2 {
  margin: 0;
  color: #0d4f5d;
  grid-column: 1 / -1;
}

.workshop-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(14, 156, 168, 0.16);
  border-radius: 28px;
  background: rgba(14, 156, 168, 0.08);
}

.workshop-group-header {
  grid-column: 1 / -1;
  padding: 12px 16px;
  border-radius: 20px;
  background: rgba(14, 156, 168, 0.14);
}

@media (min-width: 720px) {
  .workshop-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.workshop-group-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0b5361;
}

.workshop-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px;
}

.workshop-item h3 {
  margin: 0 0 10px;
  color: #0d4f5d;
}

.workshop-item p {
  margin: 0;
  color: var(--muted);
}

.workshop-details,
.workshop-target {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.workshop-details h2,
.workshop-target h2 {
  margin: 0 0 10px;
  color: #0d4f5d;
}

.workshop-details p,
.workshop-target p,
.workshop-target li {
  margin: 0;
  color: var(--muted);
}

.workshop-details {
  overflow-x: auto;
}

.schedule-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(14, 156, 168, 0.12);
  border-radius: 28px;
  background: rgba(14, 156, 168, 0.06);
}

.select-group label {
  display: block;
  margin-bottom: 0.55rem;
  font-weight: 700;
  color: #0d4f5d;
}

.select-group select {
  width: 100%;
  min-height: 46px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

.next-workshop-notice {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(14, 156, 168, 0.12);
  color: #0d4f5d;
  font-weight: 600;
}

.schedule-results {
  margin-top: 24px;
}

.results-header {
  margin-bottom: 10px;
}

.results-label {
  margin: 0;
  color: #0d4f5d;
  font-weight: 700;
}

.results-table-wrap {
  overflow-x: auto;
}

.compact-table {
  width: 100%;
  border-collapse: collapse;
}

.compact-table th,
.compact-table td {
  text-align: left;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(14, 156, 168, 0.12);
}

.compact-table th {
  background: rgba(14, 156, 168, 0.08);
  color: #0d4f5d;
  font-weight: 700;
  white-space: nowrap;
}

.compact-table td {
  color: var(--muted);
}

.compact-table td a {
  white-space: nowrap;
}

.no-results {
  text-align: center;
  padding: 1.5rem 1rem;
  color: var(--muted);
}

.admin-panel {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(14, 156, 168, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
}

.admin-shell {
  width: 75%;
  max-width: 1100px;
  margin: 0 auto;
}

.table-scroll {
  overflow-x: auto;
  width: 100%;
}

.admin-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  word-break: break-word;
  vertical-align: top;
}

.admin-section.admin-reminder {
  margin-bottom: 20px;
}

.admin-section.admin-reminder #reminderPreview {
  display: grid;
  gap: 12px;
}

@media (max-width: 960px) {
  .admin-shell {
    width: 100%;
    padding: 0 14px;
  }
}

@media (max-width: 720px) {
  .admin-shell {
    width: 100%;
    padding: 0 12px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .admin-section-header {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-table th,
  .admin-table td {
    padding: 0.8rem 0.9rem;
  }
}

.file-upload {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  cursor: pointer;
}

.file-upload input {
  display: none;
}

.admin-section {
  margin-top: 28px;
}

.admin-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.admin-form {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(14, 156, 168, 0.12);
  border-radius: 24px;
  background: rgba(14, 156, 168, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: #0d4f5d;
}

.form-grid input {
  width: 100%;
  min-height: 44px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
  color: var(--text);
}

.admin-form-actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(14, 156, 168, 0.12);
}

.actions-cell button {
  margin-right: 8px;
}

.reminder-item {
  margin-bottom: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(14, 156, 168, 0.08);
}

.admin-notice {
  padding: 14px 16px;
  margin-bottom: 14px;
  border-radius: 20px;
  background: rgba(14, 156, 168, 0.12);
  color: #0d4f5d;
  font-weight: 700;
}

@media (max-width: 720px) {
  .schedule-controls {
    grid-template-columns: 1fr;
  }
  .card {
    min-height: auto;
    min-width: 0;
  }
  .card-icon {
    width: 100% !important;
    max-width: 100% !important;
    max-height: 180px;
    height: auto !important;
    display: block;
  }
}

.schedule-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  margin-top: 18px;
  table-layout: auto;
}

.schedule-table th,
.schedule-table td {
  text-align: left;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(14, 156, 168, 0.12);
  vertical-align: top;
  word-break: normal;
}

.schedule-table th {
  white-space: nowrap;
  background: rgba(14, 156, 168, 0.08);
  color: #0d4f5d;
  font-weight: 700;
}

.schedule-table th:nth-child(1),
.schedule-table td:nth-child(1) {
  min-width: 150px;
}

.schedule-table th:nth-child(2),
.schedule-table td:nth-child(2) {
  min-width: 112px;
}

.schedule-table th:nth-child(3),
.schedule-table td:nth-child(3) {
  min-width: 120px;
}

.schedule-table th:nth-child(4),
.schedule-table td:nth-child(4) {
  min-width: 120px;
}

.schedule-table th:nth-child(7),
.schedule-table td:nth-child(7) {
  text-align: center;
}

.time-details {
  min-width: 90px;
}

.time-details span {
  display: block;
  font-size: 0.85rem;
  color: #0e9ca8;
}

.schedule-table td:nth-child(1),
.schedule-table td:nth-child(4),
.schedule-table td:nth-child(7) {
  white-space: nowrap;
}

.schedule-table td a {
  min-width: 0;
  display: inline-flex;
  justify-content: center;
  padding: 0.7rem 1rem;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 700;
}

.schedule-table td a.button-primary {
  color: #ffffff;
}

@media (max-width: 720px) {
  .schedule-table th,
  .schedule-table td {
    padding: 0.75rem 0.9rem;
  }

  .schedule-table td a {
    width: 100%;
  }
}

@media (min-width: 720px) {
  .workshop-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.info,
.workshop-banner,
.contact,
.legal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
}

.legal-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.legal-header-row h1 {
  margin: 0;
  font-size: 1.75rem;
}

.legal-update-date {
  white-space: nowrap;
  color: var(--muted);
  font-size: 1rem;
}

.info + .info,
.info + .contact,
.repair-brands + .info,
.workshop-banner + .info {
  margin-top: 24px;
}

.legal-content .legal-section {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(14, 156, 168, 0.12);
  border-radius: 24px;
  padding: 22px 20px;
  margin-top: 18px;
}

.legal-content .legal-section:first-child {
  margin-top: 0;
}

.contact {
  margin-top: 24px;
}

.workshop-banner {
  background: rgba(14, 156, 168, 0.08);
  border-color: rgba(14, 156, 168, 0.35);
  box-shadow: 0 12px 28px rgba(12, 91, 101, 0.08);
  margin-bottom: 24px;
}

.legal-content #privacy,
.legal-content #contact {
  background: rgba(227, 243, 247, 0.96);
  border-color: rgba(14, 156, 168, 0.18);
}

.legal-content #privacy h2,
.legal-content #contact h2 {
  color: #0b5361;
}

.repair-brands {
  background: rgba(16, 112, 134, 0.1);
  border-color: rgba(16, 112, 134, 0.4);
  box-shadow: 0 10px 22px rgba(18, 96, 111, 0.09);
  border-left: 4px solid var(--accent);
}

.repair-brands h2 {
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.repair-brands p {
  margin: 0 0 0.85rem;
  color: #114855;
  font-weight: 600;
}

.repair-brands ul {
  margin: 0.5rem 0 0 1.25rem;
  padding-left: 0;
}

.repair-brands li {
  margin-bottom: 0.65rem;
  line-height: 1.5;
}

.workshop-banner h2,
.info h2,
.contact h2,
.legal-content h1,
.legal-content h2 {
  margin-top: 0;
  color: #0d4f5d;
}

.info p,
.workshop-banner p,
.contact p,
.legal-content p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact a,
.legal-content a {
  color: #0e9ca8;
  text-decoration: none;
}

.back-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--accent);
  text-decoration: none;
}

.site-footer {
  margin-top: 30px;
  padding: 18px 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  text-align: center;
}

.site-footer p {
  margin: 0 0 12px;
  color: var(--text);
  font-weight: 700;
}

.site-footer img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.tracking-toggle-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.9rem auto 0;
}

.tracking-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(14, 156, 168, 0.35);
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.tracking-toggle:hover {
  transform: translateY(-1px);
}

.tracking-toggle.off {
  background: rgba(14, 156, 168, 0.12);
  color: #0d4f5d;
  border-color: rgba(14, 156, 168, 0.35);
}

@media (max-width: 720px) {
  .page-shell {
    padding: 28px 18px 32px;
  }

  .action-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 140px;
    padding: 22px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .card-icon {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    max-height: 180px;
    height: auto !important;
    display: block;
    object-fit: contain;
  }
}
