﻿
.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.muted-text {
  color: var(--muted);
}

[data-product-description] {
  white-space: pre-line;
}

.hero-card {
  display: grid;
  gap: 16px;
}

.card {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.soft-card {
  background: var(--card);
}

.card h2,
.card h3 {
  font-family: var(--font-base);
  font-weight: 400;
  margin-top: 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.price {
  font-size: 22px;
  font-weight: 400;
}

.pill {
  background: #f1e6d8;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mini-card {
  display: grid;
  gap: 14px;
}

.mini-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.flow {
  animation: fade-in 0.9s ease-out;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

.flow-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  margin-top: 28px;
  justify-items: center;
}

.step {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #6b4a32;
  color: #fff;
  font-weight: 500;
  margin-bottom: 16px;
}

.flow-grid h3,
.flow-grid p {
  margin-left: auto;
  margin-right: auto;
  max-width: 280px;
}

.flow-grid h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #3a2b22;
  font-weight: 400;
}

.flow-grid p {
  font-size: 16px;
  line-height: 1.7;
  color: #7a6454;
}

.drop-note {
  background: linear-gradient(120deg, #f7efe3, #f1e7d7);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.order-hero h1 {
  font-family: var(--font-base);
  font-weight: 400;
}

.order-hero .lead {
  max-width: none;
}

.product-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.order-layout {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

.order-layout.is-disabled {
  opacity: 0.62;
}

.maintenance-banner {
  display: grid;
  gap: 10px;
  background: linear-gradient(135deg, #fbf0e3, #f6e3cf);
  border-color: #e0c2a5;
}

.maintenance-banner h2,
.maintenance-banner h3 {
  margin: 0;
}

.maintenance-banner .fine {
  margin: 0;
}

.order-maintenance {
  margin-bottom: 12px;
}

.order-catalog {
  display: grid;
  gap: 20px;
  align-content: start;
}

.order-product {
  padding: 0;
  overflow: hidden;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.order-product.is-selected {
  border-color: rgba(139, 100, 54, 0.4);
  box-shadow: 0 18px 40px rgba(111, 95, 79, 0.08);
}

.order-product.is-unavailable {
  opacity: 0.82;
}

.order-product .eyebrow {
  margin: 0 0 8px;
}

.product-image {
  height: 360px;
  background-image: var(--img-product-jpg);
  background-image: var(--img-product-modern);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.product-body {
  padding: 24px 26px 28px;
}

.product-body .muted-text {
  white-space: pre-line;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.inline-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inline-form .cta-block {
  min-width: 140px;
  height: 44px;
  padding: 0 18px;
  border-radius: 8px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #f7f2ec;
  border: 1px solid var(--border);
  font-size: 16px;
  min-width: 140px;
  height: 44px;
  justify-content: space-between;
}

.qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid #d7cabb;
  border-radius: 999px;
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease,
    opacity 0.16s ease;
}

.qty-btn:hover:not(:disabled) {
  background: #f2e8dc;
  border-color: #cdb89f;
}

.qty-btn:disabled {
  background: #ede4d8;
  border-color: #d8caba;
  color: #a3907c;
  cursor: not-allowed;
  opacity: 1;
}

.qty-value {
  min-width: 24px;
  text-align: center;
}

.order-summary {
  display: grid;
  gap: 16px;
  text-align: left;
}

.order-summary-lines {
  display: grid;
  gap: 0;
}

.order-summary.empty {
  padding: 48px 24px;
  font-size: 18px;
}

.order-side {
  display: grid;
  gap: 20px;
}

.order-line {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background-image: var(--img-product-jpg);
  background-image: var(--img-product-modern);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.order-line-text {
  display: grid;
  gap: 4px;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}

.totals {
  margin: 12px 0 24px;
  padding: 16px 18px;
  border-radius: 8px;
  background: #f7f2ec;
  border: 1px solid var(--border);
}

.totals h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.totals-list {
  display: grid;
  gap: 8px;
}

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

.trash-form {
  display: flex;
  align-items: center;
}

.trash-btn {
  border: none;
  background: transparent;
  color: #7a6a5a;
  cursor: pointer;
  padding: 6px;
}

.trash-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}

strong,
b {
  font-weight: 400;
}

.form label {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}

.form .checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form .checkbox-field input {
  width: auto;
  margin-top: 2px;
  padding: 0;
}

.form .checkbox-field span {
  line-height: 1.35;
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border-radius: 12px;
  border: 1px solid #e6dfd4;
  font-size: 16px;
}

.form textarea {
  resize: vertical;
}

.form button {
  margin-top: 24px;
  width: 100%;
}

.fine {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

.summary p {
  margin: 4px 0;
}

.split {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.practical-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #efe6dc;
  color: #6b4a32;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-badge svg {
  width: 22px;
  height: 22px;
}

.icon-open {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-strong {
  font-size: 18px;
  margin: 6px 0 6px;
}

.practical-notes {
  margin-top: 40px;
}

.practical-notes h2 {
  font-family: var(--font-base);
  font-weight: 400;
}

.notes-list {
  display: grid;
  gap: 28px;
  margin-top: 20px;
}

.notes-list h3 {
  font-weight: 400;
}

.notes-list p {
  color: var(--muted);
}

.address-card {
  max-width: 520px;
  margin: 36px auto 0;
  text-align: center;
  width: 100%;
}

.address-card p {
  color: var(--muted);
}

.address-card .map-frame {
  margin-top: 16px;
  width: 100%;
  height: 260px;
  padding-top: 0;
}

.map-frame {
  width: 100%;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  padding: 10px 0;
  border-bottom: 1px solid #efe6d8;
}

.story {
  display: grid;
  gap: 24px;
}

.about-page {
  margin-top: 28px;
}

.about-card {
  padding: 36px 40px;
  max-width: 680px;
  line-height: 1.75;
}

.about-card p + p {
  margin-top: 18px;
}

.about-photo {
  min-height: 420px;
  background-image: var(--img-about-jpg);
  background-image: var(--img-about-modern);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-photo-note {
  text-align: center;
  margin-top: 10px;
}

.about-hero {
  padding-bottom: 12px;
}

.about-gdpr {
  padding: 16px 18px;
  max-width: 680px;
}

.about-gdpr summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}

.about-gdpr details[open] summary {
  margin-bottom: 10px;
}

.about-gdpr p {
  margin: 0;
  line-height: 1.6;
}

.about-gdpr p + p {
  margin-top: 8px;
}

.quotes-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.quote-form {
  max-width: 520px;
}

.quote-form textarea {
  min-height: 120px;
}

.quotes-list {
  display: grid;
  gap: 14px;
  align-content: start;
  max-width: 760px;
}

.quote-item {
  border: 1px solid #e6dfd4;
  border-radius: 12px;
  padding: 14px 16px;
  background: #fffdf9;
}

.quote-text {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.45;
}

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

.quote-admin-control {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.quote-admin-control input {
  width: auto;
  margin: 0;
}

.order-lifecycle-panel {
  max-width: 760px;
  padding: 20px 22px;
}

.order-lifecycle-panel .pill {
  margin: 0 0 10px;
}

.order-lifecycle-panel h2 {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.1;
}

.order-lifecycle-panel .fine {
  margin: 0;
  font-size: 15px;
}

.preorder-unlock {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
}

.preorder-unlock h3 {
  margin: 0;
}

.preorder-unlock form {
  display: grid;
  gap: 8px;
}

.preorder-unlock form label {
  margin-top: 0;
  font-size: 14px;
  color: var(--muted);
}

.preorder-unlock form input {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #e6dfd4;
  font-size: 16px;
  background: #fff;
}

.preorder-unlock form button {
  margin-top: 4px;
  width: 100%;
}

.preorder-unlock .fine {
  margin: 0;
}

.soldout-newsletter {
  max-width: 720px;
  padding: 18px 20px;
}

.page-order.order-soldout .soldout-newsletter {
  margin-top: -52px;
}

.soldout-newsletter h2 {
  margin: 0 0 8px;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.1;
}

.soldout-newsletter .fine {
  margin-top: 0;
  margin-bottom: 10px;
}

.practical-lifecycle-card {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.practical-lifecycle-card h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}

.practical-lifecycle-chip {
  width: fit-content;
}

.practical-lifecycle-message {
  margin: 0;
}

.flash-stack {
  display: grid;
  gap: 8px;
}

.flash {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
}

.flash-success {
  background: #e6f3e2;
  color: #2e5a2b;
}

.flash-warning {
  background: #fff2d6;
  color: #6f4b00;
}

.flash-info {
  background: #e7effa;
  color: #2a3f5f;
}

.site-footer {
  display: grid;
  gap: 12px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid #e6dfd4;
  color: var(--muted);
}

.footer-did-you-know {
  margin: 0;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px dashed #d8cbb8;
  border-radius: 12px;
  background: #f8f3ed;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.footer-did-you-know-label {
  margin-right: 6px;
  color: var(--ink);
  font-weight: 600;
}

.footer-did-you-know-text {
  color: var(--muted);
}

.footer-newsletter {
  background: #f8f3ed;
  border: 1px solid #e6dfd4;
  border-radius: 12px;
  padding: 14px;
}

.footer-newsletter h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
}

.newsletter-form {
  display: grid;
  gap: 10px;
}

.newsletter-fields {
  display: grid;
  gap: 10px;
}

.newsletter-form input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e6dfd4;
  font-size: 15px;
  background: #fff;
}

.newsletter-form .cta {
  width: auto;
  justify-self: start;
  margin-top: 0;
  padding: 10px 16px;
  font-size: 16px;
}

.newsletter-form .fine {
  margin: 0;
}

.footer-meta {
  font-size: 13px;
}

.footer-meta p {
  margin: 0;
}

.footer-meta p + p {
  margin-top: 6px;
}

.footer-meta-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--ink);
}

.footer-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.link {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 500;
}

.table {
  display: grid;
  gap: 8px;
}

.table-row {
  display: grid;
  grid-template-columns: 60px 1.2fr 1.4fr 80px 1fr;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid #efe6d8;
}

.table-row.header {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
}

.map-card {
  display: grid;
  gap: 16px;
}

.map-frame {
  position: relative;
  padding-top: 56%;
  border-radius: 8px;
  overflow: hidden;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
