/**
 * TourMyTravel - Mobile theme (d-md-none)
 * Button-centric UI for mobile home: primary CTAs + list of action buttons.
 */
@media (max-width: 767px) {
  .mobile-theme {
    --mt-primary: #dc2626;
    --mt-primary-dark: #b91c1c;
    --mt-secondary: #1e293b;
    --mt-surface: #ffffff;
    --mt-border: #e2e8f0;
    --mt-text: #1e293b;
    --mt-text-muted: #64748b;
    padding: 1rem 0 1.5rem;
    background: #f1f5f9;
  }

  .mobile-theme__heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--mt-secondary);
    margin: 0 0 1rem 0;
    padding: 0 0.25rem;
  }

  /* Primary CTA buttons - 2 in a row */
  .mobile-theme__cta-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .mobile-theme__cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    border-radius: 12px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(180deg, var(--mt-primary) 0%, var(--mt-primary-dark) 100%);
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
    transition: transform 0.15s, box-shadow 0.15s;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-theme__cta-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.35);
  }

  .mobile-theme__cta-btn i {
    font-size: 1.25rem;
  }

  /* Full-width secondary CTA */
  .mobile-theme__cta-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    border: 2px solid var(--mt-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--mt-primary);
    background: #fff;
    transition: background 0.15s, color 0.15s, transform 0.15s;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-theme__cta-full:active {
    transform: scale(0.99);
    background: #fef2f2;
  }

  .mobile-theme__cta-full i {
    font-size: 1.2rem;
  }

  /* List of action buttons (icon + label + arrow) */
  .mobile-theme__list {
    background: var(--mt-surface);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  }

  .mobile-theme__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1rem;
    text-decoration: none;
    color: var(--mt-text);
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--mt-border);
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-theme__item:last-child {
    border-bottom: none;
  }

  .mobile-theme__item:active {
    background: #f8fafc;
  }

  .mobile-theme__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f1f5f9;
    color: #0d9488;
    font-size: 1.35rem;
    flex-shrink: 0;
  }

  .mobile-theme__item-label {
    flex: 1;
  }

  .mobile-theme__item-arrow {
    color: var(--mt-text-muted);
    font-size: 1rem;
  }
}
