:root {
  --primary: #645CFC;
  --primary-hover: #5a52e8;
  --primary-light: #f3f1ff;
  --primary-border: #e0defe;
  --primary-bg: rgba(100, 92, 252, 0.08);
  --text-dark: #0b0c0e;
  --text-body: #555;
  --text-muted: #888;
  --border: #ebebef;
  --border-light: #f3f3f6;
  --card-bg: #fff;
  --page-bg: #f3f4f8;
  --star-color: #f5a623;
  --green: #22c55e;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 16px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--page-bg);
  color: #212121;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

.rs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.rs-main {
  min-height: calc(100vh - 140px);
}

/* ===== Header ===== */
.rs-header {
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  padding: 14px 0;
}

.rs-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.rs-logo {
  display: flex;
  align-items: center;
}

.rs-logo-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.rs-logo-text {
  font-size: 21px;
  font-weight: 600;
  color: #303030;
  letter-spacing: -0.3px;
}

.rs-header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.rs-header-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  padding: 6px 4px;
  transition: color 0.2s;
}

.rs-header-link-icon {
  color: #888;
  transition: color 0.2s;
}

.rs-header-link:hover {
  color: var(--primary);
}

.rs-header-link:hover .rs-header-link-icon {
  color: var(--primary);
}


/* ===== Search Banner ===== */
.rs-search-banner {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, var(--primary) 100%);
  margin-bottom: 40px;
  overflow: visible;
  position: relative;
}

.rs-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 48px 0;
  position: relative;
  z-index: 1;
}

.rs-banner-left {
  flex-shrink: 0;
  max-width: 400px;
}

.rs-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}

.rs-banner-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  line-height: 1.15;
}

.rs-banner-highlight {
  background: linear-gradient(135deg, #a78bfa, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rs-banner-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  line-height: 1.6;
}

.rs-banner-right {
  flex: 1;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rs-banner-search {
  position: relative;
}

.rs-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #999;
  pointer-events: none;
}

.rs-search-input {
  width: 100%;
  padding: 14px 50px 14px 50px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  background: rgba(255,255,255,0.08);
  outline: none;
  backdrop-filter: blur(8px);
  transition: all 0.25s;
}

.rs-search-input:focus {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}

.rs-search-input::placeholder { color: rgba(255,255,255,0.4); }

.rs-search-kbd {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 2px 8px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
}

/* Category Pills */
.rs-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rs-cat-pill {
  padding: 6px 16px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.rs-cat-pill:hover {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
}

.rs-cat-pill.active {
  background: #fff;
  color: #312e81;
  border-color: #fff;
}

/* Search Suggestions Dropdown */
.rs-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
  z-index: 100;
  max-height: 340px;
  overflow-y: auto;
  padding: 6px;
}

.rs-sug-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}

.rs-sug-item:hover, .rs-sug-item.active {
  background: var(--primary-light);
}

.rs-sug-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
}

.rs-sug-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rs-sug-info {
  flex: 1;
  min-width: 0;
}

.rs-sug-name {
  font-size: 14px;
  font-weight: 600;
  color: #212121;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rs-sug-meta {
  font-size: 11px;
  color: #888;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rs-sug-rating {
  color: #f5a623;
  font-weight: 600;
}

.rs-sug-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ccc;
}

.rs-sug-arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #ccc;
  transition: color 0.15s;
}

.rs-sug-item:hover .rs-sug-arrow { color: var(--primary); }

.rs-sug-empty {
  padding: 20px;
  text-align: center;
  color: #999;
  font-size: 13px;
}

/* ===== Section ===== */
.rs-stores-section { padding: 0 0 60px; }

.rs-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.rs-section-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rs-section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.rs-store-count {
  font-size: 13px;
  font-weight: 500;
  color: #999;
  background: #f4f4f5;
  padding: 2px 10px;
  border-radius: 12px;
}

.rs-section-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* View Toggle */
.rs-view-toggle {
  display: flex;
  border: 1.5px solid #e4e4e7;
  border-radius: 8px;
  overflow: hidden;
}

.rs-view-btn {
  padding: 6px 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: #bbb;
  display: flex;
  align-items: center;
  transition: all 0.15s;
}

.rs-view-btn:first-child {
  border-right: 1.5px solid #e4e4e7;
}

.rs-view-btn.active {
  background: #f4f4f5;
  color: #303030;
}

.rs-view-btn:hover:not(.active) {
  color: #666;
}

/* Sort dropdown */
.rs-sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rs-sort-label {
  font-size: 13px;
  font-weight: 500;
  color: #888;
}

.rs-sort-select {
  padding: 8px 32px 8px 12px;
  border: 1.5px solid #e4e4e7;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #303030;
  background: #fff;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.2s;
}

.rs-sort-select:focus {
  border-color: var(--primary);
}

/* ===== Store Grid ===== */
.rs-store-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

/* List View */
.rs-store-grid.rs-list-view {
  grid-template-columns: 1fr;
  gap: 10px;
}

/* ===== New List Card ===== */
/* ===== List Card ===== */
.dc-list-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid #ececef;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.dc-list-card:hover { border-color: #d8d5ff; }

/* Logo with brand tint background */
.dc-lc-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  flex-shrink: 0;
  align-self: stretch;
}

.dc-lc-logo .dc-logo,
.dc-lc-logo .dc-logo-img-wrap {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.dc-lc-logo .dc-logo { font-size: 22px; }

/* Info section */
.dc-lc-info {
  min-width: 160px;
  padding: 16px 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dc-lc-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dc-lc-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dc-lc-rating .dc-stars { gap: 1px; }
.dc-lc-rating .da-star { width: 14px; height: 14px; }
.dc-lc-rating .dc-rating-num { font-size: 13px; font-weight: 700; color: var(--text-dark); }

/* Stats */
.dc-lc-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 24px;
  flex: 1;
  justify-content: center;
}

.dc-lc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  padding: 0 14px;
  position: relative;
}

.dc-lc-stat + .dc-lc-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #f0f0f3;
}

.dc-lc-stat-val {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.dc-lc-stat-lbl {
  font-size: 9px;
  font-weight: 600;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 1px;
}

/* CTA — outline pill matching grid card */
.dc-lc-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px 0 0;
  flex-shrink: 0;
}

.dc-lc-cta {
  padding: 9px 22px;
  border: 2px solid var(--primary);
  border-radius: 24px;
  color: var(--primary);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  background: transparent;
  white-space: nowrap;
}

.dc-lc-cta:hover {
  background: var(--primary);
  color: #fff;
}

.dc-lc-actions .dc-link {
  font-size: 12px;
  white-space: nowrap;
} 

/* Skeleton Loading */
.rs-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.rs-skeleton-card {
  background: #f4f4f5;
  border-radius: 16px;
  height: 280px;
  animation: rs-pulse 1.5s ease-in-out infinite;
}

@keyframes rs-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.rs-skeleton-card {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: rs-shimmer 1.5s ease-in-out infinite;
}

@keyframes rs-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.rs-skeleton-list {
  height: 80px;
  border-radius: 12px;
}

/* Spinner */
.rs-spinner-inline {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(100,92,252,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: rs-spin 0.6s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

.rs-spinner-white {
  border-color: rgba(255,255,255,0.3);
  border-top-color: #fff;
}

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

/* Suggestion loading */
.rs-sug-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  color: #999;
  font-size: 13px;
}

/* Load more button loading state */
.rs-load-more-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

/* Empty State */
.rs-empty-state {
  text-align: center;
  padding: 60px 0;
  color: #b0b0b0;
}

.rs-empty-state svg {
  margin-bottom: 16px;
  opacity: 0.5;
}

.rs-empty-state p {
  font-size: 15px;
}

/* Card Entrance Animation */
@keyframes dc-fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.dc-animate {
  animation: dc-fadeUp 0.4s ease forwards;
  opacity: 0;
}

/* ===== Stars ===== */
.da-star {
  width: 17px;
  height: 17px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.da-star::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #dcdfe4;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath d='M10.7813.473551C10.6322.18436 10.3305 0 10.0033 0 9.67615 0 9.37442.18436 9.22538.473551L6.54985 5.68623.737108 6.60441C.413572 6.65502.144565 6.88276.0427783 7.19364-.0590082 7.50452.0246023 7.84432.253622 8.07568L4.41233 12.2147 3.49625 17.9949C3.44536 18.3167 3.57986 18.642 3.84523 18.8336 4.1106 19.0252 4.45959 19.0541 4.75404 18.9059L10.0033 16.2526 15.249 18.9059C15.5398 19.0541 15.8924 19.0252 16.1578 18.8336 16.4231 18.642 16.5576 18.3203 16.5068 17.9949L15.587 12.2147 19.7457 8.07568C19.9784 7.84432 20.0584 7.50452 19.9566 7.19364 19.8548 6.88276 19.5894 6.65502 19.2623 6.60441L13.4532 5.68623 10.7813.473551Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath d='M10.7813.473551C10.6322.18436 10.3305 0 10.0033 0 9.67615 0 9.37442.18436 9.22538.473551L6.54985 5.68623.737108 6.60441C.413572 6.65502.144565 6.88276.0427783 7.19364-.0590082 7.50452.0246023 7.84432.253622 8.07568L4.41233 12.2147 3.49625 17.9949C3.44536 18.3167 3.57986 18.642 3.84523 18.8336 4.1106 19.0252 4.45959 19.0541 4.75404 18.9059L10.0033 16.2526 15.249 18.9059C15.5398 19.0541 15.8924 19.0252 16.1578 18.8336 16.4231 18.642 16.5576 18.3203 16.5068 17.9949L15.587 12.2147 19.7457 8.07568C19.9784 7.84432 20.0584 7.50452 19.9566 7.19364 19.8548 6.88276 19.5894 6.65502 19.2623 6.60441L13.4532 5.68623 10.7813.473551Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.da-star.filled::before { background: #FF8000; }
.da-star.half-filled::before { background: linear-gradient(90deg, #FF8000 50%, #dcdfe4 50%); }

/* ===============================================================
   Shared Card Elements
   =============================================================== */

/* Verified badge */
.dc-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: #f0eeff;
  padding: 3px 10px;
  border-radius: 12px;
}

/* Logo — placeholder initial */
.dc-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

/* Logo — image */
.dc-logo-img-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #f0f0f3;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.dc-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.dc-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.dc-stars { display: flex; gap: 2px; }

.dc-rating-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.dc-btn {
  display: block;
  width: auto;
  padding: 10px 20px;
  background: var(--primary);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
  transition: background 0.2s;
}

.dc-btn:hover { background: var(--primary-hover); }

.dc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(11, 12, 14, 0.4);
  font-weight: 500;
  transition: color 0.2s;
  padding: 2px 0;
}

.dc-link:hover { color: var(--primary); }

/* ===== Finalized Card Design ===== */
/* Brand tint header + centered layout */
.dc-card {
  padding: 0;
  overflow: hidden;
  text-align: center;
  align-items: center;
  gap: 0;
  border: 1px solid #ececef;
  border-radius: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  transition: border-color 0.2s ease;
}

.dc-card:hover { border-color: #d8d5ff; }

.dc-header-bg {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0 20px;
}

.dc-header-bg .dc-logo,
.dc-header-bg .dc-logo-img-wrap { width: 72px; height: 72px; }
.dc-header-bg .dc-logo { font-size: 28px; }

.dc-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 20px 20px;
  width: 100%;
  flex: 1;
}

.dc-card .dc-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dc-vi { flex-shrink: 0; }

.dc-card .dc-rating-row { margin-bottom: 0; gap: 5px; }
.dc-card .dc-rating-num { color: var(--text-dark); font-size: 14px; font-weight: 700; }

.dc-divider {
  width: 100%;
  height: 1px;
  background: #f0f0f3;
  margin: 14px 0;
}

.dc-stats {
  display: flex;
  width: 100%;
  gap: 0;
}

.dc-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  position: relative;
}

.dc-stat + .dc-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 1px;
  background: #f0f0f3;
}

.dc-stat-num {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.dc-stat-lbl {
  font-size: 9px;
  font-weight: 600;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dc-cta {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 11px 0;
  border: 2px solid var(--primary);
  border-radius: 28px;
  color: var(--primary);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  background: transparent;
}

.dc-cta:hover {
  background: var(--primary);
  color: #fff;
}

.dc-card .dc-link { margin-top: 10px; }

/* ===== Loading / Empty ===== */
.rs-loading {
  padding: 20px 0;
  color: #b0b0b0;
}

/* ===== Footer ===== */
.rs-footer {
  background: #1a1a2e;
  color: #c0c0cc;
  padding: 48px 0 0;
  margin-top: 40px;
}

.rs-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.rs-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 32px;
}

.rs-footer-brand {
  max-width: 320px;
}

.rs-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.rs-footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: #8888a0;
}

.rs-footer-links {
  display: flex;
  gap: 56px;
}

.rs-footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rs-footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.rs-footer-link {
  font-size: 13px;
  color: #8888a0;
  transition: color 0.2s;
}

.rs-footer-link:hover { color: #fff; }

.rs-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: #5a5a70;
}

/* ===== Load More ===== */
.rs-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 60px;
}

.rs-load-more-btn {
  padding: 12px 40px;
  border: 1.5px solid #e4e4e7;
  background: #fff;
  color: #303030;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.rs-load-more-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(100, 92, 252, 0.04);
}

/* ===============================================================
   Store Profile Page
   =============================================================== */

/* Banner */
.sp-banner {
  height: 220px;
  background: #e8eaef;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.sp-banner.sp-banner-has-img {
  height: 240px;
}

.sp-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.15) 100%);
}

/* Auto-generated banner */
.sp-banner-auto {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
  overflow: hidden;
}

.sp-banner-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.sp-banner-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  overflow: hidden;
  flex-shrink: 0;
}

.sp-banner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sp-banner-name {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.12);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp-banner-products {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.sp-banner-prd {
  width: 110px;
  height: 110px;
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  border: 1.5px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s;
}

.sp-banner-prd:nth-child(2) { transform: translateY(-12px); }

.sp-banner-prd img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
}

/* Mobile banner fallback */
.sp-banner-mob {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.sp-banner-mob-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  overflow: hidden;
}

.sp-banner-mob-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sp-banner-mob-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.15);
  text-align: center;
  padding: 0 16px;
}

.sp-banner-mob-tagline {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 0 16px;
}

.sp-banner-mob-stats {
  display: flex;
  gap: 16px;
  margin-top: 2px;
}

.sp-banner-mob-stat {
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.sp-banner-mob-stat strong {
  display: block;
  font-size: 15px;
  color: #fff;
  font-weight: 800;
}
 
/* ── Switcher bar (sticky bottom) ── */
.tr-switcher {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: #1a1a2e;
  border-top: 1px solid #2d2d4a;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

.tr-switcher-label {
  color: #9294a3;
  font-size: 12px;
  font-weight: 600;
  margin-right: 6px;
  white-space: nowrap;
}

.tr-sw-btn {
  padding: 7px 16px;
  border-radius: 8px;
  border: 1px solid #3a3a5c;
  background: transparent;
  color: #b0b2c0;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.tr-sw-btn:hover { background: rgba(100,92,252,0.1); color: #fff; border-color: var(--primary); }
.tr-sw-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 2px 12px rgba(100,92,252,0.4); }

/* ===========================
   OPTION 1 — Ticker Strip
   =========================== */
.tr-type-ticker {
  background: #fff;
  border-bottom: 1px solid #e8e9ef;
}

.tr-ticker-strip {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  padding: 0 24px;
  gap: 16px;
}

.tr-ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #d97706;
  white-space: nowrap;
  flex-shrink: 0;
}

.tr-ticker-label svg { color: #f59e0b; }

.tr-ticker-track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
}

.tr-ticker-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: tickerScroll 45s linear infinite;
}

.tr-ticker-track:hover { animation-play-state: paused; }

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tr-ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #2d2d3a;
  flex-shrink: 0;
  padding: 6px 0;
  transition: opacity 0.2s;
}

.tr-ticker-item:hover { opacity: 0.7; }

.tr-ticker-thumb {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f8;
  border: 2px solid #edeef2;
  flex-shrink: 0;
}

.tr-ticker-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tr-ticker-name {
  font-size: 13px;
  font-weight: 600;
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tr-ticker-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.tr-ticker-meta .da-star { width: 12px; height: 12px; }

.tr-ticker-score {
  font-size: 12px;
  font-weight: 700;
  color: #d97706;
}

.tr-ticker-sep {
  width: 1px;
  height: 20px;
  background: #e5e7ee;
  flex-shrink: 0;
}

/* ===========================
   OPTION 2 — Featured Shelf
   =========================== */
.sp-top-rated {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8f9fc 0%, #f0f1f6 100%);
  padding: 48px 0 52px;
  border-bottom: 1px solid #e5e7ee;
}

.sp-top-rated-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px 0;
  border-radius: 4px 4px 0 0;
}

.sp-top-rated-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.sp-top-rated-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f59e0b 0%, #ef8811 100%);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}

.sp-top-rated-badge svg { width: 12px; height: 12px; }

.sp-top-rated-title {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.sp-top-rated-track-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 -24px;
  padding: 10px 0;
}

.sp-top-rated-track-wrap::before,
.sp-top-rated-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.sp-top-rated-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fc, transparent);
}

.sp-top-rated-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f0f1f6, transparent);
}

.sp-top-rated-track {
  display: flex;
  gap: 20px;
  padding: 4px 24px;
  animation: topRatedScroll 30s linear infinite;
  width: max-content;
}

.sp-top-rated-track:hover { animation-play-state: paused; }

@keyframes topRatedScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Shelf cards */
.sp-tr-card {
  flex-shrink: 0;
  width: 210px;
  background: #fff;
  border: 1px solid #e8e9ef;
  border-radius: 16px;
  padding: 12px 12px 16px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
  cursor: pointer;
  text-decoration: none;
  color: #1a1a2e;
  display: block;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.sp-tr-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
}

.sp-tr-card-rank {
  position: absolute;
  top: -6px; left: -6px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #ef8811);
  color: #fff;
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
  border: 2px solid #fff;
}

.sp-tr-card-img {
  position: relative;
  width: 100%; aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #f9f9fb;
  margin-bottom: 14px;
  border: 1px solid #edeef2;
}

.sp-tr-card-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.sp-tr-card:hover .sp-tr-card-img img { transform: scale(1.06); }

.sp-tr-card-img .sp-tr-no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #f5f5f8;
}

.sp-tr-card-img .sp-tr-no-img svg { opacity: 0.25; }

.sp-tr-card-name {
  font-size: 13px; font-weight: 600; color: #2d2d3a;
  line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px; min-height: 35px;
  padding: 0 2px;
}

.sp-tr-card-rating {
  display: flex; align-items: center; gap: 5px; flex-wrap: wrap; padding: 0 2px;
}

.sp-tr-card-rating .da-star { width: 14px; height: 14px; }
.sp-tr-card-score { font-size: 13px; font-weight: 700; color: #d97706; }
.sp-tr-card-reviews { font-size: 11px; color: #9294a3; margin-left: 1px; }

.sp-top-rated-dots {
  display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 22px;
}

.sp-tr-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #d1d3dc;
  border: none; padding: 0; cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.sp-tr-dot.active {
  width: 24px; border-radius: 4px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.3);
}

/* ===========================
   OPTION 3 — Spotlight
   =========================== */
.tr-type-spotlight {
  position: relative;
  padding: 48px 0 52px;
  overflow: hidden;
}

/* Decorative circles in background */
.tr-type-spotlight::before,
.tr-type-spotlight::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.08;
}
.tr-type-spotlight::before {
  width: 400px; height: 400px;
  top: -120px; right: -80px;
  background: #fff;
}
.tr-type-spotlight::after {
  width: 300px; height: 300px;
  bottom: -100px; left: -60px;
  background: #fff;
}

.tr-spotlight-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.tr-spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

.tr-spotlight-badge svg { color: inherit; }

.tr-spotlight-stage {
  position: relative;
  min-height: 220px;
}

.tr-spotlight-slide {
  display: flex;
  align-items: center;
  gap: 36px;
  text-decoration: none;
  color: #1a1a2e;
  animation: spotFadeIn 0.5s ease;
}

@keyframes spotFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.tr-spotlight-img {
  width: 220px; height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.tr-spotlight-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 16px;
}

.tr-spotlight-img .sp-tr-no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.95);
}

.tr-spotlight-details { flex: 1; min-width: 0; }

.tr-spotlight-rank {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #d97706;
  background: #fef3c7;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.tr-spotlight-name {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.tr-spotlight-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.tr-spotlight-rating .da-star { width: 18px; height: 18px; }

.tr-spotlight-score {
  font-size: 18px;
  font-weight: 800;
  color: #d97706;
}

.tr-spotlight-count {
  font-size: 13px;
  color: #9294a3;
}

.tr-spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.tr-spotlight-cta:hover { background: #5248e0; }

.tr-spotlight-pips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.tr-spotlight-pip {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #d1d3dc;
  border: none; padding: 0; cursor: pointer;
  transition: all 0.3s;
}

.tr-spotlight-pip.active {
  width: 26px; border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), #8b7cf7);
}

/* ===========================
   OPTION 4 — Award Ribbon (premium)
   =========================== */
.tr-type-ribbon {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Shimmer effect */
.tr-type-ribbon::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  animation: ribbonShimmer 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ribbonShimmer {
  0% { left: -50%; }
  100% { left: 150%; }
}

.tr-ribbon-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 28px;
  gap: 20px;
  min-height: 88px;
}

.tr-ribbon-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.tr-ribbon-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 3px solid #1a1a2e;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}

.tr-ribbon-avatar:first-child {
  width: 52px; height: 52px;
  z-index: 3;
}

.tr-ribbon-avatar + .tr-ribbon-avatar { margin-left: -14px; }
.tr-ribbon-avatar:nth-child(2) { z-index: 2; }
.tr-ribbon-avatar:nth-child(3) { z-index: 1; }

.tr-ribbon-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.tr-ribbon-avatar .tr-ribbon-no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #f5f5f8;
  font-size: 14px; font-weight: 700; color: #9294a3;
}

.tr-ribbon-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
}

.tr-ribbon-slide {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  animation: ribbonFadeIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

@keyframes ribbonFadeIn {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.tr-ribbon-trophy {
  font-size: 20px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.tr-ribbon-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #fbbf24;
  flex-shrink: 0;
  background: rgba(251,191,36,0.12);
  padding: 3px 8px;
  border-radius: 4px;
}

.tr-ribbon-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tr-ribbon-dash {
  color: rgba(255,255,255,0.2);
  font-weight: 300;
}

.tr-ribbon-score {
  font-size: 17px;
  font-weight: 800;
  color: #fbbf24;
  text-shadow: 0 1px 4px rgba(251,191,36,0.3);
}

.tr-ribbon-stars {
  display: flex; align-items: center; gap: 2px;
}

.tr-ribbon-stars .da-star { width: 14px; height: 14px; }

.tr-ribbon-reviews {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.tr-ribbon-pips {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: 4px;
}

.tr-ribbon-pip {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none; padding: 0; cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.tr-ribbon-pip.active {
  width: 22px; border-radius: 4px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  box-shadow: 0 0 8px rgba(251,191,36,0.3);
} 

/* Header card */
.sp-header-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: -52px;
  padding: 24px 30px;
  background-color: hsl(0 0% 100% / .85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgb(0 0 0 / .10);
  position: relative;
  z-index: 1;
}

.sp-header-left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  flex: 1;
}

/* Logo */
.sp-logo-img-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.sp-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sp-logo-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

/* Header info */
.sp-header-info {
  min-width: 0;
  padding-top: 0;
}

.sp-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sp-verified-badge {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sp-store-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.4px;
  margin-bottom: 4px;
  line-height: 1.3;
}

.sp-store-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 0;
}

.sp-meta-sep { color: #cbd5e1; }
.sp-meta-clickable { cursor: pointer; transition: color .2s; }
.sp-meta-clickable:hover { color: var(--primary); }

.sp-meta-category {
  color: var(--primary);
  font-weight: 600;
}

.sp-store-desc {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.65;
  max-width: 620px;
  margin-top: 12px;
  overflow: hidden;
}

/* Header rating row (moved from banner) */
.sp-header-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.sp-header-stars {
  display: flex;
  gap: 2px;
}

.sp-header-stars .da-star {
  width: 16px;
  height: 16px;
}

.sp-header-rating-num {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
}

.sp-header-review-count {
  font-size: 13px;
  color: #888;
  font-weight: 500;
}

/* Header actions */
.sp-header-actions {
  flex-shrink: 0;
  padding-top: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #fff;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(99,91,255,0.2);
  letter-spacing: 0.2px;
}

.sp-btn-primary svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.sp-btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
  box-shadow: 0 4px 14px rgba(99,91,255,0.3);
  transform: translateY(-1px);
}

.sp-btn-primary:hover svg {
  transform: translate(2px, -2px);
}

/* Write a Review button */
.sp-write-review-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
}

.sp-btn-write-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #fff;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(99,91,255,0.2);
  letter-spacing: 0.2px;
}

.sp-btn-write-review:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
  box-shadow: 0 4px 14px rgba(99,91,255,0.3);
  transform: translateY(-1px);
}


/* Outline button */
.sp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  background: transparent;
  color: var(--primary);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--primary);
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.sp-btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Favorite button */
.sp-fav-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid #e4e4e7;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.sp-fav-btn svg {
  color: #c4c4c4;
  transition: color 0.2s, fill 0.2s;
}

.sp-fav-btn:hover {
  border-color: var(--primary);
  background: #f3f2ff;
}

.sp-fav-btn:hover svg { color: var(--primary); }

.sp-fav-btn.active {
  border-color: var(--primary);
  background: #f3f2ff;
}

.sp-fav-btn.active svg {
  color: var(--primary);
  fill: var(--primary);
}

/* Meta flag */
.sp-meta-flag {
  font-size: 14px;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
}
.sp-meta-flag-img {
  width: 16px;
  height: auto;
  vertical-align: middle;
  object-fit: contain;
}

/* ===============================================================
   Review Stats Summary
   =============================================================== */
.sp-review-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.sp-rs-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--primary-light);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-body);
  font-weight: 500;
}

.sp-rs-item strong {
  font-weight: 700;
  color: var(--text-dark);
}

.sp-rs-item svg { flex-shrink: 0; }

/* ===============================================================
   Customer Photos & Videos Gallery
   =============================================================== */
.sp-gallery-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #f0f0f3;
}

.sp-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.sp-gallery-title {
  font-size: 15px;
  font-weight: 600;
  color: #555;
}

.sp-gallery-see-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sp-gallery-see-more:hover { color: var(--primary-hover); }

.sp-gallery-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sp-gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f8;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.sp-gallery-thumb:hover {
  border-color: var(--primary);
  transform: scale(1.05);
}

.sp-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================================================
   Tabs
   =============================================================== */
.sp-tabs {
  display: flex;
  gap: 4px;
  margin-top: 26px;
  margin-bottom: 4px;
  border-bottom: 2px solid #ededf0;
  padding-bottom: 0;
}

.sp-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  white-space: nowrap;
  border-radius: 8px 8px 0 0;
}

.sp-tab:hover { color: #555; background: rgba(100, 92, 252, 0.03); }

.sp-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: rgba(100, 92, 252, 0.04);
}

.sp-tab svg { flex-shrink: 0; }

.sp-tab-panel { padding-bottom: 60px; }

/* ===============================================================
   Store Info Tab
   =============================================================== */
/* ===============================================================
   Store Info Tab — Redesigned
   =============================================================== */

/* ===== Store Info Tab — Redesigned ===== */
.si-desc {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  max-width: 700px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
}

.si-desc p { margin: 0; }

.si-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.si-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 26px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.si-card:hover {
  border-color: var(--primary-border);
  box-shadow: 0 4px 18px rgba(100, 92, 252, 0.06);
}

.si-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f3f3f6;
}

.si-card-title svg {
  flex-shrink: 0;
  padding: 5px;
  background: var(--primary-light);
  border-radius: 7px;
  width: 18px;
  height: 18px;
  box-sizing: content-box;
}

.si-card-body {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.si-policy-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  padding: 8px 16px;
  background: var(--primary-light);
  border-radius: 8px;
  transition: all 0.2s;
}

.si-policy-link:hover {
  background: #ebe8ff;
  color: var(--primary-hover);
}

.si-address-text {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.si-response-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 8px 14px;
  background: #f0fdf4;
  border-radius: 8px;
  font-size: 13px;
  color: #16a34a;
  font-weight: 600;
}

.si-response-time svg { color: #16a34a; }

.sp-info-empty {
  text-align: center;
  padding: 60px 0;
  color: #b0b0b0;
  font-size: 14px;
  margin-top: 24px;
}

/* ===============================================================
   Products Tab
   =============================================================== */
.sp-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.sp-prd-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #ececef;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.sp-prd-card:hover {
  border-color: #d8d5ff;
  box-shadow: 0 8px 24px rgba(100, 92, 252, 0.08);
}

.sp-prd-img {
  width: 100%;
  aspect-ratio: 1;
  background: #f8f8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.sp-prd-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.sp-prd-card:hover .sp-prd-img img {
  transform: scale(1.04);
}

.sp-prd-img svg {
  width: 48px;
  height: 48px;
  color: #ccc;
}

.sp-prd-badge { display: none; }

.sp-prd-noimg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 100%;
}

.sp-prd-noimg span {
  font-size: 11px;
  font-weight: 500;
  color: #c0c0c0;
}

.sp-prd-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid #f4f4f5;
}

.sp-prd-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  min-height: 2.8em;
}

.sp-prd-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.sp-prd-stars { display: flex; gap: 2px; }
.sp-prd-stars .da-star { width: 17px; height: 17px; }

.sp-prd-score {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
}

.sp-prd-reviews {
  font-size: 13px;
  color: #888;
  font-weight: 500;
}

.sp-prd-no-reviews {
  font-size: 12px;
  color: #ccc;
  font-style: italic;
}

/* Two column layout */
.sp-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  padding-bottom: 60px;
  align-items: start;
}

/* Main content */
.sp-main { min-width: 0; }

.sp-review-summary {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #ebebef;
  padding: 28px 30px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.02);
  margin-top: 28px;
}

.sp-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.sp-rating-overview {
  display: flex;
  gap: 32px;
  align-items: center;
}

.sp-rating-big {
  flex-shrink: 0;
  text-align: center;
  min-width: 140px;
}

.sp-rating-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.sp-rating-max {
  font-size: 20px;
  font-weight: 500;
  color: #999;
}

.sp-rating-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin: 8px 0 6px;
}

.da-star-lg {
  width: 22px;
  height: 22px;
}

.sp-rating-based {
  font-size: 13px;
  color: #888;
  font-weight: 500;
}

/* Rating bars */
.sp-rating-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sp-bar-label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  min-width: 28px;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: flex-end;
}

.sp-bar-label .da-star {
  width: 14px;
  height: 14px;
}

.sp-bar-track {
  flex: 1;
  height: 8px;
  background: #f0f0f3;
  border-radius: 4px;
  overflow: hidden;
}

.sp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #8b7aff);
  border-radius: 5px;
  transition: width 0.6s ease;
}

.sp-bar-count {
  font-size: 13px;
  font-weight: 500;
  color: #888;
  min-width: 32px;
  text-align: right;
}

/* Recommendation Bar */
.sp-recommend { margin-top: 16px; }

.sp-rcmnd-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #f0fdf4;
  border-radius: 10px;
  font-size: 13px;
  color: #15803d;
  font-weight: 500;
}

.sp-rcmnd-bar strong { font-weight: 800; }

/* AI Topics */
.sp-topics { margin-bottom: 18px; }

.sp-topics-title {
  font-size: 15px;
  font-weight: 600;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #1a1a1a;
}

.sp-topics-title img {
  width: 18px;
  height: 18px;
}

.sp-topics-box {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 15px 28px 15px 21px;
}

.sp-topics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.sp-topic-pill {
  background: none;
  border: none;
  padding: 1px 0;
  font-size: 14.5px;
  cursor: default;
  font-weight: 400;
  display: flex;
  gap: 9px;
  text-transform: capitalize;
  color: #333;
}

.sp-topic-pill .sp-topic-divider {
  font-weight: 200;
  color: #ccc;
}

.sp-topic-pos { color: #16a34a; }
.sp-topic-neg { color: #dc2626; }
.sp-topic-ntr { color: #333; }

@media (max-width: 768px) {
  .sp-topics-title { font-size: 14px; margin: 0 0 8px; }
  .sp-topic-pill { font-size: 13.5px; }
  .sp-topics-box { padding: 10px 10px 15px 15px; }
  .sp-topics-list { gap: 8px; }
}

/* Review Countries */
.sp-countries { margin-top: 16px; }

.sp-countries-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
  font-weight: 500;
  margin-bottom: 10px;
}

.sp-countries-header strong { font-weight: 700; color: #0b0c0e; }

.sp-countries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sp-country-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: #f8f7ff;
  border: 1px solid #e4e0ff;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  color: #444;
}

.sp-country-flag { font-size: 14px; }
.sp-country-flag-img { width: 16px; height: 12px; object-fit: cover; border-radius: 1px; }
.sp-country-count { font-weight: 500; color: #999; }

/* Sidebar */
.sp-sidebar {
  display: flex;
  flex-direction: column;
}

.sp-sidebar-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  border: 1px solid rgba(100, 92, 252, 0.08);
  box-shadow: 0 2px 16px rgba(100, 92, 252, 0.06);
  padding: 20px;
  margin-top: 28px;
}

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

.sp-sidebar-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

/* Sidebar: visit store link */
.sp-sidebar-store-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #faf9ff;
  border: none;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.22s ease;
}

.sp-sidebar-store-link:hover {
  background: #f3f1ff;
}

.sp-sidebar-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  color: var(--primary);
}

.sp-sidebar-link-icon svg { width: 16px; height: 16px; }

.sp-sidebar-link-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sp-sidebar-link-label {
  font-size: 11px;
  font-weight: 600;
  color: #8b85b9;
  letter-spacing: 0.2px;
}

.sp-sidebar-domain {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sp-sidebar-arrow {
  color: #aaa;
  flex-shrink: 0;
  transition: all 0.22s ease;
}

.sp-sidebar-store-link:hover .sp-sidebar-arrow {
  color: var(--primary);
  transform: translate(1px, -1px);
}

/* Sidebar: socials (inside same card) */
.sp-sidebar-socials {
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid #f0f0f3;
}

.sp-sidebar-socials-title {
  font-size: 12px;
  font-weight: 600;
  color: #9893b5;
  margin-bottom: 12px;
}

/* Sidebar: contact */
.sp-contact-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sp-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
  padding: 10px 12px;
  border-radius: 10px;
  transition: all 0.2s;
  word-break: break-all;
  background: #faf9ff;
}

.sp-contact-item:hover {
  color: var(--primary);
  background: #f3f1ff;
}

.sp-contact-item svg { flex-shrink: 0; color: #aaa; }

/* Sidebar: socials */
.sp-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sp-social-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #faf9ff;
  border: none;
  color: var(--primary);
  font-size: 0;
  transition: all 0.2s ease;
}

.sp-social-item:hover {
  background: #f0eeff;
  transform: none;
  box-shadow: none;
}

.sp-social-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; transition: color 0.2s; }
.sp-social-item:hover svg { color: var(--primary-hover); }

/* Sidebar: address */
.sp-address-text {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

/* Sidebar: policies */
.sp-policy-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sp-policy-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
  font-weight: 500;
  transition: color 0.2s;
}

a.sp-policy-item:hover { color: var(--primary); }

.sp-policy-item svg { flex-shrink: 0; color: #999; }

/* Sidebar: payment methods */
.sp-payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sp-payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #444;
  background: #f8f8fa;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.sp-payment-badge:hover {
  border-color: #d4d0ff;
}

/* ===============================================================
   Store Medals
   =============================================================== */
.sp-medals-card {
  padding: 20px;
}

.sp-medals-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.sp-medals-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.sp-medals-verified {
  display: flex;
  align-items: center;
}

.sp-medals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.sp-medal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 6px;
  background: #faf9ff;
  border: 1px solid #f0eeff;
  border-radius: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sp-medal-full {
  width: 100%;
  max-width: 110px;
}
.sp-medal-verified-wrap {
  position: relative;
  width: 100%;
  max-width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-medal-verified-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.sp-medal-verified-count {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 800;
  color: #CD7F32;
  line-height: 1;
}
/* Shield-style medals: number sits lower, on the shield body */
.sp-medal-verified-wrap.is-top .sp-medal-verified-count,
.sp-medal-verified-wrap.is-trend .sp-medal-verified-count {
  top: 52%;
  font-size: 15px;
  font-weight: 600;
  /* text-shadow: 0 1px 2px rgba(0,0,0,.25); */
}
.sp-medal-verified-wrap.is-top .sp-medal-verified-count {
  color: #fff;
}
.sp-medal-full svg {
  width: 100%;
  height: auto;
  display: block;
}
.sp-medals-learn {
  grid-column: 1 / -1;
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary, #645CFC);
  text-decoration: underline;
}

.sp-medals-explore {
  grid-column: 1 / -1;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary, #645CFC);
  text-decoration: none;
  transition: color 0.18s ease;
  color: #767676b8;
}

.sp-medals-explore:hover {
  color: #4f46e5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sp-medals-explore svg {
  transition: transform 0.18s ease;
}

.sp-medals-explore:hover svg {
  transform: translateX(3px);
}

.sp-medal-item:hover {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.sp-medal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #ececef;
  margin-bottom: 8px;
}

.sp-medal-value {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.sp-medal-label {
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 2px;
}
.medal-auth .sp-medal-verified-count,
.medal-tran .sp-medal-verified-count {
  top: 52% !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}
.medal-store-top .sp-medal-verified-count,
.medal-store-top-pers .sp-medal-verified-count {
  top: 39% !important;
}
.medal-trend-top .sp-medal-verified-count,
.medal-trend-top-pers .sp-medal-verified-count {
    top: 48% !important;
}
.bronze-verify .sp-medal-verified-count {
  top: 35% !important;
}
.bronze-verify-record  .sp-medal-verified-count {
  top: 50% !important;
}

/* Tier-based count colors (wreath medals; shield Top Store stays white via .is-top) */
.sp-medal-verified-wrap.tier-bronze   .sp-medal-verified-count { color: #CD7F32 !important; }
.sp-medal-verified-wrap.tier-gold     .sp-medal-verified-count { color: #B8860B !important; }
.sp-medal-verified-wrap.tier-silver   .sp-medal-verified-count { color: #8892a0 !important; }
.sp-medal-verified-wrap.tier-platinum .sp-medal-verified-count,
.medal-trend-top .sp-medal-verified-count { color: #6b7684 !important; }
.sp-medal-verified-wrap.tier-diamond  .sp-medal-verified-count { color: #1e6abc !important; }
.sp-medal-verified-wrap.is-top .sp-medal-verified-count { color: #fff !important; }

/* Trending wreath: use larger font like other wreath medals (override is-trend inherited styles when not used) */
.medal-trend-top .sp-medal-verified-count {
  font-size: 18px;
  font-weight: 800;
}

/* Medal hover: gentle lift + zoom + soft glow (img and count move together) */
.sp-medal-verified-wrap {
  transition: transform 0.35s ease, filter 0.35s ease;
}
.sp-medal-item:hover .sp-medal-verified-wrap {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 6px 10px rgba(100, 92, 252, 0.14));
}

/* Medal hover: descriptive tooltip */
.sp-medal-item {
  position: relative;
}
.sp-medal-item[data-tooltip]::before,
.sp-medal-item[data-tooltip]::after {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.35s;
  transition-delay: 0s;
}
.sp-medal-item[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 240px;
  padding: 14px 16px;
  background: #ffffff;
  color: #1f2333;
  border: 1px solid #ece9ff;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.1px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(100, 92, 252, 0.18);
  z-index: 20;
  white-space: normal;
}
.sp-medal-item[data-tooltip]::after {
  content: '';
  position: absolute;
  bottom: calc(100% + -1px);
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #ffffff;
  filter: drop-shadow(0 2px 0 #ece9ff);
  z-index: 21;
}
.sp-medal-item[data-tooltip]:hover::before,
.sp-medal-item[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.08s;
}
.sp-medal-item[data-tooltip]:hover::before {
  transform: translateX(-50%) translateY(0);
}

/* Shared floating tooltip (rendered in <body> by initWrTip in config.js).
   Escapes any ancestor overflow:hidden so it never clips inside cards. */
.wr-tip {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
}
.wr-tip.wr-tip-show {
  opacity: 1;
  transform: translateY(0);
}
.wr-tip-body {
  display: inline-block;
  max-width: 280px;
  padding: 7px 11px;
  background: linear-gradient(180deg, #2a2d3e 0%, #1a1c28 100%);
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.1px;
  text-transform: none;
  box-shadow:
    0 8px 22px rgba(17, 20, 45, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-family: inherit;
  word-break: break-word;
  white-space: normal;
}
.wr-tip-arrow {
  position: absolute;
  bottom: -5px;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: #1a1c28;
  transform: translateX(-50%);
}
/* When tooltip is placed BELOW the target, flip the arrow to the top */
.wr-tip.wr-tip-below .wr-tip-arrow {
  bottom: auto;
  top: -5px;
  border-top-color: transparent;
  border-bottom-color: #2a2d3e;
}

/* ===============================================================
   Store Not Found
   =============================================================== */
.sp-nf-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding: 40px 24px;
}

.sp-nf-content {
  text-align: center;
  max-width: 400px;
}

.sp-nf-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #f3f2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--primary);
}

.sp-nf-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.sp-nf-text {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 32px;
}

.sp-nf-text strong {
  color: #444;
  font-weight: 600;
}

.sp-nf-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sp-nf-btn-primary {
  display: inline-block;
  padding: 12px 40px;
  background: var(--primary);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.2s;
}

.sp-nf-btn-primary:hover { background: var(--primary-hover); }

.sp-nf-btn-link {
  font-size: 13px;
  color: #888;
  font-weight: 500;
  transition: color 0.2s;
}

.sp-nf-btn-link:hover { color: var(--primary); }

/* ===============================================================
   Reviews List
   =============================================================== */
.sp-reviews-section {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #ebebef;
  padding: 28px 30px;
  margin-top: 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.02);
}

.sp-reviews-toolbar {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
}

/* Review search */
.sp-reviews-search {
  position: relative;
  flex: 1;
}

.sp-reviews-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #b0b0b0;
  pointer-events: none;
}

.sp-reviews-search-input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: #212121;
  background: #f3f4f8;
  outline: none;
  transition: background 0.2s, box-shadow 0.2s;
}

.sp-reviews-search-input:focus {
  background: #eeedff;
  box-shadow: 0 0 0 2px rgba(100, 92, 252, 0.1);
}

.sp-reviews-search-input::placeholder { color: #b0b0b0; }

.sp-reviews-sort {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sp-reviews-sort label {
  font-size: 13px;
  font-weight: 500;
  color: #888;
}

.sp-sort-select {
  padding: 8px 32px 8px 12px;
  border: 1.5px solid #e4e4e7;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #303030;
  background: #fff;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.sp-sort-select:focus {
  border-color: var(--primary);
}

.sp-reviews-empty {
  text-align: center;
  padding: 40px 0;
  color: #b0b0b0;
  font-size: 14px;
}

/* ===============================================================
   Review Card — Modern Card Design
   =============================================================== */
.rv-card {
  background: #fff;
  border: 1px solid #ebebef;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 14px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
  position: relative;
}

.rv-card:hover {
  box-shadow: 0 6px 24px rgba(100, 92, 252, 0.08), 0 2px 8px rgba(0,0,0,0.03);
  border-color: #ddd8ff;
  transform: translateY(-2px);
}

.rv-card:last-child { margin-bottom: 0; }

.rv-pin-icon {
  position: absolute;
  top: 4px;
  right: 8px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #4b5563;
  transform: rotate(35deg);
  z-index: 1;
}

/* Two-column: reviewer left, content right */
.rv-layout {
  display: flex;
  gap: 24px;
}

/* === Left panel: reviewer === */
.rv-left {
  width: 150px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  padding-top: 2px;
}

.rv-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1), 0 0 0 2px #fff;
}

.rv-avatar-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 2px solid #fff;
}

.rv-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  word-break: break-word;
  margin-bottom: 2px;
}

.rv-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: #f0eeff;
  padding: 2px 7px;
  border-radius: 10px;
}

.rv-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11.5px;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 2px;
  width: 160px;
}
.rv-location span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rv-flag {
  max-width: 14px;
  max-height: 14px;
  object-fit: contain;
  flex-shrink: 0;
  vertical-align: middle;
  border-radius: 2px;
}

/* === Right panel: review content === */
.rv-right {
  flex: 1;
  min-width: 0;
}

.rv-right-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.rv-right-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.rv-date {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
  white-space: nowrap;
  background: none;
  padding: 0;
  border-radius: 0;
}

.rv-pinned {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: #ede9ff;
  padding: 3px 10px;
  border-radius: 20px;
}

/* Stars */
.rv-stars {
  display: flex;
  gap: 1px;
}

.rv-stars .da-star {
  width: 16px;
  height: 16px;
}

/* Content */
.rv-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.rv-text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 4px;
}

/* Media: images + videos */
.rv-images {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.rv-img-thumb {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  overflow: hidden;
  background: #f0f0f3;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.rv-img-thumb:hover {
  border-color: var(--primary);
  transform: scale(1.04);
}

.rv-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s;
}

.rv-vid-thumb {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a2e;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.rv-vid-thumb:hover {
  border-color: var(--primary);
  transform: scale(1.04);
}

.rv-vid-thumb video,
.rv-vid-thumb mux-player,
.rv-vid-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.rv-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: background 0.2s;
  pointer-events: none;
  z-index: 1;
}

.rv-vid-thumb:hover .rv-play-icon { background: rgba(0,0,0,0.15); }

/* Footer: product tag + votes */
.rv-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f3;
}

.rv-product-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #f3f2ff;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  max-width: 50%;
}

.rv-product-tag span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rv-product-tag svg { flex-shrink: 0; color: #8b7aff; }

.rv-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  max-width: 70%;
  font-size: 12px;
  font-weight: 500;
  color: #4a4e5a;
  background: #f4f5f8;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #eaecf0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.rv-product-badge.has-img { padding-left: 4px; }
.rv-product-badge:hover {
  background: #eef0f3;
  border-color: #d8dbe0;
  color: var(--text-dark);
}

.rv-product-badge-icon { flex-shrink: 0; color: #8b8f9a; }

.rv-product-badge-img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #eaecf0;
}

.rv-product-badge-name {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rv-reply {
  margin-top: 14px;
  padding: 14px 18px;
  background: #f8f8fb;
  border-left: 3px solid var(--primary);
  border-radius: 0 12px 12px 0;
}

.rv-reply-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.rv-reply-header svg { color: var(--primary); flex-shrink: 0; }

.rv-reply-label {
  font-size: 12px;
  font-weight: 700;
  color: #333;
}

.rv-reply-text {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

.rv-incentive {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: #f4f4f7;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: #888;
  margin-top: 10px;
}

.rv-incentive svg { color: #aaa; flex-shrink: 0; }

.rv-votes {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rv-vote-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f6f6f8;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  color: #888;
  padding: 5px 10px;
  border-radius: 20px;
  transition: all 0.2s;
}

.rv-vote-btn:hover { color: var(--primary); background: #f0eeff; border-color: #e0dcff; }
.rv-vote-btn.voted { color: var(--primary); background: rgba(100, 92, 252, 0.08); border-color: #d9d4ff; cursor: default; pointer-events: none; }
.rv-vote-btn.voted svg { fill: var(--primary); stroke: #fff; }
.rv-vote-btn.vote-disabled { opacity: 0.35; pointer-events: none; }

/* ===============================================================
   Product Profile Page
   =============================================================== */

/* Product Loading Skeleton */
.pp-loading-skeleton {
  padding: 40px 0;
}

.pp-skel-hero {
  display: flex;
  gap: 28px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.pp-skel-img {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  flex-shrink: 0;
}

.pp-skel-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pp-skel-line {
  border-radius: 6px;
}

.pp-skel-reviews {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pp-skel-review {
  height: 120px;
  border-radius: 14px;
}

.pp-skel-shimmer {
  background: linear-gradient(90deg, #f0f0f2 25%, #e6e6ea 50%, #f0f0f2 75%);
  background-size: 200% 100%;
  animation: rs-shimmer 1.4s ease-in-out infinite;
}
 
/* ===== Store Profile Loading Skeleton ===== */
.sp-loading-skeleton { padding-bottom: 40px; }

.sp-skel-banner {
  height: 200px;
}

.sp-skel-header {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 28px;
  margin-top: -30px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.sp-skel-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
}

.sp-skel-header-info { flex: 1; }
.sp-skel-line { border-radius: 6px; }

.sp-skel-tabs {
  display: flex;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.sp-skel-reviews {
  display: flex;
  gap: 20px;
}

.sp-skel-rating-box {
  width: 280px;
  height: 200px;
  border-radius: 14px;
  flex-shrink: 0;
}

.sp-skel-review-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-skel-review {
  height: 110px;
  border-radius: 14px;
}

.rv-skel-card {
  background: #fff;
  border: 1px solid #ebebef;
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  gap: 24px;
}

.rv-skel-left {
  width: 150px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rv-skel-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.rv-skel-right {
  flex: 1;
  min-width: 0;
}

.rv-skel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.rv-skel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.sp-skel-product {
  height: 180px;
  border-radius: 14px;
}

.sp-skel-shimmer {
  background: linear-gradient(90deg, #f0f0f2 25%, #e6e6ea 50%, #f0f0f2 75%);
  background-size: 200% 100%;
  animation: rs-shimmer 1.4s ease-in-out infinite;
} 
/* Product Hero */
.pp-hero {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f3;
  overflow: hidden;
  margin-top: 20px;
}

/* Left: product image */
.pp-hero-img {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #fafafa;
  position: relative;
}
.pp-hero-img .pp-img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.pp-hero-img:hover .pp-img { transform: scale(1.03); }

.pp-img-placeholder { width: 48px; height: 48px; color: #d8d8de; }
.pp-img-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 260px;
}
.pp-img-fallback span { font-size: 12px; font-weight: 500; color: #b0b0b0; }

/* Right: details */
.pp-hero-info {
  flex: 1;
  min-width: 0;
  padding: 28px 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Store attribution row */
.pp-hero-store {
  display: flex;
  align-items: center;
  padding-top: 14px;
  margin-top: auto;
}

.pp-store-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}
.pp-store-link:hover { color: var(--primary); }

.pp-store-link .pp-store-logo {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  font-size: 8px;
  background: #ccc;
}
.pp-store-link .pp-store-logo img { padding: 0; }

.pp-store-logo {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  background: #ccc;
}
.pp-store-logo img { width: 100%; height: 100%; object-fit: contain; }

/* Product name */
.pp-product-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.2px;
  line-height: 1.35;
  margin-bottom: 12px;
}

/* Stats row */
.pp-hero-stats {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pp-stars { display: flex; gap: 1px; }
.pp-stars .da-star { width: 17px; height: 17px; }

.pp-rating-num {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-left: -2px;
}

.pp-review-count {
  font-size: 13px;
  color: #888;
  font-weight: 400;
}

/* Action area */
.pp-hero-action {
  margin-top: 20px;
}

.pp-visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(99,91,255,0.2);
  letter-spacing: 0.2px;
}
.pp-visit-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}
.pp-visit-btn:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
  box-shadow: 0 4px 14px rgba(99,91,255,0.3);
  transform: translateY(-1px);
}
.pp-visit-btn:hover svg {
  transform: translate(2px, -2px);
}


/* Store sidebar card */
.pp-store-card {
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pp-store-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.pp-store-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}

.pp-store-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.pp-store-info { min-width: 0; }

.pp-store-name-link {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.2s;
}

.pp-store-name-link:hover { color: var(--primary); }

.pp-store-products { font-size: 12px; color: #999; font-weight: 500; transition: color .2s; }
.pp-store-products:hover { color: #e8788e; text-decoration: underline; }

.pp-store-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pp-store-more {
  display: block;
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  transition: all 0.2s;
  text-align: center;
  margin-top: 4px;
  box-sizing: border-box;
}

.pp-store-more:hover { background: var(--primary-hover); color: #fff; }

/* Related products section */
.pp-more-section {
  margin-top: 32px;
  padding-bottom: 40px;
}

.pp-more-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.pp-more-cta {
  text-align: center;
  margin-top: 20px;
}

.pp-more-btn {
  display: inline-block;
  padding: 10px 28px;
  background: #fff;
  color: var(--primary);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--primary);
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}

.pp-more-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* Empty state CTA */
.pp-empty-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 8px 20px;
}
.pp-empty-cta-text {
  font-size: 15px;
  color: #555;
  margin: 0;
}
.pp-empty-cta-btn {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 14px 32px;
  background: var(--primary);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 26px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 10px rgba(100,92,252,0.25);
}
.pp-empty-cta-btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 16px rgba(100,92,252,0.35);
  transform: translateY(-1px);
}

.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  transition: background 0.25s ease;
}

.lb-overlay.show {
  background: rgba(0, 0, 0, 0.88);
}

.lb-img {
  max-width: 75vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.lb-overlay.show .lb-img {
  transform: scale(1);
  opacity: 1;
}

.lb-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
  z-index: 2;
}

.lb-close:hover { background: rgba(255,255,255,0.25); }

.lb-nav {
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s, opacity 0.25s ease, transform 0.25s ease;
}

.lb-nav:hover { background: rgba(255,255,255,0.3); box-shadow: 0 2px 12px rgba(0,0,0,0.3); }

.lb-nav.lb-nav-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

.lb-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
}

/* ===============================================================
   Review Detail Popup
   =============================================================== */
.rvp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  transition: background 0.25s ease;
}

.rvp-overlay.show {
  background: rgba(0, 0, 0, 0.85);
}

.rvp-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 720px;
  width: 90%;
  max-height: 75vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  transform: scale(0.92) translateY(16px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.rvp-overlay.show .rvp-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.rvp-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: #f3f3f5;
  color: #555;
  font-size: 22px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
  line-height: 1;
}

.rvp-close:hover { background: #e8e8eb; }

.rvp-nav {
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255,255,255,0.9);
  color: #333;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.rvp-nav:hover { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }

/* Smooth hide/show nav */
.rvp-nav {
  transition: background 0.2s, box-shadow 0.2s, opacity 0.25s ease, transform 0.25s ease;
}

.rvp-nav.rvp-nav-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

/* Slide animations for content */
.rvp-content {
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.rvp-slide-left {
  opacity: 0;
  transform: translateX(-20px);
}

.rvp-slide-right {
  opacity: 0;
  transform: translateX(20px);
}

.rvp-slide-in-right {
  animation: rvpSlideInRight 0.2s ease forwards;
}

.rvp-slide-in-left {
  animation: rvpSlideInLeft 0.2s ease forwards;
}

@keyframes rvpSlideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes rvpSlideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.rvp-content {
  display: flex;
}

.rvp-img-side {
  width: 300px;
  flex-shrink: 0;
  background: #1a1a1a;
  border-radius: 18px 0 0 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.rvp-img-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.rvp-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rvp-img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}

.rvp-img-nav:hover { background: rgba(0,0,0,0.7); }
.rvp-img-prev { left: 10px; }
.rvp-img-next { right: 10px; }

.rvp-img-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.rvp-img-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s;
}

.rvp-img-dot.active { background: #fff; }
.rvp-img-dot:hover { background: rgba(255,255,255,0.8); }

.rvp-details {
  flex: 1;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow-y: auto;
  max-height: 80vh;
}

.rvp-details-full {
  padding: 28px 28px 24px;
}

.rvp-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.rvp-stars .da-star { width: 20px; height: 20px; }

.rvp-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.rvp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0f0f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rvp-avatar img { width: 100%; height: 100%; object-fit: cover; }

.rvp-avatar .rv-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.rvp-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.rvp-name-line {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.rvp-name { font-size: 15px; font-weight: 700; color: var(--text-dark); }

.rvp-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}

.rvp-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  margin-top: 2px;
}

.rvp-location .rv-flag { width: 14px; height: auto; }

.rvp-date {
  font-size: 13px;
  color: #999;
  font-weight: 500;
  margin-left: auto;
  align-self: flex-start;
}

.rvp-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.rvp-text {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 12px;
}

.rvp-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #888;
}

.rvp-location .rv-flag { max-width: 12px; max-height: 12px; }

.rvp-incentive {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #f8f8fb;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #777;
  margin-bottom: 10px;
  align-self: flex-start;
}

.rvp-incentive svg { color: #999; }

.rvp-product-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 13px;
  color: #4a4e5a;
  font-weight: 500;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid #f0f0f3;
}

.rvp-product-footer-icon { color: #8b8f9a; flex-shrink: 0; }

.rvp-product-footer-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #eaecf0;
}

.rvp-product-footer-name {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rvp-reply {
  margin-top: 12px;
  padding: 12px 16px;
  background: #f8f8fb;
  border-left: 3px solid var(--primary);
  border-radius: 0 10px 10px 0;
}

.rvp-reply-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #333;
}

.rvp-reply-header svg { color: var(--primary); flex-shrink: 0; }

.rvp-reply-text {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

/* ===== Responsive ===== */
/* ===============================================================
   Scroll Fade-In Animations
   =============================================================== */
.sp-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.sp-fade-in.sp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for child elements */
.sp-fade-in-delay-1 { transition-delay: 0.08s; }
.sp-fade-in-delay-2 { transition-delay: 0.16s; }
.sp-fade-in-delay-3 { transition-delay: 0.24s; }

/* Smooth hover effects for interactive elements */
.sp-sidebar-card {
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.sp-sidebar-card:hover {
  border-color: rgba(100, 92, 252, 0.15);
  box-shadow: 0 4px 20px rgba(100, 92, 252, 0.08);
}

@media (max-width: 1024px) {
  .rs-store-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rs-skeleton-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sp-layout { grid-template-columns: 1fr 280px; gap: 20px; }
}

@media (max-width: 768px) {
  .dc-list-card { flex-wrap: wrap; }
  .dc-lc-logo { padding: 14px 16px; }
  .dc-lc-info { padding: 12px 14px; }
  .dc-lc-stats { padding: 8px 14px; }
  .dc-lc-actions { padding: 8px 14px; width: 100%; justify-content: flex-start; }
  .rvp-location { white-space: nowrap; }
  .rs-container { padding: 0 16px; }
  .rs-header-inner { padding: 0 16px; }
  .rs-footer-inner { padding: 0 16px; }
  .rs-store-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .rs-skeleton-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .rs-banner-inner { flex-direction: column; gap: 20px; padding: 32px 0; align-items: stretch; }
  .rs-banner-left { max-width: 100%; }
  .rs-banner-right { max-width: 100%; }
  .rs-search-input { padding: 12px 40px 12px 44px; font-size: 14px; }
  .rs-search-kbd { display: none; }
  .rs-search-banner { margin-bottom: 24px; }
  .rs-category-pills { gap: 6px; }
  .rs-cat-pill { padding: 5px 12px; font-size: 11px; }
  .rs-section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .rs-section-right { width: 100%; justify-content: space-between; }
  .dc-card { padding: 18px 14px 16px; }
  .dc-logo, .dc-logo-img-wrap { width: 48px; height: 48px; }
  .dc-logo { font-size: 20px; }
  .dc-name { font-size: 14px; }
  .dc-btn { padding: 8px 0; font-size: 12px; }
  .rs-list-view .dc-card { flex-direction: column; text-align: center; }
  .sp-layout { grid-template-columns: 1fr; }
  .sp-header-card { flex-direction: column; gap: 5px; padding: 20px; margin-top: -28px; align-items: center;}
  .sp-header-left { flex-direction: column; align-items: center; text-align: center;gap: 8px }
  .sp-header-info, .sp-section-title { text-align: center; }
  .sp-name-row { justify-content: center; }
  .sp-store-meta { justify-content: center; }
  .sp-store-desc { max-width: 100%; }
  .sp-header-actions { width: 100%; flex-wrap: wrap; justify-content: center; }
  .sp-btn-primary { flex: 1; justify-content: center; }
  .sp-write-review-wrap { width: 100%; margin-left: 0; }
  .sp-btn-write-review { width: 100%; justify-content: center; }
  .sp-btn-outline { flex: 1; justify-content: center; text-align: center; }
  .sp-fav-btn { order: -1; }
  .sp-gallery-thumb { width: 70px; height: 70px; }
  .sp-rating-overview { flex-direction: column; gap: 24px; align-items: stretch; }
  .sp-rating-big { min-width: auto; }
  .sp-banner { height: 180px; }
  .sp-banner-auto svg, .sp-reviews-sort label { display: none; }
  .sp-banner-auto { display: flex !important; align-items: center; justify-content: center; }
  .sp-banner-mob { display: flex !important; }
  .sp-header-rating { justify-content: center; }
  .sp-medals-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .sp-medal-item { padding: 12px 8px; }
  .sp-medal-icon { width: 44px; height: 44px; }
  .sp-medal-icon svg { width: 24px; height: 24px; }
  .rv-card { padding: 18px 18px; border-radius: 14px; }
  .rv-layout { flex-direction: column; gap: 14px; }
  .rv-skel-card { flex-direction: column; gap: 14px; padding: 18px; border-radius: 14px; }
  .rv-skel-left { width: auto; flex-direction: row; gap: 10px; align-items: center; }
  .rv-skel-avatar { width: 38px; height: 38px; }
  .rv-left { width: auto; flex-direction: row; flex-wrap: wrap; gap: 8px; text-align: left; align-items: center; padding-left: 0; }
  .rv-location { width: 100%; max-width: none; justify-content: flex-start; margin-top: -2px; }
  .rv-location span { white-space: nowrap; overflow: visible; text-overflow: unset; }
  .rv-avatar, .rv-avatar-img { width: 38px; height: 38px; font-size: 14px; margin-bottom: 0; }
  .rv-img-thumb, .rv-vid-thumb { width: 64px; height: 64px; }
  .rv-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .rv-product-tag { max-width: 100%; }
  .rv-product-tag span { white-space: normal; overflow: visible; text-overflow: unset; }
  .si-grid { grid-template-columns: 1fr; }
  .sp-tabs { overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
  .sp-tabs::-webkit-scrollbar { display: none; }
  .sp-tab { padding: 10px 14px; font-size: 13px; }
  .sp-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rvp-content { flex-direction: column; }
  .rvp-img-side { flex: none; width: 100%; border-radius: 18px 18px 0 0; max-height: 220px; }
  .rvp-details-full { padding: 20px; }
  .rvp-overlay { gap: 8px; padding: 4px; }
  .rvp-nav { width: 36px; height: 36px; }
  .rvp-modal { max-height: 85vh; }
  .rvp-details { max-height: 90vh; }
  .pp-hero { flex-direction: column; }
  .pp-hero-img { width: 100%; height: 220px; padding: 20px; }
  .pp-hero-info { padding: 20px; }
  .pp-product-name { font-size: 19px; }
  .pp-visit-btn { flex: 1; justify-content: center; }
  .pp-empty-cta { flex-direction: column; text-align: center; padding: 24px 20px; }
  .pp-empty-cta-btn { width: 100%; justify-content: center; }
  .pp-hero-stats { flex-wrap: wrap; gap: 6px; }
  .rs-footer-top { flex-direction: column; gap: 28px; }
  .rs-footer-links { gap: 32px; }  
  .sp-skel-reviews { flex-direction: column; }
  .sp-skel-rating-box { width: 100%; height: 140px; }
  .sp-skel-tabs { gap: 16px; }
  #productsLoading > div { grid-template-columns: repeat(2, 1fr) !important; }
  .pp-skel-hero { flex-direction: column; }
  .pp-skel-img { width: 100%; height: 160px; }
  .rv-product-badge {
    max-width: 100%;
    font-size: 11px;
    padding: 4px 10px;
  }
  .rv-product-badge.has-img { padding-left: 3px; }
  .rv-product-badge-img { width: 20px; height: 20px; }
  .sp-top-rated { padding: 28px 0 32px; }
  .sp-tr-card { width: 170px; padding: 10px 10px 14px; }
  .sp-tr-card-name { font-size: 12px; min-height: 32px; }
  .sp-top-rated-track { gap: 14px; }
  .sp-top-rated-track-wrap::before,
  .sp-top-rated-track-wrap::after { width: 40px; }
  .tr-ticker-strip { height: 56px; }
  .tr-ticker-thumb { width: 32px; height: 32px; }
  .tr-ticker-name { max-width: 100px; font-size: 12px; }
  .tr-spotlight-slide { flex-direction: column; text-align: center; gap: 20px; }
  .tr-spotlight-img { width: 170px; height: 170px; }
  .tr-spotlight-rating { justify-content: center; }
  .tr-ribbon-bar { gap: 14px; padding: 14px 20px; }
  .tr-ribbon-avatar { width: 38px; height: 38px; }
  .tr-ribbon-avatar:first-child { width: 42px; height: 42px; }
  .tr-ribbon-name { max-width: 160px; font-size: 13px; }
  .tr-switcher { gap: 4px; padding: 8px 10px; }
  .tr-sw-btn { padding: 6px 10px; font-size: 11px; }
  .tr-switcher-label { display: none; }
  .sp-banner-auto { padding: 0 16px; }
  .sp-banner-logo { width: 36px; height: 36px; font-size: 16px; }
  .sp-banner-prd { width: 72px; height: 72px; padding: 6px; }
  .sp-banner-prd:nth-child(3) { display: none; }
  .sp-reviews-section { padding: 20px; }
  .sp-top-rated-title { font-size: 19px; }
  .tr-ribbon-trophy { font-size: 16px; }
  .sp-banner-name { font-size: 20px; }
  .pp-product-name, .rs-section-title { font-size: 18px; }
  .rvp-date {font-size: 10px;}
  .dc-link { font-size: 11px; }
  .rs-banner-title { font-size: 24px; }
  .rs-banner-text { font-size: 13px; }
}

@media (max-width: 480px) {
  .sp-tr-card { width: 150px; }
  .sp-top-rated-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .sp-top-rated-title { font-size: 17px; } 
  .tr-spotlight-img { width: 140px; height: 140px; }
  .tr-spotlight-name { font-size: 17px; } 
  .tr-ribbon-bar { gap: 10px; padding: 12px 16px; min-height: auto; flex-wrap: wrap; justify-content: center; }
  .tr-ribbon-label { display: none; }
  .dc-list-card { flex-direction: column; align-items: stretch; }
  .dc-lc-logo { justify-content: center; padding: 16px; }
  .dc-lc-info { align-items: center; text-align: center; }
  .dc-lc-stats { justify-content: center; padding: 12px 14px; }
  .dc-lc-stat { min-width: 60px; }
  .dc-lc-actions { justify-content: center; padding: 0 14px 16px; }
  .rs-store-grid { grid-template-columns: 1fr; gap: 14px; }
  .rs-skeleton-grid { grid-template-columns: 1fr; gap: 14px; }
  .sp-products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .dc-card { padding: 16px 14px; }
  .rs-banner-title { font-size: 20px; }
  .rs-category-pills { flex-wrap: wrap; }
  .rs-view-toggle { display: none; }
  .rs-footer-links { flex-direction: column; gap: 20px; }
}
