/* Shtender USA: restrained, furniture-focused site styling */
:root {
  color-scheme: light;
  color: #1f1f1b;
  background: #f6f2ea;
  font-family: Calibri, Candara, Segoe, "Segoe UI", sans-serif;
  line-height: 1.6;
  font-size: 16px;
  --max-width: 1140px;
  --text: #1f1f1b;
  --muted: #61605c;
  --border: #d8d0c4;
  --panel: #fffdfa;
  --accent: #8d6a44;
  --background: #f6f2ea;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--text);
}
a {
  color: var(--text);
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
textarea {
  font: inherit;
}
.page-shell {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 24px 48px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246,242,234,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(216,208,196,0.7);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px 0;
}
.site-title {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}
.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-list a {
  color: var(--text);
}
.nav-cta {
  border: 1px solid var(--text);
  padding: 10px 16px;
  font-weight: 600;
}
.nav-open {
  display: flex !important;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--text);
  background: transparent;
  padding: 10px 14px;
  font-size: 0.95rem;
}
.hero {
  display: grid;
  gap: 28px;
  margin: 36px auto;
  max-width: 860px;
  padding-bottom: 14px;
}
.hero-label {
  font-size: 0.9rem;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.hero-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.04em;
}
.hero-subtitle {
  display: grid;
  gap: 10px;
  font-size: 1.05rem;
  max-width: 38rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 14px 22px;
  text-align: center;
  min-width: 190px;
}
.button {
  background: var(--text);
  color: #fff;
}
.button-secondary {
  border-color: var(--text);
  color: var(--text);
  background: transparent;
}
.photo-panel,
.product-card__image,
.product-page__photo {
  border: 1px solid var(--border);
  background: #fdf9f1;
  min-height: 340px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  padding: 16px;
}
.photo-panel {
  min-height: 420px;
}
.photo-panel span,
.product-card__image span,
.product-page__photo span {
  max-width: 320px;
  line-height: 1.55;
}
.section {
  margin-top: 50px;
}
.section h2 {
  font-size: 1.55rem;
  margin-bottom: 18px;
}
.section p {
  max-width: 44rem;
}
.product-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.product-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 18px;
}
.product-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}
.product-card p {
  margin: 0 0 10px;
  color: var(--muted);
}
.product-card__meta {
  margin: 14px 0;
  color: var(--muted);
}
.product-card__price {
  font-weight: 700;
}
.product-card a {
  color: var(--text);
  font-weight: 600;
}
.label-pill {
  display: inline-flex;
  margin-top: 8px;
  padding: 5px 12px;
  border: 1px solid #c8b8a4;
  color: var(--muted);
  font-size: 0.92rem;
}
.details-grid,
.info-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}
.details-grid > div,
.info-grid > div {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 18px;
}
.details-grid dt,
.info-grid dt {
  font-weight: 700;
  margin-bottom: 8px;
}
.details-grid dd,
.info-grid dd {
  margin: 0;
  color: var(--muted);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid #e3dace;
}
.spec-table th {
  font-weight: 700;
  background: #faf6ef;
}
.section-intro {
  display: grid;
  gap: 16px;
}
.cta-panel {
  margin: 42px 0 0;
  padding: 26px 24px;
  background: #fffdf7;
  border: 1px solid #dad1c5;
}
.cta-panel p {
  margin: 0;
}
.cta-panel a {
  display: inline-block;
  margin-top: 14px;
}
.footer {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(216,208,196,0.85);
  color: var(--muted);
  font-size: 0.95rem;
}
.form-grid {
  display: grid;
  gap: 16px;
}
label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}
input,
textarea,
select {
  width: 100%;
  border: 1px solid #ccc5ba;
  padding: 12px 14px;
  background: #fffdfa;
  color: var(--text);
}
textarea {
  min-height: 160px;
  resize: vertical;
}
.submit-button {
  width: fit-content;
  padding: 14px 24px;
  border: 1px solid var(--text);
  background: var(--text);
  color: #fff;
  font-weight: 700;
}
@media (max-width: 860px) {
  .hero {
    padding-top: 0;
  }
  .details-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-list {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }
}
