.shop-discovery {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  margin: 0 0 24px;
  align-items: start;
}

.left-discovery-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.smart-finder,
.compare-panel,
.finder-results {
  background: #fff;
  border: 1px solid var(--avs-border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  align-self: start;
  height: auto;
  min-height: 0;
  padding: 18px;
}

.smart-finder {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border-color: #d9e7f2;
  padding: 18px 18px 16px;
}

.finder-results {
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.7) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-color: rgba(217, 231, 242, 0.8);
  padding: 24px;
  position: relative;
  z-index: 1;
}

.finder-results::before {
  background: radial-gradient(circle at top right, rgba(20, 155, 215, 0.03) 0%, transparent 70%);
  border-radius: 18px;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.shop-by-category-panel {
  background: #fff;
  border: 1px solid var(--avs-border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.shop-discovery-panel-head {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.shop-discovery-panel-head h4 {
  color: var(--avs-ink);
  font-size: 18px;
  margin: 4px 0 0;
}

.shop-discovery-category-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-discovery-category-tile {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid #dbe9f5;
  border-radius: 14px;
  color: var(--avs-ink);
  display: grid;
  gap: 4px;
  min-height: 76px;
  padding: 12px 12px;
  position: relative;
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition);
}

.shop-discovery-category-tile:hover,
.shop-discovery-category-tile:focus-visible {
  background: linear-gradient(180deg, #ffffff, #f2f9ff);
  border-color: rgba(20, 155, 215, 0.38);
  box-shadow: 0 8px 18px rgba(8, 52, 79, 0.09);
  text-decoration: none;
  transform: translateY(-1px);
}

.shop-discovery-category-tile strong {
  align-items: center;
  display: inline-flex;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.shop-discovery-category-tile strong::after {
  color: var(--avs-accent);
  content: '->';
  font-size: 12px;
  font-weight: 900;
}

.shop-discovery-category-tile.active,
.shop-discovery-category-tile[aria-current='page'] {
  background: linear-gradient(180deg, #f6fbff, #edf7ff);
  border: 2px solid rgba(17, 132, 188, 0.62);
  box-shadow: 0 10px 22px rgba(12, 63, 95, 0.12);
}

.shop-discovery-category-tile.active strong,
.shop-discovery-category-tile[aria-current='page'] strong {
  color: #0c4f77;
}

.shop-discovery-category-tile.active strong::after,
.shop-discovery-category-tile[aria-current='page'] strong::after {
  color: #0f6b9b;
  content: '✓';
  font-size: 13px;
}

.shop-discovery-category-tile.active::after,
.shop-discovery-category-tile[aria-current='page']::after {
  color: #1d5a7f;
  content: 'Selected';
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  position: absolute;
  right: 12px;
  text-transform: uppercase;
  top: 12px;
}

.shop-discovery-category-tile:focus-visible {
  outline: 2px solid rgba(15, 127, 181, 0.55);
  outline-offset: 2px;
}

.shop-discovery-category-tile span {
  color: #4b5563;
  font-size: 12px;
  line-height: 1.35;
}

.shop-discovery-active-chip {
  align-items: center;
  background: #edf7ff;
  border: 1px solid #b9daf0;
  border-radius: 999px;
  color: #0e5d8c;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 7px;
  min-height: 30px;
  padding: 6px 10px;
}
.shop-discovery-active-chip[hidden] {
  display: none;
}

.shop-discovery-active-chip::after {
  content: '×';
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.shop-discovery-active-chip:hover {
  background: #e4f3ff;
  border-color: #9ecde8;
}

.shop-discovery-active-chip:focus-visible {
  outline: 2px solid rgba(15, 127, 181, 0.55);
  outline-offset: 2px;
}

.compare-panel {
  background: linear-gradient(180deg, rgba(245, 250, 255, 0.9), rgba(255,255,255,1));
  grid-column: 1 / -1;
}

.smart-finder-header,
.compare-panel-header,
.finder-results-header {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(20, 155, 215, 0.08) 0%, rgba(20, 155, 215, 0.04) 100%);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(20, 155, 215, 0.12);
}

.finder-results-header-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: flex-start;
}

.finder-results-header-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.smart-finder-header h3,
.compare-panel-header h3,
.finder-results-header h4 {
  font-size: clamp(24px, 4vw, 32px);
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #102335;
}

.finder-results-eyebrow {
  color: #149bd7;
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin: 0;
  text-transform: uppercase;
  opacity: 0.85;
}

.finder-results-subtitle {
  color: #6b7684;
  display: block;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

.finder-personalization-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  padding: 20px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(20, 155, 215, 0.15);
  border-radius: 10px;
  backdrop-filter: blur(8px);
}

.finder-preference-section-label {
  font-size: 12px;
  font-weight: 600;
  color: #666f7d;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  width: 100%;
  text-align: right;
}

.finder-preference-chip {
  display: inline-block;
  background: rgba(20, 155, 215, 0.1);
  border: 1px solid rgba(20, 155, 215, 0.25);
  color: #149bd7;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.finder-preference-chip:hover {
  background: rgba(20, 155, 215, 0.15);
  border-color: rgba(20, 155, 215, 0.4);
}

.finder-results-grid {
  display: grid;
  gap: 14px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  min-width: 0;
  position: relative;
  z-index: 1;
}

/* Responsive grid: 1 recommendation */
.finder-results-grid[data-recommendation-count="1"] {
  grid-template-columns: 1fr;
  max-width: 600px;
}

.finder-results-grid[data-recommendation-count="1"] .finder-product-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  max-height: none;
}

.finder-results-grid[data-recommendation-count="1"] .finder-product-media {
  aspect-ratio: 1;
  min-height: 280px;
  border-bottom: none;
  border-right: 1px solid #e8f1f8;
}

.finder-results-grid[data-recommendation-count="1"] .finder-product-body {
  gap: 10px;
  padding: 18px 20px;
  justify-content: space-between;
}

.finder-results-grid[data-recommendation-count="1"] .finder-product-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  min-height: auto;
  -webkit-line-clamp: 3;
}

.finder-results-grid[data-recommendation-count="1"] .finder-product-actions {
  padding-top: 16px;
  flex-direction: column;
}

/* Responsive grid: 2 recommendations */
.finder-results-grid[data-recommendation-count="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Responsive grid: 3+ recommendations */
.finder-results-grid[data-recommendation-count="3"],
.finder-results-grid[data-recommendation-count="4"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.finder-product-card {
  background: #ffffff;
  border: 1px solid #d9e8f3;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  position: relative;
}

.finder-product-card::after {
  background: transparent;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: box-shadow 220ms ease;
}

.finder-product-card:hover {
  border-color: rgba(20, 155, 215, 0.6);
  box-shadow: 0 12px 28px rgba(13, 32, 54, 0.12);
  transform: translateY(-3px);
}

.finder-product-card:hover::after {
  box-shadow: inset 0 0 1px rgba(20, 155, 215, 0.15);
}

.finder-results .finder-product-media {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
  border-bottom: 1px solid #e8f1f8;
  display: flex;
  height: clamp(180px, 22vw, 270px);
  justify-content: center;
  min-height: 180px;
  overflow: hidden;
  padding: 18px;
  position: relative;
  width: 100%;
}

.finder-results .finder-product-card img {
  display: block;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 220ms ease;
  width: 100%;
}

.finder-results .finder-product-card:hover img {
  transform: scale(1.02);
}

.finder-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 14px 15px 16px;
}

.finder-product-category {
  color: var(--avs-accent);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin: 0;
  text-transform: uppercase;
}

.finder-product-title {
  display: -webkit-box;
  font-size: 13px;
  line-height: 1.34;
  margin: 0;
  min-height: calc(1.34em * 2);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 700;
}

.finder-product-badge {
  align-items: center;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  border-radius: 6px;
  color: #5d3800;
  display: inline-flex;
  font-size: 9px;
  font-weight: 900;
  gap: 4px;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 4px;
  padding: 4px 8px;
  text-transform: uppercase;
  width: fit-content;
}

.finder-product-badge::before {
  content: '★';
  font-size: 11px;
}

.finder-product-match-reason {
  color: #0d5a84;
  display: -webkit-box;
  font-size: 11px;
  line-height: 1.3;
  margin: 6px 0 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 500;
  background: rgba(20, 155, 215, 0.06);
  padding: 8px 10px;
  border-radius: 8px;
  border-left: 2px solid rgba(20, 155, 215, 0.2);
}

.finder-product-price-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.finder-product-price {
  color: #15283b;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -0.01em;
  margin: 0;
}

.finder-product-mrp {
  color: #7b8794;
  font-size: 11px;
  font-weight: 650;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.finder-product-discount {
  background: #edf7fd;
  border: 1px solid #cbe5f6;
  border-radius: 999px;
  color: var(--avs-blue-dark);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  text-transform: uppercase;
}

.finder-product-attribute {
  color: #5b6775;
  display: -webkit-box;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
  margin: 0;
  min-height: calc(1.35em * 1);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.finder-results-meta {
  color: var(--avs-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finder-product-actions {
  align-items: stretch;
  border-top: 1px solid #e7eef5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  min-height: 0;
  min-width: 0;
  padding-top: 12px;
  width: 100%;
}

.finder-view-btn,
.finder-compare-btn {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 11px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  justify-content: center;
  max-width: 100%;
  min-height: 0;
  min-width: 0;
  padding: 0;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.finder-view-btn {
  background: linear-gradient(180deg, #0f3f7b 0%, #0c3568 100%);
  border-color: #0c3568;
  box-shadow: 0 4px 10px rgba(12, 53, 104, 0.18);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  gap: 6px;
  line-height: 1;
  min-height: 44px;
  padding: 11px 14px;
  white-space: nowrap;
  width: 100%;
}

.finder-view-arrow {
  color: #dcedff;
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 900;
  transition: transform 220ms ease;
}

.finder-view-btn:hover {
  background: linear-gradient(180deg, #13498d 0%, #0f3f7b 100%);
  border-color: #0f3f7b;
}

.finder-view-btn:hover .finder-view-arrow {
  transform: translateX(3px);
}

.finder-compare-btn {
  color: #104a78;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  line-height: 1.1;
  min-height: 34px;
  overflow: hidden;
  padding: 6px 10px;
  white-space: nowrap;
}

.finder-compare-icon {
  color: #0f628f;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 850;
}

.finder-compare-btn:hover {
  background: rgba(20, 155, 215, 0.1);
  border-color: rgba(20, 155, 215, 0.26);
}

.finder-compare-btn.active {
  background: rgba(20, 155, 215, 0.14);
  border-color: rgba(20, 155, 215, 0.32);
  color: #0a4a73;
}

.finder-view-btn span,
.finder-compare-btn span {
  min-width: 0;
}

.finder-view-btn span:first-child,
.finder-compare-btn span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.smart-finder-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.smart-finder-grid label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  min-width: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.smart-finder-grid label span {
  color: #173049;
  min-width: 0;
}

.smart-finder-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.smart-finder-copy .eyebrow {
  margin-bottom: 0;
}

.smart-finder-copy h3 {
  color: var(--avs-ink);
  font-size: clamp(22px, 2vw, 26px);
  letter-spacing: -0.03em;
}

.smart-finder-copy p:not(.eyebrow) {
  color: #5b6d7d;
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.smart-finder-reset {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #547086;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 800;
  gap: 6px;
  min-height: 34px;
  padding: 6px 10px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.smart-finder-reset:hover,
.smart-finder-reset:focus-visible {
  background: rgba(20, 155, 215, 0.08);
  border-color: rgba(20, 155, 215, 0.16);
  color: #0b5f8d;
}

.smart-finder-reset:disabled,
.smart-finder-reset[aria-disabled="true"] {
  color: #8da1b2;
  cursor: not-allowed;
}

.smart-finder-grid select {
  appearance: none;
  background:
    linear-gradient(180deg, #f8fbfe 0%, #f2f7fb 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3.5 5.25L7 8.75L10.5 5.25' stroke='%23536C80' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center / 14px 14px;
  border: 1px solid var(--avs-border);
  border-radius: 10px;
  box-sizing: border-box;
  color: #173049;
  font-size: 14px;
  font-weight: 600;
  min-height: 42px;
  min-width: 0;
  padding: 9px 40px 9px 12px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  width: 100%;
}

.smart-finder-grid select:hover {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3.5 5.25L7 8.75L10.5 5.25' stroke='%23536C80' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center / 14px 14px;
  border-color: #bfd5e6;
}

.smart-finder-grid select:focus-visible,
.finder-view-btn:focus-visible,
.finder-compare-btn:focus-visible,
.product-card-compare:focus-visible,
.tiny-compare-remove:focus-visible {
  outline: 2px solid rgba(15, 137, 194, 0.55);
  outline-offset: 2px;
}

@media (min-width: 860px) {
  .finder-product-card.finder-product-card-wide .finder-product-actions,
  .finder-product-card[data-action-layout="inline"] .finder-product-actions {
    align-items: center;
    flex-direction: row;
    gap: 10px;
  }

  .finder-product-card.finder-product-card-wide .finder-view-btn,
  .finder-product-card[data-action-layout="inline"] .finder-view-btn {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
  }

  .finder-product-card.finder-product-card-wide .finder-compare-btn,
  .finder-product-card[data-action-layout="inline"] .finder-compare-btn {
    flex: 0 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .finder-view-btn,
  .finder-compare-btn,
  .finder-view-arrow {
    transition: none;
  }

  .finder-view-btn:hover .finder-view-arrow {
    transform: none;
  }
}

.finder-product-fallback {
  align-items: center;
  color: #4b5563;
  display: none;
  flex-direction: column;
  font-size: 12px;
  font-weight: 700;
  gap: 6px;
  text-align: center;
}

.finder-product-fallback::before {
  content: 'AV';
  align-items: center;
  background: #e7f1f9;
  border: 1px solid #cddfed;
  border-radius: 999px;
  color: var(--avs-blue-dark);
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  letter-spacing: 0.05em;
  width: 28px;
}

.finder-product-media.has-image-error img {
  display: none;
}

.finder-product-media.has-image-error .finder-product-fallback {
  display: inline-flex;
}

@media (prefers-reduced-motion: reduce) {
  .finder-product-card,
  .finder-product-card img,
  .finder-view-btn,
  .finder-view-arrow,
  .finder-compare-btn {
    transition: none;
  }

  .finder-product-card:hover {
    transform: none;
  }

  .finder-product-card:hover img {
    transform: none;
  }

  .finder-view-btn:hover,
  .finder-view-btn:hover .finder-view-arrow {
    transform: none;
  }
}

.compare-panel[hidden] {
  display: none;
}

.compare-panel-table-wrap {
  border: 1px solid #dfeaf4;
  border-radius: 12px;
  overflow-x: auto;
}

.compare-table {
  border-collapse: collapse;
  min-width: 540px;
  width: 100%;
}

.compare-table th,
.compare-table td {
  border: 1px solid #ddeaf5;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  background: #f6fbff;
  color: var(--avs-ink);
  font-size: 12px;
  text-transform: uppercase;
}

.compare-title {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.tiny-compare-remove {
  background: #eef2f5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  height: 24px;
  line-height: 1;
  width: 24px;
}

.finder-empty {
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .shop-discovery {
    grid-template-columns: 1fr;
  }

  .left-discovery-column {
    display: contents;
  }

  .smart-finder {
    order: 1;
  }

  .finder-results {
    order: 2;
  }

  .shop-by-category-panel {
    order: 3;
  }

  .compare-panel {
    order: 4;
  }

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

  .finder-results-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
  }

  .finder-results-grid[data-recommendation-count="1"] {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .finder-results-grid[data-recommendation-count="1"] .finder-product-card {
    grid-template-columns: 1fr;
  }

  .finder-results-grid[data-recommendation-count="1"] .finder-product-media {
    aspect-ratio: 4 / 3;
    border-right: none;
    border-bottom: 1px solid #e8f1f8;
  }

  .finder-product-media {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  .smart-finder-grid {
    grid-template-columns: 1fr;
  }

  .shop-discovery-category-grid,
  .finder-results-grid {
    grid-template-columns: 1fr;
  }

  .finder-results-grid[data-recommendation-count="2"],
  .finder-results-grid[data-recommendation-count="3"] {
    grid-template-columns: 1fr;
  }

  .shop-by-category-panel,
  .finder-results,
  .smart-finder {
    padding: 16px;
  }

  .finder-results {
    padding: 16px 14px;
  }

  .finder-results .finder-product-media {
    aspect-ratio: 4 / 3;
    height: clamp(170px, 42vw, 220px);
    min-height: 170px;
    padding: 10px;
  }

  .finder-product-body {
    gap: 6px;
    padding: 12px 12px 14px;
  }

  .finder-product-title {
    font-size: 13px;
    min-height: auto;
  }

  .finder-product-badge {
    font-size: 8px;
    padding: 3px 6px;
  }

  .finder-product-match-reason {
    font-size: 10px;
    margin-top: 4px;
    padding: 6px 8px;
  }

  .finder-product-price {
    font-size: 15px;
  }

  .finder-view-btn {
    font-size: 13px;
    min-height: 40px;
    padding: 9px 12px;
  }

  .finder-compare-btn {
    min-height: 32px;
    font-size: 12px;
  }

  .finder-personalization-summary {
    flex-direction: row;
    align-items: center;
    padding: 12px;
    gap: 8px;
    margin-top: 0;
  }

  .finder-preference-section-label {
    font-size: 11px;
    text-align: left;
    flex-shrink: 0;
  }

  .finder-preference-chip {
    font-size: 11px;
    padding: 6px 10px;
  }

  .finder-results-header {
    margin-bottom: 14px;
    padding: 20px;
  }

  .finder-results-header-top {
    grid-template-columns: 1fr;
    gap: 16px;
  }
    font-size: 13px;
  }
}

  .shop-discovery-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .finder-product-media {
    aspect-ratio: 4 / 3;
  }

  .compare-panel-header,
  .finder-results-header,
  .smart-finder-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .smart-finder-header {
    gap: 10px;
  }

  .smart-finder-reset {
    align-self: flex-start;
  }
}
