
:root {
  --bg: #f5f2eb;
  --nav: #0b3757;
  --accent: #e47b2c;
  --accent-soft: #ffe1c2;
  --text: #222;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: var(--nav); }
header {
  background: var(--nav);
  color: #fff;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
header img.logo {
  height: 50px;
  border-radius: 999px;
}
header h1 {
  margin: 0;
  font-size: 22px;
}
header .tagline-small {
  font-size: 12px;
  opacity: 0.8;
}
nav {
  background: #0e446d;
  padding: 10px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}
nav a:hover {
  text-decoration: underline;
}
.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 26px 18px 40px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 26px 26px 26px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  margin-bottom: 26px;
}
.hero h2 {
  font-size: 28px;
  margin-top: 0;
  color: var(--nav);
}
.hero p {
  font-size: 15px;
}
.hero-buttons {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn, .btn-outline {
  border-radius: 999px;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
}
.btn {
  background: var(--accent);
  color: #fff;
}
.btn:hover {
  background: #ff8a3b;
}
.btn-outline {
  background: transparent;
  color: var(--nav);
  border: 2px solid var(--nav);
}
.btn-outline:hover {
  background: var(--nav);
  color: #fff;
}
.hero-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}
.hero-photo img {
  width: 100%;
  display: block;
}
.section {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px 20px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  margin-bottom: 24px;
}
.section h2 {
  margin-top: 0;
  color: var(--nav);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.why-card {
  background: #faf6ee;
  border-radius: 12px;
  padding: 12px 12px 14px;
  font-size: 14px;
}
.why-card strong {
  display: block;
  margin-bottom: 4px;
}
.carousel {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.16);
  margin-top: 12px;
}
.carousel-track {
  display: flex;
  width: 500%;
  animation: slide 25s infinite linear;
}
.carousel img {
  width: 100%;
  display: block;
}
@keyframes slide {
  0%,15% { transform: translateX(0); }
  20%,35% { transform: translateX(-100%); }
  40%,55% { transform: translateX(-200%); }
  60%,75% { transform: translateX(-300%); }
  80%,95% { transform: translateX(-400%); }
  100% { transform: translateX(0); }
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.product-card {
  background: #faf6ee;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card img {
  width: 100%;
  border-radius: 10px;
}
.product-title {
  font-weight: bold;
  color: var(--nav);
}
.product-meta {
  font-size: 13px;
  color: #555;
}
.product-price {
  font-size: 16px;
  font-weight: bold;
  color: var(--accent);
}
footer {
  background: #0b3757;
  color: #f5f5f5;
  text-align: center;
  font-size: 12px;
  padding: 16px 10px 20px;
}
footer a {
  color: #f5f5f5;
}
.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 24px;
}
.order-preview {
  background: #faf6ee;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-preview img {
  max-width: 100%;
  border-radius: 12px;
}
form label {
  display: block;
  font-weight: bold;
  font-size: 13px;
  margin-top: 10px;
}
form input[type="text"],
form input[type="email"],
form select,
form textarea {
  width: 100%;
  padding: 8px 9px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  margin-top: 4px;
}
form textarea {
  min-height: 90px;
  resize: vertical;
}
.small-note {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}
.size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.size-pill {
  border-radius: 999px;
  padding: 6px 11px;
  background: #eee;
  font-size: 12px;
}
.size-pill span {
  font-weight: bold;
}
@media (max-width: 780px) {
  .hero {
    grid-template-columns: minmax(0,1fr);
  }
  .order-layout {
    grid-template-columns: minmax(0,1fr);
  }
}
