/* ═══════════════════════════════════════════════════════════
   ANNOUNCEMENT TICKER — Industrial-tech blue gradient
   ═══════════════════════════════════════════════════════════ */
.announcement-bar {
  background: linear-gradient(90deg, #0F172A 0%, #1E3A8A 25%, #0E7490 50%, #1E3A8A 75%, #0F172A 100%);
  background-size: 200% 100%;
  animation: ticker-bg-shift 8s linear infinite;
  color: #F8FAFC;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 40;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  border-top: 1px solid rgba(6, 182, 212, 0.20);
}
@keyframes ticker-bg-shift {
  0%   { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.announcement-bar::before,
.announcement-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.announcement-bar::before {
  left: 0;
  background: linear-gradient(to right, #0F172A, transparent);
}
.announcement-bar::after {
  right: 0;
  background: linear-gradient(to left, #0F172A, transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 42s linear infinite;
  will-change: transform;
  padding-left: 100%;
}
.ticker-track:hover { animation-play-state: paused; }

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  position: relative;
}
.ticker-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 3px;
  background: rgba(34, 211, 238, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(34, 211, 238, 0.7);
}
.ticker-item .t-badge {
  background: rgba(34, 211, 238, 0.18);
  border: 1px solid rgba(34, 211, 238, 0.40);
  border-radius: 999px;
  padding: 1px 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #67E8F9;
  backdrop-filter: blur(4px);
  animation: badge-glow 2.4s ease-in-out infinite alternate;
}
@keyframes badge-glow {
  from { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.30); }
  to   { box-shadow: 0 0 10px 2px rgba(34, 211, 238, 0.45); }
}

.ticker-item .t-icon {
  font-size: 14px;
  display: inline-block;
  animation: icon-bounce 1.6s ease-in-out infinite alternate;
}
@keyframes icon-bounce {
  from { transform: translateY(0); }
  to   { transform: translateY(-2px); }
}

/* ═══════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding: 14px 0 0;
  flex-wrap: wrap;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--muted); transition: color 200ms; }
.breadcrumb a:hover { color: var(--primary-bright); }
.breadcrumb .sep { color: var(--hairline); font-size: 10px; }
.breadcrumb .current { color: var(--text); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   TRUST BADGES BAR
   ═══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.trust-bar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: var(--grad-line);
  background-size: 200% 100%;
  animation: divider-flow 5s linear infinite;
  opacity: 0.6;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-right: 1px solid var(--hairline);
  transition: color 220ms;
}
.trust-badge:last-child { border-right: 0; }
.trust-badge:hover { color: var(--primary-bright); }
.trust-badge .tb-icon {
  font-size: 16px;
  display: inline-block;
  transition: transform 320ms cubic-bezier(.2,.8,.2,1);
  filter: drop-shadow(0 0 6px rgba(59,130,246,0.25));
}
.trust-badge:hover .tb-icon { transform: scale(1.25) rotate(-5deg); }

/* ═══════════════════════════════════════════════════════════
   OFFER STRIP
   ═══════════════════════════════════════════════════════════ */
.offers-strip {
  background: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(6,182,212,0.06) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 0 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.offers-strip::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.18), transparent 70%);
  pointer-events: none;
}
.offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-cta);
  color: #fff;
  border-radius: 999px;
  padding: 6px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: offer-pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes offer-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.55); }
  50%      { box-shadow: 0 0 0 10px rgba(59,130,246,0); }
}
.offer-label {
  font-size: 13px; color: var(--text-soft);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.coupon-code {
  font-family: 'JetBrains Mono', monospace;
  background: var(--surface);
  border: 2px dashed var(--accent-cyan-bright);
  color: var(--accent-cyan-bright);
  border-radius: 8px;
  padding: 4px 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.10em;
  cursor: pointer;
  transition: all 220ms;
  position: relative;
}
.coupon-code:hover {
  background: var(--grad-cta);
  color: #fff;
  border-style: solid;
  border-color: transparent;
  box-shadow: 0 6px 18px -6px rgba(59,130,246,0.55);
}
.coupon-code::after {
  content: '⧉ Copy';
  position: absolute;
  top: -28px; left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 200ms;
  pointer-events: none;
  white-space: nowrap;
  font-weight: 600;
}
.coupon-code:hover::after { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   STAR RATINGS
   ═══════════════════════════════════════════════════════════ */
.star-rating { display: inline-flex; gap: 2px; align-items: center; }
.star-rating .star { color: #FBBF24; font-size: 14px; filter: drop-shadow(0 0 4px rgba(251,191,36,0.4)); }
.star-rating .rating-count {
  font-size: 12px;
  color: var(--muted);
  margin-left: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT CARD BADGE
   ═══════════════════════════════════════════════════════════ */
.product-card .product-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--grad-cta);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 4px 12px -4px rgba(59,130,246,0.55);
}
.product-img { position: relative; }

/* ═══════════════════════════════════════════════════════════
   MICRO-ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes float-up-down {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.float-animate { animation: float-up-down 4s ease-in-out infinite; }

/* ═══════════════════════════════════════════════════════════
   MOBILE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .trust-badge { padding: 6px 16px; font-size: 10px; }
  .trust-badge .tb-icon { font-size: 14px; }
  .offers-strip { padding: 14px 16px; gap: 12px; }
  .ticker-item { padding: 0 18px; font-size: 12px; }
}
@media (max-width: 480px) {
  .announcement-bar { font-size: 11px; height: 34px; }
  .trust-bar-inner { gap: 0; }
  .trust-badge:nth-child(n+4) { display: none; }
}
