/* === Global Typography === */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.2;
  background-color: #f9fafb;
  color: #1f2937;
  margin: 0;
  padding: 0;
}

/* === Header === */
header {
  background-color: #2563eb;
  color: white;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* === Container === */
.container {
  max-width: 960px;
  margin: 3rem auto;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

/* === Filters === */
.filter-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  
}

.filter-section input,
.filter-section select,
.filter-section label,
.filter-section button {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  flex: 1 1 220px;
  background-color: white;
}

.filter-section input[type="checkbox"] {
  flex: 0 0 auto;
  margin-right: 0.5rem;
}

.filter-section label {
  display: flex;
  align-items: center;
}

.filter-section button {
  background-color: #2563eb;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.filter-section button:hover {
  background-color: #1d4ed8;
}

.filter-section button:nth-of-type(2) {
  background-color: #1e3a8a;
  color: white;
}

.filter-section button:nth-of-type(2):hover {
  background-color: #1e40af;
}

/* === Product Card Styling === */
.scooter-card {
  background: #f3f4f6;
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.scooter-card:hover {
  transform: translateY(-3px);

}

.scooter-card img {
  max-width: 180px;
  border-radius: 0.5rem;
  object-fit: cover;
}

.scooter-content {
  flex: 1;
  text-align: left;
}

.scooter-content h2 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1e3a8a;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.3px;
}

.scooter-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 0.75rem;
}

.scooter-content ul {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem 0;
}

.scooter-content ul li {
  margin-bottom: 0.35rem;
}

.scooter-content a {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #2563eb;
  transition: color 0.3s ease;
}

.scooter-content a:hover {
  color: #1e40af;
  text-decoration: underline;
}

/* === Buttons === */
button,
.filter-section button,
.print-button {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.25px;
  text-transform: capitalize;
}

.print-button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #2563eb;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 25%;
  max-width: 300px;
  margin: 0 auto 2rem auto;
  display: block;
}

.print-button:hover {
  background-color: #1d4ed8;
  transform: scale(1.05);
}

.print-button:active {
  transform: scale(0.95);
}

/* === Visibility === */
.print-logo-only,
.print-only-qr,
.qr-wrapper.print-only,
.print-only {
  display: none;
}

.screen-only {
  display: inline;
}

.qr-wrapper {
  display: none;
}

/* === Responsive === */
@media (max-width: 768px) {
  .filter-section {
    flex-direction: column;
    box-shadow: none;
  }
  .scooter-card {
    flex-direction: column;
    text-align: center;
  }
  .scooter-card img {
    max-width: 100%;
  }
  .print-button {
    width: 100%;
  }
}

/* === Print Styling === */
@media print {
  .filter-section,
  .print-button,
  .screen-only {
    display: none !important;
  }

  .print-only {
    display: inline !important;
  }

  .scooter-card {
    display: none !important;
  }

  .scooter-card[style*="display: flex"] {
    display: flex !important;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    page-break-inside: avoid;
    background: white !important;
    border: 1px solid #ccc;
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .left-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    flex-shrink: 0;
  }

  .qr-wrapper.print-only {
    display: block !important;
    width: 120px;
    padding: 0.5rem;
    flex: 0 0 auto;
  }

  .print-qr {
    display: block;
    max-width: 100%;
    height: auto;
  }

  .qr-image-wrap img:not(.print-qr) {
    max-width: 180px;
    height: auto;
    display: block;
    flex: 0 0 auto;
  }

  .scooter-content {
    flex: 1;
    margin-top: 0.5rem;
  }

  a .print-only {
    display: block !important;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    word-break: break-word;
  }

  .print-logo-only {
    display: block !important;
    text-align: center;
    margin-bottom: 1rem;
  }

  header a img.center-logo {
    display: none !important;
  }

  header,
  header h1,
  header h2,
  header a {
    color: #2563eb !important;
  }

@media print {
  .how-to-order-section {
    display: block;
    break-inside: avoid;
    page-break-inside: avoid;
    page-break-after: auto;
  }

@media print {
  .container {
    box-shadow: none !important;
    background: white !important;
  }

  header {
    box-shadow: none !important;
  }

  .how-to-order-section {
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .how-to-order-section {
  margin-top: 3rem;
  background-color: #eef4ff;
  border-radius: 1rem;
  padding: 2rem;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.how-to-order-section h2 {
  color: #2563eb;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.how-to-order-section h3 {
  margin-top: 1.25rem;
  color: #1e3a8a;
}
.how-to-order-section p {
  margin: 0.5rem 0;
}
.how-to-order-section a {
  color: #1d4ed8;
  font-weight: 500;
  text-decoration: none;
}
.how-to-order-section a:hover {
  text-decoration: underline;
}
.order-option {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: white;
  border-radius: 0.75rem;
  border-left: 4px solid #2563eb;
}
.qr-inline {
  margin-top: 0.5rem;
}
.qr-inline img {
  width: 100px;
  height: 100px;
}

@media print {
  .print-logo-only {
    display: block !important;
    text-align: center;
    margin-bottom: 1rem;
     box-shadow: none;
  }

  header a img.center-logo {
    display: none !important;
  }

  header,
  header h1,
  header h2,
  header a {
    color: #2563eb !important;
  }
}

.print-logo-only {
  display: none;
}

@media print {
  .container {
    box-shadow: none !important;
    background: white !important;
  }

  header {
    box-shadow: none !important;
  }
}
.filter-section,
.scooter-card {
  box-shadow: none !important;
}
@media print {
  .container {
    box-shadow: none !important;
    background: white !important;
  }

  header {
    box-shadow: none !important;
  }

  .how-to-order-section {
    page-break-inside: avoid;
    break-inside: avoid;
  }
}

}

}