
:root {
  --bg: #f4ebdd;
  --bg-soft: #fff7ec;
  --ink: #3a2a1b;
  --muted: #8a725e;
  --accent: #d97706;
  --accent-soft: #fed7aa;
  --accent-strong: #ea580c;
  --line: #e4d3bf;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-soft: 0 22px 55px rgba(120,83,52,0.28);
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background:
    radial-gradient(circle at top, #fef3c7 0, #f4ebdd 42%, #e6d5c0 100%);
  color: var(--ink);
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.6rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(244,235,221,0.95), rgba(244,235,221,0.85));
  border-bottom: 1px solid rgba(228,211,191,0.9);
}

.header-shell {
  padding: 0.75rem 0 0.4rem;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.logo-block {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: radial-gradient(circle at top, #fffbeb, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.92rem;
  color: #422006;
}

.logo-word {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: #854d0e;
}

.cart-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at top, #fff7ec, #f4ebdd);
  box-shadow: 0 14px 30px rgba(148,108,68,0.35);
  font-size: 0.9rem;
  color: var(--ink);
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fffbeb;
  font-weight: 600;
  font-size: 0.78rem;
}

.cart-label {
  font-weight: 500;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  padding: 0.45rem 0 0.4rem;
  font-size: 0.9rem;
}

.main-nav a {
  padding: 0.35rem 0.3rem;
  color: var(--muted);
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.1rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #fed7aa, #ea580c);
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: center;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

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

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Generic layout */

.page {
  padding: 2.1rem 0 2.6rem;
}

.page-main {
  padding-top: 1.7rem;
}

/* Hero */

.hero-row {
  display: grid;
  grid-template-columns: minmax(0,1.55fr) minmax(0,1.1fr);
  gap: 2.1rem;
  align-items: center;
}

.hero-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: #a16207;
  margin: 0 0 0.35rem;
}

.hero-copy h1 {
  margin: 0 0 0.8rem;
  font-size: 2rem;
}

.hero-copy p {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.hero-media {
  display: grid;
  gap: 0.75rem;
}

.hero-card {
  border-radius: 24px;
  border: 1px solid rgba(228,211,191,0.95);
  background: radial-gradient(circle at top, #fff7ec, #f4ebdd);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.1rem 1rem;
}

.hero-svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.hero-note {
  margin-top: 0.7rem;
}

.hero-note h2 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-aside {
  border-radius: 18px;
  border: 1px dashed rgba(217,119,6,0.5);
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Ribbon */

.ribbon {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 0.9rem;
}

.ribbon-item {
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  background: rgba(255,247,236,0.98);
  border: 1px dashed rgba(234,88,12,0.4);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.tag {
  flex-shrink: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #9a3412;
}

.ribbon-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Mosaic section */

.mosaic {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: minmax(0,1.6fr) minmax(0,1.05fr);
  gap: 1.5rem;
}

.card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 1.3rem 1.4rem;
}

.mosaic-main h2 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
}

.mosaic-main p {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.mosaic-side {
  display: grid;
  gap: 0.8rem;
}

.mini-card {
  border-radius: 18px;
  border: 1px dashed rgba(217,119,6,0.5);
  background: #fff7ec;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.mini-card h3 {
  margin: 0 0 0.3rem;
  font-size: 0.96rem;
  color: var(--ink);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.7rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease, border-color 0.14s ease;
}

.btn.primary {
  background: linear-gradient(to right,#f59e0b,#ea580c);
  color: #fffbeb;
  box-shadow: 0 18px 44px rgba(180,83,9,0.7);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(180,83,9,0.85);
}

.btn.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn.ghost:hover {
  background: rgba(255,247,236,0.96);
}

/* Grid & products */

.grid {
  display: grid;
  gap: 1.3rem;
}

.product-grid {
  margin-top: 1.8rem;
  grid-template-columns: repeat(2,minmax(0,1fr));
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-title {
  margin: 0;
  font-size: 1.05rem;
}

.product-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.product-price {
  margin: 0.4rem 0 0.25rem;
  font-weight: 600;
  color: #78350f;
}

.product-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn.outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn.outline:hover {
  background: rgba(255,247,236,0.96);
}

.link-more {
  font-size: 0.86rem;
}

/* Page head */

.page-head h1 {
  margin: 0 0 0.6rem;
  font-size: 1.5rem;
}

.page-head p {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Breadcrumbs */

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: var(--muted);
}

/* Product layout */

.product-layout {
  display: grid;
  grid-template-columns: minmax(0,1.7fr) minmax(0,1fr);
  gap: 1.6rem;
}

.product-main .lead {
  font-weight: 500;
}

.product-main p {
  margin-top: 0;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
}

.product-side {
  align-self: flex-start;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff7ec;
  box-shadow: var(--shadow-soft);
  padding: 1.15rem 1.3rem;
  position: sticky;
  top: 5.6rem;
}

.product-side .product-price {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.product-meta {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Cart */

.cart-layout {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: minmax(0,1.5fr) minmax(0,1.05fr);
  gap: 1.5rem;
}

.cart-box {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem 1.3rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(0,1.6fr) 90px 80px auto;
  gap: 0.7rem;
  align-items: center;
  padding-bottom: 0.55rem;
  border-bottom: 1px dashed var(--line);
}

.cart-row:last-child {
  border-bottom: none;
}

.cart-title {
  font-weight: 500;
}

.cart-price {
  text-align: right;
}

.cart-qty input {
  width: 3.1rem;
  padding: 0.22rem 0.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-align: center;
  background: #fffbeb;
  color: var(--ink);
}

.cart-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-summary .label {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.cart-summary .total {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Forms */

.form {
  display: grid;
  gap: 0.8rem;
}

.form h2 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.form label {
  font-size: 0.88rem;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fffbeb;
  padding: 0.55rem 0.75rem;
  font: inherit;
  color: var(--ink);
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(234,88,12,0.7);
  outline-offset: 1px;
}

/* Text blocks */

.text-block {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
}

.text-block p {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

/* Contact */

.contact-layout {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: minmax(0,1.5fr) minmax(0,1.05fr);
  gap: 1.5rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  font-size: 0.9rem;
}

.contact-list li + li {
  margin-top: 0.25rem;
}

/* Legal */

.legal {
  font-size: 0.9rem;
}

/* Success */

.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 230px);
}

.success-card {
  max-width: 520px;
  text-align: center;
}

.success-card h1 {
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.success-card p {
  margin-top: 0;
  margin-bottom: 1.4rem;
  color: var(--muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(244,235,221,0.96);
  padding: 2rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0,1.6fr) minmax(0,1fr) minmax(0,1fr);
  gap: 1.6rem;
  font-size: 0.86rem;
}

.footer-grid h4 {
  margin: 0 0 0.4rem;
}

.footer-grid p {
  margin: 0.16rem 0;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 1.3rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: right;
}

/* Responsive */

@media (max-width: 1040px) {
  .hero-row {
    grid-template-columns: minmax(0,1fr);
  }
  .mosaic {
    grid-template-columns: minmax(0,1fr);
  }
  .product-layout,
  .cart-layout,
  .contact-layout {
    grid-template-columns: minmax(0,1fr);
  }
  .product-side {
    position: static;
  }
}

@media (max-width: 780px) {
  .header-top {
    flex-wrap: wrap;
  }
  .main-nav {
    flex-wrap: wrap;
  }
  .ribbon {
    grid-template-columns: minmax(0,1fr);
  }
  .product-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .footer-grid {
    grid-template-columns: minmax(0,1fr);
  }
}
