/* components/accordion/accordion.css */
.ds-accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.ds-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--theme-spacing-lg) 0;
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-md);
  font-weight: var(--theme-font-weight-semibold);
  color: var(--ds-text-primary);
  background: none;
  border: none;
  border-top: 1px solid var(--ds-border-subtle);
  cursor: pointer;
  text-align: left;
  gap: var(--theme-spacing-md);
  transition: color var(--theme-motion-fast);
}

.ds-accordion:first-child .ds-accordion__trigger {
  border-top: none;
}

.ds-accordion__trigger:hover {
  color: var(--ds-text-secondary);
}

.ds-accordion__trigger-left {
  display: flex;
  align-items: center;
  gap: var(--theme-spacing-sm);
  flex: 1;
  min-width: 0;
}

.ds-accordion__trigger-icon {
  font-size: 1.2rem;
  color: var(--ds-text-secondary);
  flex-shrink: 0;
}

.ds-accordion__chevron {
  font-size: 1rem;
  color: var(--ds-text-secondary);
  flex-shrink: 0;
  transition: transform var(--theme-motion-base);
}

.ds-accordion--open .ds-accordion__chevron {
  transform: rotate(180deg);
}

.ds-accordion__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--theme-motion-slow), padding var(--theme-motion-slow);
}

.ds-accordion--open .ds-accordion__content {
  max-height: 600px;
}

.ds-accordion__body {
  padding-bottom: var(--theme-spacing-xl);
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  line-height: var(--theme-line-height-relaxed);
  color: var(--ds-text-secondary);
}

/* components/amenity-row/amenity-row.css */
.ds-amenity-row {
  display: flex;
  align-items: center;
  gap: var(--theme-spacing-lg);
  padding: var(--theme-spacing-md) 0;
}

.ds-amenity-row__icon {
  font-size: 1.5rem;
  color: var(--ds-text-primary);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.ds-amenity-row__label {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-md);
  font-weight: var(--theme-font-weight-normal);
  color: var(--ds-text-primary);
}

.ds-amenity-row--unavailable {
  opacity: 0.5;
}

.ds-amenity-row--unavailable .ds-amenity-row__label {
  text-decoration: line-through;
}

/* components/avatar/avatar.css */
.ds-avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--theme-radius-full);
  overflow: visible;
  background: var(--ds-surface-interactive);
  color: var(--ds-text-inverse);
  flex-shrink: 0;
}

.ds-avatar--sm { width: 32px; height: 32px; font-size: var(--theme-font-size-xs); }
.ds-avatar--md { width: 40px; height: 40px; font-size: var(--theme-font-size-sm); }
.ds-avatar--lg { width: 56px; height: 56px; font-size: var(--theme-font-size-md); }
.ds-avatar--xl { width: 80px; height: 80px; font-size: var(--theme-font-size-xl); }

.ds-avatar__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--theme-radius-full);
}

.ds-avatar__fallback {
  font-family: var(--theme-font-sans);
  font-weight: var(--theme-font-weight-semibold);
  line-height: 1;
  user-select: none;
}

.ds-avatar__verified {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: var(--ds-surface-card);
  border-radius: var(--theme-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  font-size: 0.85em;
  color: var(--ds-color-brand);
}

/* components/badge/badge.css */
.ds-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--theme-spacing-2xs);
  font-family: var(--theme-font-sans);
  font-weight: var(--theme-font-weight-semibold);
  white-space: nowrap;
  border-radius: var(--theme-radius-full);
}

.ds-badge--sm {
  padding: var(--theme-spacing-2xs) var(--theme-spacing-sm);
  font-size: var(--theme-font-size-xs);
}

.ds-badge--md {
  padding: var(--theme-spacing-xs) var(--theme-spacing-md);
  font-size: var(--theme-font-size-sm);
}

.ds-badge--default {
  background: var(--ds-surface-subtle);
  color: var(--ds-text-primary);
}

.ds-badge--brand {
  background: var(--ds-surface-brand-subtle);
  color: var(--ds-text-brand);
}

.ds-badge--success {
  background: var(--ds-surface-success);
  color: var(--ds-text-success);
}

.ds-badge--warning {
  background: var(--ds-color-warning-subtle);
  color: var(--theme-arches-600);
}

.ds-badge--error {
  background: var(--ds-surface-error);
  color: var(--ds-text-error);
}

.ds-badge--outline {
  background: transparent;
  border: 1px solid var(--ds-border-default);
  color: var(--ds-text-primary);
}

.ds-badge__icon {
  font-size: 0.95em;
}

/* components/bottom-nav/bottom-nav.css */
.ds-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--ds-surface-card);
  border-top: 1px solid var(--ds-border-subtle);
  padding: var(--theme-spacing-sm) 0;
  padding-bottom: max(var(--theme-spacing-md), env(safe-area-inset-bottom));
  width: 100%;
}

.ds-bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--theme-spacing-2xs);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--theme-spacing-xs) var(--theme-spacing-md);
  min-width: 48px;
  min-height: 44px;
  transition: color var(--theme-motion-fast), opacity var(--theme-motion-fast);
  color: var(--ds-text-tertiary);
  -webkit-tap-highlight-color: transparent;
}

.ds-bottom-nav__item:hover {
  color: var(--ds-text-secondary);
}

.ds-bottom-nav__item:active {
  opacity: 0.7;
}

.ds-bottom-nav__item--active {
  color: var(--ds-color-brand);
}

.ds-bottom-nav__item--active:hover,
.ds-bottom-nav__item--active:active {
  color: var(--ds-color-brand);
  opacity: 1;
}

.ds-bottom-nav__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.ds-bottom-nav__label {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-xs);
  font-weight: var(--theme-font-weight-medium);
  line-height: 1;
}

/* components/button/button.css */
.ds-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--theme-spacing-sm);
  font-family: var(--theme-font-sans);
  font-weight: var(--theme-font-weight-semibold);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--theme-motion-fast), border-color var(--theme-motion-fast), transform var(--theme-motion-fast), box-shadow var(--theme-motion-fast);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.ds-button:focus-visible {
  outline: none;
  box-shadow: var(--ds-focus-ring);
}

.ds-button:active:not(:disabled) {
  transform: scale(0.97);
}

.ds-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Sizes */
.ds-button--sm {
  padding: var(--theme-spacing-xs) var(--theme-spacing-md);
  font-size: var(--theme-font-size-sm);
  border-radius: var(--theme-radius-md);
  min-height: 32px;
}

.ds-button--md {
  padding: var(--theme-spacing-sm) var(--theme-spacing-xl);
  font-size: var(--theme-font-size-base);
  border-radius: var(--theme-radius-lg);
  min-height: 40px;
}

.ds-button--lg {
  padding: var(--theme-spacing-md) var(--theme-spacing-2xl);
  font-size: var(--theme-font-size-md);
  border-radius: var(--theme-radius-lg);
  min-height: 48px;
}

/* Icon-only sizing */
.ds-button--icon-only.ds-button--sm {
  padding: var(--theme-spacing-xs);
  min-width: 32px;
}

.ds-button--icon-only.ds-button--md {
  padding: var(--theme-spacing-sm);
  min-width: 40px;
}

.ds-button--icon-only.ds-button--lg {
  padding: var(--theme-spacing-md);
  min-width: 48px;
}

.ds-button--icon-only .ds-button__icon {
  font-size: 1.25em;
}

/* Variants */
.ds-button--primary {
  background: var(--ds-color-brand);
  color: var(--ds-text-inverse);
}
.ds-button--primary:hover:not(:disabled) {
  background: var(--ds-color-brand-hover);
}

.ds-button--secondary {
  background: var(--ds-surface-interactive);
  color: var(--ds-text-inverse);
}
.ds-button--secondary:hover:not(:disabled) {
  background: var(--ds-color-interactive-hover);
}

.ds-button--outline {
  background: transparent;
  border-color: var(--ds-border-strong);
  color: var(--ds-text-primary);
}
.ds-button--outline:hover:not(:disabled) {
  background: var(--ds-surface-subtle);
}

.ds-button--ghost {
  background: var(--ds-surface-subtle);
  border-color: transparent;
  color: var(--ds-text-primary);
}
.ds-button--ghost:hover:not(:disabled) {
  background: var(--ds-surface-disabled);
}

.ds-button--destructive {
  background: var(--ds-color-error);
  color: var(--ds-text-inverse);
}
.ds-button--destructive:hover:not(:disabled) {
  background: var(--ds-color-brand-pressed);
}

.ds-button--full {
  width: 100%;
}

.ds-button__icon {
  font-size: 1.15em;
  line-height: 1;
}

.ds-button__label {
  line-height: 1;
}

/* components/category-bar/category-bar.css */
.ds-category-bar {
  display: flex;
  width: 100%;
  border-bottom: 1px solid var(--ds-border-subtle);
}

.ds-category-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--theme-spacing-xs);
  padding: var(--theme-spacing-md) 0;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity var(--theme-motion-fast), border-color var(--theme-motion-fast);
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.ds-category-bar__item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 3px;
  border-radius: var(--theme-radius-full);
  background: transparent;
  transition: background var(--theme-motion-fast);
}

.ds-category-bar__item:hover {
  opacity: 0.85;
}

.ds-category-bar__item:hover::after {
  background: var(--ds-border-default);
}

.ds-category-bar__item:active {
  opacity: 1;
}

.ds-category-bar__item--active {
  opacity: 1;
  border-bottom-color: transparent;
}

.ds-category-bar__item--active::after {
  background: var(--ds-text-primary);
}

.ds-category-bar__item--active:hover {
  opacity: 1;
}

.ds-category-bar__item--active:hover::after {
  background: var(--ds-text-primary);
}

.ds-category-bar__icon {
  font-size: 1.5rem;
  color: var(--ds-text-primary);
}

.ds-category-bar__label {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-xs);
  font-weight: var(--theme-font-weight-semibold);
  color: var(--ds-text-primary);
  white-space: nowrap;
}

/* components/checkbox/checkbox.css */
/* Hit area wrapper */
.ds-checkbox__hit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

/* Checkbox button */
.ds-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  -webkit-tap-highlight-color: transparent;
}

.ds-checkbox svg {
  display: block;
  width: 24px;
  height: 24px;
}

/* Hover â€” unchecked: darken ring */
.ds-checkbox:hover:not(:disabled) svg rect[stroke] {
  stroke: #B0B0B0;
}

/* Hover â€” checked/indeterminate: darken fill */
.ds-checkbox--checked:hover:not(:disabled) svg rect[fill]:not([fill="transparent"]):not([fill="none"]):not([fill="#FFFFFF"]) {
  fill: #000000;
}

/* Active â€” same direction as hover */
.ds-checkbox:active:not(:disabled) svg rect[stroke] {
  stroke: #B0B0B0;
}

.ds-checkbox--checked:active:not(:disabled) svg rect[fill]:not([fill="transparent"]):not([fill="none"]):not([fill="#FFFFFF"]) {
  fill: #000000;
}

/* Focus */
.ds-checkbox:focus-visible {
  outline: none;
  box-shadow: var(--ds-focus-ring);
}

/* Disabled */
.ds-checkbox--disabled {
  cursor: default;
  pointer-events: none;
}

/* components/chip/chip.css */
.ds-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--theme-spacing-sm);
  padding: var(--theme-spacing-sm) var(--theme-spacing-lg);
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-normal);
  color: var(--ds-text-primary);
  background: var(--ds-surface-card);
  border: 1px solid var(--ds-border-default);
  border-radius: var(--theme-radius-full);
  cursor: pointer;
  transition: background var(--theme-motion-fast), border-color var(--theme-motion-fast);
  white-space: nowrap;
}

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

.ds-chip--selected {
  background: var(--ds-surface-interactive);
  color: var(--ds-text-inverse);
  border-color: var(--ds-surface-interactive);
}

.ds-chip--selected:hover {
  border-color: var(--ds-surface-interactive);
}

.ds-chip__icon {
  font-size: 1.1em;
}

.ds-chip__remove {
  font-size: 0.85em;
  margin-left: var(--theme-spacing-2xs);
}

/* components/date-picker/date-picker.css */
.ds-date-picker {
  display: flex;
  flex-direction: column;
  gap: var(--theme-spacing-md);
  font-family: var(--theme-font-sans);
  user-select: none;
}

.ds-date-picker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--theme-spacing-xs);
}

.ds-date-picker__month-label {
  font-size: var(--theme-font-size-md);
  font-weight: var(--theme-font-weight-semibold);
  color: var(--ds-text-primary);
}

.ds-date-picker__nav {
  display: flex;
  gap: var(--theme-spacing-xs);
}

.ds-date-picker__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--theme-radius-full);
  color: var(--ds-text-primary);
  font-size: 1.1rem;
  transition: background var(--theme-motion-fast);
}

.ds-date-picker__nav-btn:hover {
  background: var(--ds-surface-subtle);
}

.ds-date-picker__nav-btn:disabled {
  color: var(--ds-text-tertiary);
  cursor: not-allowed;
}

.ds-date-picker__nav-btn:disabled:hover {
  background: none;
}

.ds-date-picker__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.ds-date-picker__weekday {
  font-size: var(--theme-font-size-xs);
  font-weight: var(--theme-font-weight-semibold);
  color: var(--ds-text-tertiary);
  padding-bottom: var(--theme-spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ds-date-picker__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.ds-date-picker__day {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-normal);
  color: var(--ds-text-primary);
  cursor: pointer;
  transition: color var(--theme-motion-fast);
  background: transparent;
}

.ds-date-picker__day:hover:not(.ds-date-picker__day--disabled):not(.ds-date-picker__day--empty):not(.ds-date-picker__day--selected) {
  color: var(--ds-text-primary);
}

.ds-date-picker__day:hover:not(.ds-date-picker__day--disabled):not(.ds-date-picker__day--empty):not(.ds-date-picker__day--selected)::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: var(--theme-radius-full);
  background: var(--ds-surface-subtle);
  z-index: 0;
}

.ds-date-picker__day > span {
  position: relative;
  z-index: 2;
}

.ds-date-picker__day--empty {
  cursor: default;
}

.ds-date-picker__day--disabled {
  color: var(--ds-text-tertiary);
  cursor: not-allowed;
  text-decoration: line-through;
}

.ds-date-picker__day--today {
  font-weight: var(--theme-font-weight-bold);
}

/* Range fill band â€” extends behind selected circles */
.ds-date-picker__day--in-range {
  background: var(--ds-surface-subtle);
}

.ds-date-picker__day--range-start {
  background: linear-gradient(to right, transparent 50%, var(--ds-surface-subtle) 50%);
}

.ds-date-picker__day--range-end {
  background: linear-gradient(to left, transparent 50%, var(--ds-surface-subtle) 50%);
}

.ds-date-picker__day--range-start.ds-date-picker__day--range-end {
  background: transparent;
}

/* Selected circle â€” always a full circle on top of range fill */
.ds-date-picker__day--selected::after {
  content: '';
  position: absolute;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--theme-radius-full);
  background: var(--ds-surface-interactive);
  z-index: 1;
}

.ds-date-picker__day--selected {
  color: var(--ds-text-inverse);
  font-weight: var(--theme-font-weight-semibold);
}

.ds-date-picker__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--theme-spacing-sm);
  border-top: 1px solid var(--ds-border-subtle);
}

.ds-date-picker__selection {
  font-size: var(--theme-font-size-sm);
  color: var(--ds-text-secondary);
}

.ds-date-picker__clear {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-sm);
  font-weight: var(--theme-font-weight-semibold);
  color: var(--ds-text-primary);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.ds-date-picker__clear:hover {
  color: var(--ds-text-secondary);
}

/* components/detail-header/detail-header.css */
.ds-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--theme-spacing-md) var(--theme-spacing-lg);
  width: 100%;
}

.ds-detail-header__actions {
  display: flex;
  align-items: center;
  gap: var(--theme-spacing-sm);
}

.ds-detail-header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--theme-radius-full);
  border: none;
  background: var(--ds-surface-card);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--ds-text-primary);
  box-shadow: var(--theme-shadow-sm);
  transition: box-shadow var(--theme-motion-fast), transform var(--theme-motion-fast);
  -webkit-tap-highlight-color: transparent;
}

.ds-detail-header__btn:hover {
  box-shadow: var(--theme-shadow-md);
}

.ds-detail-header__btn:active {
  transform: scale(0.95);
}

.ds-detail-header__save svg {
  display: block;
}

/* components/divider/divider.css */
.ds-divider {
  display: flex;
  align-items: center;
  width: 100%;
}

.ds-divider__line {
  flex: 1;
  height: 1px;
  background: var(--ds-border-subtle);
}

.ds-divider--labeled {
  gap: var(--theme-spacing-lg);
}

.ds-divider__label {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-sm);
  color: var(--ds-text-secondary);
  white-space: nowrap;
}

/* components/empty-state/empty-state.css */
.ds-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--theme-spacing-4xl) var(--theme-spacing-xl);
  gap: var(--theme-spacing-md);
}

.ds-empty-state__icon {
  font-size: 2.5rem;
  color: var(--ds-text-tertiary);
  margin-bottom: var(--theme-spacing-sm);
}

.ds-empty-state__title {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-xl);
  font-weight: var(--theme-font-weight-semibold);
  color: var(--ds-text-primary);
  margin: 0;
}

.ds-empty-state__description {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  color: var(--ds-text-secondary);
  margin: 0;
  max-width: 360px;
  line-height: var(--theme-line-height-normal);
}

/* components/fab/fab.css */
.ds-fab {
  display: inline-flex;
  align-items: center;
  gap: var(--theme-spacing-sm);
  padding: var(--theme-spacing-md) var(--theme-spacing-xl);
  border-radius: var(--theme-radius-full);
  border: none;
  cursor: pointer;
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-semibold);
  box-shadow: var(--theme-shadow-lg);
  transition: transform var(--theme-motion-fast), box-shadow var(--theme-motion-fast);
}

.ds-fab:hover {
  transform: scale(1.04);
  box-shadow: var(--theme-shadow-xl);
}

.ds-fab:active {
  transform: scale(0.97);
}

.ds-fab--dark {
  background: var(--ds-surface-interactive);
  color: var(--ds-text-inverse);
}

.ds-fab--light {
  background: var(--ds-surface-card);
  color: var(--ds-text-primary);
  border: 1px solid var(--ds-border-default);
}

.ds-fab__icon {
  font-size: 1.1em;
}

.ds-fab__label {
  line-height: 1;
}

/* components/host-card/host-card.css */
.ds-host-card {
  display: flex;
  align-items: center;
  gap: var(--theme-spacing-2xl);
  padding: var(--theme-spacing-xl);
  background: var(--ds-surface-card);
  border: 1px solid var(--ds-border-subtle);
  border-radius: var(--theme-radius-xl);
  box-shadow: var(--theme-shadow-md);
  width: 100%;
}

/* Left column â€” avatar + name */
.ds-host-card__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--theme-spacing-sm);
  flex-shrink: 0;
}

.ds-host-card__avatar-wrapper {
  position: relative;
}

.ds-host-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--theme-radius-full);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ds-surface-interactive);
  color: var(--ds-text-inverse);
}

.ds-host-card__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ds-host-card__avatar-fallback {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-3xl);
  font-weight: var(--theme-font-weight-semibold);
}

.ds-host-card__verified {
  position: absolute;
  bottom: -2px;
  right: -2px;
}

.ds-host-card__verified svg {
  display: block;
}

.ds-host-card__name {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-md);
  font-weight: var(--theme-font-weight-bold);
  color: var(--ds-text-primary);
  text-align: center;
}

.ds-host-card__superhost {
  display: flex;
  align-items: center;
  gap: var(--theme-spacing-2xs);
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-xs);
  font-weight: var(--theme-font-weight-medium);
  color: var(--ds-text-secondary);
}

.ds-host-card__superhost i {
  font-size: 0.85rem;
}

/* Right column â€” stats */
.ds-host-card__right {
  display: flex;
  flex-direction: column;
  gap: var(--theme-spacing-md);
  flex: 1;
}

.ds-host-card__stat {
  display: flex;
  flex-direction: column;
  gap: var(--theme-spacing-2xs);
}

.ds-host-card__stat-value {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-xl);
  font-weight: var(--theme-font-weight-bold);
  color: var(--ds-text-primary);
  line-height: 1.2;
}

.ds-host-card__stat-label {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-xs);
  font-weight: var(--theme-font-weight-normal);
  color: var(--ds-text-secondary);
}

.ds-host-card__stat-divider {
  height: 1px;
  background: var(--ds-border-subtle);
  width: 100%;
}

/* components/image-gallery/image-gallery.css */
/* Hero layout */
.ds-image-gallery--hero {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.ds-image-gallery__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform var(--theme-motion-slow);
}

.ds-image-gallery__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Arrows */
.ds-image-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: var(--theme-radius-full);
  background: var(--ds-surface-card);
  border: none;
  box-shadow: var(--theme-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  font-size: 0.85rem;
  color: var(--ds-text-primary);
  transition: opacity var(--theme-motion-fast), transform var(--theme-motion-fast), box-shadow var(--theme-motion-fast);
  -webkit-tap-highlight-color: transparent;
}

.ds-image-gallery__arrow:hover {
  box-shadow: var(--theme-shadow-md);
  transform: translateY(-50%) scale(1.05);
}

.ds-image-gallery__arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.ds-image-gallery__arrow--prev {
  left: var(--theme-spacing-md);
}

.ds-image-gallery__arrow--next {
  right: var(--theme-spacing-md);
}

.ds-image-gallery__arrow--hidden {
  display: none;
}

/* Dots */
.ds-image-gallery__dots {
  position: absolute;
  bottom: var(--theme-spacing-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--theme-spacing-xs);
  z-index: 2;
}

.ds-image-gallery__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--theme-radius-full);
  background: var(--theme-white);
  opacity: 0.5;
  transition: opacity var(--theme-motion-fast);
}

.ds-image-gallery__dot--active {
  opacity: 1;
}

/* Counter */
.ds-image-gallery__counter {
  position: absolute;
  bottom: var(--theme-spacing-2xl);
  right: var(--theme-spacing-md);
  background: rgba(0, 0, 0, 0.6);
  color: var(--theme-white);
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-xs);
  font-weight: var(--theme-font-weight-medium);
  padding: var(--theme-spacing-2xs) var(--theme-spacing-sm);
  border-radius: var(--theme-radius-sm);
  z-index: 2;
}

/* Grid layout */
.ds-image-gallery--grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4px;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: var(--theme-radius-xl);
}

.ds-image-gallery--grid .ds-image-gallery__main {
  grid-row: 1 / 1;
}

.ds-image-gallery--grid .ds-image-gallery__main img,
.ds-image-gallery--grid .ds-image-gallery__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.ds-image-gallery--grid .ds-image-gallery__side {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* components/info-banner/info-banner.css */
.ds-info-banner {
  display: flex;
  align-items: center;
  gap: var(--theme-spacing-sm);
  padding: var(--theme-spacing-md) var(--theme-spacing-lg);
  background: var(--ds-surface-subtle);
  border-radius: var(--theme-radius-lg);
}

.ds-info-banner__icon {
  font-size: 1rem;
  color: var(--ds-text-secondary);
  flex-shrink: 0;
}

.ds-info-banner__text {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-sm);
  font-weight: var(--theme-font-weight-medium);
  color: var(--ds-text-secondary);
  line-height: var(--theme-line-height-snug);
}

/* components/input/input.css */
.ds-input {
  display: flex;
  flex-direction: column;
  gap: var(--theme-spacing-xs);
  width: 100%;
}

.ds-input__wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.ds-input__field {
  width: 100%;
  padding: 1.375rem var(--theme-spacing-lg) 0.5rem;
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-md);
  color: var(--ds-text-primary);
  background: var(--ds-surface-card);
  border: 1px solid var(--ds-border-default);
  border-radius: var(--_ds-input-radius-tl, var(--theme-radius-lg)) var(--_ds-input-radius-tr, var(--theme-radius-lg)) var(--_ds-input-radius-br, var(--theme-radius-lg)) var(--_ds-input-radius-bl, var(--theme-radius-lg));
  transition: border-color var(--theme-motion-fast), box-shadow var(--theme-motion-fast);
  outline: none;
  line-height: var(--theme-line-height-snug);
  position: relative;
  z-index: 0;
}

.ds-input__field--with-leading-icon {
  padding-left: calc(var(--theme-spacing-lg) + 1.25rem + var(--theme-spacing-xs));
}

.ds-input__field--with-trailing-icon {
  padding-right: calc(var(--theme-spacing-lg) + 1.5rem + var(--theme-spacing-xs));
}

.ds-input__field--textarea {
  resize: vertical;
  min-height: 5rem;
  padding-top: 1.5rem;
  line-height: var(--theme-line-height-normal);
}

.ds-input__field::placeholder {
  color: transparent;
}

.ds-input__field:focus::placeholder {
  color: var(--ds-text-tertiary);
}

.ds-input__label {
  position: absolute;
  left: var(--theme-spacing-lg);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-md);
  color: var(--ds-text-secondary);
  pointer-events: none;
  transition: top var(--theme-motion-fast), transform var(--theme-motion-fast), font-size var(--theme-motion-fast), color var(--theme-motion-fast);
  transform-origin: left center;
  line-height: 1;
  z-index: 1;
}

.ds-input__field--textarea ~ .ds-input__label {
  top: 1.1rem;
  transform: none;
}

.ds-input__field--with-leading-icon ~ .ds-input__label {
  left: calc(var(--theme-spacing-lg) + 1.25rem + var(--theme-spacing-xs));
}

/* Float label up when focused or has value */
.ds-input__field:focus ~ .ds-input__label,
.ds-input__field--has-value ~ .ds-input__label {
  top: 0.5rem;
  transform: none;
  font-size: var(--theme-font-size-xs);
  color: var(--ds-text-tertiary);
}

.ds-input__field--textarea:focus ~ .ds-input__label,
.ds-input__field--textarea.ds-input__field--has-value ~ .ds-input__label {
  top: 0.35rem;
  transform: none;
  font-size: var(--theme-font-size-xs);
  color: var(--ds-text-tertiary);
}

.ds-input__leading-icon {
  position: absolute;
  left: var(--theme-spacing-lg);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--ds-text-tertiary);
  pointer-events: none;
  line-height: 1;
  z-index: 1;
}

.ds-input__trailing-icon {
  position: absolute;
  right: var(--theme-spacing-lg);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--ds-text-secondary);
  pointer-events: none;
  line-height: 1;
  z-index: 1;
}

.ds-input__field:hover:not(:disabled):not(:read-only) {
  border-color: var(--ds-border-strong);
}

.ds-input__field:focus {
  border-color: var(--ds-border-focus);
  box-shadow: 0 0 0 1px var(--ds-border-focus);
}

.ds-input__field:disabled {
  background: var(--ds-surface-disabled);
  color: var(--ds-text-tertiary);
  cursor: not-allowed;
}

.ds-input__field:disabled ~ .ds-input__label {
  color: var(--ds-text-tertiary);
}

.ds-input__field:read-only {
  background: var(--ds-surface-subtle);
  cursor: default;
}

.ds-input--error .ds-input__field {
  border-color: var(--ds-border-error);
}

.ds-input--error .ds-input__field:focus {
  box-shadow: 0 0 0 1px var(--ds-border-error);
}

.ds-input__error {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-sm);
  color: var(--ds-text-error);
}

.ds-input__hint {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-sm);
  color: var(--ds-text-secondary);
}

/* components/menu-item/menu-item.css */
.ds-menu-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--theme-spacing-md);
  width: 100%;
  padding: var(--theme-spacing-lg) 0;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--theme-motion-fast);
  -webkit-tap-highlight-color: transparent;
  position: relative;
  border-bottom: 1px solid var(--ds-border-subtle);
}

.ds-menu-item:last-child {
  border-bottom: none;
}

.ds-menu-item:active {
  opacity: 0.7;
}

.ds-menu-item:focus-visible {
  outline: none;
  box-shadow: var(--ds-focus-ring);
  border-radius: var(--theme-radius-sm);
}

/* Disabled */
.ds-menu-item--disabled {
  cursor: default;
  pointer-events: none;
}

.ds-menu-item--disabled .ds-menu-item__icon,
.ds-menu-item--disabled .ds-menu-item__chevron {
  color: var(--ds-text-tertiary);
}

.ds-menu-item--disabled .ds-menu-item__label {
  color: var(--ds-text-tertiary);
}

/* Leading icon */
.ds-menu-item__leading {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ds-menu-item__icon {
  font-size: 1.25rem;
  color: var(--ds-text-primary);
  line-height: 1;
}

/* Content */
.ds-menu-item__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ds-menu-item__label {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-md);
  font-weight: var(--theme-font-weight-normal);
  line-height: var(--theme-line-height-snug);
  color: var(--ds-text-primary);
}

.ds-menu-item__description {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-normal);
  line-height: var(--theme-line-height-normal);
  color: var(--ds-text-secondary);
}

/* Trailing chevron */
.ds-menu-item__trailing {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.ds-menu-item__chevron {
  font-size: 1rem;
  color: var(--ds-text-tertiary);
  line-height: 1;
}

/* components/message-row/message-row.css */
.ds-message-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--theme-spacing-md);
  width: 100%;
  padding: var(--theme-spacing-lg) 0;
  cursor: pointer;
  transition: opacity var(--theme-motion-fast);
  -webkit-tap-highlight-color: transparent;
  position: relative;
  border-bottom: 1px solid var(--ds-border-subtle);
}

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

.ds-message-row:active {
  opacity: 0.7;
}

/* Thumbnail wrap â€” square listing image with avatar overlay */
.ds-message-row__thumb-wrap {
  position: relative;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
}

.ds-message-row__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--theme-radius-lg);
}

/* Host avatar badge overlapping bottom-right of thumbnail */
.ds-message-row__avatar-badge {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 32px;
  height: 32px;
  border-radius: var(--theme-radius-full);
  border: 2px solid var(--ds-surface-page);
  overflow: hidden;
  background: var(--ds-surface-interactive);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ds-message-row__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--theme-radius-full);
}

.ds-message-row__avatar--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-xs);
  font-weight: var(--theme-font-weight-semibold);
  color: var(--ds-text-inverse);
  background: var(--ds-surface-interactive);
}

/* Avatar-only mode (no listing image) â€” shows avatar at full thumb size */
.ds-message-row__thumb-wrap--avatar-only {
  border-radius: var(--theme-radius-full);
  overflow: hidden;
  background: var(--ds-surface-interactive);
}

.ds-message-row__avatar--solo {
  width: 56px;
  height: 56px;
}

/* Content area */
.ds-message-row__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Top line: name + timestamp */
.ds-message-row__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--theme-spacing-sm);
}

.ds-message-row__name {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-normal);
  color: var(--ds-text-primary);
  line-height: var(--theme-line-height-snug);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ds-message-row--unread .ds-message-row__name {
  font-weight: var(--theme-font-weight-semibold);
}

.ds-message-row__timestamp {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-normal);
  color: var(--ds-text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Message preview â€” single line truncated */
.ds-message-row__preview {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-normal);
  color: var(--ds-text-secondary);
  line-height: var(--theme-line-height-normal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ds-message-row--unread .ds-message-row__preview {
  color: var(--ds-text-primary);
}

/* Status line with dot indicator */
.ds-message-row__status {
  display: flex;
  align-items: center;
  gap: var(--theme-spacing-xs);
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-normal);
  color: var(--ds-text-secondary);
  line-height: var(--theme-line-height-normal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ds-message-row__status-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--theme-radius-full);
  background: var(--ds-color-brand);
  flex-shrink: 0;
}

/* Action button row */
.ds-message-row__action-wrap {
  padding-top: var(--theme-spacing-sm);
}


/* components/modal/modal.css */
.ds-modal__backdrop {
  position: fixed;
  inset: 0;
  background: var(--ds-overlay-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: var(--theme-spacing-xl);
}

.ds-modal {
  background: var(--ds-surface-card);
  border-radius: var(--theme-radius-2xl);
  box-shadow: var(--theme-shadow-xl);
  max-height: 85vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.ds-modal--sm { width: 100%; max-width: 400px; }
.ds-modal--md { width: 100%; max-width: 568px; }
.ds-modal--lg { width: 100%; max-width: 780px; }

.ds-modal__header {
  display: flex;
  align-items: center;
  gap: var(--theme-spacing-lg);
  padding: var(--theme-spacing-lg) var(--theme-spacing-xl);
  border-bottom: 1px solid var(--ds-border-subtle);
  position: sticky;
  top: 0;
  background: var(--ds-surface-card);
  border-radius: var(--theme-radius-2xl) var(--theme-radius-2xl) 0 0;
  z-index: 1;
}

.ds-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--theme-radius-full);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ds-text-primary);
  transition: background var(--theme-motion-fast);
}

.ds-modal__close:hover {
  background: var(--ds-surface-subtle);
}

.ds-modal__title {
  flex: 1;
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-md);
  font-weight: var(--theme-font-weight-bold);
  color: var(--ds-text-primary);
  margin: 0;
  text-align: center;
}

.ds-modal__body {
  padding: var(--theme-spacing-xl);
}

/* components/notification/notification.css */
.ds-notification {
  display: flex;
  align-items: flex-start;
  gap: var(--theme-spacing-md);
  padding: var(--theme-spacing-lg);
  border-radius: var(--theme-radius-lg);
  font-family: var(--theme-font-sans);
}

.ds-notification--info {
  background: var(--ds-surface-subtle);
  color: var(--ds-text-primary);
}

.ds-notification--success {
  background: var(--ds-surface-success);
  color: var(--ds-text-success);
}

.ds-notification--warning {
  background: var(--ds-color-warning-subtle);
  color: var(--theme-arches-600);
}

.ds-notification--error {
  background: var(--ds-surface-error);
  color: var(--ds-text-error);
}

.ds-notification__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.ds-notification__message {
  flex: 1;
  font-size: var(--theme-font-size-base);
  line-height: var(--theme-line-height-normal);
}

.ds-notification__dismiss {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: inherit;
  opacity: 0.6;
  font-size: 1rem;
  transition: opacity var(--theme-motion-fast);
  flex-shrink: 0;
}

.ds-notification__dismiss:hover {
  opacity: 1;
}

/* components/payment-method/payment-method.css */
.ds-payment-method {
  display: flex;
  flex-direction: column;
  font-family: var(--theme-font-sans);
}

.ds-payment-method__option {
  display: flex;
  align-items: center;
  gap: var(--theme-spacing-md);
  padding: var(--theme-spacing-lg) 0;
  background: transparent;
  cursor: pointer;
  transition: opacity var(--theme-motion-fast);
  border-bottom: 1px solid var(--ds-border-subtle);
}

.ds-payment-method__option:last-child {
  border-bottom: none;
}

.ds-payment-method__option:active {
  opacity: 0.7;
}

.ds-payment-method__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--ds-text-primary);
}

.ds-payment-method__details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.ds-payment-method__label {
  font-size: var(--theme-font-size-md);
  font-weight: var(--theme-font-weight-normal);
  color: var(--ds-text-primary);
}

.ds-payment-method__sublabel {
  font-size: var(--theme-font-size-sm);
  color: var(--ds-text-secondary);
  display: flex;
  align-items: center;
  gap: var(--theme-spacing-xs);
}

.ds-payment-method__card-brands {
  display: flex;
  gap: var(--theme-spacing-xs);
}

.ds-payment-method__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 1.25rem;
  border-radius: 3px;
  font-size: 0.5625rem;
  font-weight: var(--theme-font-weight-bold);
  text-transform: uppercase;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.ds-payment-method__brand--visa {
  background: #1a1f71;
  color: white;
}

.ds-payment-method__brand--mastercard {
  background: #eb001b;
  color: white;
}

.ds-payment-method__brand--amex {
  background: #006fcf;
  color: white;
}

.ds-payment-method__brand--discover {
  background: #ff6000;
  color: white;
}

/* Tighten the radio hit area inside payment rows */
.ds-payment-method__option ds-radio .ds-radio__hit {
  width: auto;
  height: auto;
}

/* components/price-card/price-card.css */
.ds-price-card {
  display: flex;
  flex-direction: column;
  gap: var(--theme-spacing-lg);
  padding: var(--theme-spacing-xl);
  background: var(--ds-surface-card);
  border: 1px solid var(--ds-border-subtle);
  border-radius: var(--theme-radius-xl);
  box-shadow: var(--theme-shadow-lg);
}

.ds-price-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--theme-spacing-md);
}

.ds-price-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--theme-spacing-xs);
}

.ds-price-card__amount {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-2xl);
  font-weight: var(--theme-font-weight-bold);
  color: var(--ds-text-primary);
}

.ds-price-card__period {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-md);
  color: var(--ds-text-secondary);
}

.ds-price-card__rating {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-sm);
  color: var(--ds-text-primary);
}

.ds-price-card__reviews {
  color: var(--ds-text-secondary);
  text-decoration: underline;
}

.ds-price-card__fields {
  border: 1px solid var(--ds-border-strong);
  border-radius: var(--theme-radius-lg);
  overflow: hidden;
}

.ds-price-card__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ds-price-card__row .ds-price-card__field:first-child {
  border-right: 1px solid var(--ds-border-strong);
}

.ds-price-card__field {
  padding: var(--theme-spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--theme-spacing-2xs);
}

.ds-price-card__field--full {
  border-top: 1px solid var(--ds-border-strong);
}

.ds-price-card__field-label {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-xs);
  font-weight: var(--theme-font-weight-bold);
  color: var(--ds-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ds-price-card__field-value {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  color: var(--ds-text-secondary);
}

.ds-price-card__note {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-sm);
  color: var(--ds-text-secondary);
  text-align: center;
  margin: 0;
}

/* components/profile-hero/profile-hero.css */
.ds-profile-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--theme-spacing-lg);
  padding: var(--theme-spacing-lg) var(--theme-spacing-xl) var(--theme-spacing-xl);
}

/* Identity card: avatar + name + subtitle in a soft shadowed card */
.ds-profile-hero__identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--theme-spacing-sm);
  background: var(--ds-surface-card);
  border-radius: var(--theme-radius-xl);
  box-shadow: var(--theme-shadow-border), var(--theme-shadow-sm);
  padding: var(--theme-spacing-xl) var(--theme-spacing-2xl);
  width: 100%;
}

/* Avatar */
.ds-profile-hero__avatar {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: var(--theme-radius-full);
  overflow: visible;
  flex-shrink: 0;
}

.ds-profile-hero__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--theme-radius-full);
}

.ds-profile-hero__avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ds-surface-interactive);
  color: var(--ds-text-inverse);
  border-radius: var(--theme-radius-full);
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-xl);
  font-weight: var(--theme-font-weight-semibold);
  line-height: 1;
  user-select: none;
}

.ds-profile-hero__verified {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: var(--ds-surface-card);
  border-radius: var(--theme-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  font-size: 1rem;
  color: var(--ds-color-brand);
}

/* Name */
.ds-profile-hero__name {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-xl);
  font-weight: var(--theme-font-weight-bold);
  color: var(--ds-text-primary);
  line-height: var(--theme-line-height-tight);
  text-align: center;
}

/* Subtitle (location, etc.) */
.ds-profile-hero__subtitle {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-normal);
  color: var(--ds-text-secondary);
  line-height: var(--theme-line-height-normal);
  text-align: center;
}

/* Quick-action cards row */
.ds-profile-hero__actions {
  display: flex;
  gap: var(--theme-spacing-lg);
  width: 100%;
}

.ds-profile-hero__action {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--theme-spacing-sm);
  padding: var(--theme-spacing-lg);
  background: var(--ds-surface-card);
  border: none;
  border-radius: var(--theme-radius-xl);
  box-shadow: var(--theme-shadow-border), var(--theme-shadow-sm);
  cursor: pointer;
  transition: box-shadow var(--theme-motion-fast), transform var(--theme-motion-fast);
  -webkit-tap-highlight-color: transparent;
}

.ds-profile-hero__action:active {
  transform: scale(0.97);
}

.ds-profile-hero__action:focus-visible {
  outline: none;
  box-shadow: var(--ds-focus-ring);
}

/* Visual area: icon + optional badge */
.ds-profile-hero__action-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.ds-profile-hero__action-icon {
  font-size: 1.75rem;
  color: var(--ds-text-primary);
  line-height: 1;
}

.ds-profile-hero__action-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ds-color-brand);
  color: var(--ds-text-inverse);
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-xs);
  font-weight: var(--theme-font-weight-bold);
  border-radius: var(--theme-radius-full);
  line-height: 1;
}

/* Action label */
.ds-profile-hero__action-label {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-sm);
  font-weight: var(--theme-font-weight-semibold);
  color: var(--ds-text-primary);
  line-height: var(--theme-line-height-snug);
  text-align: center;
}

/* components/progress-bar/progress-bar.css */
ds-progress-bar {
  display: block;
}

.ds-progress-bar {
  display: flex;
  gap: 4px;
}

.ds-progress-bar-segment {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--ds-border-subtle);
  transition: background var(--theme-motion-base);
}

.ds-progress-bar-segment-filled {
  background: var(--ds-color-interactive);
}

/* components/promo-banner/promo-banner.css */
.ds-promo-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--theme-spacing-lg);
  width: 100%;
  padding: var(--theme-spacing-lg);
  background: var(--ds-surface-card);
  border-radius: var(--theme-radius-xl);
  box-shadow: var(--theme-shadow-border), var(--theme-shadow-sm);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--theme-motion-fast), box-shadow var(--theme-motion-fast);
  -webkit-tap-highlight-color: transparent;
}

.ds-promo-banner:active {
  opacity: 0.7;
}

.ds-promo-banner:focus-visible {
  outline: none;
  box-shadow: var(--ds-focus-ring);
}

/* Leading image */
.ds-promo-banner__image {
  width: 48px;
  height: 48px;
  border-radius: var(--theme-radius-lg);
  object-fit: cover;
  flex-shrink: 0;
}

/* Leading icon fallback */
.ds-promo-banner__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--theme-radius-lg);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ds-promo-banner__icon {
  font-size: 1.5rem;
  color: var(--ds-text-primary);
  line-height: 1;
}

/* Content */
.ds-promo-banner__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ds-promo-banner__title {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-md);
  font-weight: var(--theme-font-weight-semibold);
  line-height: var(--theme-line-height-snug);
  color: var(--ds-text-primary);
}

.ds-promo-banner__subtitle {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-normal);
  line-height: var(--theme-line-height-normal);
  color: var(--ds-text-secondary);
}

/* Trailing chevron */
.ds-promo-banner__trailing {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ds-promo-banner__chevron {
  font-size: 1rem;
  color: var(--ds-text-tertiary);
  line-height: 1;
}

/* components/property-card/property-card.css */
.ds-property-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 8px;
}

/* Size variants */
.ds-property-card--compact {
  width: 220px;
  flex-shrink: 0;
}

.ds-property-card--full {
  width: 100%;
}

.ds-property-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--theme-radius-xl);
  overflow: hidden;
  flex-shrink: 0;
}

.ds-property-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ds-property-card__heart {
  position: absolute;
  top: var(--theme-spacing-md);
  right: var(--theme-spacing-md);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform var(--theme-motion-spring);
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}

.ds-property-card__heart:hover {
  transform: scale(1.15);
}

.ds-property-card__heart:active {
  transform: scale(0.9);
}

.ds-property-card__heart-icon {
  width: 100%;
  height: 100%;
}

.ds-property-card__heart-path {
  fill: rgba(0, 0, 0, 0.5);
  transition: fill var(--theme-motion-fast);
}

.ds-property-card__heart--saved .ds-property-card__heart-path {
  fill: var(--ds-color-brand);
}

.ds-property-card__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto;
  max-width: calc(100% - 60px);
  height: 24px;
  padding: 6px 10px;
  background: linear-gradient(180deg, #F9F9F9 0%, #F5F5F5 100%);
  border: 1px solid #FFFFFF;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.16);
  border-radius: 24px;
  z-index: 2;
  font-family: var(--theme-font-sans);
  font-size: 11px;
  font-weight: 500;
  line-height: 12px;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Content */
.ds-property-card__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
  min-width: 0;
}

.ds-property-card__title {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-bold);
  color: var(--ds-text-primary);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ds-property-card__meta {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-sm);
  color: var(--ds-text-tertiary);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ds-property-card__price {
  color: var(--ds-text-secondary);
  font-weight: var(--theme-font-weight-medium);
}

.ds-property-card__rating {
  color: var(--ds-text-secondary);
}

/* components/radio/radio.css */
/* Hit area wrapper */
.ds-radio__hit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

/* Radio button */
.ds-radio {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--theme-radius-full);
  -webkit-tap-highlight-color: transparent;
}

.ds-radio svg {
  display: block;
  width: 20px;
  height: 20px;
}

/* Hover â€” unchecked: darken ring */
.ds-radio:hover:not(:disabled) svg circle[stroke] {
  stroke: #B0B0B0;
}

/* Hover â€” checked: darken fill */
.ds-radio--checked:hover:not(:disabled) svg circle[fill="#222222"] {
  fill: #000000;
}

/* Active */
.ds-radio:active:not(:disabled) svg circle[stroke] {
  stroke: #B0B0B0;
}

.ds-radio--checked:active:not(:disabled) svg circle[fill="#222222"] {
  fill: #000000;
}

/* Focus */
.ds-radio:focus-visible {
  outline: none;
  box-shadow: var(--ds-focus-ring);
}

/* Disabled */
.ds-radio--disabled {
  cursor: default;
  pointer-events: none;
}

/* components/rating/rating.css */
.ds-rating {
  display: inline-flex;
  align-items: center;
  gap: var(--theme-spacing-xs);
  font-family: var(--theme-font-sans);
}

.ds-rating--sm { font-size: var(--theme-font-size-sm); }
.ds-rating--md { font-size: var(--theme-font-size-base); }
.ds-rating--lg { font-size: var(--theme-font-size-lg); }

.ds-rating__stars {
  display: flex;
  align-items: center;
  gap: 1px;
  color: var(--ds-color-star);
}

.ds-rating__value {
  font-weight: var(--theme-font-weight-semibold);
  color: var(--ds-text-primary);
}

.ds-rating__count {
  color: var(--ds-text-secondary);
}

.ds-rating__label {
  color: var(--ds-text-secondary);
}

/* components/review-card/review-card.css */
.ds-review-card {
  display: flex;
  flex-direction: column;
  gap: var(--theme-spacing-md);
}

.ds-review-card__top {
  display: flex;
  align-items: center;
  gap: var(--theme-spacing-sm);
}

.ds-review-card__stars {
  font-size: var(--theme-font-size-xs);
  color: var(--ds-color-star);
  letter-spacing: 1px;
}

.ds-review-card__date {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-sm);
  color: var(--ds-text-secondary);
}

.ds-review-card__text {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  line-height: var(--theme-line-height-relaxed);
  color: var(--ds-text-primary);
  margin: 0;
}

.ds-review-card__more {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-semibold);
  color: var(--ds-text-primary);
  text-decoration: underline;
  cursor: pointer;
  align-self: flex-start;
  -webkit-tap-highlight-color: transparent;
}

.ds-review-card__author {
  display: flex;
  align-items: center;
  gap: var(--theme-spacing-md);
}

.ds-review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--theme-radius-full);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ds-surface-interactive);
  color: var(--ds-text-inverse);
  flex-shrink: 0;
}

.ds-review-card__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ds-review-card__avatar-fallback {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-semibold);
}

.ds-review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ds-review-card__name {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-semibold);
  color: var(--ds-text-primary);
}

.ds-review-card__location {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-sm);
  color: var(--ds-text-secondary);
}

/* components/search-bar/search-bar.css */
.ds-search-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--theme-spacing-sm);
  background: var(--ds-surface-card);
  border: 1px solid var(--ds-border-default);
  border-radius: var(--theme-radius-full);
  box-shadow: var(--theme-shadow-lg);
  padding: var(--theme-spacing-md) var(--theme-spacing-xl);
  cursor: pointer;
  transition: box-shadow var(--theme-motion-base), border-color var(--theme-motion-base);
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}

.ds-search-bar:hover,
.ds-search-bar--hover {
  border-color: var(--ds-text-primary);
}

.ds-search-bar__icon {
  font-size: 1.1rem;
  color: var(--ds-text-primary);
  flex-shrink: 0;
  line-height: 1;
}

.ds-search-bar__label {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-semibold);
  color: var(--ds-text-primary);
  line-height: 1;
}

/* components/section-label/section-label.css */
ds-section-label {
  display: block;
}

.ds-section-label {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-xs);
  font-weight: var(--theme-font-weight-semibold);
  color: var(--ds-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: var(--theme-line-height-normal);
  padding-bottom: var(--theme-spacing-sm);
}

/* components/stepper/stepper.css */
.ds-stepper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 28px;
  padding: 0;
  gap: 0;
}

/* Hit area wrapper */
.ds-stepper__hit {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Buttons */
.ds-stepper__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  max-width: 28px;
  max-height: 28px;
  border-radius: var(--theme-radius-full);
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.ds-stepper__btn:focus-visible {
  outline: none;
  box-shadow: var(--ds-focus-ring);
}

.ds-stepper__btn:disabled {
  cursor: default;
  pointer-events: none;
}

.ds-stepper__btn svg {
  display: block;
  width: 28px;
  height: 28px;
}

/* Fully disabled stepper */
.ds-stepper--disabled .ds-stepper__value {
  color: var(--ds-text-tertiary);
}

/* Value */
.ds-stepper__value {
  width: 40px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-normal);
  line-height: 18px;
  color: var(--ds-text-primary);
  text-align: center;
  flex-shrink: 0;
}

/* components/summary-row/summary-row.css */
.ds-summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--theme-spacing-md);
  padding: var(--theme-spacing-sm) 0;
  font-family: var(--theme-font-sans);
}

.ds-summary-row__label {
  font-size: var(--theme-font-size-base);
  color: var(--ds-text-primary);
  font-weight: var(--theme-font-weight-normal);
}

.ds-summary-row__label--link {
  text-decoration: underline;
  cursor: pointer;
}

.ds-summary-row__label--link:hover {
  color: var(--ds-text-secondary);
}

.ds-summary-row__value {
  font-size: var(--theme-font-size-base);
  color: var(--ds-text-primary);
  font-weight: var(--theme-font-weight-normal);
  white-space: nowrap;
}

/* Total variant */
.ds-summary-row--total {
  padding-top: var(--theme-spacing-lg);
  border-top: 1px solid var(--ds-border-default);
}

.ds-summary-row--total .ds-summary-row__label {
  font-size: var(--theme-font-size-md);
  font-weight: var(--theme-font-weight-bold);
}

.ds-summary-row--total .ds-summary-row__value {
  font-size: var(--theme-font-size-md);
  font-weight: var(--theme-font-weight-bold);
}

/* Discount variant */
.ds-summary-row--discount .ds-summary-row__label {
  color: var(--ds-text-success);
}

.ds-summary-row--discount .ds-summary-row__value {
  color: var(--ds-text-success);
}

/* Subtle variant for secondary info */
.ds-summary-row--subtle .ds-summary-row__label {
  color: var(--ds-text-secondary);
  font-size: var(--theme-font-size-sm);
}

.ds-summary-row--subtle .ds-summary-row__value {
  color: var(--ds-text-secondary);
  font-size: var(--theme-font-size-sm);
}

/* components/tabs/tabs.css */
.ds-tabs {
  display: flex;
  gap: var(--theme-spacing-2xl);
  border-bottom: 1px solid var(--ds-border-subtle);
  overflow-x: auto;
}

.ds-tabs__tab {
  padding: var(--theme-spacing-md) 0;
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-medium);
  color: var(--ds-text-secondary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color var(--theme-motion-fast), border-color var(--theme-motion-fast);
  white-space: nowrap;
  margin-bottom: -1px;
}

.ds-tabs__tab:hover {
  color: var(--ds-text-primary);
}

.ds-tabs__tab--active {
  color: var(--ds-text-primary);
  font-weight: var(--theme-font-weight-semibold);
  border-bottom-color: var(--ds-border-focus);
}

/* components/toggle/toggle.css */
/* Hit area wrapper */
.ds-toggle__hit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
}

/* Toggle button */
.ds-toggle {
  position: relative;
  display: flex;
  align-items: center;
  width: 44px;
  height: 29px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.ds-toggle:focus-visible {
  outline: none;
  box-shadow: var(--ds-focus-ring);
  border-radius: 14.5px;
}

/* Track */
.ds-toggle__track {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 29px;
  border-radius: 14.5px;
  background: #DDDDDD;
  transition: background var(--theme-motion-fast);
}

.ds-toggle--checked .ds-toggle__track {
  background: #222222;
}

/* Hover */
.ds-toggle:hover:not(:disabled) .ds-toggle__track {
  background: #B0B0B0;
}

.ds-toggle--checked:hover:not(:disabled) .ds-toggle__track {
  background: #000000;
}

/* Active */
.ds-toggle:active:not(:disabled) .ds-toggle__track {
  background: #B0B0B0;
}

.ds-toggle--checked:active:not(:disabled) .ds-toggle__track {
  background: #000000;
}

/* Thumb */
.ds-toggle__thumb {
  position: absolute;
  top: 2px;
  left: 3px;
  width: 25px;
  height: 25px;
  border-radius: 12.5px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left var(--theme-motion-fast);
  z-index: 1;
}

.ds-toggle--checked .ds-toggle__thumb {
  left: 16px;
}

.ds-toggle__thumb svg {
  display: block;
}

/* Disabled */
.ds-toggle--disabled {
  cursor: default;
  pointer-events: none;
}

.ds-toggle--disabled .ds-toggle__track {
  background: #DDDDDD;
}

.ds-toggle--disabled.ds-toggle--checked .ds-toggle__track {
  background: #DDDDDD;
}

/* components/trip-card/trip-card.css */
ds-trip-card {
  display: block;
}

.ds-trip-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--theme-radius-xl);
  overflow: hidden;
  cursor: pointer;
  background: var(--ds-surface-card);
  box-shadow: var(--theme-shadow-border), var(--theme-shadow-sm);
  transition: box-shadow var(--theme-motion-fast);
  -webkit-tap-highlight-color: transparent;
}

.ds-trip-card:hover {
  box-shadow: var(--theme-shadow-border), var(--theme-shadow-md);
}

.ds-trip-card:active {
  box-shadow: var(--theme-shadow-border), var(--theme-shadow-xs);
}

/* Image */
.ds-trip-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.ds-trip-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Status badge overlay */
.ds-trip-card__status {
  position: absolute;
  top: var(--theme-spacing-md);
  left: var(--theme-spacing-md);
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-xs);
  font-weight: var(--theme-font-weight-semibold);
  padding: var(--theme-spacing-xs) var(--theme-spacing-sm);
  border-radius: var(--theme-radius-sm);
  line-height: 1;
  z-index: 1;
}

.ds-trip-card__status--upcoming {
  background: var(--ds-surface-interactive);
  color: var(--ds-text-inverse);
}

.ds-trip-card__status--active {
  background: var(--ds-color-success);
  color: var(--ds-text-inverse);
}

.ds-trip-card__status--completed {
  background: var(--ds-surface-subtle);
  color: var(--ds-text-secondary);
}

.ds-trip-card__status--cancelled {
  background: var(--ds-surface-error);
  color: var(--ds-text-error);
}

/* Content */
.ds-trip-card__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--theme-spacing-lg);
}

.ds-trip-card__title {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-xl);
  font-weight: var(--theme-font-weight-bold);
  color: var(--ds-text-primary);
  margin: 0;
  line-height: var(--theme-line-height-snug);
}

.ds-trip-card__dates {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-normal);
  color: var(--ds-text-secondary);
  margin: 0;
}

.ds-trip-card__host {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-normal);
  color: var(--ds-text-secondary);
  margin: 0;
}

/* components/wishlist-card/wishlist-card.css */
ds-wishlist-card {
  display: block;
}

.ds-wishlist-card {
  display: flex;
  flex-direction: column;
  gap: var(--theme-spacing-sm);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* Mosaic thumbnail */
.ds-wishlist-card__mosaic {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--theme-radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.ds-wishlist-card__mosaic--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ds-surface-subtle);
}

.ds-wishlist-card__icon {
  font-size: 2rem;
  color: var(--ds-text-tertiary);
}

.ds-wishlist-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ds-wishlist-card__img--main {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

.ds-wishlist-card__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}

.ds-wishlist-card__img--tr,
.ds-wishlist-card__img--br {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.ds-wishlist-card__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ds-wishlist-card__title {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-base);
  font-weight: var(--theme-font-weight-semibold);
  color: var(--ds-text-primary);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ds-wishlist-card__subtitle {
  font-family: var(--theme-font-sans);
  font-size: var(--theme-font-size-sm);
  color: var(--ds-text-secondary);
  margin: 0;
}