* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #eaf1f8;
  color: #1f2d3d;
  line-height: 1.5;
}
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: -0.5px;
}
.logo span { color: #1f2d3d; }
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}
nav a {
  text-decoration: none;
  color: #1f2d3d;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
nav a:hover { color: #2563eb; }
.cart-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
}
.hero {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 24px;
  text-align: center;
}
.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
  color: #0f172a;
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.1rem;
  color: #475569;
  margin: 0 auto;
}
.hero-quote {
  margin: 36px 0 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: stretch;
  gap: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(125, 211, 252, 0.18));
  border-left: 4px solid #2563eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.08);
  text-align: left;
}
.hero-quote-text {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.4rem;
  color: #1e3a8a;
  padding: 32px 36px;
  line-height: 1.6;
  align-self: center;
  margin: 0;
}
.hero-quote-text span {
  font-size: 2rem;
  color: #2563eb;
  font-weight: 700;
  vertical-align: -8px;
  margin: 0 4px;
  font-family: Georgia, serif;
}
.hero-quote-img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .hero-quote { grid-template-columns: 1fr; }
  .hero-quote-img { height: 180px; min-height: 0; order: -1; }
  .hero-quote-text { padding: 22px 24px; font-size: 1.1rem; }
}
.products {
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}
.card .img-wrap {
  background: #fff;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f1f5f9;
  overflow: hidden;
}
.card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  background: #fff;
}
.card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card h3 {
  font-size: 1.05rem;
  color: #0f172a;
}
.card .desc {
  font-size: 0.85rem;
  color: #64748b;
  flex: 1;
}
.card .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2563eb;
}
.add-btn {
  background: #0f172a;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.add-btn:hover { background: #2563eb; }
footer {
  background: #0f172a;
  color: #cbd5e1;
  text-align: center;
  padding: 32px 24px;
  font-size: 0.9rem;
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.9rem; }
  nav ul { display: none; }
  .products { gap: 16px; }
}
