/* ============================================
   Rust2Clean - Brand-specific overrides
   Loaded after shared/styles.css
   ============================================ */

/* --- Industrial palette override --- */
:root {
  --primary: #c2410c;
  --primary-dark: #9a3412;
  --primary-light: #fb923c;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --gradient-hero: linear-gradient(135deg, #0f0f0f 0%, #1c1917 40%, #292524 100%);
  --gradient-accent: linear-gradient(135deg, #c2410c 0%, #ea580c 100%);
  --gradient-card-border: linear-gradient(135deg, #c2410c, #ea580c, #f59e0b);
  --shadow-glow: 0 0 50px rgba(194, 65, 12, 0.12);
  --shadow-glow-accent: 0 8px 30px rgba(234, 88, 12, 0.3);
}

/* --- Hero orb recolor --- */
.brand-header::before {
  background: #c2410c;
}

.brand-header::after {
  background: #78716c;
}

/* --- Navbar --- */
.rc-navbar {
  background: #0f0f0f;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.rc-navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rc-navbar-logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}

.rc-navbar-logo span {
  color: var(--primary-light);
}

.rc-navbar-tagline {
  font-size: 0.75rem;
  color: #78716c;
  font-weight: 500;
}

/* --- Trust strip --- */
.rc-trust-strip {
  background: #1c1917;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 10px 24px;
}

.rc-trust-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.rc-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #a8a29e;
  letter-spacing: 0.02em;
}

.rc-trust-item .rc-trust-icon {
  font-size: 0.95rem;
}

/* --- Hero subtitle + badge tweak --- */
.brand-header h1 {
  background: linear-gradient(to right, #ffffff 30%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Category chip filter --- */
.rc-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.rc-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--border-color);
  background: #fff;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.rc-chip:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.rc-chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(194,65,12,0.25);
}

/* --- Store badge on card --- */
.rc-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 9999px;
  margin-bottom: 8px;
}

.rc-store-badge--amazon {
  background: rgba(255,153,0,0.12);
  color: #b45309;
  border: 1px solid rgba(255,153,0,0.25);
}

.rc-store-badge--aliexpress {
  background: rgba(255,64,0,0.1);
  color: #c2410c;
  border: 1px solid rgba(255,64,0,0.2);
}

/* --- Card image background --- */
.product-image-wrapper {
  background: #fafaf9;
}

/* --- Featured card accent line --- */
.product-card.featured {
  border-color: #fb923c;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(251,146,60,0.15);
}

/* --- "More options" section label color --- */
.more-products-label {
  color: #a8a29e;
}

/* --- Shop button for AliExpress products --- */
.btn-shop--aliexpress {
  background: linear-gradient(135deg, #ff4000, #ea580c);
}

/* --- Footer brand line --- */
.rc-footer-brand {
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 4px;
  display: block;
}

/* --- Responsive --- */
@media (max-width: 480px) {
  .rc-trust-strip-inner {
    gap: 16px;
  }

  .rc-navbar-tagline {
    display: none;
  }
}
