
:root {
  --bg: #f5f7f3;
  --bg-alt: #e7efe6;
  --card: #ffffff;
  --line: #ced7c8;
  --accent: #5c8f6c;
  --accent-soft: #c7ddcd;
  --accent-deep: #294737;
  --text-main: #26322b;
  --text-muted: #647264;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #f9faf8, #f3f6f1);
  color: var(--text-main);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

.site-header {
  border-bottom: 1px solid rgba(206, 215, 200, 0.7);
  background: rgba(245, 247, 243, 0.95);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 40% 60% 55% 45%;
  background: radial-gradient(circle at 30% 20%, #f8fff5, #7ca584);
  box-shadow: 0 10px 24px rgba(76, 120, 91, 0.32);
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 14px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  padding: 4px 2px;
  color: var(--text-muted);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: width 0.16s ease;
}

.nav a:hover {
  color: var(--text-main);
}

.nav a:hover::after {
  width: 100%;
}

.cart-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(206, 215, 200, 0.9);
  box-shadow: 0 8px 20px rgba(44, 76, 48, 0.16);
  font-size: 13px;
}

.cart-icon {
  font-size: 16px;
}

.hero {
  padding: 32px 0 26px;
}

.hero-soft {
  background: radial-gradient(circle at top right, #e0efe2, #f5f7f3);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 3fr);
  gap: 32px;
  align-items: center;
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-art {
  border-radius: var(--radius-lg);
  padding: 14px;
  background: conic-gradient(from 190deg, #d8ebdc, #f5f7f3, #c6ddcc, #f5f7f3);
  box-shadow: 0 20px 38px rgba(42, 75, 46, 0.24);
}

.hero-art img {
  border-radius: 24px;
}

.hero-note {
  font-size: 13px;
  color: var(--text-muted);
  padding: 10px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px dashed var(--accent-soft);
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--accent-deep);
  margin: 0 0 8px;
}

.hero-copy h1 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 34px);
}

.hero-text {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section {
  padding: 32px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0 0 6px;
}

.section-head p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: 0 10px 26px rgba(26, 51, 31, 0.12);
  border: 1px solid rgba(206, 215, 200, 0.7);
}

.card h3 {
  margin-top: 0;
}

.narrow {
  max-width: 760px;
}

.lead {
  font-size: 14px;
  color: var(--text-muted);
}

.product-grid {
  align-items: start;
}

.product-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.5fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(206, 215, 200, 0.8);
  box-shadow: 0 16px 34px rgba(28, 56, 33, 0.16);
}

.product-img img {
  border-radius: var(--radius-md);
}

.product-info h2 {
  margin: 0 0 6px;
  font-size: 16px;
}

.product-info p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.product-meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-meta-lg {
  margin-top: 18px;
}

.price {
  font-weight: 600;
  color: var(--accent-deep);
}

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.14s ease, color 0.14s ease, box-shadow 0.14s ease, transform 0.08s ease, border-color 0.14s ease;
  font-weight: 500;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(43, 87, 52, 0.36);
}

.btn-primary:hover {
  background: #466f57;
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--accent-soft);
  color: var(--accent-deep);
}

.btn-ghost:hover {
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(31, 57, 34, 0.18);
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

.btn-full {
  width: 100%;
}

.layout-split {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 24px;
  align-items: flex-start;
}

.split-main p {
  margin-top: 0;
  font-size: 14px;
  color: var(--text-main);
}

.split-side {
  position: relative;
}

.product-side-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 14px 16px 16px;
  box-shadow: 0 16px 32px rgba(25, 52, 30, 0.18);
  border: 1px solid rgba(206, 215, 200, 0.8);
}

.product-side-card img {
  border-radius: var(--radius-md);
  margin-bottom: 10px;
}

.product-side-card p {
  font-size: 13px;
  color: var(--text-muted);
}

.list {
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-muted);
}

.list li + li {
  margin-top: 4px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr);
  gap: 20px;
}

.cart-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 16px 18px 18px;
  border: 1px solid rgba(206, 215, 200, 0.9);
  box-shadow: 0 14px 30px rgba(25, 50, 29, 0.16);
}

.cart-box h2 {
  margin-top: 0;
}

.cart-items {
  border-radius: var(--radius-md);
  border: 1px dashed rgba(206, 215, 200, 0.9);
  padding: 8px 10px;
  min-height: 40px;
}

.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 14px;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-weight: 600;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--text-muted);
}

input,
textarea {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  padding: 8px 10px;
  font-size: 13px;
  font-family: inherit;
  background: #ffffff;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

textarea {
  min-height: 60px;
}

.form-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.success-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer {
  margin-top: 32px;
  background: #eef2ec;
  border-top: 1px solid rgba(206, 215, 200, 0.7);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  padding: 18px 0 12px;
}

.footer-col h4 {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--text-main);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(206, 215, 200, 0.7);
  padding: 10px 0 14px;
  gap: 10px;
}

@media (max-width: 840px) {
  .nav {
    display: none;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-media {
    order: -1;
  }
  .product-card {
    grid-template-columns: minmax(0, 1fr);
  }
  .layout-split {
    grid-template-columns: minmax(0, 1fr);
  }
  .cart-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
