/**
 * Mobile-only styles ported from AMP pages.
 * Applied to the standard Blade layout at max-width: 768px.
 * Desktop styling remains unchanged.
 */
@media (max-width: 768px) {
  /* Container: AMP mobile width and padding */
  body .container {
    max-width: 768px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Header/nav: AMP mobile header look */
  body header,
  body header nav,
  body nav.bg-pantone,
  body .bg-pantone {
    background-color: rgba(0, 40, 104, 0.7) !important;
  }

  body header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    z-index: 30;
  }

  /* Main content: offset for fixed header on mobile */
  /* body main {
    padding-top: 4.5rem;
  } */

  /* Call-to-action / primary buttons: AMP red gradient */
  .header-call-to-action,
  a.bg-fireBrick,
  button.bg-fireBrick,
  .bg-fireBrick.btn,
  nav a[href^="tel:"] {
    background: linear-gradient(97deg, #CD172B 0%, #64000B 100%) !important;
    color: #fff !important;
    font-weight: 600;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }

  /* Search box: AMP mobile style when present */
  .search-box,
  input[placeholder*="Search"],
  input[placeholder*="search"] {
    border-radius: 50px;
    padding: 10px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: solid #CD172B 3px; */
  }

  /* Product/equipment cards: compact mobile layout */
  .product-card-section,
  .grid.grid-cols-12 {
    gap: 15px;
  }

  /* Headings: AMP mobile typography */
  .main-heading,
  section h2.font-poppinsBold {
    font-size: 18px;
    font-weight: 700;
    /* text-align: center; */
  }

  .main-heading span,
  h2 span.text-fireBrick,
  .text-fireBrick {
    color: #CD172B;
  }

  /* Card styling on mobile */
  .shadow-cardshadow {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    border-radius: 5px;
  }

  /* Footer area: AMP mobile footer width */
  body footer,
  .footer-container {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  body .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  body header {
    max-width: 100%;
  }
}
