/* PartnerBoost Publisher Widget v1.4.0 */

.pb-widget {
  --pb-accent: #4f46e5;
  --pb-cols: 3;
  font-family: system-ui, -apple-system, sans-serif;
  max-width: 100%;
  box-sizing: border-box;
}
.pb-widget * { box-sizing: border-box; }

/* ── Tabs ── */
.pb-tabs { display:flex; gap:2px; border-bottom:1px solid #e5e7eb; margin-bottom:14px; flex-wrap:wrap; }
.pb-tab { padding:8px 14px; font-size:13px; cursor:pointer; background:transparent; border:none; border-bottom:2px solid transparent; color:#6b7280; margin-bottom:-1px; transition:color .15s; white-space:nowrap; }
.pb-tab:hover { color:#111827; }
.pb-tab.active { color:var(--pb-accent); border-bottom-color:var(--pb-accent); font-weight:600; }

/* ── Filters ── */
.pb-filter-row { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:14px; align-items:center; }
.pb-filter-row input[type="text"], .pb-filter-row select {
  flex:1; min-width:120px; padding:7px 10px; font-size:13px;
  border:1px solid #d1d5db; border-radius:6px; background:#fff; color:#111;
}
.pb-filter-row input:focus, .pb-filter-row select:focus { outline:none; border-color:var(--pb-accent); box-shadow:0 0 0 2px color-mix(in srgb, var(--pb-accent) 15%, transparent); }

/* ── Grid layout ── */
.pb-grid {
  display:grid;
  grid-template-columns: repeat(var(--pb-cols), 1fr);
  gap:14px;
}

/* Horizontal / list layout */
.pb-widget[data-layout="list"] .pb-grid { grid-template-columns:1fr; gap:10px; }
.pb-widget[data-layout="list"] .pb-card { flex-direction:row; align-items:stretch; }
.pb-widget[data-layout="list"] .pb-card-img,
.pb-widget[data-layout="list"] .pb-img-ph {
  width:140px; height:auto; aspect-ratio:1/1; flex-shrink:0;
}
.pb-widget[data-layout="list"] .pb-card-body {
  justify-content:center; padding:12px 16px;
}
.pb-widget[data-layout="list"] .pb-card-title { min-height:auto; -webkit-line-clamp:2; }
.pb-widget[data-layout="list"] .pb-card-body .pb-btn { max-width:200px; margin-top:8px; }

/* ── Card ── */
.pb-card { background:#fff; border:1px solid #e5e7eb; border-radius:12px; overflow:hidden; transition:box-shadow .15s, transform .15s; display:flex; flex-direction:column; }
.pb-card:hover { box-shadow:0 4px 14px rgba(0,0,0,.09); transform:translateY(-1px); }

/* Square product image area with padding - product floats on white/light bg */
.pb-card-img {
  width:100%; aspect-ratio:1/1; object-fit:contain; display:block;
  background:#fafafa; padding:16px; flex-shrink:0;
}
.pb-img-ph {
  width:100%; aspect-ratio:1/1; display:flex; align-items:center; justify-content:center;
  font-size:40px; background:#fafafa; flex-shrink:0;
}

.pb-card-body { padding:14px 14px 16px; display:flex; flex-direction:column; flex:1; }
.pb-card-title {
  font-size:14px; font-weight:600; color:#111827; margin:0 0 6px;
  overflow:hidden; text-overflow:ellipsis; display:-webkit-box;
  -webkit-line-clamp:2; -webkit-box-orient:vertical; line-height:1.45; min-height:2.9em;
}
.pb-card-meta { font-size:12px; color:#6b7280; margin:0 0 6px; line-height:1.5; }
.pb-brand {
  font-weight:600; color:var(--pb-accent); margin-bottom:4px !important;
  font-size:11px; text-transform:uppercase; letter-spacing:.05em;
}

/* Push CTA button to bottom of card for consistent height */
.pb-card-body .pb-btn { margin-top:auto; }

/* ── Badges ── */
.pb-badge { display:inline-block; font-size:11px; padding:2px 7px; border-radius:4px; margin-bottom:6px; font-weight:500; }
.pb-badge-coupon  { background:#eff6ff; color:#1d4ed8; }
.pb-badge-deal    { background:#fefce8; color:#92400e; }
.pb-badge-amazon  { background:#fff7ed; color:#c2410c; }
.pb-badge-walmart { background:#fff0f0; color:#c00b0b; }
.pb-badge-cat     { background:#f0fdf4; color:#15803d; }

/* ── Price ── */
.pb-price     { font-weight:700; color:#059669; font-size:15px; margin:4px 0; }
.pb-old-price { font-size:12px; color:#9ca3af; font-weight:400; margin-left:6px; text-decoration:line-through; }

/* ── Coupon code ── */
.pb-code-wrap { display:flex; align-items:center; gap:6px; margin:4px 0 6px; }
.pb-code { flex:1; font-size:13px; padding:3px 8px; background:#f3f4f6; border-radius:5px; border:1px dashed #d1d5db; color:#374151; font-family:monospace; letter-spacing:.03em; }
.pb-copy { padding:3px 8px; font-size:11px; background:#fff; border:1px solid #d1d5db; border-radius:5px; cursor:pointer; color:#374151; white-space:nowrap; flex-shrink:0; }
.pb-copy:hover { background:#f3f4f6; }

/* ── CTA button ── */
.pb-btn { display:block; width:100%; margin-top:10px; padding:8px 10px; background:var(--pb-accent); color:#fff !important; border:none; border-radius:7px; font-size:13px; font-weight:600; cursor:pointer; text-align:center; text-decoration:none !important; transition:opacity .15s; }
.pb-btn:hover { opacity:.88; }

/* ── States ── */
.pb-loading, .pb-empty { padding:2rem; text-align:center; color:#9ca3af; font-size:14px; }
.pb-error { padding:10px 14px; background:#fef2f2; color:#b91c1c; border-radius:8px; font-size:13px; margin-top:8px; border:1px solid #fecaca; }
.pb-no-link { font-size:11px; color:#9ca3af; margin-top:6px; }

/* ── Layout switcher ── */
.pb-layout-switch { display:flex; gap:4px; margin-bottom:12px; }
.pb-layout-btn { padding:5px 10px; font-size:12px; cursor:pointer; background:#fff; border:1px solid #d1d5db; border-radius:5px; color:#6b7280; }
.pb-layout-btn.active { background:var(--pb-accent); color:#fff; border-color:var(--pb-accent); }

/* ── Cols control ── */
.pb-cols-control { display:flex; align-items:center; gap:6px; font-size:12px; color:#6b7280; }
.pb-cols-control select { padding:4px 8px; font-size:12px; border:1px solid #d1d5db; border-radius:5px; width:auto; flex:none; }

/* ── Toolbar ── */
.pb-toolbar { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:8px; margin-bottom:12px; }
.pb-toolbar-left  { display:flex; align-items:center; gap:8px; }
.pb-toolbar-right { display:flex; align-items:center; gap:8px; }

/* ── Pagination ── */
.pb-pager { display:flex; gap:10px; align-items:center; flex-wrap:wrap; margin-top:16px; }
.pb-pager button { padding:7px 16px; font-size:13px; cursor:pointer; background:#fff; border:1px solid #d1d5db; border-radius:7px; transition:background .15s; }
.pb-pager button:hover:not(:disabled) { background:#f3f4f6; }
.pb-pager button:disabled { opacity:.4; cursor:not-allowed; }
.pb-page-info { font-size:13px; color:#6b7280; }

/* ── Responsive ── */
@media (max-width:768px) {
  .pb-widget:not([style*="--pb-cols: 1"]):not([style*="--pb-cols:1"]) { --pb-cols:2; }
}
@media (max-width:480px) {
  .pb-tab { padding:7px 10px; font-size:12px; }
  .pb-widget[data-layout="list"] .pb-card-img,
  .pb-widget[data-layout="list"] .pb-img-ph { width:90px; height:90px; }
  .pb-toolbar-right { flex-wrap:wrap; }
}

/* ── Hot Deals Widget ─────────────────────────────────────────────────── */
.pb-hotdeals-widget { font-family: inherit; }

/* Brand group accordion */
.pb-hd-brands { display: flex; flex-direction: column; gap: 8px; }
.pb-hd-brand-group { border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; }

.pb-hd-brand-trigger {
  width: 100%; background: #f8fafc; border: none; padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 600;
  color: #1e293b; text-align: left; transition: background .15s;
}
.pb-hd-brand-trigger:hover { background: #f1f5f9; }

.pb-hd-brand-name { display: flex; align-items: center; gap: 8px; }
.pb-hd-brand-icon { font-size: 16px; }
.pb-hd-brand-comm {
  font-size: 11px; font-weight: 700; background: #fef3c7; color: #92400e;
  padding: 2px 8px; border-radius: 20px; margin-left: 6px;
}
.pb-hd-meta { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #64748b; flex-shrink: 0; }
.pb-hd-arr { font-size: 10px; transition: transform .2s; }

.pb-hd-brand-body { padding: 16px; background: #fff; }
.pb-hd-brand-body.pb-hd-closed { display: none !important; }
.pb-hd-link-loading { color: #9ca3af; font-size: 13px; padding: 8px 0; }

/* Deal card extras */
.pb-hd-img { width: 100%; height: 180px; object-fit: contain; }
.pb-hd-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 20px; margin-bottom: 8px;
}
.pb-hd-badge-acc { background: #fef3c7; color: #92400e; }
.pb-hd-badge-assoc { background: #dbeafe; color: #1e40af; }

.pb-hd-urgency { font-size: 12px; color: #dc2626; font-weight: 600; margin: 4px 0; }
.pb-hd-dates { font-size: 11px; color: #6b7280; margin: 4px 0 8px; }

.pb-hd-cta { background: #f97316 !important; font-size: 13px; }
.pb-hd-cta-loading { opacity: .75; }
.pb-hd-error { color: #dc2626; padding: 12px; font-size: 13px; }
.pb-hd-loading { color: #9ca3af; padding: 20px; font-size: 13px; text-align: center; }

/* ── Brand storefront link bar ── */
.pb-hd-brand-sf {
  background: #f0f9ff; border-top: 1px solid #e0f2fe;
  padding: 8px 16px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.pb-hd-sf-wrap { display: flex; align-items: center; gap: 8px; }
.pb-hd-sf-link {
  font-size: 12px; font-weight: 600; color: #0369a1 !important;
  text-decoration: none; padding: 4px 10px; background: #fff;
  border: 1px solid #bae6fd; border-radius: 6px; white-space: nowrap;
}
.pb-hd-sf-link:hover { background: #e0f2fe; }
.pb-hd-sf-copy {
  font-size: 12px; font-weight: 600; cursor: pointer;
  padding: 4px 10px; background: #0369a1; color: #fff;
  border: none; border-radius: 6px; white-space: nowrap;
}
.pb-hd-sf-copy:hover { background: #0284c7; }

/* ── Brand Index Page (/hot-deals/) ── */
.pb-brand-index-intro { color: #6b7280; margin-bottom: 20px; }
.pb-brand-index-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px;
}
.pb-brand-card {
  display: flex; flex-direction: column; border: 1px solid #e5e7eb;
  border-radius: 12px; overflow: hidden; text-decoration: none !important;
  color: inherit; transition: box-shadow .15s, transform .15s; background: #fff;
}
.pb-brand-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); transform: translateY(-2px); }
.pb-brand-card-img {
  height: 120px; display: flex; align-items: center; justify-content: center;
  background: #f9fafb; padding: 12px;
}
.pb-brand-card-img img { max-height: 100%; max-width: 100%; object-fit: contain; }
.pb-brand-card-no-img { font-size: 36px; }
.pb-brand-card-info { padding: 12px; display: flex; flex-direction: column; gap: 4px; }
.pb-brand-card-info strong { font-size: 15px; color: #1e293b; }
.pb-brand-card-count { font-size: 12px; color: #6b7280; }
.pb-brand-card-comm {
  font-size: 11px; font-weight: 700; background: #fef3c7; color: #92400e;
  padding: 2px 8px; border-radius: 20px; display: inline-block; width: fit-content;
}

/* ── Brand Detail Page (/hot-deals/brand-name/) ── */
.pb-brand-page-sf { margin-bottom: 20px; }
.pb-brand-sf-btn {
  display: inline-block; background: #f97316; color: #fff !important;
  font-weight: 700; padding: 10px 20px; border-radius: 8px; font-size: 14px;
  text-decoration: none !important;
}
.pb-brand-sf-btn:hover { opacity: .9; }

/* ── Image placeholder when Amazon CDN fails ── */
.pb-hd-img-ph {
  width: 100%; height: 180px; background: #f3f4f6;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; border-radius: 8px;
}

/* ── Brand Index Search ── */
.pb-brand-search-wrap {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap;
}
.pb-brand-search {
  flex: 1; min-width: 200px; max-width: 420px;
  padding: 10px 16px; font-size: 15px; border-radius: 8px;
  border: 2px solid #e5e7eb; outline: none; font-family: inherit;
  transition: border-color .15s;
}
.pb-brand-search:focus { border-color: var(--pb-accent, #4f46e5); }
.pb-brand-search-count {
  font-size: 13px; color: #6b7280; white-space: nowrap;
}
.pb-brand-card-no-img {
  font-size: 36px; display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}

/* ── Brand search in hotdeals widget ── */
.pb-hd-brand-search-wrap {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap;
}
.pb-hd-brand-search {
  flex: 1; min-width: 180px; max-width: 360px; padding: 8px 14px;
  font-size: 14px; border-radius: 8px; border: 1px solid #e5e7eb;
  outline: none; font-family: inherit; transition: border-color .15s;
}
.pb-hd-brand-search:focus { border-color: var(--pb-accent, #4f46e5); }
.pb-hd-brand-search-count { font-size: 12px; color: #6b7280; }

/* ── Coupon Index Page (/coupons/) ── */
.pb-coupon-search-wrap { display:flex; align-items:center; gap:12px; margin-bottom:24px; flex-wrap:wrap; }
.pb-coupon-cat-section { margin-bottom:36px; }
.pb-coupon-cat-title {
  font-size:20px; font-weight:700; color:#1e293b;
  display:flex; align-items:center; gap:10px;
  border-bottom:2px solid #e5e7eb; padding-bottom:10px; margin-bottom:16px;
}
.pb-coupon-cat-count {
  font-size:13px; font-weight:500; color:#6b7280;
  background:#f1f5f9; padding:2px 10px; border-radius:20px;
}
.pb-coupon-store-grid { grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); }

/* ── Coupon Store Page (/coupons/berlook/) ── */
.pb-coupon-store-header {
  display:flex; align-items:center; gap:20px; margin-bottom:28px;
  padding:20px; background:#f8fafc; border-radius:12px; border:1px solid #e5e7eb;
}
.pb-coupon-store-logo { width:80px; height:80px; flex-shrink:0; }
.pb-coupon-store-logo img { width:100%; height:100%; object-fit:contain; border-radius:8px; }
.pb-coupon-store-name { font-size:24px; font-weight:700; margin:0 0 6px; }
.pb-coupon-store-count { font-size:13px; color:#6b7280; margin:6px 0 0; }

/* Coupon list */
.pb-coupon-list { display:flex; flex-direction:column; gap:16px; }
.pb-coupon-item {
  display:flex; align-items:flex-start; gap:16px; flex-wrap:wrap;
  border:1px solid #e5e7eb; border-radius:12px; padding:16px; background:#fff;
}
.pb-coupon-item-img {
  flex-shrink:0; width:80px; height:80px;
}
.pb-coupon-item-img img { width:100%; height:100%; object-fit:contain; border-radius:6px; }
.pb-coupon-item-body { flex:1; min-width:200px; }
.pb-coupon-item-title {
  font-size:16px; font-weight:700; margin:6px 0 4px; line-height:1.4; color:#1e293b;
}
.pb-coupon-item-desc { font-size:13px; color:#6b7280; margin:0; }
.pb-coupon-item-action {
  display:flex; flex-direction:column; gap:8px; min-width:160px; align-items:flex-start;
}
.pb-coupon-code-wrap { display:flex; align-items:center; gap:6px; }
.pb-coupon-cta { width:100%; text-align:center; }
.pb-coupon-expiry { font-size:12px; font-weight:600; color:#6b7280; display:block; margin:4px 0 6px; }
.pb-coupon-expiry-soon { color:#dc2626; }
.pb-coupon-expiry-expired { color:#9ca3af; text-decoration:line-through; }
.pb-coupon-back { color:var(--pb-accent,#4f46e5); font-size:14px; text-decoration:none; }
.pb-coupon-back:hover { text-decoration:underline; }
@media (max-width:600px) {
  .pb-coupon-store-header { flex-direction:column; align-items:flex-start; }
  .pb-coupon-item { flex-direction:column; }
  .pb-coupon-item-action { width:100%; }
  .pb-coupon-cta { display:block; }
}

/* ── Coupon store page v2 ── */
.pb-coupon-expired-item { opacity: .65; }
.pb-coupon-no-link { font-size:12px; color:#9ca3af; }
.pb-coupon-copy-btn { transition: background .2s, color .2s; }
.pb-coupon-cta { display:block; text-align:center; }

/* ── Coupon item layout fix ── */
.pb-coupon-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: start;
  gap: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}
.pb-coupon-item-action {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
  align-items: stretch;
}
.pb-coupon-store-page .pb-btn.pb-coupon-cta,
a.pb-coupon-cta {
  display: block !important;
  width: 100% !important;
  padding: 10px 16px !important;
  background: var(--pb-accent, #4f46e5) !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-align: center !important;
  text-decoration: none !important;
  box-sizing: border-box;
}
.pb-coupon-store-page .pb-btn.pb-coupon-cta:hover,
a.pb-coupon-cta:hover { opacity: .88; }
@media (max-width: 640px) {
  .pb-coupon-item { grid-template-columns: 60px 1fr; }
  .pb-coupon-item-action { grid-column: 1 / -1; }
}

/* ── Expired coupon toggle ── */
.pb-coupon-filter-bar {
  margin-bottom: 12px; padding: 8px 12px;
  background: #fef9ec; border: 1px solid #fde68a; border-radius: 8px;
  font-size: 13px;
}
.pb-coupon-toggle-expired { display:flex; align-items:center; gap:8px; cursor:pointer; }

/* ── Amazon product feature bullets ── */
.pb-feature-list {
  list-style: none;
  margin: 8px 0 10px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pb-feature-list li {
  font-size: 12px;
  color: #374151;
  padding: 3px 0 3px 20px;
  position: relative;
  line-height: 1.4;
}
.pb-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
  font-size: 12px;
}
/* List layout: bullets inline */
.pb-widget[data-layout="list"] .pb-feature-list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px 12px;
}
.pb-widget[data-layout="list"] .pb-feature-list li {
  padding: 2px 0 2px 16px;
}

/* ── Amazon price block ── */
.pb-price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 6px;
}
.pb-price-main {
  font-size: 22px;
  font-weight: 800;
  color: #e53e3e;
  line-height: 1;
  letter-spacing: -0.5px;
}
.pb-price-old {
  font-size: 14px;
  color: #9ca3af;
  font-weight: 400;
  text-decoration: line-through;
}
.pb-discount-badge {
  display: inline-block;
  background: #e53e3e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: middle;
}

/* ── Feature bullets ── */
.pb-feature-list {
  list-style: none;
  margin: 8px 0 10px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pb-feature-list li {
  font-size: 12px;
  color: #374151;
  padding: 3px 0 3px 20px;
  position: relative;
  line-height: 1.4;
}
.pb-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
  font-size: 12px;
}
.pb-widget[data-layout="list"] .pb-feature-list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px 12px;
}

/* ── Amazon card v2.7.7 ── */

/* Image wrapper with BSR badge overlay */
.pb-card-img-wrap {
  position: relative;
  overflow: hidden;
}
.pb-bsr-badge {
  position: absolute;
  bottom: 8px;
  left: 0;
  background: linear-gradient(90deg,#e47911,#f8a500);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px 3px 6px;
  border-radius: 0 3px 3px 0;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Badges row */
.pb-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}

/* Discount badge inline in badges row */
.pb-badges-row .pb-discount-badge,
.pb-discount-badge {
  display: inline-block;
  background: #e53e3e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.2px;
}

/* Price block */
.pb-price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 4px;
}
.pb-price-main {
  font-size: 22px;
  font-weight: 800;
  color: #e53e3e;
  line-height: 1;
  letter-spacing: -0.5px;
}
.pb-price-old {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 400;
  text-decoration: line-through;
}

/* Rating stars */
.pb-rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin: 4px 0 6px;
  font-size: 13px;
}
.pb-star { font-size: 14px; line-height: 1; }
.pb-star-full  { color: #f59e0b; }
.pb-star-half  { color: #f59e0b; opacity: 0.6; }
.pb-star-empty { color: #d1d5db; }
.pb-rating-num { font-size: 12px; font-weight: 700; color: #374151; margin-left: 3px; }
.pb-reviews    { font-size: 11px; color: #6b7280; margin-left: 2px; }

/* Feature bullets */
.pb-feature-list {
  list-style: none;
  margin: 6px 0 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pb-feature-list li {
  font-size: 12px;
  color: #374151;
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.pb-feature-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}
.pb-widget[data-layout="list"] .pb-feature-list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 3px 12px;
}

/* ── Search input styling ── */
.pb-search-input {
  height: 34px;
  padding: 0 10px 0 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 13px;
  color: #374151;
  background: #fff;
  outline: none;
  transition: border-color .15s;
}
.pb-search-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 2px rgba(99,102,241,.15);
}

/* ── Compact price (Amazon — same style as Walmart) ── */
.pb-price {
  font-size: 16px;
  font-weight: 700;
  color: #e53e3e;
  margin: 6px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.pb-price-old-sm {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 400;
  text-decoration: line-through;
}
/* Keep discount badge inline with price */
.pb-price .pb-discount-badge {
  font-size: 11px;
  padding: 1px 5px;
}
