.surface-panel,
.glass-panel,
.card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.68);
}

.card {
  overflow: hidden;
}

.card-body {
  padding: clamp(1.05rem, 2.2vw, 1.5rem);
}

.card-header,
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-3);
  padding: 1rem 1.35rem;
}

.card-header {
  border-bottom: 1px solid rgba(13, 34, 71, 0.08);
}

.card-footer {
  border-top: 1px solid rgba(13, 34, 71, 0.08);
}

.stack {
  display: grid;
  gap: var(--spacing-4);
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-3);
}

.profile-container {
  display: grid;
  gap: 0;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  overflow: hidden;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: clamp(1.2rem, 2.6vw, 1.75rem);
}

.profile-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: rgba(245, 179, 14, 0.14);
  border: 1px solid rgba(245, 179, 14, 0.18);
  color: var(--color-primary-strong);
  flex-shrink: 0;
}

.profile-avatar .ui-icon {
  width: 1.6rem;
  height: 1.6rem;
}

.profile-identity {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.profile-name {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.profile-email {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1.5rem;
  padding: 0 clamp(1.2rem, 2.6vw, 1.75rem);
}

.profile-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 0;
}

.profile-info-item:nth-child(odd) {
  border-right: 1px solid rgba(13, 34, 71, 0.06);
  padding-right: 1.5rem;
}

.profile-info-item:nth-child(even) {
  padding-left: 1.5rem;
}

.profile-info-label {
  font-size: var(--font-size-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.profile-info-value {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-text);
  word-break: break-word;
}

.profile-divider {
  height: 1px;
  background: rgba(13, 34, 71, 0.08);
  margin: 0 clamp(1.2rem, 2.6vw, 1.75rem);
}

.profile-section {
  display: grid;
  gap: var(--spacing-4);
  padding: clamp(1.1rem, 2.4vw, 1.6rem) clamp(1.2rem, 2.6vw, 1.75rem);
}

.profile-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--spacing-3);
}

.profile-section-body {
  display: grid;
  gap: var(--spacing-4);
}

@media (max-width: 640px) {
  .profile-info-grid {
    grid-template-columns: 1fr;
  }

  .profile-info-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-3);
  }

  .profile-info-item:nth-child(odd),
  .profile-info-item:nth-child(even) {
    border-right: none;
    padding-right: 0;
    padding-left: 0;
  }

  .profile-info-item:not(:last-child) {
    border-bottom: 1px solid rgba(13, 34, 71, 0.06);
  }

  .profile-info-label {
    flex-shrink: 0;
  }

  .profile-info-value {
    text-align: right;
  }

  .profile-header {
    gap: 0.9rem;
    padding: 1rem;
  }

  .profile-section {
    padding: 1rem;
  }

  .profile-divider {
    margin: 0 1rem;
  }

  .profile-info-grid {
    padding: 0 1rem;
  }
}

[data-lazy-section] {
  content-visibility: auto;
  contain-intrinsic-size: 1px 540px;
}

[data-lazy-section="rail"] {
  contain-intrinsic-size: 1px 360px;
}

[data-lazy-section="grid"] {
  contain-intrinsic-size: 1px 720px;
}

[data-lazy-section="footer"] {
  contain-intrinsic-size: 1px 480px;
}

img[data-lazy-media="true"] {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 220ms ease, filter 320ms ease;
}

img[data-lazy-media="false"],
img.is-loaded,
img.loaded {
  opacity: 1;
  filter: none;
}

.eyebrow,
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-full);
  background: rgba(245, 179, 14, 0.12);
  border: 1px solid rgba(245, 179, 14, 0.14);
  color: var(--color-primary-strong);
  font-size: var(--font-size-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.display-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.section-subtitle {
  margin-top: 0.35rem;
  color: var(--color-text-soft);
  line-height: 1.7;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-4);
  margin-bottom: var(--spacing-4);
  flex-wrap: wrap;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(1.4rem, 3vw, 2.3rem);
  padding: clamp(1.3rem, 3vw, 2rem);
  border-radius: var(--radius-3xl);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.page-hero-compact {
  grid-template-columns: minmax(0, 1fr);
}

.page-hero-copy {
  display: grid;
  align-content: start;
  gap: var(--spacing-5);
}

.page-hero-text {
  max-width: 44ch;
  color: var(--color-text-soft);
  font-size: var(--font-size-base);
  line-height: 1.8;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-3);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-3);
}

.hero-metric {
  display: grid;
  gap: 0.25rem;
  min-width: 132px;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
}

.hero-metric-value {
  font-size: var(--font-size-xl);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-metric-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-side-panel {
  display: grid;
  gap: var(--spacing-4);
  align-content: start;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-xs);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  font-weight: 700;
}

.hero-chip-highlight {
  color: var(--color-primary-strong);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border-radius: var(--button-radius);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
  white-space: nowrap;
}

.btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active:not(:disabled) {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus), var(--shadow-md);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-primary {
  background: #F5B30E;
  color: #0A1C3D;
  border-color: rgba(245, 179, 14, 0.96);
  box-shadow: 0 16px 32px rgba(245, 179, 14, 0.34), 0 8px 16px rgba(13, 34, 71, 0.14);
}

.btn-primary:hover:not(:disabled) {
  background: #F7BE33;
  box-shadow: 0 20px 40px rgba(245, 179, 14, 0.42), 0 10px 22px rgba(13, 34, 71, 0.16);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(13, 34, 71, 0.1);
  color: var(--color-text);
}

.btn-outline {
  background: transparent;
  border-color: rgba(13, 34, 71, 0.12);
  color: var(--color-text-soft);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.46);
  border-color: transparent;
  color: var(--color-text-soft);
  box-shadow: none;
}

.btn-danger {
  background: #cc5a52;
  color: var(--color-white);
}

.btn-success {
  background: #2f8f6b;
  color: #10281f;
}

.btn-sm {
  min-height: 40px;
  padding: 0.62rem 0.9rem;
  font-size: var(--font-size-xs);
}

.btn-lg {
  min-height: 54px;
  padding: 0.95rem 1.35rem;
  font-size: var(--font-size-base);
}

.btn-block,
.w-full {
  width: 100%;
}

.btn[aria-busy="true"],
.btn.is-loading {
  color: transparent;
  pointer-events: none;
}

.btn[aria-busy="true"]::after,
.btn.is-loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-right-color: transparent;
  animation: spin 0.8s linear infinite;
  color: rgba(10, 28, 61, 0.8);
}

.btn-danger[aria-busy="true"]::after,
.btn-danger.is-loading::after {
  color: rgba(255, 255, 255, 0.9);
}

.form-group {
  display: grid;
  gap: 0.65rem;
  margin-bottom: var(--spacing-4);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-4);
}

.form-label {
  font-size: var(--font-size-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 34, 71, 0.1);
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.form-textarea {
  min-height: 124px;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: rgba(13, 34, 71, 0.18);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(245, 179, 14, 0.36);
  box-shadow: var(--shadow-focus), var(--shadow-sm);
  background: rgba(255, 255, 255, 0.94);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: rgba(204, 90, 82, 0.34);
  box-shadow: 0 0 0 4px rgba(204, 90, 82, 0.12);
}

.form-select {
  appearance: none;
  background-image: none;
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
}

.form-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-4);
  padding: 0.95rem 1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 34, 71, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.form-switch-copy {
  display: grid;
  gap: 0.22rem;
}

.form-switch-title {
  font-size: var(--font-size-sm);
  font-weight: 800;
  color: var(--color-text);
}

.form-switch-hint {
  font-size: var(--font-size-xs);
  line-height: 1.45;
  color: var(--color-text-soft);
}

.form-switch-control {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 54px;
  height: 31px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  border: 0;
  background: rgba(13, 34, 71, 0.16);
  box-shadow: inset 0 1px 2px rgba(13, 34, 71, 0.14);
  cursor: pointer;
  transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.form-switch-control::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 18px rgba(13, 34, 71, 0.16);
  transition: transform var(--transition-fast);
}

.form-switch-control:checked {
  background: linear-gradient(135deg, #ffd867 0%, #ffc72c 60%, #ffb300 100%);
  box-shadow: 0 0 0 4px rgba(245, 179, 14, 0.14);
}

.form-switch-control:checked::after {
  transform: translateX(23px);
}

.form-switch-control:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.form-error {
  color: var(--color-danger);
  font-size: var(--font-size-xs);
}

@media (max-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .form-switch {
    align-items: flex-start;
  }
}

.premium-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 58px;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.premium-search:focus-within {
  border-color: rgba(245, 179, 14, 0.24);
  box-shadow: var(--shadow-glow), var(--shadow-md);
}

.premium-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: var(--color-text);
  font-size: var(--font-size-sm);
  outline: none;
}

.premium-search-input::placeholder {
  color: var(--color-text-muted);
}

.premium-search-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(13, 34, 71, 0.08);
  color: var(--color-text-soft);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.premium-search-action:hover:not(:disabled) {
  transform: translateY(-1px) scale(1.02);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.premium-search-action:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.premium-search-clear.hidden {
  display: none !important;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 320;
  padding: 0.55rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: var(--radius-lg);
  transition: background var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
}

.search-suggestion-item:hover {
  background: rgba(245, 240, 232, 0.8);
  transform: translateY(-1px);
}

.search-suggestion-thumb {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #ffffff;
  object-fit: contain;
  flex-shrink: 0;
}

.search-suggestion-title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-text);
}

.search-suggestion-price {
  margin-top: 0.15rem;
  font-size: var(--font-size-xs);
  color: var(--color-primary-strong);
  font-weight: 800;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.72rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-success {
  background: var(--color-success-soft);
  color: var(--color-success);
}

.badge-warning {
  background: var(--color-warning-soft);
  color: var(--color-warning);
}

.badge-danger {
  background: var(--color-danger-soft);
  color: var(--color-danger);
}

.badge-info {
  background: var(--color-info-soft);
  color: var(--color-info);
}

.badge-gray {
  background: rgba(13, 34, 71, 0.08);
  color: var(--color-text-soft);
}

.badge-outline {
  background: transparent;
  border: 1px solid currentColor;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.stat-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(245, 179, 14, 0.12);
  color: var(--color-primary-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.stat-card-value {
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-text);
}

.stat-card-label {
  margin-top: 0.2rem;
  color: var(--color-text-soft);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.table-container {
  overflow-x: auto;
  border-radius: inherit;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 680px;
  font-size: var(--font-size-sm);
}

.table th {
  padding: 0.9rem 1rem;
  text-align: left;
  font-weight: 800;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-soft);
  background: rgba(245, 240, 232, 0.85);
  border-bottom: 1px solid rgba(13, 34, 71, 0.08);
}

.table th:first-child {
  border-top-left-radius: 16px;
}

.table th:last-child {
  border-top-right-radius: 16px;
}

.table td {
  padding: 1rem;
  color: var(--color-text);
  border-bottom: 1px solid rgba(13, 34, 71, 0.06);
  background: rgba(255, 255, 255, 0.4);
}

.table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.74);
}

.admin-list-desktop {
  display: block;
}

.admin-list-mobile {
  display: none;
}

.admin-mobile-card {
  display: grid;
  gap: 0.75rem;
  margin-bottom: var(--spacing-3);
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.admin-mobile-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--spacing-3);
}

.admin-mobile-card-title {
  font-size: var(--font-size-base);
  font-weight: 800;
  color: var(--color-text);
}

.admin-mobile-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--spacing-3);
  padding-top: 0.8rem;
  border-top: 1px solid rgba(13, 34, 71, 0.08);
}

.admin-mobile-row-label {
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-mobile-row-value {
  color: var(--color-text);
  text-align: right;
}

.admin-mobile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.admin-cat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--color-border-strong);
  background: var(--color-accent-soft);
  flex-shrink: 0;
}

.admin-cat-icon-mobile {
  width: 34px;
  height: 34px;
  vertical-align: middle;
  margin-right: 0.45rem;
}

.admin-cat-no-icon {
  color: var(--color-text-muted);
}

.admin-cat-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cat-image-upload-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.cat-image-preview {
  margin-top: 0.6rem;
}

.cat-image-preview img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--color-border-strong);
  box-shadow: var(--shadow-sm);
}

.cat-image-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px dashed rgba(13, 34, 71, 0.2);
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  text-align: center;
}

.admin-category-builder {
  margin-bottom: var(--spacing-6);
  overflow: visible;
}

.admin-category-builder .card-header {
  align-items: flex-start;
}

.admin-category-builder-copy {
  margin: 0.25rem 0 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.admin-category-editor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

.admin-category-form-fields {
  min-width: 0;
}

.admin-category-editor .form-hint {
  margin: 0.35rem 0 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  line-height: 1.4;
}

.admin-category-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.cat-image-file-label {
  cursor: pointer;
}

.cat-image-preview {
  display: flex;
  align-items: center;
  min-height: 84px;
}

.cat-image-preview img {
  object-position: center;
}

.admin-category-image-status {
  min-height: 1.25rem;
  margin: 0.45rem 0 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  line-height: 1.4;
}

.admin-category-preview-panel {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(13, 34, 71, 0.1);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 230, 0.72));
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.admin-category-preview-kicker {
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-category-preview-panel > p {
  max-width: 230px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  line-height: 1.45;
  text-align: center;
}

.home-category-chip.admin-category-chip-preview {
  width: 160px;
  max-width: 100%;
  padding: 0.35rem 0.2rem 0;
  opacity: 1;
  transform: none;
  animation: none;
  pointer-events: none;
}

.admin-category-chip-preview .home-category-icon {
  width: 112px;
  height: 112px;
  overflow: hidden;
  border: 0;
  background: #ffffff;
  box-shadow:
    0 10px 24px rgba(241, 168, 29, 0.28),
    0 22px 48px rgba(255, 223, 130, 0.56);
}

.admin-category-chip-preview .home-category-icon::before {
  inset: 0;
  z-index: 0;
  border: 1px solid rgba(245, 179, 14, 0.28);
  background: #ffffff;
  box-shadow:
    0 0 0 8px rgba(255, 210, 116, 0.22),
    0 12px 28px rgba(245, 166, 35, 0.18);
}

.admin-category-chip-preview .home-category-icon .home-category-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.admin-category-chip-preview .home-category-icon > .ui-icon {
  position: relative;
  z-index: 1;
}

.admin-category-chip-preview .home-category-name {
  max-width: 148px;
  margin-top: -0.95rem;
  padding-inline: 0.75rem;
}

.admin-category-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(13, 34, 71, 0.08);
}

@media (max-width: 720px) {
  .admin-category-editor {
    grid-template-columns: 1fr;
  }

  .admin-category-preview-panel {
    justify-self: stretch;
  }
}

.toast-container {
  position: fixed;
  top: calc(18px + env(safe-area-inset-top));
  right: var(--page-padding);
  z-index: 250;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: min(100%, 420px);
  pointer-events: none;
}

.toast {
  padding: 0.95rem 1.05rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  color: var(--color-white);
  font-size: var(--font-size-sm);
  font-weight: 700;
  transform: translateY(-8px);
  opacity: 0;
  animation: toastIn var(--transition-base) forwards;
  pointer-events: auto;
}

.toast.success {
  background: #2f8f6b;
  color: #10281f;
}

.toast.error {
  background: #cc5a52;
}

.toast.warning {
  background: #c98b1e;
  color: #3f2b07;
}

.toast.info {
  background: #436bd8;
}

.toast.close {
  animation: toastOut 220ms ease forwards;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-4);
  background: rgba(10, 28, 61, 0.4);
  backdrop-filter: blur(10px);
  z-index: 230;
}

.modal-content {
  width: min(100%, 680px);
  max-height: min(86vh, 860px);
  border-radius: var(--radius-2xl);
  overflow: auto;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
}

.modal-header,
.modal-footer {
  position: sticky;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-3);
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.82);
}

.modal-header {
  top: 0;
  border-bottom: 1px solid rgba(13, 34, 71, 0.08);
}

.modal-title {
  font-size: var(--font-size-lg);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.modal-body {
  padding: 1.2rem;
}

.modal-footer {
  bottom: 0;
  justify-content: flex-end;
  border-top: 1px solid rgba(13, 34, 71, 0.08);
}

.close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-text-soft);
  box-shadow: var(--shadow-xs);
  font-size: 1.35rem;
}

.close-btn:hover {
  color: var(--color-text);
  transform: translateY(-1px);
}

.spinner {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid rgba(13, 34, 71, 0.12);
  border-right-color: transparent;
  border-top-color: var(--color-primary);
  animation: spin 0.8s linear infinite;
}

.loading-screen {
  display: grid;
  place-items: center;
  gap: 1rem;
  min-height: 100vh;
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  color: #7a5a00;
  background:
    radial-gradient(circle at top, rgba(255, 245, 187, 0.92), transparent 32%),
    linear-gradient(180deg, #ffd64d 0%, #ffc61a 100%);
}

.loading-brand-icon {
  width: clamp(220px, 48vw, 520px);
  height: auto;
  border-radius: 0;
  box-shadow:
    0 28px 48px rgba(141, 98, 0, 0.14);
}

.loading-screen .brand-lockup-title {
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  color: #071b45;
}

.loading-screen .brand-lockup-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 700;
  color: rgba(7, 27, 69, 0.74);
}

.loading-brand-note {
  color: rgba(7, 27, 69, 0.72);
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.empty-state {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  padding: clamp(1.8rem, 5vw, 3rem);
  text-align: center;
  color: var(--color-text-soft);
}

.empty-state-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.empty-state-title {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--color-text);
}

.skeleton,
.skeleton-text,
.skeleton-image {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  background-size: 200% 100%;
  animation: shimmer 1.3s linear infinite;
}

.skeleton {
  border-radius: var(--radius-lg);
}

.skeleton-text {
  height: 0.85rem;
  border-radius: var(--radius-full);
}

.skeleton-text.sm {
  width: 42%;
}

.skeleton-text.md {
  width: 72%;
}

.skeleton-text.lg {
  width: 94%;
}

.skeleton-image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
}

.skeleton-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.skeleton-card-body {
  display: grid;
  gap: 0.6rem;
  padding: 1rem;
}

.grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.grid-cols-2,
.grid-cols-3,
.grid-cols-4 {
  grid-template-columns: 1fr;
}

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

.flex {
  display: flex;
}

.flex-1 {
  flex: 1;
  min-width: 0;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

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

.gap-2 {
  gap: var(--spacing-2);
}

.gap-3 {
  gap: var(--spacing-3);
}

.gap-4 {
  gap: var(--spacing-4);
}

.mt-2 {
  margin-top: var(--spacing-2);
}

.mt-4 {
  margin-top: var(--spacing-4);
}

.mb-4 {
  margin-bottom: var(--spacing-4);
}

.my-4 {
  margin-top: var(--spacing-4);
  margin-bottom: var(--spacing-4);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-sm {
  font-size: var(--font-size-sm);
}

.text-xs {
  font-size: var(--font-size-xs);
}

.text-lg {
  font-size: var(--font-size-lg);
}

.text-xl {
  font-size: var(--font-size-xl);
}

.text-2xl {
  font-size: var(--font-size-2xl);
}

.text-gray {
  color: var(--color-text-soft);
}

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

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

.font-medium {
  font-weight: 700;
}

.font-bold {
  font-weight: 800;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cursor-pointer {
  cursor: pointer;
}

.product-section {
  display: grid;
  gap: var(--spacing-4);
}

.product-section-title {
  font-size: var(--font-size-xl);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.product-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-4);
  flex-wrap: wrap;
}

.product-section-more {
  font-size: var(--font-size-sm);
  font-weight: 800;
  color: var(--color-primary-strong);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  row-gap: 1rem;
  column-gap: 0.75rem;
}

.product-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 300px);
  gap: var(--spacing-4);
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-row::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.product-row-item {
  scroll-snap-align: start;
}

.product-scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 260px);
  gap: var(--spacing-4);
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-scroll-row::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.rail-nav-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 1rem;
  margin-top: 0.72rem;
}

.rail-nav-dots[hidden] {
  display: none !important;
}

.rail-nav-dot {
  width: 0.55rem;
  height: 0.55rem;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: rgba(122, 97, 34, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  opacity: 0.78;
  transition:
    width var(--transition-fast),
    transform var(--transition-fast),
    opacity var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.rail-nav-dot:hover,
.rail-nav-dot:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.rail-nav-dot:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.rail-nav-dot.is-active {
  width: 1.65rem;
  background: #ffffff;
  box-shadow:
     0 8px 18px rgba(13, 34, 71, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  opacity: 1;
}

.product-card-horizontal {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
  min-width: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow:
    0 18px 36px rgba(13, 34, 71, 0.08),
    0 8px 18px rgba(13, 34, 71, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.94) inset;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    filter var(--transition-fast);
  cursor: pointer;
  touch-action: manipulation;
}

.product-card-horizontal-media {
  display: block;
  width: 100%;
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ffffff;
}

.product-card-horizontal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-horizontal .product-card-body {
  padding: var(--spacing-3);
}

.product-card-horizontal .product-card-title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--spacing-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-horizontal .product-card-price {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-2);
  margin-bottom: var(--spacing-3);
  flex-wrap: wrap;
}

.product-card-horizontal .product-card-price-current {
  font-size: var(--font-size-base);
  font-weight: 800;
  color: var(--color-accent);
}

.product-card-horizontal .product-card-price-old {
  font-size: var(--font-size-xs);
  color: var(--color-gray-400);
  text-decoration: line-through;
}

.catalog-section + .catalog-section {
  margin-top: var(--spacing-8);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(13, 34, 71, 0.05);
  box-shadow:
    0 18px 44px rgba(13, 34, 71, 0.07),
    0 6px 16px rgba(13, 34, 71, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.96) inset;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
  cursor: pointer;
  touch-action: manipulation;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 62px rgba(13, 34, 71, 0.1),
    0 12px 26px rgba(13, 34, 71, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.98) inset;
  border-color: rgba(13, 34, 71, 0.08);
}

.product-card:active {
  transform: translateY(-2px);
}

.product-card:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(245, 179, 14, 0.18),
    0 24px 56px rgba(13, 34, 71, 0.1),
    0 10px 22px rgba(13, 34, 71, 0.05);
}

.product-card-media {
  position: relative;
  z-index: 1;
  padding: 1.4rem 1.4rem 0.7rem;
  background: transparent;
}

.product-card-image-wrap {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1.02;
  min-height: 280px;
  padding: 1rem;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1);
  transition: opacity 280ms ease, transform var(--transition-slow);
}

.product-card-image.loaded {
  opacity: 1;
}

.product-card-image:not([data-lazy-media="true"]) {
  opacity: 1;
}

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

.product-card-hover-panel {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 1.6rem;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.product-card-quick-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.2rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(13, 34, 71, 0.08);
  color: var(--color-primary-strong);
  font-size: var(--font-size-xs);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(13, 34, 71, 0.12);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    opacity var(--transition-fast);
}

.product-card-quick-view:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(13, 34, 71, 0.14);
}

.product-card-quick-view-icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
}

.product-card-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  z-index: 1;
  max-width: calc(100% - 3.5rem);
}

.product-card-discount-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  padding: 0.35rem 0.48rem;
  border-radius: 0.55rem;
  background: var(--catalog-red);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.2;
}

.wishlist-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast);
}

.wishlist-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: var(--shadow-md);
}

.wishlist-btn.active {
  background: rgba(204, 90, 82, 0.12);
  color: var(--color-danger);
}

.wishlist-btn.heart-pop {
  animation: heartPop 360ms var(--transition-spring);
}

.wishlist-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  transition: stroke var(--transition-fast), fill var(--transition-fast);
}

.wishlist-btn.active .wishlist-icon {
  fill: currentColor;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.72rem;
  padding: 0.4rem 0.8rem 0.6rem;
  flex: 1;
  position: relative;
  z-index: 1;
  align-content: start;
}

.product-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

.product-card-title {
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.03em;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text-soft);
  font-size: var(--font-size-xs);
  font-weight: 700;
}

.product-rating-star {
  color: var(--color-primary-strong);
}

.product-card-meta {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
}

.product-card-price-wrap {
  display: grid;
  gap: 0.38rem;
  min-width: 0;
}

.product-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.product-card-price {
  font-size: clamp(1.35rem, 2vw, 1.62rem);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.04em;
}

.product-card-price-old {
  display: inline-flex;
  margin-left: 0.35rem;
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-card-caption {
  font-size: 0.82rem;
  color: var(--color-text-soft);
  font-weight: 700;
}

.product-card-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
}

.product-card-quick-add {
  flex: 1;
  min-height: 42px;
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  color: #0D1F42;
  font-size: var(--font-size-xs);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(245, 179, 14, 0.24);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.product-card-quick-add-corner {
  position: static;
  align-self: flex-end;
  width: 2.2rem;
  min-width: 2.2rem;
  height: 2.2rem;
  min-height: 2.2rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--color-primary-strong);
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.product-card-quick-add:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(245, 179, 14, 0.3);
}

.product-card-stock {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

.product-card-compact .product-card-title {
  font-size: var(--font-size-sm);
}

@media (max-width: 767px) {
  .product-grid {
    grid-template-columns: 1fr;
    row-gap: 0.75rem;
    column-gap: 0.75rem;
  }

  .product-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: stretch;
    min-height: auto;
    padding: 0.75rem;
    gap: 0.9rem;
    border-radius: 22px;
  }

  .product-card::before,
  .product-card::after {
    display: none;
  }

  .product-card:hover {
    transform: translateY(-2px);
    box-shadow:
      0 22px 38px rgba(13, 34, 71, 0.1),
      0 10px 18px rgba(13, 34, 71, 0.05),
      0 1px 0 rgba(255, 255, 255, 0.96) inset;
  }

  .product-card-media {
    padding: 0;
    background: transparent;
  }

  .product-card-image-wrap {
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 0;
    border-radius: 18px;
  }

  .product-card-hover-panel {
    display: none;
  }

  .product-card-body {
    min-width: 0;
    padding: 0.4rem 0.8rem 0.6rem;
    gap: 0.38rem;
  }

  .product-card-title {
    font-size: 0.96rem;
    line-height: 1.28;
    -webkit-line-clamp: 2;
  }

  .product-card-price {
    font-size: var(--font-size-base);
  }

  .product-card-caption {
    font-size: 0.76rem;
  }

  .product-card-horizontal {
    display: flex;
    grid-template-columns: none;
    align-items: stretch;
    min-height: 100%;
    padding: 0;
    gap: 0;
    border-radius: 22px;
  }

  .product-card-horizontal::before,
  .product-card-horizontal::after {
    display: none;
  }

  .product-card-horizontal-media {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .product-card-horizontal .product-card-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 0.82rem;
    gap: 0.42rem;
    align-content: start;
  }

  .product-card-horizontal .product-card-title {
    margin-bottom: 0;
    font-size: 0.92rem;
    line-height: 1.32;
    -webkit-line-clamp: 2;
  }

  .product-card-horizontal .product-card-price {
    margin-bottom: 0;
  }

  .product-card-horizontal .product-card-quick-add-corner {
    width: 1.9rem;
    min-width: 1.9rem;
    height: 1.9rem;
    min-height: 1.9rem;
    font-size: 1.35rem;
  }
}

.home-shell {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-8);
  flex: 1;
}

body[data-route="home"] .page-content,
body[data-route="employee-dashboard"] .page-content {
  position: relative;
  isolation: isolate;
  background: transparent;
  z-index: 1;
}

body[data-route="home"] .home-shell,
body[data-route="employee-dashboard"] .home-shell {
  position: relative;
  gap: clamp(1.4rem, 2.8vw, 2.2rem);
  padding: clamp(1rem, 2.4vw, 1.6rem);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

body[data-route="home"] .home-shell > *,
body[data-route="employee-dashboard"] .home-shell > * {
  position: relative;
  z-index: auto;
}

body[data-route="home"] .home-shell::before,
body[data-route="employee-dashboard"] .home-shell::before,
body[data-route="home"] .home-shell::after,
body[data-route="employee-dashboard"] .home-shell::after {
  content: none;
}

.home-mobile-intro {
  display: none;
}

.home-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--spacing-4);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-5);
}

.home-section-head-copy {
  display: grid;
  gap: 0.3rem;
  justify-items: start;
  min-width: 0;
}

.home-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent, #F5B30E);
  background: linear-gradient(135deg, rgba(245, 179, 14, 0.16), rgba(245, 179, 14, 0.06));
  border: 1px solid rgba(245, 179, 14, 0.18);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-full);
}

.home-section-head .section-title {
  margin: 0;
  font-size: var(--font-size-2xl);
  letter-spacing: -0.03em;
  color: var(--color-secondary);
}

.home-hero {
  display: grid;
  gap: var(--spacing-6);
}

.home-hero-rail {
  display: grid;
  gap: 0.7rem;
}

.home-catalog-promo-banner {
  width: 100%;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
}

.home-hero-carousel {
  position: relative;
  width: 100%;
  height: clamp(190px, 26vw, 300px);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  border-radius: var(--radius-2xl);
}

.home-hero-carousel::-webkit-scrollbar {
  display: none;
}

.home-hero-track {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  height: 100%;
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  will-change: opacity, transform;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 700ms;
}

.home-hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transform: translateX(0);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s;
}

.home-hero-slide.prepare-next {
  transform: translateX(6%);
}

.home-hero-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.home-hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: inherit;
  background: transparent;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.home-hero-carousel.is-auto-scrolling {
  scroll-behavior: smooth;
}

.home-hero-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 1rem;
  margin-top: 0.45rem;
  padding-inline: var(--page-padding);
}

.home-hero-dots[hidden] {
  display: none !important;
}

.home-hero-dot {
  position: relative;
  width: 0.52rem;
  height: 0.52rem;
  flex-shrink: 0;
  border: 1px solid rgba(13, 34, 71, 0.14);
  border-radius: var(--radius-full);
  background: #cbd2de;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 3px 8px rgba(13, 34, 71, 0.12);
  opacity: 0.78;
  transition: width var(--transition-fast), transform var(--transition-fast), opacity var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.home-hero-dot:hover,
.home-hero-dot:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.home-hero-dot:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.home-hero-dot.is-active {
  width: 1.55rem;
  border-color: rgba(224, 159, 0, 0.58);
  background: linear-gradient(90deg, #f5b30e, #ffd86a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), 0 5px 12px rgba(245, 179, 14, 0.28);
  opacity: 1;
}

@media (min-width: 1024px) {
  body[data-route="home"] .home-trust-section {
    display: none;
  }

  body[data-route="home"] .home-hero-rail,
  body[data-route="employee-dashboard"] .home-hero-rail {
    width: calc(100vw - (var(--page-padding) * 2));
    max-width: calc(100vw - (var(--page-padding) * 2));
    margin-left: calc(50% - 50vw + var(--page-padding));
    margin-top: calc(-1 * clamp(0.35rem, 0.9vw, 0.7rem));
  }

  body[data-route="home"] .home-hero-carousel,
  body[data-route="employee-dashboard"] .home-hero-carousel {
    padding: 0;
    height: clamp(248px, 31.5vw, 383px);
  }

  body[data-route="home"] .home-hero-track,
  body[data-route="employee-dashboard"] .home-hero-track {
    gap: 0;
    padding: 0;
  }

  body[data-route="home"] .home-hero-slide,
  body[data-route="employee-dashboard"] .home-hero-slide {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .home-hero-rail {
    gap: 0.6rem;
    justify-items: center;
  }

  .home-hero-carousel {
    width: 100%;
    justify-self: stretch;
    padding-inline: clamp(0.59rem, 3.42vw, 0.98rem);
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: 48dvh;
    min-height: 170px;
  }

  .home-hero-track {
    gap: 0;
    padding: 0;
  }

  .home-hero-slide {
    width: 100%;
    max-width: none;
    height: 100%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
  }

  .home-hero-slide-link {
    background: var(--color-accent);
  }

  .home-hero-slide-img {
    object-fit: cover;
    object-position: center;
  }

  .home-hero-dots {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-self: center;
    justify-self: center;
    padding-inline: 0;
    margin-inline: auto;
  }

}


.home-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(0.75rem, 2vw, 1rem);
  row-gap: clamp(1.75rem, 3vw, 2.25rem);
}

@media (min-width: 1024px) {
  body[data-route="home"] .home-shell .home-categories,
  body[data-route="employee-dashboard"] .home-shell .home-categories {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.4rem;
  }

  body[data-route="home"] .home-shell .home-categories::-webkit-scrollbar,
  body[data-route="employee-dashboard"] .home-shell .home-categories::-webkit-scrollbar {
    display: none;
  }

  body[data-route="home"] .home-shell .home-category-chip,
  body[data-route="employee-dashboard"] .home-shell .home-category-chip {
    max-width: none;
  }

  body[data-route="home"] .home-shell .home-category-icon,
  body[data-route="employee-dashboard"] .home-shell .home-category-icon {
    width: clamp(96px, 8vw, 132px);
    height: clamp(96px, 8vw, 132px);
  }

  body[data-route="home"] .home-shell .home-category-name,
  body[data-route="employee-dashboard"] .home-shell .home-category-name {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: unset;
  }
}

.home-category-chip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  max-width: 172px;
  margin: 0 auto;
  min-height: 0;
  padding: 0.35rem 0.2rem 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition:
    transform 220ms ease-out,
    filter 220ms ease-out;
  will-change: transform, filter;
}

.home-category-chip.visible {
  animation: revealUp 420ms var(--transition-base) forwards;
}

.home-category-chip:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 10px 18px rgba(245, 166, 35, 0.18));
}

.home-category-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #eba100;
  color: var(--color-primary-strong);
  box-shadow:
    0 10px 24px rgba(241, 168, 29, 0.35),
    0 22px 48px rgba(255, 223, 130, 0.7),
    0 6px 18px rgba(255, 213, 103, 0.75);
  overflow: visible;
  transition: transform 220ms ease-out, box-shadow 220ms ease-out, border-color 220ms ease-out;
}

.home-category-icon::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: rgba(255, 226, 156, 0.78);
  border: 4px solid #eba100;
  box-shadow:
    0 0 0 10px rgba(255, 210, 116, 0.3),
    0 12px 28px rgba(245, 166, 35, 0.24),
    0 0 22px rgba(255, 190, 59, 0.26);
  z-index: -1;
  transition: box-shadow 220ms ease-out, border-color 220ms ease-out;
}

.home-category-chip:hover .home-category-icon::before {
  border-color: #f97316;
  box-shadow:
    0 0 0 12px rgba(255, 210, 116, 0.34),
    0 16px 34px rgba(249, 115, 22, 0.3),
    0 0 28px rgba(249, 115, 22, 0.34);
}

.home-category-chip:hover .home-category-icon {
  transform: translateY(-2px) scale(1.02);
  border-color: #f97316;
  box-shadow:
    0 14px 30px rgba(241, 168, 29, 0.4),
    0 26px 54px rgba(255, 223, 130, 0.8),
    0 8px 22px rgba(255, 213, 103, 0.85);
}

.home-category-icon .home-category-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-position: center;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}

body[data-route="home"] .home-category-icon .home-category-img,
body[data-route="employee-dashboard"] .home-category-icon .home-category-img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
}

.home-category-name {
  max-width: min(100%, 148px);
  margin-top: -0.95rem;
  padding: 0.28rem 0.85rem 0.32rem;
  border: 3px solid #eba100;
  border-radius: 999px;
  background: #ffffff;
  box-shadow:
    0 8px 16px rgba(245, 166, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.12;
  color: #2b2415;
  display: -webkit-inline-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-wrap: balance;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .home-categories {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2.25rem;
    row-gap: 3rem;
  }

  .home-category-chip {
    max-width: 208px;
    padding-top: 0.55rem;
  }

  .home-category-icon {
    width: 152px;
    height: 152px;
  }

  .home-category-icon::before {
    inset: -16px;
    border-width: 4px;
  }

  .home-category-name {
    max-width: 172px;
    margin-top: -1.2rem;
    padding: 0.42rem 1rem 0.48rem;
    font-size: 1rem;
  }
}

.home-categories-header {
  margin-bottom: 0;
}

body[data-route="home"] .home-categories-section,
body[data-route="employee-dashboard"] .home-categories-section,
body[data-route="home"] .home-featured-section,
body[data-route="employee-dashboard"] .home-featured-section,
body[data-route="home"] .home-arrivals-section,
body[data-route="employee-dashboard"] .home-arrivals-section {
  position: relative;
  padding: clamp(0.9rem, 2vw, 1.2rem) 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

body[data-route="home"] .home-categories-section,
body[data-route="employee-dashboard"] .home-categories-section {
  padding-top: var(--spacing-6);
  margin-top: 0;
  position: relative;
  z-index: 1;
}

body[data-route="home"] .home-trust-section,
body[data-route="employee-dashboard"] .home-trust-section {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.4rem) 0 0;
  margin-top: 0;
  z-index: 2;
}

body[data-route="home"] .home-trust-list,
body[data-route="employee-dashboard"] .home-trust-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0 var(--page-padding);
  max-width: 100%;
  margin: 0 auto;
}

body[data-route="home"] .home-trust-item,
body[data-route="employee-dashboard"] .home-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-width: 0;
  min-height: 142px;
  padding: 0.65rem 1rem;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform 180ms ease-out;
}

body[data-route="home"] .home-trust-item:hover,
body[data-route="employee-dashboard"] .home-trust-item:hover {
  transform: translateY(-1px);
}

body[data-route="home"] .home-trust-icon,
body[data-route="employee-dashboard"] .home-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #fff4cf;
  border: 1px solid rgba(245, 179, 14, 0.1);
  color: #111827;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(245, 179, 14, 0.1);
}

body[data-route="home"] .home-trust-icon .ui-icon,
body[data-route="employee-dashboard"] .home-trust-icon .ui-icon {
  width: 36px;
  height: 36px;
}

body[data-route="home"] .home-trust-label,
body[data-route="employee-dashboard"] .home-trust-label {
  font-size: clamp(0.84rem, 1.35vw, 1rem);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.home-search-section {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0 0.25rem;
  margin-top: -0.6rem;
  position: relative;
  z-index: 3;
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-search-stage {
  display: grid;
  width: min(100%, 560px);
  min-width: 0;
}

#home-search-suggestions {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  width: min(100%, 560px);
  max-width: 560px;
  margin: 0.75rem auto 0;
  z-index: 1;
}

.home-search-section.home-search-has-suggestions {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@keyframes homeSearchDockIn {
  from {
    opacity: 0;
    transform: translate(-50%, 18px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.home-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: min(100%, 560px);
  padding: 0.4rem 0.5rem 0.4rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid var(--color-accent);
  box-shadow:
    0 14px 32px rgba(245, 179, 14, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    width 260ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-strong);
  padding: 0.35rem 0;
}

.home-search-input::placeholder {
  color: var(--color-secondary);
  opacity: 0.62;
  font-weight: 500;
}

.home-search-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-search-icon {
  color: var(--color-accent);
}

.home-search-icon .ui-icon {
  width: 22px;
  height: 22px;
}

.home-search-submit {
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  background: linear-gradient(180deg, var(--color-accent), #e09a00);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  transition: filter 180ms ease-out, transform 180ms ease-out;
}

.home-search-submit:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

@media (min-width: 1024px) {
  body[data-route="home"] .home-search-section,
  body[data-route="employee-dashboard"] .home-search-section {
    display: flex;
  }

  body.home-search-in-header[data-route="home"] .home-search-section,
  body.home-search-in-header[data-route="employee-dashboard"] .home-search-section {
    margin-top: 0;
    padding: 0;
    width: 100%;
    max-width: 560px;
    animation: none;
  }

  body.home-search-in-header[data-route="home"] .home-search-section .home-search,
  body.home-search-in-header[data-route="employee-dashboard"] .home-search-section .home-search {
    width: 100%;
    max-width: 560px;
    min-height: 58px;
    padding: 0.42rem 0.55rem 0.42rem 1rem;
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(245, 179, 14, 0.34);
    box-shadow:
      0 10px 24px rgba(13, 34, 71, 0.08),
      0 2px 8px rgba(245, 179, 14, 0.08);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    transform: none;
  }

  body.home-search-in-header[data-route="home"] .home-search-section .home-search-input,
  body.home-search-in-header[data-route="employee-dashboard"] .home-search-section .home-search-input {
    font-size: 1rem;
  }

  body.home-search-in-header[data-route="home"] .home-search-section .home-search-submit,
  body.home-search-in-header[data-route="employee-dashboard"] .home-search-section .home-search-submit {
    padding: 0.72rem 1.22rem;
    font-size: 0.92rem;
  }

  body.home-search-in-header[data-route="home"] #home-search-suggestions,
  body.home-search-in-header[data-route="employee-dashboard"] #home-search-suggestions {
    width: min(100%, 560px);
    max-width: 560px;
    z-index: 280;
  }
}

@media (min-width: 1440px) {
  body[data-route="home"] .home-shell,
  body[data-route="employee-dashboard"] .home-shell {
    gap: clamp(2rem, 2.4vw, 2.7rem);
    padding: clamp(1.4rem, 1.8vw, 2rem) clamp(1.6rem, 2.2vw, 2.4rem) clamp(2.2rem, 2.8vw, 3rem);
  }

  body[data-route="home"] .home-hero-carousel,
  body[data-route="employee-dashboard"] .home-hero-carousel {
    height: clamp(330px, 28vw, 430px);
    border-radius: 2rem;
  }

  body[data-route="home"] .catalog-promo-banner,
  body[data-route="employee-dashboard"] .catalog-promo-banner {
    --home-promo-copy-width: min(46%, 520px);
    min-height: clamp(320px, 28vw, 410px);
    border-radius: 2rem;
  }

  body[data-route="home"] .catalog-promo-copy,
  body[data-route="employee-dashboard"] .catalog-promo-copy {
    padding: clamp(1.8rem, 2.4vw, 2.7rem);
  }

  body[data-route="home"] .catalog-promo-copy h1,
  body[data-route="employee-dashboard"] .catalog-promo-copy h1 {
    font-size: clamp(2.6rem, 3vw, 3.6rem);
  }

  body[data-route="home"] .catalog-promo-copy p,
  body[data-route="employee-dashboard"] .catalog-promo-copy p {
    max-width: 30ch;
    font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  }

  body[data-route="home"] .home-trust-section,
  body[data-route="employee-dashboard"] .home-trust-section {
    padding-top: clamp(2rem, 2.7vw, 2.8rem);
  }

  body[data-route="home"] .home-trust-list,
  body[data-route="employee-dashboard"] .home-trust-list {
    max-width: min(100%, 1460px);
    padding-inline: clamp(1rem, 2vw, 1.8rem);
  }

  body[data-route="home"] .home-trust-item,
  body[data-route="employee-dashboard"] .home-trust-item {
    min-height: 156px;
    padding-inline: clamp(0.9rem, 1.3vw, 1.4rem);
  }

  body[data-route="home"] .home-trust-icon,
  body[data-route="employee-dashboard"] .home-trust-icon {
    width: 90px;
    height: 90px;
  }

  body[data-route="home"] .home-trust-icon .ui-icon,
  body[data-route="employee-dashboard"] .home-trust-icon .ui-icon {
    width: 40px;
    height: 40px;
  }

  body[data-route="home"] .home-trust-label,
  body[data-route="employee-dashboard"] .home-trust-label {
    font-size: clamp(0.94rem, 1vw, 1.08rem);
  }

  body[data-route="home"] .home-categories,
  body[data-route="employee-dashboard"] .home-categories {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: clamp(1rem, 1.6vw, 1.5rem);
    row-gap: clamp(2rem, 2.4vw, 2.6rem);
    max-width: min(100%, 1480px);
    margin-inline: auto;
  }

  body[data-route="home"] .home-category-chip,
  body[data-route="employee-dashboard"] .home-category-chip {
    max-width: 186px;
  }

  body[data-route="home"] .home-category-icon,
  body[data-route="employee-dashboard"] .home-category-icon {
    width: 132px;
    height: 132px;
  }

  body[data-route="home"] .home-category-name,
  body[data-route="employee-dashboard"] .home-category-name {
    max-width: 160px;
    font-size: 0.96rem;
  }

  body[data-route="home"] .home-featured-section .product-grid,
  body[data-route="employee-dashboard"] .home-featured-section .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.5rem, 0.8vw, 0.75rem);
  }

  body[data-route="home"] .home-featured-section .product-card-image-wrap,
  body[data-route="employee-dashboard"] .home-featured-section .product-card-image-wrap {
    height: 300px;
    padding: 1rem;
  }
}

@media (min-width: 1680px) {
  body[data-route="home"] .home-shell,
  body[data-route="employee-dashboard"] .home-shell {
    gap: 2.6rem;
    padding-inline: clamp(2rem, 3vw, 3.1rem);
  }

  body[data-route="home"] .home-hero-carousel,
  body[data-route="employee-dashboard"] .home-hero-carousel {
    height: clamp(360px, 26vw, 470px);
  }

  body[data-route="home"] .catalog-promo-copy,
  body[data-route="employee-dashboard"] .catalog-promo-copy {
    --home-promo-copy-width: min(44%, 560px);
  }

  body[data-route="home"] .home-trust-list,
  body[data-route="employee-dashboard"] .home-trust-list,
  body[data-route="home"] .home-featured-section .product-grid,
  body[data-route="employee-dashboard"] .home-featured-section .product-grid {
    max-width: 1560px;
    margin-inline: auto;
  }

  body[data-route="home"] .home-featured-section .product-grid,
  body[data-route="employee-dashboard"] .home-featured-section .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1920px) {
  body.home-search-in-header[data-route="home"] .home-search-section .home-search,
  body.home-search-in-header[data-route="employee-dashboard"] .home-search-section .home-search {
    max-width: clamp(360px, 30vw, 680px);
  }

  body[data-route="home"] .home-shell,
  body[data-route="employee-dashboard"] .home-shell {
    gap: clamp(2.7rem, 2.4vw, 3.2rem);
    padding: 1.8rem clamp(2.4rem, 4vw, 4.6rem) 3.2rem;
  }

  body[data-route="home"] .home-hero-carousel,
  body[data-route="employee-dashboard"] .home-hero-carousel {
    height: clamp(390px, 24vw, 500px);
    border-radius: 2.15rem;
  }

  body[data-route="home"] .catalog-promo-banner,
  body[data-route="employee-dashboard"] .catalog-promo-banner {
    --home-promo-copy-width: min(42%, 600px);
    min-height: clamp(360px, 24vw, 470px);
    border-radius: 2.15rem;
  }

  body[data-route="home"] .catalog-promo-banner .catalog-promo-image,
  body[data-route="employee-dashboard"] .catalog-promo-banner .catalog-promo-image {
    object-fit: contain;
    object-position: left center;
  }

  body[data-route="home"] .catalog-promo-copy,
  body[data-route="employee-dashboard"] .catalog-promo-copy {
    padding: 2.2rem clamp(2.4rem, 2.7vw, 3rem);
  }

  body[data-route="home"] .catalog-promo-copy h1,
  body[data-route="employee-dashboard"] .catalog-promo-copy h1 {
    font-size: clamp(3rem, 2.8vw, 4rem);
  }

  body[data-route="home"] .catalog-promo-copy p,
  body[data-route="employee-dashboard"] .catalog-promo-copy p {
    max-width: 32ch;
    font-size: 1.04rem;
  }

  body[data-route="home"] .home-trust-list,
  body[data-route="employee-dashboard"] .home-trust-list,
  body[data-route="home"] .home-categories,
  body[data-route="employee-dashboard"] .home-categories,
  body[data-route="home"] .home-featured-section .product-grid,
  body[data-route="employee-dashboard"] .home-featured-section .product-grid {
    max-width: 1680px;
    margin-inline: auto;
  }

  body[data-route="home"] .home-trust-section .home-section-head,
  body[data-route="employee-dashboard"] .home-trust-section .home-section-head,
  body[data-route="home"] .home-categories-section .home-section-head,
  body[data-route="employee-dashboard"] .home-categories-section .home-section-head,
  body[data-route="home"] .home-featured-section .home-section-head,
  body[data-route="employee-dashboard"] .home-featured-section .home-section-head {
    max-width: 1680px;
    margin-inline: auto;
    padding-inline: 0.25rem;
  }

  body[data-route="home"] .home-trust-item,
  body[data-route="employee-dashboard"] .home-trust-item {
    min-height: 164px;
  }

  body[data-route="home"] .home-categories {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    column-gap: 1.4rem;
    row-gap: 2.7rem;
  }

  body[data-route="employee-dashboard"] .home-categories {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 1.35rem;
    row-gap: 2.5rem;
  }

  body[data-route="home"] .home-category-chip,
  body[data-route="employee-dashboard"] .home-category-chip {
    max-width: 192px;
  }

  body[data-route="home"] .home-featured-section .product-grid,
  body[data-route="employee-dashboard"] .home-featured-section .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.85rem;
  }

  body[data-route="home"] .home-featured-section .product-card-image-wrap,
  body[data-route="employee-dashboard"] .home-featured-section .product-card-image-wrap {
    height: 320px;
    padding: 1.1rem;
  }
}

@media (min-width: 2560px) {
  body.home-search-in-header[data-route="home"] .home-search-section .home-search,
  body.home-search-in-header[data-route="employee-dashboard"] .home-search-section .home-search {
    max-width: clamp(420px, 28vw, 760px);
  }

  body[data-route="home"] .home-shell,
  body[data-route="employee-dashboard"] .home-shell {
    gap: 3.1rem;
    padding: 2rem clamp(3.2rem, 5vw, 6rem) 3.8rem;
  }

  body[data-route="home"] .home-hero-carousel,
  body[data-route="employee-dashboard"] .home-hero-carousel {
    height: clamp(430px, 21vw, 560px);
    border-radius: 2.4rem;
  }

  body[data-route="home"] .catalog-promo-banner,
  body[data-route="employee-dashboard"] .catalog-promo-banner {
    --home-promo-copy-width: min(39%, 680px);
    min-height: clamp(400px, 22vw, 520px);
    border-radius: 2.4rem;
  }

  body[data-route="home"] .catalog-promo-banner .catalog-promo-image,
  body[data-route="employee-dashboard"] .catalog-promo-banner .catalog-promo-image {
    object-fit: contain;
    object-position: left center;
  }

  body[data-route="home"] .catalog-promo-copy,
  body[data-route="employee-dashboard"] .catalog-promo-copy {
    padding: 2.5rem 3rem;
  }

  body[data-route="home"] .catalog-promo-copy h1,
  body[data-route="employee-dashboard"] .catalog-promo-copy h1 {
    font-size: clamp(3.4rem, 2.35vw, 4.6rem);
  }

  body[data-route="home"] .home-trust-list,
  body[data-route="employee-dashboard"] .home-trust-list,
  body[data-route="home"] .home-categories,
  body[data-route="employee-dashboard"] .home-categories,
  body[data-route="home"] .home-featured-section .product-grid,
  body[data-route="employee-dashboard"] .home-featured-section .product-grid {
    max-width: 1880px;
    margin-inline: auto;
  }

  body[data-route="home"] .home-trust-section .home-section-head,
  body[data-route="employee-dashboard"] .home-trust-section .home-section-head,
  body[data-route="home"] .home-categories-section .home-section-head,
  body[data-route="employee-dashboard"] .home-categories-section .home-section-head,
  body[data-route="home"] .home-featured-section .home-section-head,
  body[data-route="employee-dashboard"] .home-featured-section .home-section-head {
    max-width: 1880px;
    margin-inline: auto;
    padding-inline: 0.3rem;
  }

  body[data-route="home"] .home-categories {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    column-gap: 1.6rem;
  }

  body[data-route="employee-dashboard"] .home-categories {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    column-gap: 1.5rem;
  }

  body[data-route="home"] .home-category-icon,
  body[data-route="employee-dashboard"] .home-category-icon {
    width: 138px;
    height: 138px;
  }

  body[data-route="home"] .home-featured-section .product-grid,
  body[data-route="employee-dashboard"] .home-featured-section .product-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
  }

  body[data-route="home"] .home-featured-section .product-card-image-wrap,
  body[data-route="employee-dashboard"] .home-featured-section .product-card-image-wrap {
    height: 340px;
    padding: 1.15rem;
  }
}

@media (min-width: 1024px) and (max-width: 1180px) {
  body[data-route="home"] .home-shell,
  body[data-route="employee-dashboard"] .home-shell {
    gap: 1.8rem;
    padding: 1rem 1rem 1.4rem;
  }

  body[data-route="home"] .home-hero-rail,
  body[data-route="employee-dashboard"] .home-hero-rail {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  body[data-route="home"] .home-hero-carousel,
  body[data-route="employee-dashboard"] .home-hero-carousel {
    height: clamp(236px, 28vw, 300px);
  }

  body[data-route="home"] .catalog-promo-banner,
  body[data-route="employee-dashboard"] .catalog-promo-banner {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.88fr);
    gap: 1rem;
    padding: 1.15rem 1.15rem;
    overflow: hidden;
  }

  body[data-route="home"] .catalog-promo-copy,
  body[data-route="employee-dashboard"] .catalog-promo-copy {
    min-width: 0;
  }

  body[data-route="home"] .catalog-promo-copy h1,
  body[data-route="employee-dashboard"] .catalog-promo-copy h1 {
    font-size: clamp(1.55rem, 2.2vw, 2rem);
  }

  body[data-route="home"] .catalog-promo-copy p,
  body[data-route="employee-dashboard"] .catalog-promo-copy p {
    font-size: 0.92rem;
  }

  body[data-route="home"] .catalog-promo-image,
  body[data-route="employee-dashboard"] .catalog-promo-image {
    object-fit: contain;
    object-position: left center;
  }

  body[data-route="home"] .catalog-promo-badge,
  body[data-route="employee-dashboard"] .catalog-promo-badge {
    top: 0.9rem;
    right: 0.9rem;
    transform: scale(0.9);
    transform-origin: top right;
  }

  body.home-search-in-header[data-route="home"] .home-search-section .home-search,
  body.home-search-in-header[data-route="employee-dashboard"] .home-search-section .home-search {
    max-width: min(100%, 500px);
  }

  body[data-route="home"] .home-trust-list,
  body[data-route="employee-dashboard"] .home-trust-list {
    padding: 0 0.4rem;
  }

  body[data-route="home"] .home-trust-item,
  body[data-route="employee-dashboard"] .home-trust-item {
    min-height: 126px;
    padding: 0.55rem 0.45rem;
  }

  body[data-route="home"] .home-trust-icon,
  body[data-route="employee-dashboard"] .home-trust-icon {
    width: 68px;
    height: 68px;
  }

  body[data-route="home"] .home-trust-icon .ui-icon,
  body[data-route="employee-dashboard"] .home-trust-icon .ui-icon {
    width: 30px;
    height: 30px;
  }

  body[data-route="home"] .home-trust-label,
  body[data-route="employee-dashboard"] .home-trust-label {
    font-size: 0.8rem;
  }

  body[data-route="home"] .home-categories,
  body[data-route="employee-dashboard"] .home-categories {
    column-gap: 1.1rem;
    row-gap: 1.9rem;
  }

  body[data-route="home"] .home-category-chip,
  body[data-route="employee-dashboard"] .home-category-chip {
    max-width: 150px;
  }

  body[data-route="home"] .home-category-icon,
  body[data-route="employee-dashboard"] .home-category-icon {
    width: 96px;
    height: 96px;
  }

  body[data-route="home"] .home-category-name,
  body[data-route="employee-dashboard"] .home-category-name {
    max-width: 118px;
    margin-top: -0.78rem;
    font-size: 0.8rem;
  }

  body[data-route="home"] .home-featured-section .product-grid,
  body[data-route="employee-dashboard"] .home-featured-section .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
  }

  body[data-route="home"] .home-featured-section .product-card-image-wrap,
  body[data-route="employee-dashboard"] .home-featured-section .product-card-image-wrap {
    height: 210px;
    padding: 0.75rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  body[data-route="home"] .home-shell,
  body[data-route="employee-dashboard"] .home-shell {
    gap: 1.65rem;
    padding: 1.1rem 1.1rem 1.5rem;
  }

  body[data-route="home"] .home-hero-rail,
  body[data-route="employee-dashboard"] .home-hero-rail {
    gap: 0.85rem;
  }

  body[data-route="home"] .home-hero-carousel,
  body[data-route="employee-dashboard"] .home-hero-carousel {
    height: clamp(230px, 34vw, 310px);
    border-radius: 1.6rem;
  }

  body[data-route="home"] .catalog-promo-banner,
  body[data-route="employee-dashboard"] .catalog-promo-banner {
    grid-template-columns: minmax(0, 1.02fr) minmax(240px, 0.98fr);
    gap: 1rem;
    padding: 1.15rem 1.2rem;
    overflow: hidden;
  }

  body[data-route="home"] .catalog-promo-copy,
  body[data-route="employee-dashboard"] .catalog-promo-copy {
    gap: 0.72rem;
    min-width: 0;
  }

  body[data-route="home"] .catalog-promo-copy h1,
  body[data-route="employee-dashboard"] .catalog-promo-copy h1 {
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    line-height: 1.02;
  }

  body[data-route="home"] .catalog-promo-copy p,
  body[data-route="employee-dashboard"] .catalog-promo-copy p {
    font-size: 0.95rem;
  }

  body[data-route="home"] .catalog-promo-image,
  body[data-route="employee-dashboard"] .catalog-promo-image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
  }

  body[data-route="home"] .catalog-promo-badge,
  body[data-route="employee-dashboard"] .catalog-promo-badge {
    top: 1rem;
    right: 1rem;
    transform: scale(0.92);
    transform-origin: top right;
  }

  body[data-route="home"] .home-trust-section,
  body[data-route="employee-dashboard"] .home-trust-section {
    padding-top: 1rem;
  }

  body[data-route="home"] .home-trust-list,
  body[data-route="employee-dashboard"] .home-trust-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0 0.35rem;
  }

  body[data-route="home"] .home-trust-item,
  body[data-route="employee-dashboard"] .home-trust-item {
    min-height: 120px;
    padding: 0.45rem 0.4rem;
    gap: 0.5rem;
  }

  body[data-route="home"] .home-trust-icon,
  body[data-route="employee-dashboard"] .home-trust-icon {
    width: 62px;
    height: 62px;
  }

  body[data-route="home"] .home-trust-icon .ui-icon,
  body[data-route="employee-dashboard"] .home-trust-icon .ui-icon {
    width: 28px;
    height: 28px;
  }

  body[data-route="home"] .home-trust-label,
  body[data-route="employee-dashboard"] .home-trust-label {
    font-size: 0.74rem;
    line-height: 1.16;
  }

  body[data-route="home"] .home-categories,
  body[data-route="employee-dashboard"] .home-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 1.95rem;
  }

  body[data-route="home"] .home-category-chip,
  body[data-route="employee-dashboard"] .home-category-chip {
    max-width: 158px;
    padding-top: 0.35rem;
  }

  body[data-route="home"] .home-category-icon,
  body[data-route="employee-dashboard"] .home-category-icon {
    width: 108px;
    height: 108px;
  }

  body[data-route="home"] .home-category-icon::before,
  body[data-route="employee-dashboard"] .home-category-icon::before {
    inset: -10px;
  }

  body[data-route="home"] .home-category-name,
  body[data-route="employee-dashboard"] .home-category-name {
    max-width: 124px;
    margin-top: -0.82rem;
    padding: 0.28rem 0.7rem 0.34rem;
    font-size: 0.82rem;
  }

  body[data-route="home"] .home-featured-section .product-grid,
  body[data-route="employee-dashboard"] .home-featured-section .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  body[data-route="home"] .home-arrivals-section .product-row,
  body[data-route="employee-dashboard"] .home-arrivals-section .product-row {
    grid-auto-columns: minmax(240px, calc(50% - 0.5rem));
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  body[data-route="home"] .home-featured-section .product-card,
  body[data-route="employee-dashboard"] .home-featured-section .product-card,
  body[data-route="home"] .home-arrivals-section .product-card,
  body[data-route="employee-dashboard"] .home-arrivals-section .product-card {
    min-width: 0;
    width: 100%;
  }

  body[data-route="home"] .home-featured-section .product-card-image-wrap,
  body[data-route="employee-dashboard"] .home-featured-section .product-card-image-wrap,
  body[data-route="home"] .home-arrivals-section .product-card-image-wrap,
  body[data-route="employee-dashboard"] .home-arrivals-section .product-card-image-wrap {
    height: clamp(180px, 24vw, 220px);
    min-height: 0;
  }
}

@media (max-width: 1023px) {
  body[data-route="home"] .home-trust-section,
  body[data-route="employee-dashboard"] .home-trust-section {
    padding-top: 0.75rem;
  }

  body[data-route="home"] .home-trust-list,
  body[data-route="employee-dashboard"] .home-trust-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 0 0.5rem 0.4rem;
  }

  body[data-route="home"] .home-trust-item,
  body[data-route="employee-dashboard"] .home-trust-item {
    min-height: 88px;
    padding: 0.34rem 0.17rem;
    gap: 0.38rem;
  }

  body[data-route="home"] .home-trust-icon,
  body[data-route="employee-dashboard"] .home-trust-icon {
    width: 46px;
    height: 46px;
  }

  body[data-route="home"] .home-trust-icon .ui-icon,
  body[data-route="employee-dashboard"] .home-trust-icon .ui-icon {
    width: 21px;
    height: 21px;
  }

  body[data-route="home"] .home-trust-label,
  body[data-route="employee-dashboard"] .home-trust-label {
    font-size: 0.58rem;
  }

  body[data-route="home"] .home-categories-section,
  body[data-route="employee-dashboard"] .home-categories-section {
    padding-top: 0.5rem;
    margin-top: 0;
  }
}

@media (max-width: 420px) {
  body[data-route="home"] .home-trust-icon,
  body[data-route="employee-dashboard"] .home-trust-icon {
    width: 39px;
    height: 39px;
  }

  body[data-route="home"] .home-trust-icon .ui-icon,
  body[data-route="employee-dashboard"] .home-trust-icon .ui-icon {
    width: 19px;
    height: 19px;
  }

  body[data-route="home"] .home-trust-label,
  body[data-route="employee-dashboard"] .home-trust-label {
    font-size: 0.53rem;
  }
}

body[data-route="home"] .home-featured-section,
body[data-route="employee-dashboard"] .home-featured-section {
  border-top: 1px solid rgba(105, 76, 10, 0.12);
}

body[data-route="home"] .home-arrivals-section,
body[data-route="employee-dashboard"] .home-arrivals-section {
  border-top: 1px solid rgba(105, 76, 10, 0.12);
}

body[data-route="home"] .home-categories-section .section-title,
body[data-route="employee-dashboard"] .home-categories-section .section-title,
body[data-route="home"] .home-featured-section .section-title,
body[data-route="employee-dashboard"] .home-featured-section .section-title,
body[data-route="home"] .home-arrivals-section .section-title,
body[data-route="employee-dashboard"] .home-arrivals-section .section-title {
  color: var(--color-secondary);
}

body[data-route="home"] .home-categories-section .section-subtitle,
body[data-route="employee-dashboard"] .home-categories-section .section-subtitle,
body[data-route="home"] .home-featured-section .section-subtitle,
body[data-route="employee-dashboard"] .home-featured-section .section-subtitle,
body[data-route="home"] .home-arrivals-section .section-subtitle,
body[data-route="employee-dashboard"] .home-arrivals-section .section-subtitle {
  color: var(--color-text-soft);
}

body[data-route="home"] .home-mobile-intro .eyebrow,
body[data-route="employee-dashboard"] .home-mobile-intro .eyebrow {
  background: rgba(13, 34, 71, 0.1);
  border-color: rgba(13, 34, 71, 0.16);
  color: var(--color-primary-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

body[data-route="home"] .home-category-chip,
body[data-route="employee-dashboard"] .home-category-chip {
  --category-aura-bg: transparent;
  --category-aura-radius: 50%;
  --category-icon-bg: #ffffff;
  --category-icon-border: rgba(13, 34, 71, 0.12);
  --category-icon-radius: 50%;
  --category-icon-clip: none;
  --category-icon-shadow: 0 12px 26px rgba(13, 34, 71, 0.14);
  --category-icon-accent: var(--color-primary-strong);
}

body[data-route="home"] .home-category-chip:hover,
body[data-route="employee-dashboard"] .home-category-chip:hover,
body[data-route="home"] .home-category-chip:active,
body[data-route="employee-dashboard"] .home-category-chip:active {
  transform: translateY(-3px);
  filter: drop-shadow(0 6px 14px rgba(245, 179, 14, 0.18));
}

body[data-route="home"] .home-category-chip:hover::before,
body[data-route="employee-dashboard"] .home-category-chip:hover::before,
body[data-route="home"] .home-category-chip:active::before,
body[data-route="employee-dashboard"] .home-category-chip:active::before {
  box-shadow:
    0 18px 30px rgba(13, 34, 71, 0.16),
    0 8px 18px rgba(245, 179, 14, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

body[data-route="home"] .home-category-chip:focus-visible,
body[data-route="employee-dashboard"] .home-category-chip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(111, 75, 5, 0.18);
}

body[data-route="home"] .home-category-icon,
body[data-route="employee-dashboard"] .home-category-icon {
  width: 80px;
  height: 80px;
  background: transparent;
  box-shadow: none;
  color: var(--category-icon-accent);
  z-index: 1;
}

body[data-route="home"] .home-category-icon::before,
body[data-route="employee-dashboard"] .home-category-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--category-icon-bg);
  border: 1px solid var(--category-icon-border);
  box-shadow: var(--category-icon-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: box-shadow 250ms ease-out, border-color 250ms ease-out, background 250ms ease-out;
  z-index: -1;
}

body[data-route="home"] .home-category-chip:hover .home-category-icon,
body[data-route="employee-dashboard"] .home-category-chip:hover .home-category-icon,
body[data-route="home"] .home-category-chip:active .home-category-icon,
body[data-route="employee-dashboard"] .home-category-chip:active .home-category-icon {
  transform: scale(1.06);
}

body[data-route="home"] .home-category-chip:hover .home-category-icon::before,
body[data-route="employee-dashboard"] .home-category-chip:hover .home-category-icon::before,
body[data-route="home"] .home-category-chip:active .home-category-icon::before,
body[data-route="employee-dashboard"] .home-category-chip:active .home-category-icon::before {
  border-color: rgba(245, 179, 14, 0.34);
  box-shadow:
    0 18px 30px rgba(13, 34, 71, 0.16),
    0 8px 18px rgba(245, 179, 14, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.home-category-icon > .ui-icon.home-category-svg {
  width: 3.4rem;
  height: 3.4rem;
  color: var(--color-primary-strong);
  filter:
    drop-shadow(0 2px 2px rgba(255, 255, 255, 0.5))
    drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

body[data-route="home"] .home-category-name,
body[data-route="employee-dashboard"] .home-category-name {
  color: #3a2d0d;
  position: relative;
  z-index: 1;
}

body[data-route="home"] .home-category-chip[data-category-shape="electronics"],
body[data-route="employee-dashboard"] .home-category-chip[data-category-shape="electronics"] {
  --category-icon-bg: #ffffff;
  --category-icon-border: rgba(196, 214, 241, 0.9);
  --category-icon-shadow: 0 14px 28px rgba(155, 184, 228, 0.18);
  --category-icon-accent: #4f5c76;
}

body[data-route="home"] .home-category-chip[data-category-shape="fashion"],
body[data-route="employee-dashboard"] .home-category-chip[data-category-shape="fashion"] {
  --category-icon-bg: #ffffff;
  --category-icon-border: rgba(238, 209, 218, 0.88);
  --category-icon-shadow: 0 14px 26px rgba(220, 171, 188, 0.16);
  --category-icon-accent: #7c5865;
}

body[data-route="home"] .home-category-chip[data-category-shape="home-office"],
body[data-route="employee-dashboard"] .home-category-chip[data-category-shape="home-office"] {
  --category-icon-bg: #ffffff;
  --category-icon-border: rgba(202, 213, 228, 0.9);
  --category-icon-shadow: 0 14px 28px rgba(174, 185, 205, 0.16);
  --category-icon-accent: #586173;
}

body[data-route="home"] .home-category-chip[data-category-shape="groceries"],
body[data-route="employee-dashboard"] .home-category-chip[data-category-shape="groceries"] {
  --category-icon-bg: #ffffff;
  --category-icon-border: rgba(210, 229, 176, 0.92);
  --category-icon-shadow: 0 14px 28px rgba(178, 200, 132, 0.18);
  --category-icon-accent: #576f3d;
}

body[data-route="home"] .home-category-chip[data-category-shape="health-beauty"],
body[data-route="employee-dashboard"] .home-category-chip[data-category-shape="health-beauty"] {
  --category-icon-bg: #ffffff;
  --category-icon-border: rgba(241, 205, 198, 0.88);
  --category-icon-shadow: 0 14px 28px rgba(227, 180, 171, 0.16);
  --category-icon-accent: #8f5e59;
}

body[data-route="home"] .home-category-chip[data-category-shape],
body[data-route="employee-dashboard"] .home-category-chip[data-category-shape] {
  --category-icon-radius: 50%;
  --category-icon-clip: none;
}

body[data-route="home"] .home-featured-section .btn-primary,
body[data-route="employee-dashboard"] .home-featured-section .btn-primary,
body[data-route="home"] .home-categories-section .btn-outline,
body[data-route="employee-dashboard"] .home-categories-section .btn-outline,
body[data-route="home"] .home-arrivals-section .btn-secondary,
body[data-route="employee-dashboard"] .home-arrivals-section .btn-secondary {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(13, 34, 71, 0.16);
  color: var(--color-primary-strong);
  box-shadow: 0 14px 28px rgba(13, 34, 71, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

body[data-route="home"] .home-featured-section .btn-primary,
body[data-route="employee-dashboard"] .home-featured-section .btn-primary {
  background: var(--color-primary-strong);
  border-color: rgba(13, 34, 71, 0.96);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(13, 34, 71, 0.22), 0 9px 18px rgba(13, 34, 71, 0.1);
}

body[data-route="home"] .home-featured-section .btn-primary:hover:not(:disabled),
body[data-route="employee-dashboard"] .home-featured-section .btn-primary:hover:not(:disabled),
body[data-route="home"] .home-categories-section .btn-outline:hover:not(:disabled),
body[data-route="employee-dashboard"] .home-categories-section .btn-outline:hover:not(:disabled),
body[data-route="home"] .home-arrivals-section .btn-secondary:hover:not(:disabled),
body[data-route="employee-dashboard"] .home-arrivals-section .btn-secondary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(13, 34, 71, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

body[data-route="home"] .home-featured-section .product-card,
body[data-route="employee-dashboard"] .home-featured-section .product-card,
body[data-route="home"] .home-arrivals-section .product-card,
body[data-route="employee-dashboard"] .home-arrivals-section .product-card {
  background: #ffffff;
  border-color: rgba(13, 34, 71, 0.1);
  box-shadow:
    0 24px 44px rgba(13, 34, 71, 0.08),
    0 10px 22px rgba(13, 34, 71, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

body[data-route="home"] .home-featured-section .product-card-media,
body[data-route="employee-dashboard"] .home-featured-section .product-card-media,
body[data-route="home"] .home-arrivals-section .product-card-media,
body[data-route="employee-dashboard"] .home-arrivals-section .product-card-media {
  background: #ffffff;
}

body[data-route="home"] .home-featured-section .product-card::before,
body[data-route="employee-dashboard"] .home-featured-section .product-card::before,
body[data-route="home"] .home-arrivals-section .product-card::before,
body[data-route="employee-dashboard"] .home-arrivals-section .product-card::before {
  background: #0D2247;
}

body[data-route="home"] .home-featured-section .product-card:hover,
body[data-route="employee-dashboard"] .home-featured-section .product-card:hover,
body[data-route="home"] .home-arrivals-section .product-card:hover,
body[data-route="employee-dashboard"] .home-arrivals-section .product-card:hover {
  box-shadow:
    0 32px 58px rgba(13, 34, 71, 0.14),
    0 14px 28px rgba(13, 34, 71, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 0 0 1px rgba(13, 34, 71, 0.18);
  border-color: rgba(13, 34, 71, 0.24);
}

body[data-route="home"] .home-featured-section .product-card-title,
body[data-route="employee-dashboard"] .home-featured-section .product-card-title,
body[data-route="home"] .home-arrivals-section .product-card-title,
body[data-route="employee-dashboard"] .home-arrivals-section .product-card-title {
  color: var(--color-secondary);
}

body[data-route="home"] .home-featured-section .product-card-price,
body[data-route="employee-dashboard"] .home-featured-section .product-card-price,
body[data-route="home"] .home-arrivals-section .product-card-price,
body[data-route="home"] .home-featured-section .product-card-price,
body[data-route="employee-dashboard"] .home-arrivals-section .product-card-price {
  color: var(--color-accent);
}

body[data-route="home"] .home-featured-section .product-card-topline,
body[data-route="employee-dashboard"] .home-featured-section .product-card-topline,
body[data-route="home"] .home-arrivals-section .product-card-topline,
body[data-route="employee-dashboard"] .home-arrivals-section .product-card-topline,
body[data-route="home"] .home-featured-section .product-card-caption,
body[data-route="employee-dashboard"] .home-featured-section .product-card-caption,
body[data-route="home"] .home-arrivals-section .product-card-caption,
body[data-route="employee-dashboard"] .home-arrivals-section .product-card-caption,
body[data-route="home"] .home-featured-section .product-card-rating,
body[data-route="employee-dashboard"] .home-featured-section .product-card-rating,
body[data-route="home"] .home-arrivals-section .product-card-rating,
body[data-route="employee-dashboard"] .home-arrivals-section .product-card-rating,
body[data-route="home"] .home-featured-section .product-card-stock,
body[data-route="employee-dashboard"] .home-featured-section .product-card-stock,
body[data-route="home"] .home-arrivals-section .product-card-stock,
body[data-route="employee-dashboard"] .home-arrivals-section .product-card-stock {
  color: var(--color-text-soft);
}

body[data-route="home"] .home-featured-section .product-card-price-old,
body[data-route="employee-dashboard"] .home-featured-section .product-card-price-old,
body[data-route="home"] .home-arrivals-section .product-card-price-old,
body[data-route="employee-dashboard"] .home-arrivals-section .product-card-price-old {
  color: rgba(13, 34, 71, 0.5);
}

body[data-route="home"] .home-featured-section .product-rating-star,
body[data-route="employee-dashboard"] .home-featured-section .product-rating-star,
body[data-route="home"] .home-arrivals-section .product-rating-star,
body[data-route="employee-dashboard"] .home-arrivals-section .product-rating-star {
  color: var(--color-primary);
}

body[data-route="home"] .home-featured-section .badge-info,
body[data-route="employee-dashboard"] .home-featured-section .badge-info,
body[data-route="home"] .home-arrivals-section .badge-info,
body[data-route="employee-dashboard"] .home-arrivals-section .badge-info {
  background: rgba(13, 34, 71, 0.12);
  color: var(--color-primary-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

body[data-route="home"] .home-featured-section .badge-warning,
body[data-route="employee-dashboard"] .home-featured-section .badge-warning,
body[data-route="home"] .home-arrivals-section .badge-warning,
body[data-route="employee-dashboard"] .home-arrivals-section .badge-warning {
  background: rgba(13, 34, 71, 0.1);
  color: var(--color-primary-strong);
}

body[data-route="home"] .home-featured-section .wishlist-btn,
body[data-route="employee-dashboard"] .home-featured-section .wishlist-btn,
body[data-route="home"] .home-arrivals-section .wishlist-btn,
body[data-route="employee-dashboard"] .home-arrivals-section .wishlist-btn {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 241, 213, 0.96);
  color: #9d7850;
  box-shadow: 0 12px 24px rgba(180, 136, 29, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

body[data-route="home"] .home-featured-section .wishlist-btn:hover,
body[data-route="employee-dashboard"] .home-featured-section .wishlist-btn:hover,
body[data-route="home"] .home-arrivals-section .wishlist-btn:hover,
body[data-route="employee-dashboard"] .home-arrivals-section .wishlist-btn:hover {
  box-shadow: 0 18px 30px rgba(180, 136, 29, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

body[data-route="home"] .home-featured-section .product-card-quick-add,
body[data-route="employee-dashboard"] .home-featured-section .product-card-quick-add,
body[data-route="home"] .home-arrivals-section .product-card-quick-add,
body[data-route="employee-dashboard"] .home-arrivals-section .product-card-quick-add {
  background: #ffffff;
  color: #0A1C3D;
  box-shadow: 0 10px 24px rgba(245, 179, 14, 0.24);
}

body[data-route="home"] .home-featured-section .product-card-quick-add:hover:not(:disabled),
body[data-route="employee-dashboard"] .home-featured-section .product-card-quick-add:hover:not(:disabled),
body[data-route="home"] .home-arrivals-section .product-card-quick-add:hover:not(:disabled),
body[data-route="employee-dashboard"] .home-arrivals-section .product-card-quick-add:hover:not(:disabled) {
  box-shadow: 0 18px 30px rgba(245, 179, 14, 0.3);
}

body[data-route="home"] .home-featured-section .empty-state,
body[data-route="employee-dashboard"] .home-featured-section .empty-state,
body[data-route="home"] .home-arrivals-section .empty-state,
body[data-route="employee-dashboard"] .home-arrivals-section .empty-state {
  min-height: 210px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(13, 34, 71, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  color: var(--color-text-soft);
}

body[data-route="home"] .home-featured-section .empty-state-title,
body[data-route="employee-dashboard"] .home-featured-section .empty-state-title,
body[data-route="home"] .home-arrivals-section .empty-state-title,
body[data-route="employee-dashboard"] .home-arrivals-section .empty-state-title {
  color: var(--color-secondary);
}

body[data-route="home"] .home-featured-section .product-row::-webkit-scrollbar-thumb,
body[data-route="employee-dashboard"] .home-featured-section .product-row::-webkit-scrollbar-thumb,
body[data-route="home"] .home-arrivals-section .product-row::-webkit-scrollbar-thumb,
body[data-route="employee-dashboard"] .home-arrivals-section .product-row::-webkit-scrollbar-thumb {
  background: rgba(13, 34, 71, 0.28);
}

@media (min-width: 1024px) {
  body[data-route="home"] .home-arrivals-section,
  body[data-route="employee-dashboard"] .home-arrivals-section {
    display: none !important;
  }

  body[data-route="home"] .home-featured-section .product-grid,
  body[data-route="employee-dashboard"] .home-featured-section .product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.8rem, 1.5vw, 1rem);
  }

  body[data-route="home"] .home-featured-section .product-row,
  body[data-route="employee-dashboard"] .home-featured-section .product-row {
    display: contents;
  }

  body[data-route="home"] .home-featured-section .product-card,
  body[data-route="employee-dashboard"] .home-featured-section .product-card {
    width: 100%;
  }

  body[data-route="home"] .home-featured-section .product-card-media,
  body[data-route="employee-dashboard"] .home-featured-section .product-card-media {
    padding: 1.1rem 1.1rem 0.45rem;
  }

  body[data-route="home"] .home-featured-section .product-card-image-wrap,
  body[data-route="employee-dashboard"] .home-featured-section .product-card-image-wrap {
    padding: 0.8rem;
  }

  body[data-route="home"] .home-featured-section .product-card-body,
  body[data-route="employee-dashboard"] .home-featured-section .product-card-body {
    gap: 0.56rem;
    padding: 0.55rem 1rem 0.9rem;
  }

  body[data-route="home"] .home-featured-section .product-card-price-wrap,
  body[data-route="employee-dashboard"] .home-featured-section .product-card-price-wrap {
    gap: 0.24rem;
  }

  body[data-route="home"] .home-featured-section .product-card-actions,
  body[data-route="employee-dashboard"] .home-featured-section .product-card-actions {
    gap: 0.55rem;
  }

  body[data-route="home"] .home-featured-section .product-card-image-wrap,
  body[data-route="employee-dashboard"] .home-featured-section .product-card-image-wrap {
    aspect-ratio: auto;
    min-height: 0;
    height: 260px;
    padding: 0.85rem;
  }
}

.catalog-shell {
  display: grid;
  gap: var(--spacing-6);
  min-width: 0;
  overflow: visible;
}

.catalog-toolbar {
  display: grid;
  gap: var(--spacing-4);
  padding: clamp(1rem, 2.6vw, 1.4rem);
  min-width: 0;
  overflow: visible;
}

body[data-route="products"] .catalog-toolbar,
body[data-route="employee-dashboard"] .catalog-toolbar {
  border-radius: var(--radius-2xl) !important;
  background:
    radial-gradient(900px 420px at 88% -10%, rgba(245, 179, 14, 0.2), transparent 55%),
    linear-gradient(135deg, #0d2247 0%, #17386b 100%);
  border: 1px solid rgba(245, 179, 14, 0.22);
  box-shadow:
    0 22px 52px rgba(13, 34, 71, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

body[data-route="products"] .catalog-results-meta .section-title,
body[data-route="employee-dashboard"] .catalog-results-meta .section-title {
  color: #ffffff;
}

body[data-route="products"] .catalog-results-meta .section-subtitle,
body[data-route="employee-dashboard"] .catalog-results-meta .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.catalog-section {
  display: grid;
  gap: var(--spacing-4);
  min-width: 0;
}

.filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  min-width: 0;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.95rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(13, 34, 71, 0.08);
  color: var(--color-text-soft);
  font-size: var(--font-size-xs);
  font-weight: 800;
  max-width: 100%;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.filter-chip .home-category-img {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.filter-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: var(--color-text);
}

.filter-chip.active {
  background: #ffffff;
  border-color: rgba(245, 179, 14, 0.18);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.catalog-results-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-3);
  color: var(--color-text-soft);
}

.catalog-results-meta > * {
  min-width: 0;
}

.store-footer {
  display: none;
}

@media (min-width: 1024px) {
  .store-footer {
    --store-footer-inline: max(var(--page-padding), calc((100vw - var(--content-max-width)) / 2 + var(--page-padding)));
    display: grid;
    gap: clamp(1.4rem, 2.4vw, 2rem);
    align-self: stretch;
    margin-top: auto;
    margin-bottom: 0;
    width: 100vw;
    max-width: 100vw;
    min-height: clamp(280px, 24vw, 380px);
    margin-left: calc(50% - 50vw);
    padding:
      clamp(2.2rem, 3.4vw, 3rem)
      var(--store-footer-inline)
      clamp(1.4rem, 2.6vw, 2rem);
    border-radius: 0;
    background: linear-gradient(180deg, #0f2346 0%, #09152b 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
      0 -18px 42px rgba(7, 16, 34, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.92);
    overflow: hidden;
    position: relative;
  }

  .store-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 24%),
      radial-gradient(circle at 14% 18%, rgba(255, 195, 27, 0.18), rgba(255, 195, 27, 0) 24%),
      radial-gradient(circle at 86% 28%, rgba(255, 195, 27, 0.14), rgba(255, 195, 27, 0) 22%);
    pointer-events: none;
  }

  .store-footer > * {
    position: relative;
    z-index: 1;
  }

  .store-footer-inner {
    display: grid;
    grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.55fr);
    gap: clamp(1.8rem, 3vw, 3.5rem);
    align-items: start;
  }

  .store-footer-brand-panel {
    display: grid;
    gap: 1rem;
    align-content: start;
  }

  .store-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    width: fit-content;
    color: #ffffff;
  }

  .store-footer-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 1rem;
    background: linear-gradient(145deg, #ffd45d 0%, #ffc31b 100%);
    color: #0d2247;
    box-shadow:
      0 12px 24px rgba(255, 195, 27, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.42);
    flex-shrink: 0;
  }

  .store-footer-brand-icon {
    width: 1.4rem;
    height: 1.4rem;
  }

  .store-footer-brand-wordmark {
    font-size: clamp(1.75rem, 2.1vw, 2.45rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .store-footer-brand-wordmark .brand-accent {
    color: #ffc31b;
  }

  .store-footer-copy {
    margin: 0;
    max-width: 36ch;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.72;
  }

  .store-footer-copy-sm {
    max-width: 26ch;
    font-size: 0.92rem;
  }

  .store-footer-contact-block {
    display: grid;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .store-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: clamp(1rem, 1.8vw, 1.5rem);
  }

  .store-footer-column {
    display: grid;
    align-content: start;
    gap: 0.8rem;
  }

  .store-footer-heading {
    margin: 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .store-footer-links {
    display: grid;
    gap: 0.58rem;
  }

  .store-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    color: rgba(255, 255, 255, 0.74);
    min-height: 40px;
    transition: color var(--transition-fast), transform var(--transition-fast);
  }

  .store-footer-link:hover {
    color: #f5cb5c;
    transform: translateX(2px);
  }

  .store-footer-link-static {
    cursor: default;
  }

  .store-footer-link-static:hover {
    color: rgba(255, 255, 255, 0.74);
    transform: none;
  }

  .store-footer-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 0.72rem;
    background: rgba(255, 255, 255, 0.06);
    color: #f5cb5c;
    flex-shrink: 0;
  }

  .store-footer-link-glyph {
    width: 0.9rem;
    height: 0.9rem;
  }

  .store-footer-payment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.35rem;
  }

  .store-footer-payment-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.68rem 0.95rem;
    border-radius: 0.82rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .store-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .store-footer-bottom-copy {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
  }

  .store-footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
  }

  .store-footer-bottom-link {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color var(--transition-fast);
  }

  .store-footer-bottom-link:hover {
    color: #f5cb5c;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .store-footer-inner {
    grid-template-columns: 1fr;
  }
}

body[data-route="products"] .catalog-shell,
body[data-route="products"] .catalog-toolbar,
body[data-route="products"] .catalog-section,
body[data-route="products"] .catalog-grid-section {
  width: 100%;
  min-width: 0;
}

body[data-route="products"] .catalog-toolbar {
  overflow: hidden;
}

body[data-route="products"] .product-card-horizontal {
  transform: none;
}

body[data-route="products"] .product-card {
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    filter var(--transition-fast),
    background var(--transition-fast);
}

body[data-route="products"] .product-card-body {
  padding: 0.3rem 0.8rem 1.1rem;
}

body[data-route="products"] .product-card-horizontal:hover,
body[data-route="products"] .product-card-horizontal:active {
  transform: none;
}

body[data-route="products"] .product-card:hover::before,
body[data-route="products"] .product-card:hover::after {
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .product-card-hover-panel {
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-base);
  }

  .product-card:hover .product-card-hover-panel,
  .product-card:focus-within .product-card-hover-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (hover: none), (pointer: coarse) {
  .product-card-hover-panel {
    display: none;
  }
}

body[data-route="products"] .product-card-horizontal:hover,
body[data-route="products"] .product-card-horizontal:active {
  transform: none;
}

.product-detail-shell {
  display: grid;
  gap: var(--spacing-6);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(1rem, 1.7vw, 1.35rem);
  align-items: start;
  max-width: min(100%, 1320px);
  margin-inline: auto;
}

.product-detail-info-column {
  display: grid;
  gap: clamp(0.9rem, 1.6vw, 1.15rem);
  min-width: 0;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-content: start;
}

.product-media-card,
.product-summary-card,
.product-purchase-card {
  padding: clamp(1rem, 2.6vw, 1.4rem);
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.product-media-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.75rem;
  min-width: 0;
  padding: clamp(0.9rem, 1.8vw, 1.15rem);
  grid-column: 1;
  grid-row: 1 / span 2;
}

.product-image-stage {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.92;
  border-radius: 26px;
  overflow: hidden;
  background: #ffffff;
}

.product-image-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumb-strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
}

.product-thumb {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  border: 1px solid rgba(13, 34, 71, 0.08);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.product-thumb:hover,
.product-thumb.active {
  transform: translateY(-2px);
  border-color: rgba(245, 179, 14, 0.26);
  box-shadow: var(--shadow-sm);
}

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

.product-summary-card {
  display: grid;
  gap: var(--spacing-5);
  min-width: 0;
}

.product-mobile-only {
  display: none;
}

.product-purchase-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.05rem;
  align-self: start;
  position: static;
  top: auto;
  min-width: 0;
}

.product-summary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-detail-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.product-detail-copy {
  color: var(--color-text-soft);
  line-height: 1.8;
}

.product-detail-copy p + p {
  margin-top: 0.95rem;
}

.product-detail-copy.is-compact {
  font-size: var(--font-size-sm);
  max-width: 62ch;
}

.product-price-row {
  display: flex;
  align-items: end;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.product-detail-price {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.05em;
}

.product-detail-price-old {
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-weight: 700;
}

.product-purchase-block {
  display: grid;
  gap: 0.75rem;
}

.product-purchase-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.product-purchase-savings {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-full);
  background: rgba(245, 179, 14, 0.14);
  color: var(--color-primary-strong);
  font-size: var(--font-size-sm);
  font-weight: 800;
}

.product-purchase-stock {
  padding: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(13, 34, 71, 0.08);
  background: rgba(248, 244, 237, 0.82);
}

.product-purchase-stock.is-available {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 248, 242, 0.96));
  border-color: rgba(47, 143, 107, 0.18);
}

.product-purchase-stock.is-unavailable {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 242, 239, 0.96));
  border-color: rgba(214, 90, 79, 0.18);
}

.product-purchase-actions {
  display: grid;
  gap: 0.75rem;
}

.product-purchase-actions .btn {
  width: 100%;
  justify-content: center;
}

.product-purchase-cta {
  min-height: 44px;
}

.product-mobile-purchase {
  gap: 1rem;
}

.product-side-stack {
  display: grid;
  gap: 0.75rem;
}

.product-side-card {
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: rgba(248, 244, 237, 0.82);
  border: 1px solid rgba(13, 34, 71, 0.06);
}

.product-side-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.product-side-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(245, 179, 14, 0.16);
  color: var(--color-primary-strong);
  box-shadow: var(--shadow-xs);
}

.product-side-title {
  font-size: var(--font-size-sm);
  font-weight: 800;
  color: var(--color-text);
}

.product-side-copy {
  margin-top: 0.22rem;
  color: var(--color-text-soft);
  font-size: var(--font-size-xs);
  line-height: 1.6;
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(13, 34, 71, 0.08);
  box-shadow: var(--shadow-xs);
}

.quantity-stepper button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-xs);
}

.quantity-stepper input {
  width: 64px;
  min-height: 40px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 800;
}

@media (min-width: 1200px) {
  .product-detail-shell {
    gap: 0.9rem;
    width: min(100%, calc(100vw - 1rem));
    margin-inline: auto;
  }

  .product-detail-grid {
    width: 100%;
    max-width: 1480px;
    grid-template-columns: minmax(280px, 0.75fr) minmax(700px, 1.45fr);
    gap: 0;
    padding: 0.85rem;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 236, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 54px rgba(13, 34, 71, 0.12), 0 8px 20px rgba(255, 187, 0, 0.08);
    overflow: hidden;
  }

  .product-detail-info-column {
    gap: 0;
    min-height: 100%;
    padding-left: 0.9rem;
  }

  .product-media-card {
    align-self: start;
    min-height: auto;
    gap: 0.62rem;
    padding: 0.62rem 0.9rem 0.62rem 0.68rem;
    border-right: 1px solid rgba(13, 34, 71, 0.08);
  }

  .product-media-card,
  .product-summary-card,
  .product-purchase-card {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .product-image-stage {
    aspect-ratio: auto;
    height: auto;
    min-height: clamp(224px, 29vh, 368px);
  }

  .product-thumb-strip {
    margin-top: 0;
    gap: 0.42rem;
  }

  .product-thumb {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .product-summary-card {
    gap: 0.78rem;
    padding: 0.2rem 0 0.82rem;
    border-bottom: 1px solid rgba(13, 34, 71, 0.08);
  }

  .product-summary-meta {
    gap: 0.42rem;
  }

  .product-detail-title {
    font-size: clamp(1.45rem, 2vw, 1.95rem);
    line-height: 1.02;
  }

  .product-purchase-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    align-items: start;
    padding: 0.82rem 0 0;
  }

  .product-purchase-card > .product-side-stack {
    grid-column: 1 / -1;
  }

  .product-side-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .product-side-card,
  .product-purchase-stock {
    padding: 0.64rem 0.74rem;
  }

  .product-purchase-block {
    gap: 0.38rem;
  }

  .product-purchase-card .product-purchase-quantity {
    width: fit-content;
    min-width: 0;
    justify-self: start;
    align-self: start;
    gap: 0.24rem;
    padding: 0.42rem 0.5rem;
    border-radius: 15px;
    background: rgba(248, 244, 237, 0.72);
    border: 1px solid rgba(13, 34, 71, 0.06);
  }

  .product-purchase-stock {
    padding: 0.64rem 0.74rem;
  }

  .product-purchase-label,
  .product-purchase-card .form-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .product-purchase-card .product-detail-price {
    font-size: clamp(1.34rem, 1.65vw, 1.75rem);
  }

  .product-purchase-card .product-detail-price-old {
    font-size: 0.84rem;
  }

  .product-purchase-card .product-purchase-savings {
    padding: 0.38rem 0.6rem;
    font-size: 0.72rem;
  }

  .product-purchase-card .quantity-stepper {
    padding: 0.14rem;
    gap: 0.12rem;
  }

  .product-purchase-card .quantity-stepper button {
    width: 26px;
    height: 26px;
  }

  .product-purchase-card .quantity-stepper input {
    width: 38px;
    min-height: 26px;
    font-size: 0.75rem;
  }

  .product-purchase-card .product-purchase-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .product-purchase-card .product-purchase-cta {
    min-height: 34px;
    padding: 0.52rem 0.66rem;
    border-radius: 14px;
    font-size: 0.78rem;
  }

  .product-purchase-card .product-purchase-cta .ui-icon {
    width: 0.82rem;
    height: 0.82rem;
  }

  .product-side-card:last-child {
    grid-column: 1 / -1;
  }

  .product-side-icon {
    width: 1.85rem;
    height: 1.85rem;
  }

  .product-side-title {
    font-size: 0.76rem;
  }

  .product-side-copy {
    max-width: 28ch;
    font-size: 0.69rem;
    line-height: 1.35;
  }
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table td {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(13, 34, 71, 0.08);
}

.specs-table td:first-child {
  width: 34%;
  color: var(--color-text-soft);
  font-weight: 700;
}

.cart-list {
  display: grid;
  gap: var(--spacing-3);
}

.cart-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.cart-item-image {
  width: 86px;
  height: 86px;
  border-radius: 22px;
  object-fit: contain;
  background: #ffffff;
}

.cart-item-details {
  min-width: 0;
}

.cart-item-title {
  font-size: var(--font-size-base);
  font-weight: 800;
  line-height: 1.35;
}

.cart-item-price {
  margin-top: 0.35rem;
  color: var(--color-primary-strong);
  font-weight: 800;
}

.cart-item-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.8rem;
  padding: 0.35rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(13, 34, 71, 0.08);
  box-shadow: var(--shadow-xs);
}

.cart-item-controls button {
  width: 36px;
  min-height: 36px;
  border-radius: 50%;
}

.cart-item-controls input {
  width: 44px;
  min-height: 36px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 800;
}

.cart-item-subtotal {
  font-size: var(--font-size-lg);
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.cart-item-remove {
  margin-top: 0.8rem;
  color: var(--color-danger);
  background: transparent;
  font-weight: 800;
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--spacing-5);
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkout-step.active {
  color: var(--color-primary-strong);
}

.checkout-step.done {
  color: var(--color-success);
}

.checkout-step-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-xs);
}

.checkout-step.active .checkout-step-dot {
  background: rgba(245, 179, 14, 0.16);
}

.checkout-step.done .checkout-step-dot {
  background: rgba(47, 143, 107, 0.12);
}

.checkout-step-line {
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: rgba(13, 34, 71, 0.1);
}

.checkout-step-line.filled {
  background: #2f8f6b;
}

.delivery-location-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid rgba(245, 179, 14, 0.16);
  box-shadow: var(--shadow-sm);
}

.delivery-location-content {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.delivery-location-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--color-primary-strong);
}

.delivery-location-text {
  min-width: 0;
}

.delivery-location-label {
  font-size: var(--font-size-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.delivery-location-address {
  margin-top: 0.25rem;
  color: var(--color-text);
  font-weight: 700;
}

.dispatch-ride-card {
  border-left: 4px solid rgba(67, 107, 216, 0.4);
}

.dispatch-ride-card[data-status="delivered"] {
  border-left-color: rgba(47, 143, 107, 0.55);
}

.dispatch-ride-card[data-status="failed"] {
  border-left-color: rgba(204, 90, 82, 0.5);
}

.dispatch-ride-card[data-status="in_transit"] {
  border-left-color: rgba(245, 179, 14, 0.5);
}

.dispatch-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-xs);
  color: var(--color-primary-strong);
  flex-shrink: 0;
}

.dispatch-ops-shell {
  display: grid;
  gap: 1rem;
}

.dispatch-ops-hero,
.dispatch-ops-section {
  display: grid;
  gap: 1rem;
}

.dispatch-ops-hero-top,
.dispatch-ops-section-head,
.dispatch-ops-subtitle-row,
.dispatch-ops-list-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.dispatch-ops-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.dispatch-ops-nav-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 34, 71, 0.08);
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  font-weight: 800;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.dispatch-ops-nav-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 179, 14, 0.5);
  box-shadow: var(--shadow-sm);
}

.dispatch-ops-nav-icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  color: var(--color-primary-strong);
}

.dispatch-ops-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-primary-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dispatch-ops-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.dispatch-ops-toolbar .form-select {
  min-width: 180px;
}

.dispatch-ops-toolbar-meta,
.dispatch-ops-zone-meta,
.dispatch-ops-event-meta,
.dispatch-ops-list-copy,
.dispatch-ops-kpi-hint,
.dispatch-ops-inline-meta,
.dispatch-ops-detail-copy,
.dispatch-ops-ride-subtitle,
.dispatch-ops-info-value {
  color: var(--color-text-soft);
}

.dispatch-ops-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.85rem;
}

.dispatch-ops-kpi-grid-secondary {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.dispatch-ops-kpi {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(13, 34, 71, 0.07);
  box-shadow: var(--shadow-xs);
}

.dispatch-ops-kpi-compact {
  padding-block: 0.9rem;
}

.dispatch-ops-kpi-value {
  color: var(--color-primary-strong);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.dispatch-ops-kpi-label,
.dispatch-ops-info-title,
.dispatch-ops-detail-title,
.dispatch-ops-zone-title,
.dispatch-ops-list-title,
.dispatch-ops-event-title,
.dispatch-ops-ride-title {
  color: var(--color-text);
  font-weight: 800;
}

.dispatch-ops-kpi-label {
  font-size: var(--font-size-sm);
}

.dispatch-ops-kpi-hint,
.dispatch-ops-toolbar-meta,
.dispatch-ops-zone-meta,
.dispatch-ops-detail-copy,
.dispatch-ops-list-copy,
.dispatch-ops-event-meta,
.dispatch-ops-inline-meta,
.dispatch-ops-ride-subtitle,
.dispatch-ops-info-value {
  font-size: var(--font-size-xs);
  line-height: 1.55;
}

.dispatch-ops-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.dispatch-ops-strip-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 34px;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(245, 179, 14, 0.12);
  color: var(--color-text);
  font-size: var(--font-size-xs);
  font-weight: 700;
}

.dispatch-ops-strip-pill strong {
  color: var(--color-primary-strong);
}

.dispatch-ops-ride-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.dispatch-ops-ride {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-xs);
}

.dispatch-ops-ride-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.dispatch-ops-ride-title {
  font-size: 1rem;
}

.dispatch-ops-progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(13, 34, 71, 0.08);
}

.dispatch-ops-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f5b30e 0%, #0d2247 100%);
}

.dispatch-ops-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.dispatch-ops-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.78rem 0.8rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(13, 34, 71, 0.06);
}

.dispatch-ops-info-copy {
  min-width: 0;
}

.dispatch-ops-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.dispatch-ops-note {
  padding: 0.78rem 0.85rem;
  border-radius: 0.9rem;
  background: rgba(204, 90, 82, 0.08);
  color: var(--color-text);
  font-size: var(--font-size-sm);
}

.dispatch-ops-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
}

.dispatch-ops-subsection,
.dispatch-ops-list,
.dispatch-ops-detail-grid,
.dispatch-ops-event-list {
  display: grid;
  gap: 0.85rem;
}

.dispatch-ops-subtitle {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 800;
}

.dispatch-ops-subtitle-meta {
  color: var(--color-primary-strong);
  font-weight: 800;
}

.dispatch-ops-list-card,
.dispatch-ops-zone-card,
.dispatch-ops-detail-card {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 34, 71, 0.07);
  box-shadow: var(--shadow-xs);
}

.dispatch-ops-zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.dispatch-ops-zone-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--color-text-soft);
  font-size: var(--font-size-xs);
}

.dispatch-ops-zone-stats strong {
  color: var(--color-primary-strong);
}

.dispatch-ops-detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.dispatch-ops-event {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.dispatch-ops-event-dot {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(245, 179, 14, 0.14);
  margin-top: 0.15rem;
}

.dispatch-ops-event-line {
  position: absolute;
  left: 0.4rem;
  top: 1.2rem;
  bottom: -0.8rem;
  width: 2px;
  background: rgba(245, 179, 14, 0.24);
}

.dispatch-ops-event-copy {
  padding-bottom: 0.55rem;
}

@media (max-width: 900px) {
  .dispatch-ops-hero-top,
  .dispatch-ops-section-head,
  .dispatch-ops-subtitle-row,
  .dispatch-ops-list-head {
    flex-direction: column;
    align-items: stretch;
  }

  .dispatch-ops-split,
  .dispatch-ops-info-grid,
  .dispatch-ops-detail-grid {
    grid-template-columns: 1fr;
  }

  .dispatch-ops-toolbar {
    width: 100%;
  }

  .dispatch-ops-toolbar .form-select {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .dispatch-ops-nav-chip {
    width: 100%;
    justify-content: center;
  }

  .dispatch-ops-kpi-grid,
  .dispatch-ops-zone-grid,
  .dispatch-ops-ride-grid {
    grid-template-columns: 1fr;
  }

  .dispatch-ops-actions > * {
    flex: 1 1 calc(50% - 0.6rem);
  }
}

.floating-cart-btn,
.floating-cart-btn {
  background: rgba(10, 28, 61, 0.9);
  color: var(--color-white);
}

body[data-route="cart"] .floating-cart-btn,
body[data-route="products"] .floating-cart-btn {
  display: none !important;
}

.floating-cart-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 0 0 8px rgba(245, 179, 14, 0.12);
}

.floating-cart-badge,
.nav-badge {
  position: absolute;
  top: -4px;
  right: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 0.35rem;
  border-radius: var(--radius-full);
  background: #cc5a52;
  color: var(--color-white);
  font-size: 10px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.floating-cart-btn.zero .floating-cart-badge {
  display: none;
}

.cart-fly {
  position: fixed;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  z-index: 260;
  pointer-events: none;
  animation: flyToCart 560ms var(--transition-spring) forwards;
}

.cart-pop {
  animation: cartPop 360ms var(--transition-spring);
}

.pwa-install-banner {
  position: fixed;
  left: var(--page-padding);
  right: var(--page-padding);
  bottom: calc(16px + env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-3);
  padding: 0.95rem 1rem;
  border-radius: var(--radius-2xl);
  background: rgba(10, 28, 61, 0.88);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-xl);
  transform: translateY(120%);
  transition: transform var(--transition-base);
  z-index: 200;
}

.pwa-install-banner.show {
  transform: translateY(0);
}

.pwa-install-title {
  font-weight: 800;
  font-size: var(--font-size-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
}

.pwa-install-subtitle {
  margin-top: 0.15rem;
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.64);
}

.pwa-install-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.pwa-install-btn,
.pwa-install-dismiss,
.pwa-install-sidebar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.72rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 800;
}

.pwa-install-btn,
.pwa-install-sidebar-btn {
  background: #ffffff;
  color: #0D1F42;
}

.pwa-install-dismiss {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.pwa-install-sidebar-btn.installed {
  display: none !important;
}

.premium-map-wrap {
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-lg);
}

.premium-map-wrap .map-container {
  height: 520px;
}

.premium-map-fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: #0D1F42;
  box-shadow: var(--shadow-md);
  z-index: 180;
}

.divider {
  height: 1px;
  background: rgba(13, 34, 71, 0.08);
  border: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-text-soft);
  font-size: var(--font-size-sm);
}

.tabs {
  display: flex;
  gap: 0.45rem;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.84);
  width: fit-content;
  box-shadow: var(--shadow-xs);
}

.tab {
  padding: 0.65rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-text-soft);
}

.tab.active {
  background: rgba(245, 179, 14, 0.16);
  color: var(--color-text);
}

.product-gallery {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.7);
}

.product-gallery-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.product-gallery-slide {
  min-width: 100%;
}

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

.product-gallery-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}

.product-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.product-gallery-dot.active {
  width: 22px;
  background: rgba(255, 255, 255, 0.95);
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
  transform: translateY(-50%);
}

.product-gallery-prev {
  left: 0.8rem;
}

.product-gallery-next {
  right: 0.8rem;
}

.bottom-sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 28, 61, 0.32);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  z-index: 210;
}

.bottom-sheet-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.bottom-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(100%);
  transition: transform var(--transition-base);
  z-index: 220;
  max-height: 84vh;
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(26px) saturate(160%);
}

.bottom-sheet.show {
  transform: translateY(0);
}

.bottom-sheet-handle {
  width: 42px;
  height: 5px;
  border-radius: 999px;
  margin: 0.9rem auto;
  background: rgba(13, 34, 71, 0.18);
}

.bottom-sheet-header,
.bottom-sheet-body {
  padding: 0 1.1rem 1.1rem;
}

.ripple {
  overflow: hidden;
}

.ripple::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  transform: scale(0.65);
  transition: transform 280ms ease, opacity 280ms ease;
  pointer-events: none;
}

.ripple:active::after {
  opacity: 1;
  transform: scale(1);
  transition: none;
}

[data-reveal] {
  opacity: 0;
  filter: blur(0);
  transform-origin: var(--reveal-origin, center center);
  will-change: opacity, transform, filter;
  transition:
    opacity var(--reveal-duration, 180ms),
    transform var(--reveal-duration, 180ms),
    filter var(--reveal-duration, 180ms);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="up"] {
  transform: translateY(24px);
}

[data-reveal="down"] {
  transform: translateY(-22px);
}

[data-reveal="left"] {
  transform: translateX(-24px);
}

[data-reveal="right"] {
  transform: translateX(24px);
}

[data-reveal="scale"] {
  transform: scale(0.96);
}

[data-reveal="blur"] {
  transform: translateY(18px) scale(0.985);
  filter: blur(12px);
}

[data-reveal="tilt-left"] {
  transform: translate3d(-18px, 18px, 0) rotate(-2.4deg) scale(0.985);
}

[data-reveal="tilt-right"] {
  transform: translate3d(18px, 18px, 0) rotate(2.4deg) scale(0.985);
}

[data-reveal="pop"] {
  transform: translateY(16px) scale(0.92);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.stagger-in > * {
  opacity: 0;
  transform: translateY(16px);
  animation: staggerIn 220ms ease-out forwards;
}

.stagger-in > *:nth-child(1) {
  animation-delay: 0ms;
}

.stagger-in > *:nth-child(2) {
  animation-delay: 28ms;
}

.stagger-in > *:nth-child(3) {
  animation-delay: 56ms;
}

.stagger-in > *:nth-child(4) {
  animation-delay: 84ms;
}

.stagger-in > *:nth-child(5) {
  animation-delay: 112ms;
}

.stagger-in > *:nth-child(n + 6) {
  animation-delay: 140ms;
}

.page-enter,
.page-transition {
  animation: pageEnter 140ms ease-out;
}

.page-exit {
  animation: pageExit 180ms ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .stagger-in > *,
  .page-enter,
  .page-transition {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(1200px 620px at 85% -12%, rgba(245, 179, 14, 0.16), rgba(245, 179, 14, 0) 55%),
    radial-gradient(1000px 560px at 6% 112%, rgba(255, 199, 44, 0.09), rgba(255, 199, 44, 0) 60%),
    linear-gradient(160deg, #081a38 0%, #0d2247 48%, #122c52 100%);
  transition: opacity 500ms ease, visibility 500ms ease;
}

.splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(64px);
}

.splash-orb-1 {
  width: 440px;
  height: 440px;
  top: -150px;
  right: -130px;
  background: rgba(245, 179, 14, 0.16);
  animation: splashGlow 4.2s ease-in-out infinite;
}

.splash-orb-2 {
  width: 380px;
  height: 380px;
  bottom: -140px;
  left: -110px;
  background: rgba(245, 179, 14, 0.1);
  animation: splashGlow 5s ease-in-out 1s infinite;
}

.splash-orb-3 {
  width: 190px;
  height: 190px;
  right: 15%;
  bottom: 11%;
  background: rgba(255, 255, 255, 0.06);
}

.splash-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.1rem, 3vw, 1.5rem);
  padding: clamp(2.2rem, 6vw, 3.2rem) clamp(2.4rem, 6vw, 3.5rem);
  border-radius: 2.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow:
    0 44px 96px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  animation: splashCardEnter 900ms var(--transition-spring) forwards;
}

.splash-icon-wrap {
  position: relative;
  width: clamp(86px, 15vw, 120px);
  height: clamp(86px, 15vw, 120px);
}

.splash-icon-wrap::before {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 179, 14, 0.3), rgba(245, 179, 14, 0) 68%);
  filter: blur(12px);
}

.splash-icon {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 27px;
  box-shadow:
    0 28px 50px rgba(0, 0, 0, 0.44),
    0 8px 18px rgba(245, 179, 14, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.splash-brand {
  display: grid;
  justify-items: center;
  gap: 0.32rem;
  text-align: center;
}

.splash-brand-kicker {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.splash-brand-title {
  color: #ffffff;
  font-family: var(--font-family-display);
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.95;
  text-transform: none;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.splash-brand-accent {
  color: #ffc72c;
}

.splash-brand-subtitle {
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.splash-progress {
  position: relative;
  width: min(70%, 250px);
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.splash-progress-bar {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffd457, #f5b30e 60%, #e09f00);
  transform-origin: left;
  animation: splashProgress 1.6s ease-in-out infinite;
}

.splash-promo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.splash-tag {
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--font-size-xs);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  animation: splashTagPop 520ms var(--transition-spring) forwards;
}

.splash-tag:nth-child(1) {
  animation-delay: 500ms;
}

.splash-tag:nth-child(2) {
  animation-delay: 640ms;
}

.splash-tag:nth-child(3) {
  animation-delay: 780ms;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

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

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageExit {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes staggerIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flyToCart {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  60% {
    transform: scale(0.45);
    opacity: 0.92;
  }

  100% {
    transform: scale(0.1);
    opacity: 0;
  }
}

@keyframes cartPop {
  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.18);
  }

  65% {
    transform: scale(0.96);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes heartPop {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.18);
  }

  65% {
    transform: scale(0.94);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes splashGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.42;
  }

  50% {
    transform: scale(1.12);
    opacity: 0.7;
  }
}

@keyframes splashLogoEnter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes splashCardEnter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes splashProgress {
  0% {
    transform: scaleX(0);
  }

  60% {
    transform: scaleX(0.72);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes splashTagEnter {
  to {
    opacity: 1;
  }
}

@keyframes splashTagPop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 480px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body[data-route="checkout"] .grid,
  body[data-route="checkout"] .grid-cols-2 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .toast-container {
    left: auto;
  }
}

@media (min-width: 1024px) {
  .grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .floating-cart-btn {
    bottom: calc(28px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 1023px) {
  .page-hero,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-media-card,
  .product-detail-info-column,
  .product-summary-card,
  .product-purchase-card {
    grid-column: auto;
    grid-row: auto;
  }

  .product-purchase-card {
    position: static;
    top: auto;
  }

  .product-desktop-only {
    display: none !important;
  }

  .floating-cart-btn {
    display: none !important;
  }

  .product-mobile-only {
    display: grid;
  }

  .product-media-card {
    width: 100%;
    margin-inline: 0;
  }

  .product-mobile-qty-row {
    align-items: flex-start;
    gap: 0.75rem;
  }

  body[data-route="products"] .page-hero,
  body[data-route="products"] .catalog-hero,
  body[data-route="products"] .catalog-mobile-hero,
  body[data-route="products"] .catalog-marketing {
    display: none;
  }

  body[data-route="products"] .catalog-shell {
    gap: var(--spacing-4);
    overflow-x: clip;
  }

  body[data-route="products"] .catalog-toolbar {
    display: none;
  }

  body[data-route="products"] .catalog-toolbar {
    gap: var(--spacing-3);
    padding: 1rem;
  }

  body[data-route="products"] .catalog-results-meta {
    display: grid;
    justify-content: stretch;
    align-items: start;
  }

  body[data-route="products"] .catalog-results-meta .hero-chip {
    width: fit-content;
    max-width: 100%;
  }

  body[data-route="products"] .catalog-section,
  body[data-route="products"] .catalog-grid-section {
    gap: var(--spacing-3);
  }

  .store-footer {
    display: none !important;
  }

  body[data-route="products"] .catalog-section .section-header,
  body[data-route="products"] .catalog-grid-section .section-header {
    align-items: flex-start;
    gap: var(--spacing-3);
    margin-bottom: 0;
  }

  body[data-route="products"] .catalog-section .section-header .btn,
  body[data-route="products"] .catalog-grid-section .section-header .btn {
    width: auto;
    align-self: flex-start;
  }

  body[data-route="products"] .filter-chip-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    padding-inline: 0.05rem;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  body[data-route="products"] .filter-chip {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  body[data-route="products"] .product-scroll-row {
    grid-auto-columns: minmax(150px, 46vw);
    gap: 0.9rem;
    padding-inline: 0.05rem;
  }

  body[data-route="products"] .catalog-section + .catalog-section {
    margin-top: var(--spacing-6);
  }

  body[data-route="products"] #products-grid {
    row-gap: 0.75rem;
    column-gap: 0.75rem;
  }

  .product-row,
  .product-scroll-row,
  .filter-chip-row,
  .product-thumb-strip,
  .sidebar-nav,
  .modal-content,
  .table-container,
  .search-suggestions,
  .bottom-sheet-body {
    -webkit-overflow-scrolling: touch;
  }

  .product-row,
  .product-scroll-row,
  .filter-chip-row,
  .product-thumb-strip {
    scroll-snap-type: none;
  }
}

@media (max-width: 768px) {
  .admin-list-desktop {
    display: none !important;
  }

  .admin-list-mobile {
    display: block;
  }

  .cart-desktop {
    display: none;
  }

  .cart-mobile {
    display: block;
  }

  .pwa-install-banner {
    display: flex;
  }

  body[data-route="home"] .page-content,
  body[data-route="employee-dashboard"] .page-content {
    min-height: calc(100dvh - 172px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }

  body[data-route="home"] .home-shell,
  body[data-route="employee-dashboard"] .home-shell {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: auto;
    gap: var(--spacing-3);
    padding: 0;
    border-radius: 0;
    width: 100%;
    min-width: 0;
    overflow: visible;
  }

  body[data-route="home"] .home-shell > section,
  body[data-route="employee-dashboard"] .home-shell > section {
    width: 100%;
    min-width: 0;
  }

  body[data-route="home"] .home-featured-section,
  body[data-route="employee-dashboard"] .home-featured-section,
  body[data-route="home"] .home-arrivals-section,
  body[data-route="employee-dashboard"] .home-arrivals-section {
    display: none;
  }

  body[data-route="home"] .home-categories-section,
  body[data-route="employee-dashboard"] .home-categories-section {
    --home-mobile-bottom-inset: calc(108px + env(safe-area-inset-bottom));
    display: block;
    flex: 1 0 auto;
    padding: calc(clamp(1rem, 4vh, 1.75rem) + 0.625rem) 1.1rem calc(0.9rem + var(--home-mobile-bottom-inset));
    margin: -0.625rem 0 calc(-1 * (var(--home-mobile-bottom-inset) - 0.9rem));
    isolation: isolate;
    overflow: visible;
    background: var(--color-accent);
    box-shadow: 0 -12px 24px rgba(245, 179, 14, 0.18);
  }

  body[data-route="home"] .home-categories-section::before,
  body[data-route="employee-dashboard"] .home-categories-section::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: -18vw;
    right: -18vw;
    top: clamp(-90px, -18vw, -70px);
    height: clamp(88px, 21vw, 105px);
    border-radius: 0 0 50% 50% / 0 0 70% 70%;
    background: #ffffff;
    box-shadow: 0 3px 0 rgba(255, 213, 103, 0.55), 0 12px 24px rgba(245, 179, 14, 0.25);
  }

  body[data-route="home"] .home-categories,
  body[data-route="employee-dashboard"] .home-categories {
    position: relative;
    z-index: 1;
  }

  body[data-route="home"] .home-mobile-intro,
  body[data-route="employee-dashboard"] .home-mobile-intro,
  body[data-route="home"] .home-categories-header,
  body[data-route="employee-dashboard"] .home-categories-header {
    display: none;
  }

  body[data-route="home"] .home-categories,
  body[data-route="employee-dashboard"] .home-categories {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 0.85rem;
    row-gap: 1.5rem;
    align-content: center;
    justify-content: center;
    min-height: 100%;
    transform: translateY(0);
  }

  body[data-route="home"] .home-category-chip,
  body[data-route="employee-dashboard"] .home-category-chip {
    max-width: 96px;
    padding-top: 0.2rem;
  }

  .home-category-icon {
    width: 77px;
    height: 77px;
  }

  body[data-route="home"] .home-category-icon::before,
  body[data-route="employee-dashboard"] .home-category-icon::before {
    inset: -8px;
    border-width: 3px;
    border-color: #eba100;
    box-shadow:
      0 0 0 8px rgba(255, 210, 116, 0.35),
      0 10px 24px rgba(255, 213, 103, 0.5),
      0 18px 38px rgba(255, 190, 59, 0.4);
  }

  body[data-route="home"] .home-category-svg,
  body[data-route="employee-dashboard"] .home-category-svg {
    width: 2.9rem;
    height: 2.9rem;
  }

  body[data-route="home"] .home-category-name,
  body[data-route="employee-dashboard"] .home-category-name {
    max-width: 90px;
    margin-top: -0.66rem;
    padding: 0.22rem 0.55rem 0.26rem;
    font-size: 0.68rem;
    line-height: 1.12;
  }
}

@media (min-width: 641px) {
  body[data-route="home"] .home-category-icon::before,
  body[data-route="employee-dashboard"] .home-category-icon::before {
    box-shadow:
      0 0 0 10px rgba(255, 210, 116, 0.35),
      0 12px 26px rgba(255, 213, 103, 0.5),
      0 20px 40px rgba(255, 190, 59, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  body[data-route="home"] .home-category-chip:hover .home-category-icon::before,
  body[data-route="employee-dashboard"] .home-category-chip:hover .home-category-icon::before,
  body[data-route="home"] .home-category-chip:active .home-category-icon::before,
  body[data-route="employee-dashboard"] .home-category-chip:active .home-category-icon::before {
    box-shadow:
      0 0 0 12px rgba(255, 210, 116, 0.42),
      0 16px 32px rgba(255, 213, 103, 0.6),
      0 24px 44px rgba(255, 190, 59, 0.46),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }
}

@media (min-width: 769px) {
  .cart-mobile {
    display: none;
  }
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
  }

  .btn-sm {
    width: auto;
  }

  .page-hero {
    padding: 1rem;
    border-radius: var(--radius-2xl);
  }

  .product-row {
    grid-auto-columns: minmax(220px, 84vw);
  }

  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 0.75rem;
  }

  .cart-item-image {
    grid-row: 1 / 3;
  }

  .cart-item-details {
    grid-row: 1 / 2;
  }

  .cart-item-subtotal,
  .cart-item-remove {
    grid-column: 2;
    grid-row: 2 / 3;
    justify-self: start;
  }

  .cart-item-remove {
    justify-self: end;
  }

  .checkout-steps {
    gap: 0.4rem;
  }

  .checkout-step span:last-child {
    display: none;
  }

  .toast-container {
    right: 10px;
    left: 10px;
    width: auto;
  }

  body[data-route="home"] .home-categories,
  body[data-route="employee-dashboard"] .home-categories {
    column-gap: 0.65rem;
    row-gap: 1.5rem;
  }

  body[data-route="products"] .catalog-shell {
    gap: 1rem;
    width: 100%;
  }

  body[data-route="products"] .catalog-toolbar {
    padding: 0.95rem;
    border-radius: 0;
  }

  body[data-route="products"] .catalog-results-meta {
    gap: 0.75rem;
  }

  body[data-route="products"] .catalog-results-meta .section-title {
    font-size: clamp(1.18rem, 6vw, 1.45rem);
  }

  body[data-route="products"] .catalog-results-meta .section-subtitle {
    margin-top: 0.2rem;
    line-height: 1.5;
  }

  body[data-route="products"] .premium-search-input {
    font-size: 16px;
  }

  body[data-route="products"] .filter-chip-row {
    gap: 0.55rem;
  }

  body[data-route="products"] .filter-chip {
    padding: 0.68rem 0.88rem;
  }

  body[data-route="products"] .product-scroll-row {
    grid-auto-columns: minmax(135px, 46vw);
    gap: 0.8rem;
  }

  body[data-route="products"] .product-card-horizontal {
    border-radius: 18px;
  }

  body[data-route="products"] .product-card-horizontal .product-card-body {
    padding: 0.8rem;
  }

  body[data-route="products"] .product-card-horizontal .product-card-title {
    font-size: 0.92rem;
    line-height: 1.35;
  }

  body[data-route="products"] .product-card-horizontal .product-card-price {
    margin-bottom: 0.7rem;
  }

  body[data-route="products"] .product-card-horizontal .btn {
    width: 100%;
    margin-top: 0;
  }

  body[data-route="products"] .product-card:hover,
  body[data-route="products"] .product-card-horizontal:hover,
  body[data-route="products"] .filter-chip:hover,
  body[data-route="products"] .premium-search-action:hover:not(:disabled) {
    transform: none;
  }

  body[data-route="products"] .catalog-section,
  body[data-route="products"] .catalog-grid-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-shell {
    animation-duration: 220ms;
  }
}

@media (max-width: 420px) {
  body[data-route="home"] .home-category-chip,
  body[data-route="employee-dashboard"] .home-category-chip {
    max-width: 96px;
    padding-top: 0.1rem;
  }

  body[data-route="home"] .home-category-icon,
  body[data-route="employee-dashboard"] .home-category-icon {
    width: 75px;
    height: 75px;
  }

  body[data-route="home"] .home-category-icon::before,
  body[data-route="employee-dashboard"] .home-category-icon::before {
    inset: -8px;
  }

  body[data-route="home"] .home-category-name,
  body[data-route="employee-dashboard"] .home-category-name {
    max-width: 92px;
    margin-top: -0.6rem;
    padding-inline: 0.5rem;
    font-size: 0.62rem;
    line-height: 1.1;
  }
}

@media (max-width: 359px) {
  body[data-route="home"] .home-categories,
  body[data-route="employee-dashboard"] .home-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }

  body[data-route="home"] .home-category-chip,
  body[data-route="employee-dashboard"] .home-category-chip {
    max-width: 132px;
  }

  body[data-route="home"] .home-category-icon,
  body[data-route="employee-dashboard"] .home-category-icon {
    width: 96px;
    height: 96px;
  }

  body[data-route="home"] .home-category-icon::before,
  body[data-route="employee-dashboard"] .home-category-icon::before {
    inset: -9px;
  }

  body[data-route="home"] .home-category-name,
  body[data-route="employee-dashboard"] .home-category-name {
    max-width: 120px;
    padding-inline: 0.6rem;
    font-size: 0.7rem;
  }
}

body[data-route="products"] .main-content {
  padding-top: calc(var(--navbar-height) + var(--spacing-5) + env(safe-area-inset-top));
  background: #ffffff;
}

@media (min-width: 1024px) {
  body[data-route="products"] .main-content {
    padding-inline: clamp(1rem, 1.9vw, 1.5rem);
  }

  body[data-route="products"] .page-content {
    width: 100%;
    max-width: none;
    margin: 0;
  }
}

body[data-route="products"] .catalog-reference-shell {
  --catalog-ink: #101e3c;
  --catalog-yellow: #ffc31b;
  --catalog-yellow-soft: #fff5ca;
  --catalog-red: #e4262f;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: clamp(1.2rem, 2.6vw, 2rem);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding-bottom: 2rem;
  background: #ffffff;
}

@media (min-width: 1024px) {
  body[data-route="products"] .catalog-reference-shell {
    padding-bottom: 0;
  }
}

body[data-route="products"] .catalog-reference-shell > * {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.catalog-reference-top {
  display: grid;
  gap: 1rem;
  overflow: visible;
}

.catalog-reference-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 62px;
}

.catalog-brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  height: auto;
  min-width: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  cursor: pointer;
  color: var(--color-primary-strong);
  font-family: "Gotham", "Gotham Bold", "Gotham Medium", "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(1.3rem, 1.3vw, 1.56rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  white-space: nowrap;
  text-rendering: geometricPrecision;
}

.catalog-brand-lockup .brand-accent {
  color: var(--color-accent);
}

.catalog-brand-lockup > span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.catalog-brand-lockup .brand-cart-icon {
  width: clamp(1.725rem, 1.95vw, 2.325rem);
  height: clamp(1.725rem, 1.95vw, 2.325rem);
  margin-right: 0.34rem;
  object-fit: contain;
  vertical-align: middle;
  flex: 0 0 auto;
}

.catalog-brand-lockup::before {
  content: none;
}

.catalog-brand-lockup::after {
  content: none;
}

.catalog-reference-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

@media (max-width: 1023px) {
  .catalog-reference-profile {
    display: none;
  }
}

.catalog-reference-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--catalog-ink);
  box-shadow: 0 8px 18px rgba(13, 34, 71, 0.1);
  cursor: pointer;
}

.catalog-reference-icon .ui-icon {
  width: 1.4rem;
  height: 1.4rem;
}

.catalog-reference-badge,
.catalog-cart-badge {
  position: absolute;
  top: -0.18rem;
  right: -0.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding-inline: 0.22rem;
  border-radius: 50%;
  background: var(--catalog-red);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 900;
}

.catalog-cart-badge:empty,
.catalog-cart-badge[data-count="0"] {
  display: none;
}

.catalog-reference-search {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  min-height: 62px;
  padding: 0.55rem 0.62rem 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 1.7rem;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(13, 34, 71, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: visible;
}

#catalog-search-suggestions {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 100%;
  margin-top: 0.75rem;
  z-index: 340;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 24px 54px rgba(13, 34, 71, 0.18),
    0 8px 20px rgba(13, 34, 71, 0.1);
}

.catalog-reference-search.catalog-search-has-suggestions {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (min-width: 1024px) {
  body[data-route="products"] .catalog-reference-top {
    gap: 0.75rem;
    padding-top: 0;
  }

  body[data-route="products"] .catalog-reference-header,
  body[data-route="products"] .catalog-reference-search {
    display: none;
  }
}

.catalog-reference-search:focus-within {
  box-shadow: 0 0 0 4px rgba(255, 195, 27, 0.2), 0 14px 28px rgba(13, 34, 71, 0.1);
}

.catalog-reference-search-icon,
.catalog-reference-search-icon .ui-icon {
  display: inline-flex;
  width: 1.65rem;
  height: 1.65rem;
  flex: 0 0 auto;
  color: var(--catalog-ink);
}

.catalog-reference-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--catalog-ink);
  font: inherit;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
}

.catalog-reference-search input::placeholder {
  color: #8190a8;
}

.catalog-reference-voice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: var(--catalog-yellow);
  color: var(--catalog-ink);
  cursor: pointer;
}

.catalog-reference-voice .ui-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.catalog-category-row,
.catalog-product-rail,
.catalog-brand-rail {
  display: grid;
  grid-auto-flow: column;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.catalog-category-row::-webkit-scrollbar,
.catalog-product-rail::-webkit-scrollbar,
.catalog-brand-rail::-webkit-scrollbar {
  display: none;
}

.catalog-category-row {
  grid-auto-columns: minmax(76px, 1fr);
  gap: 0.7rem;
  padding: 0.18rem 0.05rem 0.35rem;
}

.catalog-category-card {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.4rem;
  min-height: 104px;
  padding: 0.58rem 0.42rem;
  border: 1px solid rgba(13, 34, 71, 0.05);
  border-radius: 1.3rem;
  background: #ffffff;
  color: var(--catalog-ink);
  font-size: 0.74rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(13, 34, 71, 0.07);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  text-align: center;
}

.catalog-category-card > span:last-child {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.25;
}

.catalog-category-card:hover,
.catalog-category-card.active {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #ffd13d, #ffc31b);
  box-shadow: 0 14px 24px rgba(245, 179, 14, 0.24);
}

.catalog-category-art,
.catalog-category-art .ui-icon,
.catalog-category-art .home-category-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
}

.catalog-category-art .home-category-img {
  border-radius: 0.85rem;
  object-fit: cover;
}

.catalog-promo-banner {
  position: relative;
  display: flex;
  min-height: clamp(214px, 30vw, 300px);
  overflow: hidden;
  isolation: isolate;
  border-radius: 1.7rem;
  background: linear-gradient(120deg, #f4f5f7 0%, #eef0f3 55%, #e3e6eb 100%);
  box-shadow: 0 18px 36px rgba(13, 34, 71, 0.1);
}

.catalog-promo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(248, 249, 251, 0.98) 0%, rgba(248, 249, 251, 0.84) 38%, rgba(248, 249, 251, 0.12) 76%);
}

.catalog-promo-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  width: min(54%, 390px);
  padding: clamp(1.35rem, 4vw, 2.4rem);
  color: var(--catalog-ink);
}

.catalog-promo-kicker {
  font-size: clamp(0.75rem, 1.6vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-promo-copy h1 {
  margin: 0.25rem 0 0.35rem;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.catalog-promo-copy h1 strong {
  font-weight: 900;
}

.catalog-promo-copy p {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(0.78rem, 1.6vw, 1rem);
  line-height: 1.45;
}

.catalog-promo-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.72rem 1rem;
  border: 0;
  border-radius: 999px;
  background: var(--catalog-ink);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.catalog-promo-button .ui-icon {
  width: 1rem;
  height: 1rem;
}

.catalog-promo-image {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
  width: 70%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.catalog-promo-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 5.5rem;
  height: 5.5rem;
  padding: 0.4rem;
  border-radius: 50%;
  background: var(--promo-bg, var(--catalog-red));
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 0 10px 22px rgba(13, 34, 71, 0.2);
}

.catalog-promo-badge strong {
  font-size: 1.6rem;
  line-height: 0.8;
}

.catalog-promo-badge small {
  font-size: 0.62rem;
}

@media (min-width: 1024px) {
  body[data-route="products"] .catalog-promo-banner {
    background: linear-gradient(120deg, #ffffff 0%, #ffffff 55%, #f7f8fb 100%);
  }

  body[data-route="products"] .catalog-promo-banner::after {
    right: auto;
    width: min(56%, 410px);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0) 100%);
  }

  body[data-route="home"] .catalog-promo-banner,
  body[data-route="employee-dashboard"] .catalog-promo-banner {
    --home-promo-copy-width: min(40%, 342px);
    background: var(--promo-bg, #ffffff);
  }

  body[data-route="home"] .catalog-promo-banner::after,
  body[data-route="employee-dashboard"] .catalog-promo-banner::after {
    display: none;
  }

  body[data-route="home"] .catalog-promo-copy,
  body[data-route="employee-dashboard"] .catalog-promo-copy {
    width: var(--home-promo-copy-width);
    background: var(--promo-bg, transparent);
    color: #ffffff;
  }

  body[data-route="home"] .catalog-promo-copy .catalog-promo-kicker,
  body[data-route="employee-dashboard"] .catalog-promo-copy .catalog-promo-kicker {
    color: rgba(255, 255, 255, 0.8);
  }

  body[data-route="home"] .catalog-promo-copy h1,
  body[data-route="employee-dashboard"] .catalog-promo-copy h1 {
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(13, 34, 71, 0.3);
  }

  body[data-route="home"] .catalog-promo-copy p,
  body[data-route="employee-dashboard"] .catalog-promo-copy p {
    color: rgba(255, 255, 255, 0.92);
  }

  body[data-route="home"] .catalog-promo-copy .catalog-promo-button,
  body[data-route="employee-dashboard"] .catalog-promo-copy .catalog-promo-button {
    background: #ffffff;
    color: var(--promo-bg, var(--catalog-ink));
    box-shadow: 0 14px 28px rgba(13, 34, 71, 0.22);
  }

  body[data-route="home"] .catalog-promo-banner .catalog-promo-image,
  body[data-route="employee-dashboard"] .catalog-promo-banner .catalog-promo-image {
    left: var(--home-promo-copy-width);
    right: 0;
    width: calc(100% - var(--home-promo-copy-width));
    max-width: none;
    z-index: 1;
    object-fit: cover;
    object-position: left center;
    mix-blend-mode: normal;
  }
}

.catalog-reference-section {
  display: grid;
  gap: 0.95rem;
  min-width: 0;
}

.catalog-reference-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.catalog-reference-section-head h2 {
  margin: 0.15rem 0 0.1rem;
  color: var(--catalog-ink);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  letter-spacing: -0.04em;
}

.catalog-reference-section-head p {
  margin: 0;
  color: #53627b;
  font-size: 0.82rem;
}

.catalog-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #e09f00;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-section-kicker .ui-icon {
  width: 0.9rem;
  height: 0.9rem;
}

.catalog-see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #e09f00;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.catalog-see-all .ui-icon {
  width: 1rem;
  height: 1rem;
}

.catalog-product-rail {
  grid-auto-columns: minmax(210px, 238px);
  gap: 0.8rem;
  padding: 0.2rem 0.15rem 0.6rem;
}

.catalog-shell.is-filtered .catalog-reference-section {
  display: none;
}

.catalog-product-rail-item {
  min-width: 0;
}

.catalog-product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(13, 34, 71, 0.06);
  border-radius: 1.4rem;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(13, 34, 71, 0.08);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
}

.catalog-product-card:hover,
.catalog-product-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(13, 34, 71, 0.13);
}

.catalog-product-card:focus-visible {
  outline: 3px solid rgba(245, 179, 14, 0.35);
  outline-offset: 2px;
}

.catalog-product-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.92;
  overflow: hidden;
  background: #ffffff;
}

.catalog-product-image {
  width: 100%;
  height: 100%;
  padding: 0.7rem;
  object-fit: contain;
}

.catalog-product-discount {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  padding: 0.35rem 0.48rem;
  border-radius: 0.55rem;
  background: var(--catalog-red);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 900;
}

.catalog-product-wishlist {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--catalog-ink);
  box-shadow: 0 5px 12px rgba(13, 34, 71, 0.1);
  cursor: pointer;
}

.catalog-product-wishlist .ui-icon {
  width: 1rem;
  height: 1rem;
}

.catalog-product-wishlist.active {
  color: var(--catalog-red);
}

.catalog-product-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.35rem;
  padding: 0.75rem 0.8rem 0.8rem 0.8rem;
  position: relative;
  flex: 1;
}

.catalog-product-quick-add {
  position: static;
  align-self: flex-end;
  width: 1.8rem;
  min-width: 1.8rem;
  height: 1.8rem;
  min-height: 1.8rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--color-primary-strong);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 900;
}

.catalog-product-quick-add:hover {
  transform: translateY(-1px);
}

.catalog-product-context,
.catalog-product-supplier {
  overflow: hidden;
  color: #738099;
  font-size: 0.66rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-product-context {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #e09f00;
  text-transform: uppercase;
}

.catalog-product-context .ui-icon {
  width: 0.76rem;
  height: 0.76rem;
}

.catalog-product-title {
  display: -webkit-box;
  min-height: 2.45em;
  margin: 0;
  overflow: hidden;
  color: var(--catalog-ink);
  font-size: 0.88rem;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-product-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.catalog-product-price {
  color: var(--color-accent);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.catalog-product-old-price {
  color: #8792a3;
  font-size: 0.7rem;
  text-decoration: line-through;
}

.catalog-add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.25rem;
  margin-top: 0.25rem;
  padding: 0.55rem 0.7rem;
  border: 0;
  border-radius: 0.8rem;
  background: var(--catalog-yellow);
  color: var(--catalog-ink);
  font-size: 0.72rem;
  font-weight: 900;
  cursor: pointer;
}

.catalog-add-button:hover {
  background: #f2ad00;
}

.catalog-add-button .ui-icon {
  width: 1rem;
  height: 1rem;
}

.catalog-brand-rail {
  grid-auto-columns: minmax(118px, 150px);
  gap: 0.7rem;
  padding: 0.2rem 0.15rem 0.55rem;
}

.catalog-brand-card {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  min-height: 112px;
  padding: 0.75rem 0.55rem;
  border: 1px solid rgba(13, 34, 71, 0.06);
  border-radius: 1.2rem;
  background: #ffffff;
  color: var(--catalog-ink);
  box-shadow: 0 10px 22px rgba(13, 34, 71, 0.07);
  cursor: pointer;
}

.catalog-brand-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(13, 34, 71, 0.1);
}

.catalog-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, #eef4ff, #fff8d7);
  color: var(--catalog-ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.catalog-brand-mark-logo {
  width: 100%;
  height: 3.1rem;
  padding: 0.25rem;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid rgba(13, 34, 71, 0.08);
  overflow: hidden;
}

.catalog-brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.65rem;
}

.catalog-brand-name {
  display: -webkit-box;
  max-width: 12ch;
  overflow: hidden;
  font-size: 0.7rem;
  font-weight: 900;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-results-count {
  flex: 0 0 auto;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: var(--catalog-yellow-soft);
  color: #a96f00;
  font-size: 0.72rem;
  font-weight: 900;
}

body[data-route="products"] .catalog-reference-shell .product-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  column-gap: 0.65rem;
  row-gap: 0.7rem;
}

@media (min-width: 1024px) {
  body[data-route="products"] .catalog-reference-shell .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    column-gap: 0.85rem;
    row-gap: 0.9rem;
  }

  body[data-route="products"] .catalog-reference-shell .product-grid .product-card {
    min-width: 0;
  }

  body[data-route="products"] .catalog-reference-shell .product-grid .product-card-media {
    padding: 0.85rem 0.85rem 0.45rem;
  }

  body[data-route="products"] .catalog-reference-shell .product-grid .product-card-image-wrap {
    min-height: 220px;
    padding: 0.75rem;
    border-radius: 1.15rem;
  }

  body[data-route="products"] .catalog-reference-shell .product-grid .product-card-body {
    gap: 0.55rem;
    padding: 0.2rem 0.85rem 0.95rem 0.85rem;
  }

  body[data-route="products"] .catalog-reference-shell .product-grid .product-card-title {
    font-size: 0.96rem;
    line-height: 1.24;
  }

  body[data-route="products"] .catalog-reference-shell .product-grid .product-card-price {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  body[data-route="products"] .top-bar {
    display: none;
  }

  body[data-route="products"] .main-content {
    padding: 0 0 calc(92px + env(safe-area-inset-bottom));
  }

  body[data-route="products"] .catalog-reference-shell {
    gap: 1.3rem;
    padding-bottom: 1rem;
  }

  .catalog-reference-top {
    gap: 0.9rem;
    padding: max(0.9rem, env(safe-area-inset-top)) 1rem 1.05rem;
    background: linear-gradient(180deg, #ffd22e 0%, #ffc31b 74%, #ffffff 100%);
    border-radius: 0 0 1.8rem 1.8rem;
  }

  .catalog-reference-header {
    display: none;
  }

  .catalog-brand-lockup {
    width: fit-content;
    max-width: min(180px, 48vw);
    min-height: 2.85rem;
    height: auto;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: #ffffff;
    box-shadow:
      0 8px 18px rgba(13, 34, 71, 0.08),
      0 2px 8px rgba(13, 34, 71, 0.04);
  }

  .catalog-brand-lockup .brand-cart-icon {
    width: 1.7rem;
    height: 1.7rem;
    margin-right: 0.3rem;
  }

  .catalog-brand-lockup > span {
    display: inline-flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 800;
  }

  .catalog-reference-icon {
    width: 2.4rem;
    height: 2.4rem;
    background: transparent;
    box-shadow: none;
  }

  .catalog-reference-search {
    min-height: 58px;
    border-radius: 1.45rem;
  }

  .catalog-category-row {
    grid-auto-columns: 82px;
    margin-inline: -0.1rem;
  }

  .catalog-category-card {
    min-height: 100px;
  }

  .catalog-promo-banner {
    min-height: 220px;
    margin-inline: 0;
    border-radius: 1.35rem;
  }

  .catalog-promo-copy {
    width: 66%;
    padding: 1.2rem 1rem;
  }

  .catalog-promo-copy h1 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .catalog-promo-copy p {
    font-size: 0.74rem;
  }

  .catalog-promo-image {
    width: 75%;
    object-position: center;
  }

  .catalog-promo-badge {
    top: 0.7rem;
    right: 0.65rem;
    width: 4.5rem;
    height: 4.5rem;
  }

  .catalog-promo-badge strong {
    font-size: 1.25rem;
  }

  .catalog-reference-section,
  .catalog-grid-section {
    padding-inline: clamp(0.75rem, 4vw, 1rem);
  }

  .catalog-reference-section-head {
    align-items: end;
  }

  .catalog-reference-section-head h2 {
    font-size: 1.25rem;
  }

  .catalog-see-all {
    font-size: 0.7rem;
  }

  .catalog-product-rail {
    grid-auto-columns: minmax(196px, 68vw);
    margin-inline: 0;
  }

  .catalog-product-card {
    border-radius: 1.25rem;
  }

  .catalog-product-title {
    font-size: 0.82rem;
  }

  body[data-route="products"] .catalog-reference-shell .product-grid {
    grid-template-columns: minmax(0, 1fr);
    column-gap: clamp(0.3rem, 1.8vw, 0.45rem);
    row-gap: clamp(0.75rem, 3vw, 1rem);
  }

  body[data-route="products"] .catalog-reference-shell .product-grid .product-card {
    min-width: 0;
    border-radius: 1rem;
  }

  body[data-route="products"] .catalog-reference-shell .product-grid .product-card-media {
    padding: clamp(0.25rem, 1.8vw, 0.55rem) clamp(0.25rem, 1.8vw, 0.55rem) 0;
  }

  body[data-route="products"] .catalog-reference-shell .product-grid .product-card-image-wrap {
    min-height: clamp(96px, 31vw, 128px);
    padding: clamp(0.25rem, 1.8vw, 0.55rem);
    border-radius: clamp(0.55rem, 2vw, 0.8rem);
  }

  body[data-route="products"] .catalog-reference-shell .product-grid .product-card-body {
    min-width: 0;
    padding: clamp(0.4rem, 1.8vw, 0.55rem) clamp(0.4rem, 2vw, 0.65rem) clamp(0.5rem, 2.2vw, 0.75rem) clamp(0.4rem, 2vw, 0.65rem);
  }

  body[data-route="products"] .catalog-product-quick-add {
    right: 0.35rem;
    bottom: 0.4rem;
    width: 1.5rem;
    min-width: 1.5rem;
    height: 1.5rem;
    min-height: 1.5rem;
    font-size: 1.08rem;
  }

  body[data-route="products"] .catalog-reference-shell .product-grid .product-card-title {
    font-size: clamp(0.72rem, 2.8vw, 0.88rem);
    line-height: 1.22;
  }

  body[data-route="products"] .catalog-reference-shell .product-grid .product-card-price {
    font-size: clamp(0.8rem, 3.2vw, 1rem);
  }
}

@media (min-width: 768px) {
  .catalog-reference-top {
    padding: 0.2rem 0 0;
  }

  .catalog-category-row {
    grid-auto-columns: minmax(84px, 1fr);
  }

  .catalog-promo-banner {
    min-height: 250px;
  }
}

@media (max-width: 767px) {
  body[data-route="products"] {
    overflow-x: clip;
    background: #ffffff;
  }

  body[data-route="products"] .page-content {
    overflow: visible;
  }

  body[data-route="products"] .catalog-reference-shell,
  body[data-route="products"] .catalog-reference-top,
  body[data-route="products"] .catalog-reference-section,
  body[data-route="products"] .catalog-grid-section {
    min-width: 0;
  }

  body[data-route="products"] .catalog-reference-search {
    width: 100%;
    box-sizing: border-box;
  }

  body[data-route="products"] .catalog-category-row {
    width: calc(100% + 1rem);
    padding-right: 1rem;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
  }

  body[data-route="products"] .catalog-category-card {
    width: 82px;
    scroll-snap-align: start;
  }

  body[data-route="products"] .catalog-promo-banner {
    width: 100%;
    box-sizing: border-box;
  }

  body[data-route="products"] .catalog-promo-copy {
    width: 70%;
    box-sizing: border-box;
  }

  body[data-route="products"] .catalog-promo-copy h1 {
    max-width: 7ch;
  }

  body[data-route="products"] .catalog-reference-section-head {
    min-width: 0;
  }

  body[data-route="products"] .catalog-reference-section-head > div {
    min-width: 0;
  }

  body[data-route="products"] .catalog-reference-section-head h2,
  body[data-route="products"] .catalog-reference-section-head p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body[data-route="products"] .catalog-see-all {
    white-space: nowrap;
  }

  body[data-route="products"] .catalog-product-rail,
  body[data-route="products"] .catalog-brand-rail {
    width: 100%;
    margin-inline: 0;
    padding-inline: 0.15rem;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
  }

  body[data-route="products"] .catalog-product-rail-item,
  body[data-route="products"] .catalog-brand-card {
    scroll-snap-align: start;
  }

  body[data-route="products"] .catalog-product-rail-item {
    min-width: 0;
  }

  body[data-route="products"] .catalog-add-button {
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  body[data-route="products"] .catalog-reference-top {
    padding-inline: 0.8rem;
  }

  body[data-route="products"] .catalog-brand-lockup {
    width: min(100px, 32vw);
    height: 34px;
  }

  body[data-route="products"] .catalog-reference-actions {
    gap: 0.1rem;
  }

  body[data-route="products"] .catalog-reference-search input {
    font-size: 0.82rem;
  }

  body[data-route="products"] .catalog-category-row {
    grid-auto-columns: 76px;
  }

  body[data-route="products"] .catalog-category-card {
    width: 76px;
    min-height: 94px;
    font-size: 0.68rem;
  }

  body[data-route="products"] .catalog-category-art,
  body[data-route="products"] .catalog-category-art .ui-icon,
  body[data-route="products"] .catalog-category-art .home-category-img {
    width: 2.45rem;
    height: 2.45rem;
  }

  body[data-route="products"] .catalog-promo-banner {
    min-height: 198px;
  }

  body[data-route="products"] .catalog-promo-copy {
    padding: 1rem 0.8rem;
  }

  body[data-route="products"] .catalog-promo-kicker {
    font-size: 0.62rem;
  }

  body[data-route="products"] .catalog-promo-copy h1 {
    font-size: 1.5rem;
  }

  body[data-route="products"] .catalog-promo-copy p {
    max-width: 16ch;
    font-size: 0.68rem;
  }

  body[data-route="products"] .catalog-promo-button {
    margin-top: 0.7rem;
    padding: 0.62rem 0.72rem;
    font-size: 0.68rem;
  }

  body[data-route="products"] .catalog-promo-badge {
    width: 3.9rem;
    height: 3.9rem;
    font-size: 0.5rem;
  }

  body[data-route="products"] .catalog-promo-badge strong {
    font-size: 1.05rem;
  }

  body[data-route="products"] .catalog-product-rail {
    grid-auto-columns: 178px;
    gap: 0.5rem;
  }

  body[data-route="products"] .catalog-product-body {
    padding-inline: 0.7rem;
  }
}

@media (max-width: 767px) {
  body[data-route="home"] .home-trust-section,
  body[data-route="employee-dashboard"] .home-trust-section {
    margin-top: -1.25rem;
    padding-top: 0.4rem;
  }

  body[data-route="home"] .home-categories,
  body[data-route="employee-dashboard"] .home-categories {
    column-gap: clamp(0.55rem, 2.5vw, 0.85rem);
    row-gap: clamp(1.6rem, 5vw, 2.2rem);
  }

  body[data-route="home"] .home-category-chip,
  body[data-route="employee-dashboard"] .home-category-chip {
    max-width: none;
    padding-inline: 0.1rem;
  }

  body[data-route="home"] .home-category-icon,
  body[data-route="employee-dashboard"] .home-category-icon {
    width: clamp(68px, 20.6vw, 85px);
    height: clamp(68px, 20.6vw, 85px);
  }

  body[data-route="home"] .home-category-name,
  body[data-route="employee-dashboard"] .home-category-name {
    min-height: 1.9rem;
    max-width: min(100%, clamp(86px, 25vw, 116px));
    padding: 0.3rem clamp(0.38rem, 1.9vw, 0.55rem) 0.36rem;
    font-size: clamp(0.64rem, 2.2vw, 0.88rem);
    line-height: 1.05;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body[data-route="home"] .home-category-name-nowrap,
  body[data-route="employee-dashboard"] .home-category-name-nowrap {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body[data-route="home"] .home-featured-section .product-grid,
  body[data-route="employee-dashboard"] .home-featured-section .product-grid {
    gap: 0.5rem;
  }

  body[data-route="home"] .home-arrivals-section .product-row,
  body[data-route="employee-dashboard"] .home-arrivals-section .product-row {
    grid-auto-columns: 178px;
    gap: 0.5rem;
  }
}



