/* Final landing-page refinements: no fake search/cart, simplified navigation. */
.topbar {
  grid-template-columns: auto 1fr auto;
  gap: 30px;
}

.header-tagline {
  color: #c7d0d8;
  text-align: center;
  font-size: 13px;
  margin: 0;
}

.header-cta {
  background: var(--orange2);
  color: #111;
  padding: 11px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease;
}

.header-cta:hover {
  background: var(--yellow);
  transform: translateY(-1px);
}

.product-card {
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: scale(1.025);
  box-shadow: 0 15px 38px rgba(0, 0, 0, .5);
  z-index: 3;
}

.product-image img {
  object-fit: contain;
  padding: 14px;
  transition: transform .35s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-info h3 a {
  transition: color .18s ease;
}

.product-info h3 a:hover {
  color: #c45500;
  text-decoration: underline;
}

.product-info h3 {
  height: auto;
  min-height: 69px;
}

.product-note {
  min-height: 30px !important;
  line-height: 1.4;
}

@media (max-width: 1050px) {
  .topbar { grid-template-columns: auto 1fr auto; }
  .header-tagline { display: none; }
}

@media (max-width: 700px) {
  .topbar { grid-template-columns: 1fr auto; }
  .brand { justify-content: flex-start; }
  .header-cta { font-size: 11px; padding: 9px 13px; }
  .product-card:hover { transform: scale(1.012); }
}
