/* Smart Site Services — WHMCS/Lagom custom tweaks (hosted; loaded via includes/hooks/custom_css.php) */

/* 1. Bigger header logo on mobile/tablet — override Lagom's sizing variables */
@media (max-width: 991px) {
  .app-nav-header {
    --mob-app-nav-logo-height: 44px;
    --app-nav-logo-height: 44px;
  }
  .app-nav-header .logo img, .logo img {
    height: 40px !important;
    max-height: 40px !important;
    width: auto !important;
    max-width: 200px !important; /* theme's --app-nav-logo-width cap was the real shrink culprit */
  }
}

/* 2. Gap between cart icon and Login button (desktop) */
#Primary_Navbar-View_Cart { margin-right: 18px !important; }

/* 3. Billing cycles: 2 columns on mobile */
@media (max-width: 767px) {
  .section--billing-cycles .row > [class*="col-"] {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
}
