/* Chips (category filters) — rectangular, decisive */
.chip-row {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  padding-bottom: var(--space-1);
  scrollbar-width: none;
}

.chip-row::-webkit-scrollbar {
  display: none;
}

.chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  min-height: 2.25rem;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  border: var(--border-thin);
  background: var(--color-bg);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  white-space: nowrap;
  transition: border-color var(--duration-fast) ease;
}

.chip:hover {
  border-color: var(--color-border-strong);
}

.chip[aria-pressed="true"] {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-bg);
}

.chip .icon {
  width: 1rem;
  height: 1rem;
}

.chip-filter {
  gap: var(--space-2);
}

.chip-filter.is-active {
  background: var(--color-gold-soft);
  border-color: var(--color-gold);
}

.chip-sub-row {
  padding-left: var(--space-4);
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0 var(--space-2);
  border-radius: var(--radius-sm);
  border: var(--border-thin);
  background: var(--color-bg);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

a.tag-pill:hover {
  border-color: var(--color-border-strong);
  color: var(--color-text);
  text-decoration: none;
}

/* Product cards — image tile + quiet caption, gallery style */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4) var(--space-3);
}

@media (min-width: 40rem) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6) var(--space-4);
  }
}

@media (min-width: 64rem) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  animation: rise-in var(--duration-slow) var(--ease-out) both;
}

/* Gentle stagger for the first rows of the grid */
.product-grid > :nth-child(2) {
  animation-delay: 40ms;
}

.product-grid > :nth-child(3) {
  animation-delay: 80ms;
}

.product-grid > :nth-child(4) {
  animation-delay: 120ms;
}

.product-grid > :nth-child(5) {
  animation-delay: 160ms;
}

.product-grid > :nth-child(6) {
  animation-delay: 200ms;
}

.product-grid > :nth-child(n + 7) {
  animation-delay: 240ms;
}

.product-card-media {
  position: relative;
  aspect-ratio: 1;
  background: var(--color-surface-2);
  border: var(--border-thin);
  overflow: hidden;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-normal) ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.03);
}

.product-card-media .no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: var(--space-2) 2px var(--space-1);
}

.product-card-name {
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-name a {
  text-decoration: none;
}

.product-card:hover .product-card-name a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.product-card-name a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.product-card-price {
  font-weight: 700;
  font-size: var(--text-sm);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4em;
}

/* Discount pricing: original struck through, sale price in the accent red */
.price-original {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-weight: 500;
}

.price-sale {
  color: var(--color-love);
}

.card-size {
  font-weight: 500;
  color: var(--color-text-muted);
}

.heart-btn {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  z-index: 1;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-bg);
  border: var(--border-thin);
  color: var(--color-text);
  transition: transform var(--duration-fast) ease, border-color var(--duration-fast) ease;
}

.heart-btn:hover {
  border-color: var(--color-border-strong);
}

.heart-btn[aria-pressed="true"] {
  color: var(--color-love);
}

.heart-btn:active {
  transform: scale(1.12);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0 var(--space-2);
  min-height: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid currentColor;
  background: transparent;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-active {
  color: var(--color-success);
}

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

.status-inactive {
  color: var(--color-warning);
}

.status-sold {
  color: var(--color-danger);
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  background: var(--color-surface-2);
  border: var(--border-thin);
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  aspect-ratio: 1;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-dots {
  position: absolute;
  bottom: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
}

.carousel-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-text-muted);
}

.carousel-dot[aria-current="true"] {
  background: var(--color-text);
  border-color: var(--color-text);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border: var(--border-thin);
}

.carousel-arrow:hover {
  border-color: var(--color-border-strong);
}

.carousel-arrow.prev {
  left: var(--space-3);
}

.carousel-arrow.next {
  right: var(--space-3);
}

@media (min-width: 48rem) {
  .carousel:hover .carousel-arrow,
  .carousel:focus-within .carousel-arrow {
    display: flex;
  }
}

/* Empty / error states */
.empty-state,
.error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
  padding: var(--space-12) var(--space-4);
  color: var(--color-text-muted);
}

.empty-state h2,
.error-state h2 {
  color: var(--color-text);
}

.error-state .request-id {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* Toasts */
.toast-region {
  position: fixed;
  bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom) + var(--space-3));
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  width: min(92vw, 24rem);
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-text);
  color: var(--color-bg);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-md);
  font-size: var(--text-sm);
  font-weight: 600;
  animation: rise-in var(--duration-normal) var(--ease-out) both;
}

.toast-error {
  background: var(--color-danger);
  color: #ffffff;
}

@media (min-width: 48rem) {
  .toast-region {
    bottom: var(--space-4);
  }
}

/* Admin mobile navigation: hamburger in the header opens a bottom-sheet modal.
   The inline header nav and desktop actions show only from the tablet width up. */
.nav-menu-btn {
  display: none;
  min-width: 2.75rem;
  padding: 0 var(--space-3);
}

.nav-menu-btn .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.header-desktop-actions {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

@media (max-width: 47.99rem) {
  .nav-menu-btn {
    display: inline-flex;
  }
  .header-desktop-actions {
    display: none;
  }
}

/* Admin has no bottom bar: reclaim the space the shared layout reserves. */
.admin-no-bottom-nav .app-main {
  padding-bottom: calc(env(safe-area-inset-bottom) + var(--space-6));
}

@media (max-width: 47.99rem) {
  .admin-no-bottom-nav .editor-actions {
    bottom: env(safe-area-inset-bottom);
  }
}

/* Bottom-sheet navigation modal */
.nav-modal {
  margin: auto auto 0 auto;
  width: 100%;
  max-width: 30rem;
  border: none;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  padding: 0;
  animation: sheet-up var(--duration-normal) var(--ease-out);
}

@keyframes sheet-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: none;
  }
}

.nav-modal-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4);
  padding-bottom: calc(var(--space-4) + env(safe-area-inset-bottom));
}

.nav-modal-rows {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-modal-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  min-height: 3.25rem;
  padding: 0 var(--space-3);
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-text);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: left;
  text-decoration: none;
}

.nav-modal-row:hover {
  background: var(--color-surface-2);
  text-decoration: none;
}

.nav-modal-row.is-active {
  background: var(--color-text);
  color: var(--color-bg);
}

.nav-modal-row.is-active .icon {
  fill: currentColor;
}

.nav-modal-row .icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.nav-modal-label {
  flex: 1;
  min-width: 0;
}

.nav-modal-badge {
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  border-radius: var(--radius-full);
  background: var(--color-love);
  color: #ffffff;
  font-size: var(--text-xs);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-modal-footer {
  border-top: var(--border-thin);
  padding-top: var(--space-3);
  margin-top: var(--space-2);
}

.nav-modal-controls {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* Dialog — margin:auto restores centering that the global reset removes */
.dialog {
  margin: auto;
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  padding: 0;
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: var(--shadow-lg);
  width: min(92vw, 26rem);
  max-height: 88dvh;
  overflow-y: auto;
}

.dialog::backdrop {
  background: var(--color-overlay);
}

.dialog-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6);
}

.dialog-actions {
  display: flex;
  gap: var(--space-2);
  justify-content: flex-end;
}

/* Select modal */
.select-dialog {
  width: min(92vw, 22rem);
}

.select-options {
  display: flex;
  flex-direction: column;
  border: var(--border-thin);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  width: 100%;
  min-height: 3rem;
  padding: var(--space-2) var(--space-4);
  text-align: left;
  background: var(--color-bg);
  border-bottom: var(--border-thin);
  color: var(--color-text);
  transition: background var(--duration-fast) ease;
}

.select-option:last-child {
  border-bottom: none;
}

.select-option:hover {
  background: var(--color-surface-2);
}

.select-option.is-selected {
  font-weight: 700;
}

.select-option .icon {
  flex-shrink: 0;
}

.select-option-main {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.select-option-desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.select-trigger {
  justify-content: space-between;
}

/* Filter modal — searchable category picker */
.filter-dialog {
  width: min(92vw, 24rem);
}

.filter-dialog .dialog-body {
  gap: var(--space-3);
  padding: var(--space-4) var(--space-4) calc(var(--space-5) + env(safe-area-inset-bottom));
}

.filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  border: var(--border-thin);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: color var(--duration-fast) ease, border-color var(--duration-fast) ease;
}

.filter-close:hover {
  color: var(--color-text);
  border-color: var(--color-border-strong);
}

.filter-close .icon {
  width: 1rem;
  height: 1rem;
}

.filter-search input {
  min-height: 2.5rem;
}

.filter-options {
  display: flex;
  flex-direction: column;
  max-height: 55dvh;
  overflow-y: auto;
  border: var(--border-thin);
  border-radius: var(--radius-sm);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  width: 100%;
  min-height: 2.75rem;
  padding: var(--space-2) var(--space-3);
  text-align: left;
  background: var(--color-bg);
  border-bottom: var(--border-thin);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  transition: background var(--duration-fast) ease;
}

.filter-option:last-child {
  border-bottom: none;
}

.filter-option:hover {
  background: var(--color-surface-2);
}

.filter-option-child {
  padding-left: var(--space-8);
  font-weight: 500;
}

.filter-option.is-selected {
  background: var(--color-gold-soft);
  font-weight: 700;
}

.filter-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  border: 1px solid var(--color-text-muted);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  transition: background var(--duration-fast) ease, border-color var(--duration-fast) ease;
}

.filter-check .icon {
  width: 0.875rem;
  height: 0.875rem;
  stroke-width: 2.4;
  color: #181512;
  opacity: 0;
}

.filter-option.is-selected .filter-check {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.filter-option.is-selected .filter-check .icon {
  opacity: 1;
}

.filter-actions {
  justify-content: space-between;
}

.filter-option-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-option-count {
  font-size: var(--text-xs);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--color-text-muted);
}

.filter-empty {
  padding: var(--space-4);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Search */
.search-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  border: var(--border-thin);
  border-radius: var(--radius-sm);
  padding: 0 var(--space-3);
  background: var(--color-bg);
  transition: border-color var(--duration-fast) ease;
}

.search-bar:focus-within {
  border-color: var(--color-border-strong);
}

.search-bar .icon {
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.search-bar input {
  flex: 1;
  min-height: 2.75rem;
  border: none;
  background: transparent;
  outline: none;
}

/* Offline banner */
.offline-banner {
  background: var(--color-text);
  color: var(--color-bg);
  text-align: center;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
}

.offline-banner[hidden] {
  display: none;
}

/* QR panel */
.qr-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  border: var(--border-thin);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  background: var(--color-bg);
}

.qr-panel img {
  width: min(70vw, 15rem);
  height: auto;
  background: #ffffff;
  padding: var(--space-2);
  border: var(--border-thin);
}

/* The typed backup code (123-ABC-1A2): big, unambiguous, easy to read out. */
.qr-code-text {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-text);
  word-break: keep-all;
}

.code-input {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Generic list rows (admin lists, love list items) */
.row-list {
  display: flex;
  flex-direction: column;
}

.row-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-bg);
  border-bottom: var(--border-thin);
  padding: var(--space-3) 2px;
}

.row-item:first-child {
  border-top: var(--border-thin);
}

.row-item.unavailable {
  opacity: 0.5;
}

.row-thumb {
  width: 3.75rem;
  height: 3.75rem;
  object-fit: cover;
  background: var(--color-surface-2);
  border: var(--border-thin);
  flex-shrink: 0;
}

.row-thumb-placeholder {
  width: 3.75rem;
  height: 3.75rem;
  background: var(--color-surface-2);
  border: var(--border-thin);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

.row-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.row-title {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.row-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.stock-warning {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-danger);
}

.row-actions {
  display: flex;
  gap: var(--space-1);
  align-items: center;
  flex-shrink: 0;
}

/* Quantity stepper on love-list rows */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: var(--border-thin);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
}

.qty-stepper[hidden] {
  display: none;
}

/* On feed cards the stepper floats over the bottom of the photo in a
   frosted white box (above the card's stretched link). */
.card-qty {
  position: absolute;
  bottom: var(--space-2);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  color: #181512;
}

.card-qty .qty-btn {
  color: #181512;
}

.card-qty .qty-btn:hover {
  background: rgba(24, 21, 18, 0.08);
  color: #181512;
}

.card-qty .qty-value {
  color: #181512;
}

.qty-btn {
  min-height: 2.5rem;
  min-width: 2.5rem;
  padding: 0;
  border: none;
}

.qty-value {
  min-width: 1.75rem;
  text-align: center;
  font-weight: 700;
  font-size: var(--text-sm);
}

.summary-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-gold);
  color: #181512;
  padding: var(--space-4) var(--space-5);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--text-sm);
}

/* Notes */
.viewing-note {
  border: var(--border-thin);
  border-left: 3px solid var(--color-text);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text);
  background: var(--color-bg);
}

/* Pagination sentinel */
.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: var(--space-6);
}

/* Only reserve space for "load more" when there actually is a next page — the
   single child is the button, hidden via [hidden] when has_next is false. */
.load-more-wrap:has(> [hidden]) {
  display: none;
}

/* Free-form monospace text (share links, generated credentials) must be able
   to wrap — unlike the hyphenated short code, which stays keep-all. Prevents
   long opaque tokens from overflowing their panel/dialog and forcing the whole
   page to scroll sideways. */
.qr-code-text--free {
  font-size: var(--text-sm);
  letter-spacing: normal;
  word-break: break-all;
  overflow-wrap: anywhere;
}

/* Dialogs, like every other bottom-anchored surface, clear the home indicator. */
.dialog-body {
  padding-bottom: calc(var(--space-6) + env(safe-area-inset-bottom));
}

/* Admin has no bottom nav, so toasts sit at the true bottom edge (the shared
   offset otherwise reserves space for a bar that isn't there). */
.admin-no-bottom-nav .toast-region {
  bottom: calc(env(safe-area-inset-bottom) + var(--space-3));
}

/* ------------------------------------------------------------------------
   Mobile (≤48rem): 44px touch targets, row wrapping, bottom-sheet dialogs.
   Everything here also serves the no-sideways-scroll goal — nothing is allowed
   to hold a fixed width wide enough to push the viewport.
   ------------------------------------------------------------------------ */
@media (max-width: 47.99rem) {
  /* Comfortable 44px hit areas for the compact controls */
  .btn-sm {
    min-height: 2.75rem;
  }
  .row-actions .btn,
  .tag-row .btn-sm {
    min-height: 2.75rem;
    min-width: 2.75rem;
  }
  .chip {
    min-height: 2.75rem;
  }
  .qty-btn {
    min-height: 2.75rem;
    min-width: 2.75rem;
  }
  .filter-close {
    min-width: 2.75rem;
    min-height: 2.75rem;
  }
  .dialog-actions .btn {
    min-height: 2.75rem;
  }
  a.tag-pill {
    min-height: 2.5rem;
  }

  /* List rows: the action cluster drops to its own full-width line so the
     title/subtitle keep the first line and the row never overflows sideways. */
  .row-item {
    flex-wrap: wrap;
  }
  .row-actions {
    flex-basis: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-2);
  }

  /* Page header: a secondary action button drops below the title instead of
     squeezing it into a narrow, wrapping column. */
  .page-header > button {
    flex-basis: 100%;
  }

  /* Shared dialogs become bottom-sheets (matching the nav modal): full width,
     flush to the bottom, only the top corners rounded. */
  .dialog {
    margin: auto auto 0 auto;
    width: 100%;
    max-width: none;
    border-inline: none;
    border-bottom: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    animation: sheet-up var(--duration-normal) var(--ease-out);
  }
  .select-dialog,
  .filter-dialog {
    width: 100%;
  }
}
