/* Pandota Ltd - Panda Monochrome Tech Aesthetic Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Panda Monochrome Brand Palette */
  --bg-dark: #09090b;
  --bg-card: #141417;
  --bg-card-hover: #1f1f23;
  --bg-glass: rgba(9, 9, 11, 0.85);

  --accent-white: #ffffff;
  --accent-silver: #e4e4e7;
  --accent-glow: rgba(255, 255, 255, 0.15);

  --ebay-red: #e53238;
  --ebay-blue: #0064d2;
  --ebay-yellow: #f5af02;
  --ebay-green: #86b817;

  --text-main: #f8fafc;
  --text-sub: #d4d4d8;
  --text-muted: #8e8e93;

  --border: rgba(255, 255, 255, 0.12);
  --border-active: rgba(255, 255, 255, 0.35);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 30px -5px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px rgba(255, 255, 255, 0.08);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
  --bg-dark: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(241, 245, 249, 0.9);

  --accent-white: #0f172a;
  --accent-silver: #334155;
  --accent-glow: rgba(0, 100, 210, 0.08);

  --text-main: #0f172a;
  --text-sub: #334155;
  --text-muted: #64748b;

  --border: rgba(15, 23, 42, 0.09);
  --border-active: rgba(15, 23, 42, 0.22);

  --shadow-sm: 0 2px 8px -1px rgba(15, 23, 42, 0.05), 0 1px 3px -1px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 12px 28px -4px rgba(15, 23, 42, 0.08), 0 4px 10px -2px rgba(15, 23, 42, 0.04);
  --shadow-glow: 0 0 35px rgba(0, 100, 210, 0.06);
}

[data-theme="light"] body {
  background-color: var(--bg-dark);
  color: var(--text-main);
}

[data-theme="light"] .header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px -4px rgba(15, 23, 42, 0.04);
}

/* Hero Section Depth & Ambient Gradient */
[data-theme="light"] .hero {
  background: radial-gradient(ellipse 90% 60% at 50% -15%, rgba(0, 100, 210, 0.08), transparent 75%),
              linear-gradient(180deg, #e2e8f0 0%, #f1f5f9 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .pill-badge {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  color: #0f172a;
}

[data-theme="light"] .pill-badge img {
  filter: none;
}

[data-theme="light"] .hero-title {
  color: #0f172a;
}

[data-theme="light"] .hero-title span {
  background: linear-gradient(180deg, #09090b 0%, #3f3f46 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom-color: #09090b;
}

[data-theme="light"] .hero-desc {
  color: #334155;
}

[data-theme="light"] .btn-primary {
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
}

[data-theme="light"] .btn-primary:hover {
  background: #1e293b;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25);
}

[data-theme="light"] .hero-stats {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.09);
  box-shadow: 0 6px 20px -3px rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .hero-live-inventory-box {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.1), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .hero-stock-card {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .hero-stock-img-box {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .inv-card-price,
[data-theme="light"] .inv-card-title,
[data-theme="light"] .hero-stock-title,
[data-theme="light"] .feature-card h3,
[data-theme="light"] .stat-item h4,
[data-theme="light"] .section-heading,
[data-theme="light"] .header .logo-brand span {
  color: #0f172a !important;
}

/* Footer Brand Logo Text MUST ALWAYS be Crisp White */
.footer .logo-brand span,
[data-theme="light"] .footer .logo-brand span {
  color: #ffffff !important;
}

/* Hero Search Bar Styles */
.hero-search-wrap {
  width: 100%;
  max-width: 580px;
  margin: 20px 0 24px;
}

.hero-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-active);
  padding: 8px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.hero-search-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  padding-left: 16px;
}

.hero-search-inner i {
  color: var(--ebay-blue);
  font-size: 1.05rem;
}

.hero-search-inner .search-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-main);
  width: 100%;
  font-size: 0.95rem;
}

.hero-search-btn {
  border-radius: var(--radius-full);
  padding: 12px 26px;
  font-weight: 600;
  white-space: nowrap;
}

[data-theme="light"] .hero-search-form {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.16) !important;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.08) !important;
}

[data-theme="light"] .hero-search-form:focus-within {
  border-color: #0064d2 !important;
  box-shadow: 0 0 0 3px rgba(0, 100, 210, 0.15), 0 4px 20px -2px rgba(15, 23, 42, 0.08) !important;
}

[data-theme="light"] .hero-search-inner .search-input {
  color: #0f172a !important;
}

[data-theme="light"] .hero-search-inner .search-input::placeholder {
  color: #64748b !important;
}

[data-theme="light"] .hero-stock-price-tag {
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

[data-theme="light"] .hero-inv-view-all {
  color: #0064d2;
}

[data-theme="light"] .hero-stock-badge {
  color: #16a34a;
}

[data-theme="light"] .hero-nav-arrow {
  background: #ffffff;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.15);
}

[data-theme="light"] .hero-nav-arrow:hover {
  background: #0f172a;
  color: #ffffff;
}

/* Collage Photo Showcase on Dark Overlay (Text Must Always Be Bright) */
.collage-title,
[data-theme="light"] .collage-title {
  color: #ffffff !important;
}

.collage-link-text,
[data-theme="light"] .collage-link-text {
  color: #60a5fa !important;
}

.collage-price-tag,
[data-theme="light"] .collage-price-tag {
  background: #ffffff !important;
  color: #09090b !important;
}

/* Section Separation & Transitions */
#inventory {
  position: relative;
  padding: 90px 0 95px;
}

#feedback {
  position: relative;
  padding: 95px 0 100px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(9, 9, 11, 0.5) 100%);
}

#sell {
  position: relative;
  padding: 95px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
}

#contact {
  position: relative;
  padding: 95px 0 55px;
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
}

/* Light Mode Section Alternating Separation */
[data-theme="light"] #inventory {
  background: #f1f5f9;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

[data-theme="light"] #feedback {
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 4px 24px -2px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] #sell {
  background: #edf2f7;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

[data-theme="light"] #contact {
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .ebay-score-summary {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .feedback-stats-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.09) !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .ebay-feedback-table th {
  color: #475569 !important;
}

[data-theme="light"] .ebay-feedback-table td {
  color: #0f172a !important;
}

[data-theme="light"] .fb-pos-link {
  color: #059669 !important;
}

[data-theme="light"] .fb-neu-link {
  color: #d97706 !important;
}

[data-theme="light"] .fb-neg-link {
  color: #dc2626 !important;
}

[data-theme="light"] .feedback-tab-btn {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.12);
  color: #475569;
}

[data-theme="light"] .feedback-tab-btn.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}

[data-theme="light"] .feedback-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 18px -2px rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .feedback-card:hover {
  border-color: rgba(15, 23, 42, 0.22);
  box-shadow: 0 16px 32px -4px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

[data-theme="light"] .verified-badge {
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

[data-theme="light"] .feedback-side-btn {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid rgba(15, 23, 42, 0.18) !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08) !important;
}

[data-theme="light"] .feedback-side-btn:hover {
  background: #0f172a !important;
  color: #ffffff !important;
}

[data-theme="light"] .feedback-comment {
  color: #1e293b;
}

[data-theme="light"] .buyer-name {
  color: #0f172a;
}

[data-theme="light"] .buyer-item {
  color: #475569;
}

/* Features Section Contrast */
[data-theme="light"] #features {
  background: #edf2f7;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .feature-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px -3px rgba(15, 23, 42, 0.05);
  padding: 32px;
  transition: var(--transition);
}

[data-theme="light"] .feature-card:hover {
  border-color: rgba(15, 23, 42, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .feature-icon {
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
}

[data-theme="light"] .feature-card h3 {
  color: #0f172a !important;
  font-weight: 700;
  margin-top: 14px;
}

[data-theme="light"] .feature-card p {
  color: #475569 !important;
  line-height: 1.6;
}

[data-theme="light"] .section-subtitle {
  color: #0f172a;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  display: inline-block;
  font-weight: 700;
}

[data-theme="light"] .section-desc {
  color: #475569 !important;
}

/* Categories & Search Banner */
[data-theme="light"] .search-banner {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.09);
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .category-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .category-card:hover {
  border-color: rgba(15, 23, 42, 0.2);
  box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.08);
}

/* Inventory Page in Light Mode */
[data-theme="light"] .inventory-hero {
  background: radial-gradient(ellipse 90% 60% at 50% -15%, rgba(0, 100, 210, 0.08), transparent 75%),
              linear-gradient(180deg, #e2e8f0 0%, #f1f5f9 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .inventory-controls-bar {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.09);
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .condition-pill-btn,
[data-theme="light"] .category-pill-btn {
  background: #ffffff;
  color: #334155;
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

[data-theme="light"] .condition-pill-btn:hover,
[data-theme="light"] .category-pill-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.3);
}

[data-theme="light"] .condition-pill-btn.active,
[data-theme="light"] .category-pill-btn.active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

[data-theme="light"] .filter-group-label {
  color: #64748b;
}

[data-theme="light"] .inventory-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 18px -2px rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .inventory-card:hover {
  border-color: rgba(15, 23, 42, 0.22);
  box-shadow: 0 16px 32px -4px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

[data-theme="light"] .inv-card-img-wrap {
  background: #f8fafc;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .inv-card-features span {
  background: #f1f5f9;
  color: #1e293b;
  border-color: rgba(15, 23, 42, 0.1);
  font-weight: 600;
}

[data-theme="light"] .inv-card-features span i {
  color: #0064d2;
}

/* FAQ & Contact Box */
[data-theme="light"] .faq-item {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

[data-theme="light"] .faq-item.active {
  border-color: rgba(15, 23, 42, 0.22);
  box-shadow: 0 6px 18px -2px rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .contact-box {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  box-shadow: 0 12px 32px -5px rgba(15, 23, 42, 0.08) !important;
}

[data-theme="light"] .contact-card {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

/* High-Contrast CTA Banner (Anchor) */
[data-theme="light"] .cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid #334155;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.35);
  color: #ffffff;
}

[data-theme="light"] .cta-banner h2 {
  color: #ffffff !important;
}

[data-theme="light"] .cta-banner p {
  color: #cbd5e1 !important;
}

/* Footer Light Mode Overrides */
[data-theme="light"] .footer {
  background: #09090b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

[data-theme="light"] .footer-brand p {
  color: #94a3b8;
}

[data-theme="light"] .footer-col h4 {
  color: #ffffff !important;
}

[data-theme="light"] .footer-col ul a {
  color: #cbd5e1;
}

[data-theme="light"] .footer-col ul a:hover {
  color: #ffffff;
}

[data-theme="light"] .footer-col ul span {
  color: #94a3b8;
}

[data-theme="light"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

[data-theme="light"] .footer-bottom a {
  color: #ffffff !important;
}

[data-theme="light"] .nav-links a {
  color: #334155;
}

[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a.active-nav {
  color: #0f172a !important;
}

[data-theme="light"] .search-input,
[data-theme="light"] .inventory-search-input,
[data-theme="light"] .inventory-sort-select {
  background: #ffffff;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.15);
}

[data-theme="light"] .all-loaded-banner {
  border-top-color: rgba(15, 23, 42, 0.1) !important;
  color: #475569 !important;
}

[data-theme="light"] [style*="color: #ffffff"],
[data-theme="light"] [style*="color:#ffffff"] {
  color: #0f172a !important;
}

.theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
}

.theme-toggle-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  transform: rotate(15deg);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Badges & Pills */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  backdrop-filter: blur(8px);
}

.pill-badge img {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
}

.ebay-logo-svg-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  line-height: 0;
  transition: transform 0.2s ease;
}

.btn-ebay:hover .ebay-logo-svg-wrap {
  transform: scale(1.05);
}

.ebay-svg-logo {
  height: 18px;
  width: auto;
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: #ffffff;
  color: #09090b;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: #e4e4e7;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  transform: translateY(-2px);
}

.btn-ebay {
  background: linear-gradient(135deg, #0064d2, #004bb1);
  color: #ffffff;
}

.btn-ebay:hover {
  background: linear-gradient(135deg, #0073ea, #0056cb);
  box-shadow: 0 10px 25px rgba(0, 100, 210, 0.4);
  transform: translateY(-2px);
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.logo-brand span {
  color: #ffffff;
}

.logo-brand img.brand-panda-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.2));
  transition: transform 0.3s ease;
}

.logo-brand:hover img.brand-panda-img {
  transform: scale(1.06) rotate(-2deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-sub);
}

.nav-links a:hover {
  color: var(--accent-white);
}

.nav-sell-highlight {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  background: rgba(0, 100, 210, 0.1);
  border: 1px solid rgba(0, 100, 210, 0.28);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  color: #60a5fa !important;
  font-weight: 600 !important;
  font-size: 0.92rem;
  transition: all 0.25s ease;
}

.nav-sell-highlight:hover {
  background: #0064d2;
  border-color: #0064d2;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 100, 210, 0.35);
  transform: translateY(-1px);
}

.nav-hot-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: none;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  padding: 1px 7px;
  border-radius: 9999px;
  letter-spacing: 0.01em;
  margin-left: 2px;
  transition: all 0.2s ease;
}

.nav-sell-highlight:hover .nav-hot-badge {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

[data-theme="light"] .nav-sell-highlight {
  background: rgba(0, 100, 210, 0.06);
  border-color: rgba(0, 100, 210, 0.22);
  color: #0064d2 !important;
}

[data-theme="light"] .nav-sell-highlight:hover {
  background: #0064d2;
  border-color: #0064d2;
  color: #ffffff !important;
}

[data-theme="light"] .nav-hot-badge {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
  color: #059669;
}

[data-theme="light"] .nav-sell-highlight:hover .nav-hot-badge {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.hero-title span {
  background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 3px solid #ffffff;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-sub);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}

/* Hero Live eBay Inventory Showcase Box (Replaces old AI photo) */
.hero-live-inventory-box {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-inv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.hero-inv-live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-white);
}

.hero-inv-view-all {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-white);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.hero-inv-view-all:hover {
  opacity: 0.8;
}

.hero-carousel-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-nav-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.8rem;
}

.hero-nav-arrow:hover {
  background: #ffffff;
  color: #09090b;
  border-color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.hero-stock-card {
  position: relative;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.hero-stock-card.is-transitioning {
  opacity: 0;
  transform: translateY(6px) scale(0.985);
}

.hero-stock-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #09090b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.hero-stock-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  background: transparent;
  display: block;
  transition: transform 0.4s ease;
}

.hero-stock-card:hover .hero-stock-img-wrap img {
  transform: scale(1.03);
}

.hero-stock-info {
  padding: 14px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}

.hero-stock-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
}

.hero-stock-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}

.hero-stock-badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: #22c55e;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  line-height: 1.2;
}

.hero-stock-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-main);
  margin: 0;
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-stock-info .btn-ebay {
  width: 100%;
  margin: 0 !important;
}

/* Light theme overrides for Hero Stock Card */
[data-theme="light"] .hero-stock-card {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .hero-stock-img-wrap {
  background: #f8fafc;
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .hero-stock-price {
  color: #0f172a !important;
}

[data-theme="light"] .hero-stock-title {
  color: #0f172a !important;
}

/* Inventory Page Specific Styles (inventory.html) */
.inventory-hero {
  padding: 65px 0 45px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05) 0%, rgba(9, 9, 11, 0.98) 100%), var(--bg-dark);
  border-bottom: 1px solid var(--border);
}

[data-theme="light"] .inventory-hero {
  background: radial-gradient(circle at 50% 0%, #ffffff 0%, #f1f5f9 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.inventory-main-heading {
  font-size: clamp(1.5rem, 3.8vw, 2.75rem);
  white-space: nowrap;
  letter-spacing: -0.02em;
  display: block;
}

.inventory-grid-section {
  padding: 50px 0 100px;
  background: var(--bg-dark);
  position: relative;
}

[data-theme="light"] .inventory-grid-section {
  background: #f8fafc;
}

.active-nav {
  color: var(--accent-white) !important;
  font-weight: 700 !important;
  border-bottom: 2px solid #ffffff;
}

/* Feedback Section */
.feedback-tabs-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 28px;
}

.feedback-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-sub);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.feedback-tab-btn:hover {
  border-color: var(--border-active);
  color: var(--text-main);
}

.feedback-tab-btn.active {
  background: var(--bg-elevated);
  border-color: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 100, 210, 0.25);
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feedback-page {
  display: none !important;
}

.feedback-page.active {
  display: grid !important;
}

.feedback-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.feedback-card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feedback-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.feedback-stars {
  color: #f5af02;
  font-size: 0.875rem;
  display: flex;
  gap: 3px;
}

.verified-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 5px;
}

.feedback-comment {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 18px;
}

.feedback-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px dashed var(--border);
  padding-top: 14px;
}

.buyer-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.buyer-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.buyer-score {
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 0.8rem;
}

a.feedback-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: flex;
}

.buyer-item {
  font-size: 0.8rem;
  color: var(--text-sub);
}

.feedback-meta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.feedback-price {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ebay-blue);
  background: rgba(0, 100, 210, 0.09);
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

[data-theme="light"] .feedback-price {
  color: #005bb7;
  background: #eff6ff;
  border: 1px solid rgba(0, 100, 210, 0.15);
}

.feedback-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* eBay Feedback Table Links */
.fb-stat-link {
  display: inline-block;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

.fb-stat-link:hover {
  text-decoration: underline;
  transform: scale(1.05);
}

.fb-pos-link {
  color: #10b981;
}

.fb-pos-link:hover {
  background: rgba(16, 185, 129, 0.14);
  color: #059669;
}

.fb-neu-link {
  color: #f59e0b;
}

.fb-neu-link:hover {
  background: rgba(245, 158, 11, 0.14);
  color: #d97706;
}

.fb-neg-link {
  color: #ef4444;
}

.fb-neg-link:hover {
  background: rgba(239, 68, 68, 0.14);
  color: #dc2626;
}

.fb-header-link {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.2s ease;
}

.fb-header-link:hover {
  text-decoration: underline;
  opacity: 0.85;
}

.inventory-controls-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  padding: 24px;
  border-radius: var(--radius-lg);
  margin-top: 24px;
  box-shadow: var(--shadow-lg);
}

[data-theme="light"] .inventory-controls-bar {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.06);
}

.filtered-results-count {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

[data-theme="light"] .filtered-results-count {
  color: #475569;
}

.search-filter-input-wrap {
  position: relative;
  flex: 1;
  min-width: 260px;
}

.search-filter-input-wrap .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.inventory-search-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

.inventory-search-input:focus {
  border-color: var(--accent-white);
}

.brand-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-dark);
  color: var(--text-sub);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-pill:hover, .filter-pill.active {
  background: #ffffff;
  color: #09090b;
  border-color: #ffffff;
}

.sort-select-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inventory-sort-select {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.full-inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.inventory-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.inventory-card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.inv-card-badge {
  display: none !important;
}

.inv-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-card);
}

.inv-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  background: var(--bg-card);
  display: block;
  transition: transform 0.4s ease;
}

.inventory-card:hover .inv-card-img-wrap img {
  transform: scale(1.05);
}

.inv-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 12px;
}

.inv-card-body a.btn-ebay,
.inv-card-body .btn-ebay,
.inventory-card .btn-ebay {
  margin-top: auto !important;
  width: 100%;
}

.inv-card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.inv-card-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #ffffff;
}

.inv-card-photo-watcher-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.775rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 5px 11px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  z-index: 2;
  pointer-events: none;
  letter-spacing: -0.2px;
}

.inv-card-photo-watcher-badge i {
  color: #ef4444;
  font-size: 0.8rem;
}

[data-theme="light"] .inv-card-photo-watcher-badge {
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.inv-card-views-prominent-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #06b6d4;
  background: rgba(6, 182, 212, 0.09);
  border: 1px solid rgba(6, 182, 212, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: -0.2px;
}

.inv-card-views-prominent-badge i {
  color: #06b6d4;
  font-size: 0.85rem;
}

[data-theme="light"] .inv-card-views-prominent-badge {
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
  border-color: rgba(6, 182, 212, 0.28);
}

[data-theme="light"] .inv-card-views-prominent-badge i {
  color: #0891b2;
}

.new-listing-views-badge {
  color: #f59e0b !important;
  background: rgba(245, 158, 11, 0.09) !important;
  border-color: rgba(245, 158, 11, 0.25) !important;
}

.new-listing-views-badge i {
  color: #f59e0b !important;
}

[data-theme="light"] .new-listing-views-badge {
  color: #d97706 !important;
  background: rgba(245, 158, 11, 0.1) !important;
  border-color: rgba(245, 158, 11, 0.28) !important;
}

[data-theme="light"] .new-listing-views-badge i {
  color: #d97706 !important;
}

.inv-card-title {
  font-size: 1.025rem;
  line-height: 1.4;
  color: var(--text-main);
  font-weight: 600;
  margin: 0;
}

.inv-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: auto;
}

.inv-card-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  color: var(--text-main);
  font-weight: 500;
}

.inv-card-features span i {
  color: #a1a1aa;
  font-size: 0.75rem;
}

.category-filter-row,
.condition-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.filter-group-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 4px;
  white-space: nowrap;
}

.condition-pill-btn,
.category-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-sub);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.condition-pill-btn:hover,
.category-pill-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  color: #ffffff;
}

.condition-pill-btn.active,
.category-pill-btn.active {
  background: #ffffff;
  color: #09090b;
  border-color: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
}

.condition-pill-btn i,
.category-pill-btn i {
  font-size: 0.82rem;
}

.inv-card-pill.category-pill {
  background: rgba(0, 100, 210, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.25);
  font-weight: 600;
}

[data-theme="light"] .inv-card-pill.category-pill {
  background: rgba(0, 100, 210, 0.08);
  color: #0064d2;
  border-color: rgba(0, 100, 210, 0.2);
}

.coupon-pill-btn {
  background: rgba(16, 185, 129, 0.1) !important;
  color: #10b981 !important;
  border-color: rgba(16, 185, 129, 0.28) !important;
}

.coupon-pill-btn:hover {
  background: rgba(16, 185, 129, 0.2) !important;
  border-color: #10b981 !important;
  color: #10b981 !important;
}

.coupon-pill-btn.active {
  background: #10b981 !important;
  color: #ffffff !important;
  border-color: #10b981 !important;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.35) !important;
}

.inv-card-coupon-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.09);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.stat-item {
  transition: var(--transition);
  padding: 12px;
  border-radius: var(--radius-sm);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.stat-item h4 {
  font-size: 1.75rem;
  color: var(--accent-white);
}

.stat-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-glow);
  background: #000;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

.floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(9, 9, 11, 0.92);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-active);
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.badge-icon img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Feature Summary Section */
.section {
  padding: 90px 0;
}

.section-title-area {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-subtitle {
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.section-heading {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-sub);
  font-size: 1.05rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-sub);
  font-size: 0.95rem;
}

/* Real Inventory Photo Collage Showcase */
.collage-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.collage-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: var(--transition);
  display: block;
}

.collage-item-large {
  grid-column: span 6;
  aspect-ratio: 16 / 10;
}

.collage-item-medium {
  grid-column: span 4;
  aspect-ratio: 4 / 3;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  background: var(--bg-card);
  display: block;
  transition: transform 0.5s ease;
}

.collage-item:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.collage-item:hover img {
  transform: scale(1.05);
}

.collage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 11, 0.95) 0%, rgba(9, 9, 11, 0.3) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  transition: opacity 0.3s ease;
}

.collage-price-tag {
  align-self: flex-start;
  background: #ffffff;
  color: #09090b;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.collage-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.collage-link-text {
  font-size: 0.85rem;
  color: var(--accent-white);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 992px) {
  .collage-item-large, .collage-item-medium {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .collage-item-large, .collage-item-medium {
    grid-column: span 12;
    aspect-ratio: 4 / 3;
  }
}

/* Search Bar Section */
.search-banner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin: 40px 0;
  text-align: center;
}

.search-form {
  display: flex;
  max-width: 600px;
  margin: 24px auto 0;
  gap: 12px;
}

.search-input {
  flex: 1;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}

.search-input:focus {
  border-color: var(--accent-white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

/* Categories Grid */
.categories-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}

.category-card:hover {
  border-color: var(--border-active);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-icon {
  font-size: 1.5rem;
  color: var(--accent-white);
}

.category-card h4 {
  font-size: 1.1rem;
}

.category-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.category-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* FAQ Section */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-active);
}

.faq-question {
  padding: 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--text-sub);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  color: var(--accent-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-sub);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 24px 24px;
}

/* ==========================================================================
   Sell To Us & Supplier Partnerships Component Styles
   ========================================================================== */
.sell-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  margin-bottom: 36px;
}

.sell-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.sell-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-active);
}

.sell-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(0, 100, 210, 0.14);
  color: var(--ebay-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
}

[data-theme="light"] .sell-card-icon {
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.sell-card h3 {
  font-size: 1.22rem;
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}

[data-theme="light"] .sell-card h3 {
  color: #0f172a !important;
}

.sell-card p {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

[data-theme="light"] .sell-card p {
  color: #475569 !important;
}

.sell-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 0;
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.sell-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-sub);
  font-weight: 500;
}

.sell-card-list li i {
  color: #10b981;
  font-size: 0.85rem;
}

[data-theme="light"] .sell-card-list li {
  color: #334155;
}

[data-theme="light"] .sell-card-list {
  border-top-color: rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .sell-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 20px -3px rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .sell-card:hover {
  border-color: rgba(15, 23, 42, 0.22);
  box-shadow: 0 16px 32px -4px rgba(15, 23, 42, 0.1);
}

/* Brands & Specs Prioritized Box */
.sell-brands-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

[data-theme="light"] .sell-brands-box {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.09);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.sell-brands-header h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

[data-theme="light"] .sell-brands-header h4 {
  color: #0f172a !important;
}

.sell-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sell-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
}

[data-theme="light"] .sell-tag {
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: #1e293b;
}

/* Sell Section CTA Banner Box */
.sell-cta-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid #334155;
  border-radius: var(--radius-lg);
  padding: 38px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.35);
  position: relative;
}

.sell-cta-content h3 {
  font-size: 1.45rem;
  color: #ffffff !important;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.sell-cta-content p {
  font-size: 0.96rem;
  color: #cbd5e1 !important;
  max-width: 560px;
  line-height: 1.55;
}

.sell-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

/* Standout High-Contrast Email Specs Button (Clean, No Glow) */
.btn-specs-highlight {
  background: #ffffff !important;
  color: #0f172a !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  padding: 15px 34px !important;
  border-radius: var(--radius-full) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  transition: all 0.25s ease !important;
  letter-spacing: 0.01em;
}

.btn-specs-highlight i.fa-envelope {
  color: #0f172a;
  font-size: 1.05rem;
  transition: transform 0.2s ease;
}

.btn-specs-highlight i.fa-arrow-right {
  font-size: 0.9rem;
  color: #0f172a;
  transition: transform 0.2s ease;
}

.btn-specs-highlight:hover {
  background: #f1f5f9 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
  color: #000000 !important;
}

.btn-specs-highlight:hover i.fa-arrow-right {
  transform: translateX(4px);
}

.sell-cta-subtext {
  font-size: 0.82rem;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  user-select: all;
}

.sell-cta-subtext:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.sell-cta-subtext strong {
  color: #e2e8f0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Floating Toast Notification */
.email-copy-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 100, 210, 0.3);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.email-copy-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.email-copy-toast i {
  color: #10b981;
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .sell-options-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sell-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    align-items: center;
  }
  .sell-cta-actions {
    align-items: center;
    width: 100%;
  }
  .btn-specs-highlight {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Dedicated Sell To Us Page Styles (sell.html)
   ========================================================================== */

.sell-page-hero {
  padding: 70px 0 65px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.sell-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.sell-hero-heading {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 20px;
}

.sell-hero-desc {
  font-size: 1.12rem;
  color: var(--text-sub);
  max-width: 760px;
  line-height: 1.65;
  margin: 0 auto 32px;
}

.sell-hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-sell-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0064d2;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(0, 100, 210, 0.35);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-sell-primary:hover {
  background: #0052b0;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 100, 210, 0.5);
}

.btn-sell-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-main) !important;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-sell-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  transform: translateY(-2px);
}

/* Trust Guarantees Grid */
.sell-guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 0;
}

.sell-guarantee-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.25s ease;
}

.sell-guarantee-card:hover {
  border-color: var(--border-active);
  transform: translateY(-3px);
}

.sell-guarantee-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 100, 210, 0.12);
  color: #60a5fa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.sell-guarantee-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.sell-guarantee-card p {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.5;
}

/* Steps Timeline */
.sell-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}

.sell-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.sell-step-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-heading);
}

[data-theme="light"] .sell-step-badge {
  color: rgba(15, 23, 42, 0.08);
}

.sell-step-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: #0064d2;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 100, 210, 0.3);
}

.sell-step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.sell-step-card p {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* Interactive Laptop Quote Generator Form Card */
.sell-form-wrapper {
  background: linear-gradient(135deg, rgba(24, 24, 27, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(0, 100, 210, 0.35);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
  margin-bottom: 70px;
  position: relative;
}

.sell-form-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 36px;
}

.sell-form-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.sell-form-header p {
  font-size: 0.95rem;
  color: #94a3b8;
}

.sell-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sell-form-full {
  grid-column: 1 / -1;
}

.sell-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sell-form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sell-form-field input,
.sell-form-field select,
.sell-form-field textarea {
  width: 100%;
  padding: 12px 16px;
  background: #09090b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.92rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.sell-form-field input:focus,
.sell-form-field select:focus,
.sell-form-field textarea:focus {
  outline: none;
  border-color: #0064d2;
  box-shadow: 0 0 0 3px rgba(0, 100, 210, 0.25);
  background: #111827;
}

.sell-form-field select option {
  background: #18181b;
  color: #ffffff;
}

.sell-form-submit-row {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.btn-submit-valuation {
  width: 100%;
  max-width: 480px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #0064d2 0%, #0052b0 100%);
  color: #ffffff !important;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 100, 210, 0.4);
  transition: all 0.25s ease;
}

.btn-submit-valuation:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 100, 210, 0.6);
  background: linear-gradient(135deg, #0073ea 0%, #0064d2 100%);
}

.sell-form-note {
  font-size: 0.82rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Valuation Success & Error Card */
.valuation-success-card {
  text-align: center;
  padding: 48px 24px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-lg);
  animation: fadeInSuccess 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInSuccess {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.valuation-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.valuation-success-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.valuation-success-card p {
  font-size: 1rem;
  color: #94a3b8;
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.valuation-success-details {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  max-width: 520px;
  margin: 0 auto 28px;
  text-align: left;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.valuation-success-details p {
  margin: 4px 0;
  color: #cbd5e1;
  font-size: 0.88rem;
}

.btn-reset-valuation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-reset-valuation:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

[data-theme="light"] .valuation-success-card {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.3);
}

[data-theme="light"] .valuation-success-card h3 {
  color: #0f172a;
}

[data-theme="light"] .valuation-success-details {
  background: #ffffff;
  border-color: #e2e8f0;
  color: #334155;
}

[data-theme="light"] .valuation-success-details p {
  color: #334155;
}

[data-theme="light"] .btn-reset-valuation {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

[data-theme="light"] .btn-reset-valuation:hover {
  background: #e2e8f0;
}

/* FAQ Accordion */
.sell-faq-section {
  margin-bottom: 70px;
}

.sell-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sell-faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.25s ease;
}

.sell-faq-card:hover {
  border-color: var(--border-active);
}

.sell-faq-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.sell-faq-card h4 i {
  color: #0064d2;
}

.sell-faq-card p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* Light Theme Overrides for Sell Page */
[data-theme="light"] .sell-page-hero .sell-hero-heading {
  color: #0f172a !important;
}

[data-theme="light"] .sell-guarantee-card {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .sell-step-card {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .sell-form-wrapper {
  background: #ffffff;
  border-color: rgba(0, 100, 210, 0.25);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .sell-form-header h2 {
  color: #0f172a !important;
}

[data-theme="light"] .sell-form-field label {
  color: #334155;
}

[data-theme="light"] .sell-form-field input,
[data-theme="light"] .sell-form-field select,
[data-theme="light"] .sell-form-field textarea {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.15);
  color: #0f172a;
}

[data-theme="light"] .sell-form-field input:focus,
[data-theme="light"] .sell-form-field select:focus,
[data-theme="light"] .sell-form-field textarea:focus {
  background: #ffffff;
}

[data-theme="light"] .sell-form-field select option {
  background: #ffffff;
  color: #0f172a;
}

[data-theme="light"] .sell-faq-card {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

@media (max-width: 992px) {
  .sell-guarantees-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sell-steps-grid {
    grid-template-columns: 1fr;
  }
  .sell-faq-grid {
    grid-template-columns: 1fr;
  }
  .sell-form-wrapper {
    padding: 28px 18px;
  }
  .sell-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .sell-guarantees-grid {
    grid-template-columns: 1fr;
  }
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, #18181b 0%, #09090b 100%);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.cta-banner h2 {
  font-size: 2.75rem;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.15rem;
  color: var(--text-sub);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* Footer */
.footer {
  background: #09090b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px 0 28px;
  color: #94a3b8;
  font-size: 0.88rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr 0.8fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand-col .logo-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-tagline {
  color: #94a3b8;
  line-height: 1.55;
  font-size: 0.86rem;
  max-width: 340px;
}

.footer-info-col h4,
.footer-nav-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-company-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.footer-company-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #cbd5e1;
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer-company-details li i {
  color: var(--ebay-blue);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-company-details li strong {
  color: #ffffff;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.footer-nav-col a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.2s ease;
}

.footer-nav-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: #94a3b8;
}

.footer-bottom a {
  color: #ffffff !important;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==========================================================================
   Comprehensive Mobile & Responsive Optimization System
   ========================================================================== */

/* Universal Mobile Fixes */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

/* Base Mobile Header & Navigation */
.mobile-toggle {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

[data-theme="light"] .mobile-toggle {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.15);
  color: #0f172a;
}

.mobile-toggle:hover {
  border-color: var(--border-active);
}

/* Tablets & Below (<= 992px) */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  }

  .hero-desc {
    max-width: 100%;
    margin: 0 auto;
    font-size: 1rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .search-form-wrap {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }

  .hero-stats {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }

  .hero-live-inventory-box {
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }

  .categories-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* Smartphones & Small Tablets (<= 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 14px;
  }

  .section {
    padding: 40px 0;
  }

  .header-container {
    height: 60px;
  }

  .logo-brand {
    font-size: 1.15rem;
    gap: 8px;
    letter-spacing: 0.03em;
  }

  .logo-brand img.brand-panda-img {
    height: 34px;
  }

  /* Compact Header Action Elements */
  .nav-actions {
    gap: 8px;
    align-items: center;
  }

  .theme-toggle-btn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .btn-ebay {
    padding: 6px 10px;
    font-size: 0.78rem;
    gap: 6px;
    border-radius: var(--radius-full);
  }

  .btn-ebay .ebay-svg-logo {
    height: 14px;
  }

  .btn-ebay .ebay-logo-svg-wrap {
    padding: 2px 6px;
  }

  /* Hide long "Visit Pandota eBay Store" text and arrow in header on mobile */
  .header .btn-ebay span:not(.ebay-logo-svg-wrap) {
    display: none;
  }

  .header .btn-ebay i {
    display: none;
  }

  /* Hamburger Menu Toggle */
  .mobile-toggle {
    display: flex !important;
  }

  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .header-container {
    position: relative;
  }

  .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--bg-card);
    flex-direction: column;
    padding: 16px 20px;
    gap: 8px;
    border-bottom: 1px solid var(--border-active);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
    z-index: 1001;
  }

  [data-theme="light"] .nav-links {
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  }

  .nav-links.active {
    display: flex !important;
    animation: mobileMenuSlideDown 0.22s ease forwards;
  }

  @keyframes mobileMenuSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
  }

  .nav-links a:hover,
  .nav-links a.active-nav {
    background: rgba(0, 100, 210, 0.08);
    color: var(--ebay-blue) !important;
  }

  /* Hero Mobile Enhancements with refined letter sizing */
  .hero {
    padding: 20px 0 28px;
  }

  .pill-badge {
    padding: 5px 12px;
    font-size: 0.74rem;
    gap: 6px;
  }

  .pill-badge img {
    height: 16px;
  }

  .hero-content {
    gap: 14px;
  }

  .hero-title {
    font-size: clamp(1.4rem, 5.2vw, 1.75rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .hero-desc {
    font-size: 0.86rem;
    line-height: 1.42;
    color: var(--text-sub);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 42px;
    padding: 9px 14px;
    font-size: 0.84rem;
    justify-content: center;
  }

  .search-banner {
    padding: 20px 14px;
    margin: 20px 0;
  }

  .search-form {
    flex-direction: column;
    gap: 8px;
    padding: 6px;
    margin-top: 12px;
  }

  .search-input {
    width: 100%;
    min-height: 38px;
    font-size: 0.84rem;
    padding: 8px 12px;
  }

  .search-form .btn-primary {
    width: 100%;
    min-height: 40px;
    font-size: 0.84rem;
    padding: 8px 12px;
  }

  /* Compact 3-Column Stats Grid */
  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 4px !important;
    padding: 8px 6px !important;
    border-radius: 12px;
    margin-top: 10px;
  }

  .stat-item {
    padding: 4px 2px;
    text-align: center;
  }

  .stat-item h4 {
    font-size: 0.98rem !important;
    margin-bottom: 2px;
  }

  .stat-item p {
    font-size: 0.62rem !important;
    line-height: 1.15;
  }

  /* Hero Live Stock Card Viewing Window on Mobile */
  .hero-live-inventory-box {
    padding: 12px;
    border-radius: 14px;
    gap: 10px;
  }

  .hero-inv-header {
    padding-bottom: 8px;
  }

  .hero-inv-live-badge {
    font-size: 0.75rem;
    gap: 6px;
  }

  .hero-inv-view-all {
    font-size: 0.72rem;
  }

  .hero-nav-arrow {
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
  }

  .hero-stock-card {
    border-radius: 12px;
  }

  .hero-stock-img-wrap {
    aspect-ratio: 16 / 11;
  }

  .hero-stock-info {
    padding: 12px 14px 14px;
    gap: 8px;
  }

  .hero-stock-price {
    font-size: 1.25rem;
  }

  .hero-stock-title {
    font-size: 0.9rem;
    line-height: 1.35;
    min-height: 38px;
    margin-bottom: 2px;
    -webkit-line-clamp: 2;
  }

  /* Section Headings & Text */
  .section-title-area {
    margin: 0 auto 20px;
  }

  .section-subtitle {
    font-size: 0.72rem;
    margin-bottom: 6px;
  }

  .section-heading {
    font-size: clamp(1.25rem, 4.5vw, 1.55rem) !important;
    margin-bottom: 8px;
  }

  .section-desc {
    font-size: 0.84rem !important;
    line-height: 1.4;
  }

  /* Feedback & Ratings Breakdown on Mobile */
  .feedback-section {
    padding: 30px 0 24px;
  }

  .ebay-score-summary {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 6px 10px !important;
    padding: 8px 12px !important;
    font-size: 0.76rem;
    border-radius: 10px;
  }

  .feedback-stats-card {
    padding: 10px 8px !important;
    border-radius: 12px;
    margin-bottom: 14px;
  }

  .ebay-feedback-table th,
  .ebay-feedback-table td {
    padding: 5px 3px !important;
    font-size: 0.72rem;
  }

  .feedback-side-btn {
    display: none !important;
  }

  .feedback-carousel-wrap {
    margin: 0 -14px;
    padding: 0 14px 8px;
  }

  .feedback-card {
    flex: 0 0 80% !important;
    min-width: 220px !important;
    max-width: 280px !important;
    padding: 12px !important;
    border-radius: 12px;
    scroll-snap-align: center;
  }

  .feedback-stars {
    font-size: 0.75rem;
    margin-bottom: 6px;
  }

  .feedback-comment {
    font-size: 0.8rem;
    line-height: 1.38;
    margin-bottom: 8px;
  }

  .buyer-name {
    font-size: 0.72rem;
  }

  .buyer-item {
    font-size: 0.68rem;
    line-height: 1.3;
  }

  /* Inventory Page Controls on Mobile */
  .inventory-hero {
    padding: 16px 0 10px;
  }

  .inventory-main-heading {
    font-size: clamp(1.3rem, 4.8vw, 1.65rem) !important;
  }

  .inventory-sub-heading {
    font-size: 0.8rem;
    margin-top: 2px;
  }

  .inventory-controls-bar {
    padding: 10px 8px !important;
    gap: 8px !important;
    border-radius: 12px;
    margin-top: 10px;
    flex-direction: column;
  }

  .search-filter-input-wrap {
    min-width: 0 !important;
    width: 100% !important;
  }

  .search-filter-input-wrap i {
    font-size: 0.78rem;
    left: 10px;
  }

  .inventory-search-input {
    font-size: 0.8rem;
    padding: 7px 10px 7px 30px;
    min-height: 36px;
    border-radius: 8px;
  }

  .category-filter-row,
  .condition-filter-row {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap !important;
    gap: 6px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category-filter-row::-webkit-scrollbar,
  .condition-filter-row::-webkit-scrollbar {
    display: none;
  }

  .category-pill-btn,
  .condition-pill-btn {
    white-space: nowrap;
    padding: 5px 10px !important;
    font-size: 0.74rem !important;
    flex-shrink: 0;
    border-radius: 9999px;
  }

  .sort-select-wrap {
    width: 100%;
    justify-content: space-between;
    font-size: 0.75rem;
  }

  .sort-select-wrap label {
    font-size: 0.74rem;
  }

  .inventory-sort-select {
    flex: 1;
    font-size: 0.76rem;
    padding: 5px 8px;
    min-height: 34px;
    border-radius: 8px;
  }

  /* Inventory Product Cards Grid */
  .full-inventory-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
    margin-top: 12px;
  }

  .inventory-card {
    max-width: 100%;
    border-radius: 12px;
  }

  .inv-card-img-wrap {
    height: 145px;
    padding: 6px;
  }

  .inv-card-condition-badge {
    font-size: 0.65rem;
    padding: 2px 7px;
    top: 6px;
    left: 6px;
  }

  .inv-card-body {
    padding: 10px 10px 12px;
    gap: 6px;
  }

  .inv-card-title {
    font-size: 0.84rem;
    line-height: 1.3;
    margin-bottom: 4px;
    height: 2.2rem;
    -webkit-line-clamp: 2;
  }

  .inv-card-features {
    gap: 3px;
    margin-bottom: 4px;
  }

  .inv-card-features span {
    font-size: 0.68rem;
    padding: 2px 6px;
  }

  .inv-card-price-row {
    margin-top: 2px;
  }

  .inv-card-price {
    font-size: 1.15rem;
    font-weight: 800;
  }

  .inv-card-coupon-badge {
    font-size: 0.68rem;
    padding: 2px 6px;
  }

  .inv-card-watchers {
    font-size: 0.66rem;
  }

  .inv-card-btn {
    min-height: 36px;
    padding: 6px 10px;
    font-size: 0.76rem;
    border-radius: 8px;
  }

  /* Categories & Features Grid */
  .category-list {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .category-card {
    padding: 12px 10px;
    border-radius: 10px;
    gap: 6px;
  }

  .category-card h4 {
    font-size: 0.85rem;
  }

  .category-card p {
    font-size: 0.72rem;
  }

  .category-link {
    font-size: 0.72rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-card {
    padding: 14px 12px !important;
    border-radius: 12px;
    gap: 8px;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .feature-card h3 {
    font-size: 0.95rem;
  }

  .feature-card p {
    font-size: 0.8rem;
    line-height: 1.38;
  }

  /* FAQ Section on Mobile */
  .faq-accordion {
    gap: 8px;
  }

  .faq-question {
    padding: 12px 14px;
    font-size: 0.86rem;
  }

  .faq-answer {
    font-size: 0.8rem;
    line-height: 1.4;
    padding: 0 14px;
  }

  .faq-item.active .faq-answer {
    padding: 0 14px 14px 14px;
  }

  /* CTA Banner & Contact */
  .cta-banner {
    padding: 22px 14px !important;
    margin: 22px auto !important;
    border-radius: 14px;
  }

  .cta-banner h2 {
    font-size: 1.28rem !important;
    margin-bottom: 6px;
  }

  .cta-banner p {
    font-size: 0.82rem !important;
    margin-bottom: 12px;
  }

  .contact-box {
    padding: 18px 12px !important;
    border-radius: 14px;
  }

  .contact-box h2 {
    font-size: 1.25rem !important;
  }

  .contact-box p {
    font-size: 0.8rem !important;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
  }

  .contact-card {
    padding: 10px;
    font-size: 0.78rem;
    border-radius: 10px;
  }

  /* Footer */
  .footer {
    padding: 26px 0 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .footer-col h4 {
    font-size: 0.88rem;
    margin-bottom: 6px;
  }

  .footer-col ul {
    gap: 6px;
  }

  .footer-col p,
  .footer-col a {
    font-size: 0.76rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 0.7rem;
    padding-top: 12px;
  }
}

/* Extra Small Phones (<= 380px) */
@media (max-width: 380px) {
  .container {
    padding: 0 10px;
  }

  .logo-brand span {
    font-size: 1.05rem;
  }

  .logo-brand img.brand-panda-img {
    height: 28px;
  }

  .stat-item h4 {
    font-size: 0.88rem !important;
  }

  .stat-item p {
    font-size: 0.58rem !important;
  }

  .hero-stock-img-box {
    height: 125px;
  }

  .inv-card-img-wrap {
    height: 125px;
  }

  .inv-card-price {
    font-size: 1.05rem;
  }
}

/* Scroll Reveal & Infinite Scroll Styling */
.inventory-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.inventory-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.inventory-sentinel {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.inventory-sentinel-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin-sentinel 0.8s linear infinite;
}

@keyframes spin-sentinel {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   Cookie Consent Banner & Privacy Policy Styles
   ========================================================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 440px;
  width: calc(100% - 48px);
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 9999999;
  display: none;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cookie-consent-banner.show {
  display: flex !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner-header i {
  font-size: 1.25rem;
  color: #f59e0b;
}

.cookie-banner-header h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.cookie-banner-text {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.55;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--ebay-blue);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-text a:hover {
  text-decoration: none;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  flex: 1;
  min-width: 130px;
  padding: 10px 18px;
  background: var(--ebay-blue);
  color: #ffffff !important;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.btn-cookie-accept:hover {
  background: #0052b0;
  transform: translateY(-1px);
}

.btn-cookie-decline {
  flex: 1;
  min-width: 130px;
  padding: 10px 18px;
  background: transparent;
  color: var(--text-main) !important;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.btn-cookie-decline:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
}

/* Privacy Page Content Layout */
.privacy-page-container {
  max-width: 860px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

.privacy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.privacy-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.privacy-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.privacy-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.privacy-section {
  margin-bottom: 36px;
}

.privacy-section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-section h2 i {
  color: var(--ebay-blue);
  font-size: 1.15rem;
}

.privacy-section p {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 14px;
}

.privacy-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.privacy-section ul li {
  font-size: 0.93rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.privacy-section ul li::before {
  content: "•";
  color: var(--ebay-blue);
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 8px;
  top: -2px;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.88rem;
}

.cookie-table th,
.cookie-table td {
  padding: 12px 14px;
  border: 1px solid var(--border);
  text-align: left;
}

.cookie-table th {
  background: rgba(0, 100, 210, 0.08);
  color: var(--text-main);
  font-weight: 700;
}

.cookie-table td {
  color: var(--text-sub);
}

.btn-cookie-reset {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-card-hover);
  border: 1px solid var(--border-active);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.btn-cookie-reset:hover {
  background: var(--ebay-blue);
  color: #ffffff !important;
  border-color: var(--ebay-blue);
}

@media (max-width: 600px) {
  .cookie-consent-banner {
    bottom: 12px;
    right: 12px;
    left: 12px;
    width: auto;
    padding: 18px 20px;
  }
  .privacy-card {
    padding: 24px 18px;
  }
  .privacy-header h1 {
    font-size: 1.7rem;
  }
}
