.furniture-page-body {
  --furniture-green: #174f39;
  --furniture-green-soft: #e8f0eb;
  --furniture-sand: #eee5d3;
  --furniture-paper: rgba(255, 255, 255, 0.9);
  --furniture-border: rgba(113, 121, 115, 0.18);
  --furniture-shadow: 0 18px 42px rgba(27, 28, 28, 0.07);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.furniture-sidebar-footer .furniture-sidebar-button,
.furniture-selection-entry,
.furniture-mobile-tool,
.furniture-filter-close,
.furniture-clear-button,
.furniture-load-more,
.furniture-drawer-close {
  width: auto;
}

.furniture-sidebar-button {
  min-height: 38px;
  margin-top: 14px;
  padding: 9px 13px;
  border: 0;
  border-radius: 13px;
  font-size: 12px;
}

.furniture-selection-entry {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.furniture-selection-entry span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  min-height: 24px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
}

.furniture-page {
  display: grid;
  gap: 22px;
}

.furniture-hero,
.furniture-category-section,
.furniture-filter-panel,
.furniture-toolbar,
.furniture-active-filters,
.furniture-product-card,
.furniture-empty-state {
  border: 1px solid var(--furniture-border);
  background: var(--furniture-paper);
  box-shadow: var(--furniture-shadow);
}

.furniture-hero {
  min-height: 230px;
  padding: clamp(26px, 4vw, 48px);
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 82% 20%, rgba(234, 226, 205, 0.95), transparent 31%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 240, 235, 0.9));
}

.furniture-hero::after {
  content: "";
  position: absolute;
  right: -68px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(23, 79, 57, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(23, 79, 57, 0.025), 0 0 0 72px rgba(23, 79, 57, 0.018);
  pointer-events: none;
}

.furniture-hero > * {
  position: relative;
  z-index: 1;
}

.furniture-kicker,
.furniture-section-heading span,
.furniture-filter-header span,
.furniture-drawer-header span {
  display: block;
  margin: 0 0 8px;
  color: rgba(23, 79, 57, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.furniture-hero h1 {
  margin: 0 0 14px;
  color: var(--furniture-green);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.96;
}

.furniture-hero p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.furniture-hero-stat {
  flex: 0 0 220px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.furniture-hero-stat span,
.furniture-hero-stat small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.furniture-hero-stat strong {
  display: block;
  margin: 7px 0;
  color: var(--furniture-green);
  font-size: 30px;
}

.furniture-category-section {
  padding: 24px;
  border-radius: 22px;
}

.furniture-section-heading,
.furniture-filter-header,
.furniture-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.furniture-section-heading h2,
.furniture-filter-header h2,
.furniture-drawer-header h2 {
  margin: 0;
  color: var(--furniture-green);
  font-size: 22px;
}

.furniture-category-nav {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 4px;
}

.furniture-category-button {
  flex: 0 0 auto;
  width: auto;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(113, 121, 115, 0.18);
  border-radius: 15px;
  background: rgba(246, 244, 241, 0.9);
  color: var(--ink);
  box-shadow: none;
  font-size: 13px;
  font-weight: 700;
}

.furniture-category-button:hover,
.furniture-category-button.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--furniture-green), #2e614a);
  color: #fff;
}

.furniture-category-button span {
  margin-left: 5px;
  opacity: 0.72;
  font-variant-numeric: tabular-nums;
}

.furniture-workspace {
  display: grid;
  grid-template-columns: minmax(250px, 286px) minmax(0, 1fr);
  align-items: start;
  gap: 22px;
}

.furniture-filter-panel {
  position: sticky;
  top: 118px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding: 22px;
  border-radius: 22px;
  scrollbar-width: thin;
}

.furniture-filter-close {
  display: none;
  min-height: 36px;
  padding: 8px 11px;
  border: 0;
  background: var(--furniture-sand);
  color: #5e4f34;
  box-shadow: none;
}

.furniture-filter-groups {
  display: grid;
  margin-top: 18px;
}

.furniture-filter-group {
  padding: 16px 0;
  border-top: 1px solid var(--furniture-border);
}

.furniture-filter-group:first-child {
  border-top: 0;
  padding-top: 0;
}

.furniture-filter-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.furniture-filter-group summary::-webkit-details-marker {
  display: none;
}

.furniture-filter-group summary::after {
  content: "+";
  color: var(--furniture-green);
  font-size: 19px;
  font-weight: 500;
}

.furniture-filter-group[open] summary::after {
  content: "−";
}

.furniture-filter-count {
  display: inline-grid;
  place-items: center;
  min-width: 21px;
  min-height: 21px;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 999px;
  background: var(--furniture-green-soft);
  color: var(--furniture-green);
  font-size: 11px;
}

.furniture-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 13px;
}

.furniture-filter-option {
  position: relative;
  cursor: pointer;
}

.furniture-filter-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.furniture-filter-option span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(113, 121, 115, 0.18);
  border-radius: 12px;
  background: rgba(247, 246, 244, 0.94);
  color: rgba(27, 28, 28, 0.76);
  font-size: 12px;
  line-height: 1.3;
}

.furniture-filter-option input:focus-visible + span {
  outline: 3px solid rgba(23, 79, 57, 0.18);
  outline-offset: 2px;
}

.furniture-filter-option input:checked + span {
  border-color: var(--furniture-green);
  background: var(--furniture-green-soft);
  color: var(--furniture-green);
  font-weight: 800;
}

.furniture-clear-button {
  width: 100%;
  min-height: 43px;
  margin-top: 8px;
  padding: 10px 14px;
  border: 0;
  background: var(--furniture-sand);
  color: #5e4f34;
  box-shadow: none;
}

.furniture-results-column {
  min-width: 0;
}

.furniture-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
}

.furniture-search input {
  width: 100%;
  height: 48px;
  padding-left: 18px;
  border-radius: 15px;
  background: rgba(247, 246, 244, 0.86);
}

.furniture-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.furniture-sort select {
  min-width: 170px;
  height: 48px;
  padding: 10px 35px 10px 14px;
  border-radius: 15px;
  background-color: rgba(247, 246, 244, 0.86);
  color: var(--ink);
}

.furniture-mobile-tool {
  display: none;
}

.furniture-active-filters {
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: 18px;
}

.furniture-active-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.furniture-active-filter-chip,
.furniture-active-filters > button {
  width: auto;
  min-height: 34px;
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  font-size: 12px;
}

.furniture-active-filter-chip {
  background: var(--furniture-green-soft);
  color: var(--furniture-green);
}

.furniture-active-filter-chip::after {
  content: " ×";
}

.furniture-active-filters > button {
  flex: 0 0 auto;
  background: transparent;
  color: #765e38;
}

.furniture-result-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 2px 13px;
}

.furniture-result-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.furniture-result-summary p:first-child {
  color: var(--ink);
  font-weight: 800;
}

.furniture-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.furniture-product-card {
  min-width: 0;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.furniture-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(27, 28, 28, 0.11);
}

.furniture-product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #f1eee9, #e8ece9);
}

.furniture-product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  transition: transform 0.3s ease;
}

.furniture-product-card:hover .furniture-product-image {
  transform: scale(1.02);
}

.furniture-product-category {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--furniture-green);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 800;
}

.furniture-card-body {
  display: grid;
  gap: 11px;
  padding: 17px;
}

.furniture-card-brand {
  margin: 0;
  color: rgba(23, 79, 57, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.furniture-card-title {
  min-height: 44px;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.furniture-card-price {
  margin: 0;
  color: var(--furniture-green);
  font-size: 17px;
  font-weight: 800;
}

.furniture-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 27px;
}

.furniture-card-tags span {
  padding: 5px 8px;
  border-radius: 9px;
  background: rgba(238, 229, 211, 0.72);
  color: #65563f;
  font-size: 10px;
  line-height: 1.3;
}

.furniture-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.furniture-card-actions button {
  width: 100%;
  min-height: 40px;
  padding: 9px 10px;
  border: 0;
  border-radius: 13px;
  font-size: 12px;
}

.furniture-card-actions .furniture-detail-button {
  background: rgba(238, 229, 211, 0.9);
  color: #5e4f34;
  box-shadow: none;
}

.furniture-card-actions .furniture-plan-button.added {
  background: var(--furniture-green-soft);
  color: var(--furniture-green);
  box-shadow: none;
}

.furniture-image-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #f3efe8, #e7ede9);
  color: rgba(23, 79, 57, 0.58);
  text-align: center;
}

.furniture-image-placeholder span {
  font-size: 28px;
}

.furniture-image-placeholder strong {
  font-size: 12px;
}

.furniture-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 220px;
  color: var(--muted);
}

.furniture-loading span {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(23, 79, 57, 0.14);
  border-top-color: var(--furniture-green);
  border-radius: 50%;
  animation: furniture-spin 0.8s linear infinite;
}

@keyframes furniture-spin {
  to { transform: rotate(360deg); }
}

.furniture-empty-state {
  padding: 64px 24px;
  border-radius: 20px;
  text-align: center;
}

.furniture-empty-state h2 {
  margin: 0 0 10px;
  color: var(--furniture-green);
  font-size: 22px;
}

.furniture-empty-state p {
  margin: 0 0 18px;
  color: var(--muted);
}

.furniture-empty-state button {
  width: auto;
  min-height: 42px;
  padding: 10px 16px;
  border: 0;
}

.furniture-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.furniture-load-more {
  min-width: 150px;
  min-height: 46px;
  padding: 11px 20px;
  border: 0;
}

.furniture-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(19, 24, 21, 0.42);
  backdrop-filter: blur(3px);
}

.furniture-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(620px, 94vw);
  height: 100vh;
  padding: 24px;
  overflow-y: auto;
  background: #fbfaf8;
  box-shadow: -22px 0 60px rgba(17, 28, 21, 0.18);
  transform: translateX(104%);
  transition: transform 0.25s ease;
}

.furniture-drawer.open {
  transform: translateX(0);
}

.furniture-drawer-header {
  position: sticky;
  top: -24px;
  z-index: 2;
  margin: -24px -24px 22px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--furniture-border);
  background: rgba(251, 250, 248, 0.96);
  backdrop-filter: blur(12px);
}

.furniture-drawer-close {
  min-height: 38px;
  padding: 8px 12px;
  border: 0;
  background: var(--furniture-sand);
  color: #5e4f34;
  box-shadow: none;
}

.furniture-detail-hero {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.furniture-detail-image {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}

.furniture-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.furniture-detail-summary h3 {
  margin: 5px 0 10px;
  font-size: 21px;
  line-height: 1.35;
}

.furniture-detail-summary p {
  margin: 6px 0;
  color: var(--muted);
  line-height: 1.6;
}

.furniture-detail-price {
  color: var(--furniture-green) !important;
  font-size: 20px;
  font-weight: 800;
}

.furniture-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 15px;
}

.furniture-detail-actions button,
.furniture-detail-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.furniture-detail-actions a {
  background: var(--furniture-sand);
  color: #5e4f34;
}

.furniture-detail-section {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--furniture-border);
}

.furniture-detail-section h3 {
  margin: 0 0 13px;
  color: var(--furniture-green);
  font-size: 16px;
}

.furniture-detail-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.furniture-detail-field {
  padding: 11px 12px;
  border-radius: 13px;
  background: rgba(240, 238, 233, 0.68);
}

.furniture-detail-field dt {
  margin-bottom: 5px;
  color: rgba(27, 28, 28, 0.52);
  font-size: 11px;
}

.furniture-detail-field dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
  word-break: break-word;
}

.furniture-selection-empty {
  padding: 70px 12px;
  text-align: center;
}

.furniture-selection-empty h3 {
  margin: 0 0 9px;
  color: var(--furniture-green);
}

.furniture-selection-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.furniture-selection-list {
  display: grid;
  gap: 12px;
}

.furniture-selection-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 13px;
  padding: 12px;
  border: 1px solid var(--furniture-border);
  border-radius: 17px;
  background: #fff;
}

.furniture-selection-thumb {
  width: 88px;
  height: 88px;
  border-radius: 13px;
  overflow: hidden;
  background: #f1efeb;
}

.furniture-selection-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.furniture-selection-info h3 {
  margin: 2px 0 5px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 13px;
  line-height: 1.45;
}

.furniture-selection-info > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.furniture-selection-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.furniture-quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px;
  border-radius: 11px;
  background: rgba(240, 238, 233, 0.72);
}

.furniture-quantity-control button,
.furniture-remove-selection {
  width: 30px;
  min-width: 30px;
  min-height: 30px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.furniture-quantity-control button {
  background: #fff;
  color: var(--furniture-green);
}

.furniture-quantity-control span {
  min-width: 22px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.furniture-remove-selection {
  width: auto;
  padding: 0 9px;
  background: rgba(255, 225, 220, 0.8);
  color: #8c2f22;
}

.furniture-budget-panel {
  margin-top: 22px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--furniture-green), #2e614a);
  color: #fff;
}

.furniture-budget-panel h3 {
  margin: 0 0 14px;
  color: #fff;
}

.furniture-budget-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.furniture-budget-row strong {
  text-align: right;
}

.furniture-budget-note {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.6;
}

.furniture-generate-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 15px;
  padding: 11px 14px;
  border-radius: 14px;
  background: #fff;
  color: var(--furniture-green);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

body.furniture-drawer-open,
body.furniture-filter-open {
  overflow: hidden;
}

@media (max-width: 1380px) {
  .furniture-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .furniture-filter-panel {
    top: 16px;
  }

  .furniture-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .furniture-workspace {
    grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
  }

  .furniture-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .furniture-topbar {
    flex-direction: row;
    align-items: center;
  }

  .furniture-topbar .app-topbar-status {
    width: auto;
    overflow: visible;
  }

  .furniture-selection-entry {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .furniture-hero {
    min-height: 0;
    padding: 28px 22px;
    flex-direction: column;
    align-items: stretch;
  }

  .furniture-hero h1 {
    font-size: 40px;
  }

  .furniture-hero-stat {
    flex: 0 0 auto;
  }

  .furniture-category-section {
    padding: 20px 16px;
  }

  .furniture-workspace {
    display: block;
  }

  .furniture-filter-panel {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 100;
    width: min(390px, 94vw);
    max-height: none;
    border: 0;
    border-radius: 0;
    transform: translateX(105%);
    transition: transform 0.24s ease;
  }

  body.furniture-filter-open .furniture-filter-panel {
    transform: translateX(0);
  }

  .furniture-filter-close {
    display: inline-flex;
  }

  .furniture-toolbar {
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: 10px;
  }

  .furniture-mobile-tool {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: auto;
    min-height: 46px;
    padding: 9px 12px;
    border: 0;
    border-radius: 14px;
    font-size: 12px;
  }

  .furniture-mobile-tool span {
    display: inline-grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    padding: 1px 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
  }

  .furniture-sort {
    padding-left: 0;
  }

  .furniture-sort > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .furniture-sort select {
    width: 96px;
    min-width: 96px;
    height: 46px;
    padding: 9px 24px 9px 9px;
    font-size: 12px;
  }

  .furniture-active-filters {
    align-items: flex-start;
  }

  .furniture-result-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .furniture-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .furniture-card-body {
    padding: 13px;
  }

  .furniture-card-title {
    min-height: 40px;
    font-size: 13px;
  }

  .furniture-card-price {
    font-size: 15px;
  }

  .furniture-card-actions {
    grid-template-columns: 1fr;
  }

  .furniture-detail-hero {
    grid-template-columns: 1fr;
  }

  .furniture-detail-image {
    max-height: 340px;
  }
}

@media (max-width: 480px) {
  .furniture-topbar {
    align-items: flex-start;
  }

  .furniture-selection-entry {
    padding-inline: 10px;
  }

  .furniture-selection-entry span {
    min-width: 21px;
    min-height: 21px;
  }

  .furniture-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .furniture-search {
    grid-column: 1 / -1;
  }

  .furniture-sort select,
  .furniture-mobile-tool {
    width: 100%;
  }

  .furniture-product-grid {
    grid-template-columns: 1fr;
  }

  .furniture-product-image-wrap {
    aspect-ratio: 4 / 3;
  }

  .furniture-card-actions {
    grid-template-columns: 1fr 1fr;
  }

  .furniture-drawer {
    width: 100vw;
    padding: 18px;
  }

  .furniture-drawer-header {
    top: -18px;
    margin: -18px -18px 18px;
    padding: 18px;
  }

  .furniture-detail-fields {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .furniture-product-card,
  .furniture-product-image,
  .furniture-drawer,
  .furniture-filter-panel {
    transition: none;
  }
}
