/*
Theme Name: ShowTellClick
Theme URI: https://showtellclick.com
Description: Curated tech, gadgets & subscriptions — Show it. Tell it. Click it. Dark-mode affiliate product showcase theme built on Astra.
Author: ShowTellClick
Author URI: https://showtellclick.com
Template: astra
Version: 2.0.0
Text Domain: showtellclick
*/

/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */

:root {
  /* Brand Colors — Dark Mode */
  --stc-bg: #0f0f14;
  --stc-bg-alt: #16161e;
  --stc-surface: #1a1a24;
  --stc-surface-hover: #22222e;
  --stc-surface-raised: #242430;

  /* Accents */
  --stc-primary: #06d6a0;
  --stc-primary-dark: #05b888;
  --stc-primary-light: #33e0b5;
  --stc-primary-bg: rgba(6, 214, 160, 0.08);
  --stc-primary-glow: rgba(6, 214, 160, 0.25);

  --stc-accent: #e040fb;
  --stc-accent-dark: #c030e0;
  --stc-accent-bg: rgba(224, 64, 251, 0.08);

  --stc-highlight: #ffd166;
  --stc-highlight-bg: rgba(255, 209, 102, 0.08);

  --stc-success: #06d6a0;
  --stc-warning: #ffd166;
  --stc-danger: #ef476f;
  --stc-info: #118ab2;

  /* Text */
  --stc-text: #e8e6f0;
  --stc-text-secondary: #9d9baf;
  --stc-text-muted: #6b6980;
  --stc-text-bright: #ffffff;

  /* Borders */
  --stc-border: #2a2a38;
  --stc-border-light: #35354a;
  --stc-border-hover: #3f3f55;

  /* Typography */
  --stc-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --stc-font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --stc-font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

  --stc-text-xs: 0.75rem;
  --stc-text-sm: 0.875rem;
  --stc-text-base: 1rem;
  --stc-text-lg: 1.125rem;
  --stc-text-xl: 1.25rem;
  --stc-text-2xl: 1.5rem;
  --stc-text-3xl: 1.875rem;
  --stc-text-4xl: 2.25rem;
  --stc-text-5xl: 3rem;

  --stc-leading-tight: 1.2;
  --stc-leading-normal: 1.6;
  --stc-leading-relaxed: 1.75;

  /* Spacing */
  --stc-space-1: 0.25rem;
  --stc-space-2: 0.5rem;
  --stc-space-3: 0.75rem;
  --stc-space-4: 1rem;
  --stc-space-5: 1.25rem;
  --stc-space-6: 1.5rem;
  --stc-space-8: 2rem;
  --stc-space-10: 2.5rem;
  --stc-space-12: 3rem;
  --stc-space-16: 4rem;
  --stc-space-20: 5rem;
  --stc-space-24: 6rem;

  /* Layout */
  --stc-max-width: 780px;
  --stc-max-width-wide: 1200px;

  /* Borders & Shadows */
  --stc-radius-sm: 6px;
  --stc-radius: 10px;
  --stc-radius-lg: 16px;
  --stc-radius-xl: 24px;
  --stc-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --stc-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  --stc-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --stc-shadow-glow: 0 0 20px var(--stc-primary-glow);
  --stc-shadow-accent: 0 0 20px rgba(224, 64, 251, 0.2);

  /* Transitions */
  --stc-transition: 200ms ease;
  --stc-transition-slow: 400ms ease;
}


/* ==========================================================================
   BASE STYLES
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--stc-font-body);
  font-size: var(--stc-text-base);
  line-height: var(--stc-leading-normal);
  color: var(--stc-text);
  background: var(--stc-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--stc-font-heading);
  font-weight: 700;
  line-height: var(--stc-leading-tight);
  color: var(--stc-text-bright);
  margin-top: var(--stc-space-10);
  margin-bottom: var(--stc-space-4);
}

h1 {
  font-size: var(--stc-text-4xl);
  margin-top: 0;
}

h2 {
  font-size: var(--stc-text-2xl);
}

h3 {
  font-size: var(--stc-text-xl);
}

h4 {
  font-size: var(--stc-text-lg);
}

p {
  margin-bottom: var(--stc-space-4);
  max-width: 70ch;
}

a {
  color: var(--stc-primary);
  text-decoration: none;
  transition: color var(--stc-transition);
}

a:hover {
  color: var(--stc-primary-light);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--stc-radius-sm);
}

code {
  font-family: var(--stc-font-mono);
  font-size: 0.9em;
  background: var(--stc-surface);
  color: var(--stc-primary);
  padding: 2px 8px;
  border-radius: 4px;
}

blockquote {
  border-left: 3px solid var(--stc-accent);
  padding: var(--stc-space-4) var(--stc-space-6);
  margin: var(--stc-space-6) 0;
  background: var(--stc-accent-bg);
  border-radius: 0 var(--stc-radius) var(--stc-radius) 0;
  color: var(--stc-text-secondary);
}

::selection {
  background: var(--stc-primary);
  color: var(--stc-bg);
}


/* ==========================================================================
   LAYOUT
   ========================================================================== */

.stc-container {
  max-width: var(--stc-max-width);
  margin: 0 auto;
  padding: 0 var(--stc-space-6);
}

.stc-container--wide {
  max-width: var(--stc-max-width-wide);
}

.stc-article-content {
  max-width: var(--stc-max-width);
  margin: 0 auto;
}


/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.stc-site-header {
  background: rgba(15, 15, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--stc-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.stc-header-inner {
  max-width: var(--stc-max-width-wide);
  margin: 0 auto;
  padding: var(--stc-space-4) var(--stc-space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stc-logo {
  font-size: var(--stc-text-xl);
  font-weight: 800;
  color: var(--stc-text-bright);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.stc-logo span {
  background: linear-gradient(135deg, var(--stc-primary), var(--stc-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stc-nav {
  display: flex;
  gap: var(--stc-space-1);
}

.stc-nav a {
  display: inline-flex;
  align-items: center;
  padding: var(--stc-space-2) var(--stc-space-4);
  font-size: var(--stc-text-sm);
  font-weight: 500;
  color: var(--stc-text-secondary);
  border-radius: var(--stc-radius-sm);
  transition: all var(--stc-transition);
}

.stc-nav a:hover,
.stc-nav a.active {
  color: var(--stc-primary);
  background: var(--stc-primary-bg);
  text-decoration: none;
}


/* ==========================================================================
   DEAL / ANNOUNCEMENT BAR
   ========================================================================== */

.stc-deal-bar {
  background: linear-gradient(135deg, #1a0a2e, #0d1f3c, #0a2e1a);
  border-bottom: 1px solid var(--stc-border);
  color: var(--stc-text);
  padding: var(--stc-space-3) var(--stc-space-6);
  text-align: center;
  font-size: var(--stc-text-sm);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.stc-deal-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(6, 214, 160, 0.05), transparent);
  animation: stc-shimmer 4s ease-in-out infinite;
}

@keyframes stc-shimmer {

  0%,
  100% {
    transform: translateX(-25%);
  }

  50% {
    transform: translateX(25%);
  }
}

.stc-deal-bar a {
  color: var(--stc-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.stc-deal-bar a:hover {
  color: var(--stc-primary-light);
}

.stc-deal-bar__emoji {
  margin-right: var(--stc-space-2);
}


/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */

.stc-breadcrumbs {
  padding: var(--stc-space-4) 0;
  font-size: var(--stc-text-sm);
  color: var(--stc-text-muted);
}

.stc-breadcrumbs a {
  color: var(--stc-text-secondary);
}

.stc-breadcrumbs a:hover {
  color: var(--stc-primary);
}

.stc-breadcrumbs span.separator {
  margin: 0 var(--stc-space-2);
  color: var(--stc-text-muted);
}


/* ==========================================================================
   HERO SECTION (Homepage)
   ========================================================================== */

.stc-hero {
  position: relative;
  padding: var(--stc-space-24) var(--stc-space-6);
  text-align: center;
  overflow: hidden;
}

.stc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(6, 214, 160, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(224, 64, 251, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(17, 138, 178, 0.08) 0%, transparent 50%);
  z-index: 0;
}

.stc-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.stc-hero__tagline {
  font-size: var(--stc-text-5xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--stc-space-4);
  line-height: 1.1;
}

.stc-hero__tagline .stc-gradient-text {
  background: linear-gradient(135deg, var(--stc-primary), var(--stc-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stc-hero__subtitle {
  font-size: var(--stc-text-lg);
  color: var(--stc-text-secondary);
  max-width: 500px;
  margin: 0 auto var(--stc-space-8);
  line-height: var(--stc-leading-relaxed);
}

.stc-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--stc-space-2);
  padding: var(--stc-space-4) var(--stc-space-8);
  background: linear-gradient(135deg, var(--stc-primary), var(--stc-primary-dark));
  color: var(--stc-bg) !important;
  font-weight: 700;
  font-size: var(--stc-text-base);
  border-radius: var(--stc-radius-xl);
  text-decoration: none !important;
  transition: all var(--stc-transition);
  box-shadow: var(--stc-shadow-glow);
}

.stc-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--stc-primary-glow);
}


/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */

.stc-section {
  padding: var(--stc-space-16) var(--stc-space-6);
}

.stc-section__header {
  max-width: var(--stc-max-width-wide);
  margin: 0 auto var(--stc-space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stc-section__title {
  font-size: var(--stc-text-2xl);
  font-weight: 700;
  margin: 0;
  color: var(--stc-text-bright);
}

.stc-section__link {
  font-size: var(--stc-text-sm);
  font-weight: 600;
  color: var(--stc-primary);
}


/* ==========================================================================
   PRODUCT CARD
   ========================================================================== */

.stc-product-card {
  background: var(--stc-surface);
  border: 1px solid var(--stc-border);
  border-radius: var(--stc-radius-lg);
  overflow: hidden;
  transition: all var(--stc-transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.stc-product-card:hover {
  border-color: var(--stc-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--stc-shadow-lg);
}

.stc-product-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stc-bg-alt);
}

.stc-product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform var(--stc-transition-slow);
}

.stc-product-card:hover .stc-product-card__image-wrap img {
  transform: scale(1.04);
}

.stc-price-badge {
  position: absolute;
  top: var(--stc-space-3);
  right: var(--stc-space-3);
  background: rgba(15, 15, 20, 0.85);
  backdrop-filter: blur(8px);
  color: var(--stc-primary);
  font-weight: 700;
  font-size: var(--stc-text-sm);
  padding: var(--stc-space-1) var(--stc-space-3);
  border-radius: var(--stc-radius-sm);
  border: 1px solid var(--stc-border);
}

.stc-product-card__body {
  padding: var(--stc-space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.stc-product-card__category {
  font-size: var(--stc-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stc-accent);
  margin-bottom: var(--stc-space-2);
}

.stc-product-card__title {
  font-size: var(--stc-text-base);
  font-weight: 700;
  color: var(--stc-text-bright);
  margin: 0 0 var(--stc-space-2);
  line-height: var(--stc-leading-tight);
}

.stc-product-card__title a {
  color: inherit;
  text-decoration: none;
}

.stc-product-card__title a:hover {
  color: var(--stc-primary);
}

.stc-product-card__excerpt {
  font-size: var(--stc-text-sm);
  color: var(--stc-text-secondary);
  margin-bottom: var(--stc-space-4);
  line-height: var(--stc-leading-normal);
  flex: 1;
}

.stc-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--stc-space-3);
  border-top: 1px solid var(--stc-border);
}

.stc-product-card__rating {
  display: flex;
  gap: 2px;
  color: var(--stc-highlight);
  font-size: var(--stc-text-sm);
}

.stc-product-card__cta {
  font-size: var(--stc-text-sm);
  font-weight: 600;
  color: var(--stc-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--stc-space-1);
}

.stc-product-card__cta:hover {
  color: var(--stc-primary-light);
}


/* ==========================================================================
   PRODUCT GRID
   ========================================================================== */

.stc-product-grid {
  max-width: var(--stc-max-width-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--stc-space-6);
  list-style: none;
  padding: 0;
}


/* ==========================================================================
   TRENDING BAR (Horizontal Scroll)
   ========================================================================== */

.stc-trending-bar {
  max-width: var(--stc-max-width-wide);
  margin: 0 auto;
  display: flex;
  gap: var(--stc-space-4);
  overflow-x: auto;
  padding-bottom: var(--stc-space-4);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.stc-trending-bar::-webkit-scrollbar {
  display: none;
}

.stc-trending-bar .stc-product-card {
  min-width: 280px;
  max-width: 320px;
  scroll-snap-align: start;
  flex-shrink: 0;
}


/* ==========================================================================
   VIDEO EMBED
   ========================================================================== */

.stc-video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--stc-radius-lg);
  overflow: hidden;
  background: var(--stc-surface);
  border: 1px solid var(--stc-border);
  margin: var(--stc-space-6) 0;
  box-shadow: var(--stc-shadow);
}

.stc-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.stc-video-embed__caption {
  font-size: var(--stc-text-sm);
  color: var(--stc-text-muted);
  text-align: center;
  margin-top: var(--stc-space-2);
}

/* Video gallery (multiple videos) */
.stc-video-gallery {
  max-width: var(--stc-max-width-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--stc-space-6);
}

.stc-video-gallery .stc-video-card {
  background: var(--stc-surface);
  border: 1px solid var(--stc-border);
  border-radius: var(--stc-radius-lg);
  overflow: hidden;
  transition: all var(--stc-transition);
}

.stc-video-gallery .stc-video-card:hover {
  border-color: var(--stc-border-hover);
  box-shadow: var(--stc-shadow);
}

.stc-video-gallery .stc-video-card .stc-video-embed {
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.stc-video-gallery .stc-video-card__info {
  padding: var(--stc-space-4) var(--stc-space-5);
}

.stc-video-gallery .stc-video-card__title {
  font-size: var(--stc-text-base);
  font-weight: 600;
  color: var(--stc-text-bright);
  margin: 0 0 var(--stc-space-2);
}

.stc-video-gallery .stc-video-card__title a {
  color: inherit;
}

.stc-video-gallery .stc-video-card__title a:hover {
  color: var(--stc-primary);
}


/* ==========================================================================
   CATEGORY PILLS
   ========================================================================== */

.stc-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--stc-space-2);
  margin-bottom: var(--stc-space-6);
}

.stc-category-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--stc-space-2);
  padding: var(--stc-space-2) var(--stc-space-4);
  background: var(--stc-surface);
  border: 1px solid var(--stc-border);
  border-radius: var(--stc-radius-xl);
  font-size: var(--stc-text-sm);
  font-weight: 500;
  color: var(--stc-text-secondary);
  transition: all var(--stc-transition);
  cursor: pointer;
  text-decoration: none;
}

.stc-category-pill:hover,
.stc-category-pill.active {
  color: var(--stc-primary);
  border-color: var(--stc-primary);
  background: var(--stc-primary-bg);
  text-decoration: none;
}


/* ==========================================================================
   CATEGORY SHOWCASE (Homepage grid)
   ========================================================================== */

.stc-category-grid {
  max-width: var(--stc-max-width-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--stc-space-4);
}

.stc-category-card {
  background: var(--stc-surface);
  border: 1px solid var(--stc-border);
  border-radius: var(--stc-radius-lg);
  padding: var(--stc-space-8) var(--stc-space-6);
  text-align: center;
  text-decoration: none;
  transition: all var(--stc-transition);
  position: relative;
  overflow: hidden;
}

.stc-category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--stc-primary-bg), var(--stc-accent-bg));
  opacity: 0;
  transition: opacity var(--stc-transition);
}

.stc-category-card:hover {
  border-color: var(--stc-border-hover);
  transform: translateY(-2px);
  text-decoration: none;
}

.stc-category-card:hover::before {
  opacity: 1;
}

.stc-category-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--stc-space-3);
  position: relative;
  z-index: 1;
}

.stc-category-card__name {
  font-size: var(--stc-text-base);
  font-weight: 700;
  color: var(--stc-text-bright);
  margin: 0 0 var(--stc-space-1);
  position: relative;
  z-index: 1;
}

.stc-category-card__count {
  font-size: var(--stc-text-sm);
  color: var(--stc-text-muted);
  position: relative;
  z-index: 1;
}


/* ==========================================================================
   SINGLE PRODUCT PAGE
   ========================================================================== */

.stc-product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--stc-space-8);
  margin-bottom: var(--stc-space-8);
  align-items: start;
}

.stc-product-hero__image {
  aspect-ratio: 4 / 3;
  border-radius: var(--stc-radius-lg);
  overflow: hidden;
  background: var(--stc-surface);
  border: 1px solid var(--stc-border);
}

.stc-product-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.stc-product-hero__info {
  display: flex;
  flex-direction: column;
  gap: var(--stc-space-4);
}

.stc-product-hero__brand {
  font-size: var(--stc-text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stc-accent);
}

.stc-product-hero__title {
  font-size: var(--stc-text-3xl);
  font-weight: 800;
  margin: 0;
  color: var(--stc-text-bright);
  line-height: var(--stc-leading-tight);
}

.stc-product-hero__price {
  font-size: var(--stc-text-2xl);
  font-weight: 700;
  color: var(--stc-primary);
}

.stc-product-hero__rating {
  display: flex;
  align-items: center;
  gap: var(--stc-space-2);
  font-size: var(--stc-text-lg);
  color: var(--stc-highlight);
}

.stc-product-hero__rating-num {
  font-weight: 700;
  color: var(--stc-text-bright);
  font-size: var(--stc-text-base);
}

.stc-product-hero__status {
  display: inline-flex;
  align-items: center;
  gap: var(--stc-space-2);
  font-size: var(--stc-text-sm);
  font-weight: 600;
  padding: var(--stc-space-2) var(--stc-space-4);
  border-radius: var(--stc-radius-sm);
  width: fit-content;
}

.stc-product-hero__status--available {
  background: rgba(6, 214, 160, 0.1);
  color: var(--stc-success);
  border: 1px solid rgba(6, 214, 160, 0.2);
}

.stc-product-hero__status--limited {
  background: rgba(255, 209, 102, 0.1);
  color: var(--stc-warning);
  border: 1px solid rgba(255, 209, 102, 0.2);
}

.stc-product-hero__status--unavailable {
  background: rgba(239, 71, 111, 0.1);
  color: var(--stc-danger);
  border: 1px solid rgba(239, 71, 111, 0.2);
}

/* Affiliate CTA button (product page) */
.stc-product-cta-box {
  margin-top: var(--stc-space-4);
}

.stc-product-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--stc-space-2);
  padding: var(--stc-space-4) var(--stc-space-8);
  background: linear-gradient(135deg, var(--stc-primary), var(--stc-primary-dark));
  color: var(--stc-bg) !important;
  font-weight: 700;
  font-size: var(--stc-text-base);
  border-radius: var(--stc-radius);
  text-decoration: none !important;
  transition: all var(--stc-transition);
  box-shadow: var(--stc-shadow-glow);
  border: none;
  cursor: pointer;
}

.stc-product-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--stc-primary-glow);
}

.stc-product-cta-disclosure {
  display: block;
  font-size: var(--stc-text-xs);
  color: var(--stc-text-muted);
  margin-top: var(--stc-space-2);
}


/* ==========================================================================
   PRODUCT SPECS TABLE
   ========================================================================== */

.stc-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--stc-space-6) 0;
}

.stc-specs-table tr {
  border-bottom: 1px solid var(--stc-border);
}

.stc-specs-table tr:last-child {
  border-bottom: none;
}

.stc-specs-table th {
  text-align: left;
  padding: var(--stc-space-3) var(--stc-space-4);
  font-size: var(--stc-text-sm);
  font-weight: 600;
  color: var(--stc-text-secondary);
  width: 40%;
}

.stc-specs-table td {
  padding: var(--stc-space-3) var(--stc-space-4);
  font-size: var(--stc-text-sm);
  color: var(--stc-text);
}


/* ==========================================================================
   DEAL ALERT BOX
   ========================================================================== */

.stc-deal-alert {
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.08), rgba(224, 64, 251, 0.06));
  border: 1px solid rgba(255, 209, 102, 0.25);
  border-radius: var(--stc-radius-lg);
  padding: var(--stc-space-5) var(--stc-space-6);
  margin: var(--stc-space-6) 0;
  display: flex;
  align-items: center;
  gap: var(--stc-space-4);
}

.stc-deal-alert__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stc-deal-alert__content {
  flex: 1;
}

.stc-deal-alert__title {
  font-size: var(--stc-text-base);
  font-weight: 700;
  color: var(--stc-highlight);
  margin: 0 0 var(--stc-space-1);
}

.stc-deal-alert__text {
  font-size: var(--stc-text-sm);
  color: var(--stc-text-secondary);
  margin: 0;
}


/* ==========================================================================
   RECOMMENDATION / CTA BOX
   ========================================================================== */

.stc-recommendation-box {
  background: var(--stc-surface);
  border: 1px solid var(--stc-border);
  border-radius: var(--stc-radius-lg);
  padding: var(--stc-space-8);
  margin: var(--stc-space-8) 0;
  text-align: center;
}

.stc-recommendation-box__text {
  font-size: var(--stc-text-base);
  color: var(--stc-text-secondary);
  margin-bottom: var(--stc-space-5);
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}

.stc-recommendation-box__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--stc-space-2);
  padding: var(--stc-space-3) var(--stc-space-8);
  background: linear-gradient(135deg, var(--stc-primary), var(--stc-primary-dark));
  color: var(--stc-bg) !important;
  font-weight: 700;
  font-size: var(--stc-text-base);
  border-radius: var(--stc-radius);
  text-decoration: none !important;
  transition: all var(--stc-transition);
  box-shadow: var(--stc-shadow-glow);
}

.stc-recommendation-box__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--stc-primary-glow);
}

.stc-recommendation-box__disclosure {
  display: block;
  font-size: var(--stc-text-xs);
  color: var(--stc-text-muted);
  margin-top: var(--stc-space-3);
}


/* ==========================================================================
   EMAIL CAPTURE
   ========================================================================== */

.stc-email-capture {
  background: var(--stc-surface);
  border: 1px solid var(--stc-border);
  border-radius: var(--stc-radius-lg);
  padding: var(--stc-space-10);
  margin: var(--stc-space-12) auto;
  max-width: var(--stc-max-width-wide);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stc-email-capture::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, var(--stc-primary-bg) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, var(--stc-accent-bg) 0%, transparent 50%);
  z-index: 0;
}

.stc-email-capture__title {
  font-size: var(--stc-text-2xl);
  font-weight: 700;
  color: var(--stc-text-bright);
  margin: 0 0 var(--stc-space-2);
  padding: 0;
  border: none;
  position: relative;
  z-index: 1;
}

.stc-email-capture__desc {
  font-size: var(--stc-text-sm);
  color: var(--stc-text-secondary);
  margin-bottom: var(--stc-space-5);
  position: relative;
  z-index: 1;
}

.stc-email-capture__form {
  display: flex;
  gap: var(--stc-space-2);
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stc-email-capture__input {
  flex: 1;
  padding: var(--stc-space-3) var(--stc-space-4);
  background: var(--stc-bg);
  border: 1px solid var(--stc-border);
  border-radius: var(--stc-radius-sm);
  font-size: var(--stc-text-sm);
  font-family: var(--stc-font-body);
  color: var(--stc-text);
}

.stc-email-capture__input::placeholder {
  color: var(--stc-text-muted);
}

.stc-email-capture__input:focus {
  outline: none;
  border-color: var(--stc-primary);
  box-shadow: 0 0 0 3px var(--stc-primary-bg);
}

.stc-email-capture__submit {
  padding: var(--stc-space-3) var(--stc-space-6);
  background: linear-gradient(135deg, var(--stc-primary), var(--stc-primary-dark));
  color: var(--stc-bg);
  font-weight: 700;
  font-size: var(--stc-text-sm);
  border: none;
  border-radius: var(--stc-radius-sm);
  cursor: pointer;
  transition: all var(--stc-transition);
  font-family: var(--stc-font-body);
}

.stc-email-capture__submit:hover {
  transform: translateY(-1px);
  box-shadow: var(--stc-shadow-glow);
}


/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.stc-faq-item {
  padding: var(--stc-space-5) 0;
  border-bottom: 1px solid var(--stc-border);
}

.stc-faq-item:last-child {
  border-bottom: none;
}

.stc-faq-item__question {
  font-size: var(--stc-text-base);
  font-weight: 700;
  color: var(--stc-text-bright);
  margin-bottom: var(--stc-space-2);
  margin-top: 0;
  border: none;
  padding: 0;
}

.stc-faq-item__answer {
  font-size: var(--stc-text-base);
  color: var(--stc-text-secondary);
  line-height: var(--stc-leading-relaxed);
  margin: 0;
}


/* ==========================================================================
   ARTICLE META
   ========================================================================== */

.stc-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--stc-space-4);
  align-items: center;
  margin-bottom: var(--stc-space-8);
  padding-bottom: var(--stc-space-4);
  border-bottom: 1px solid var(--stc-border);
  font-size: var(--stc-text-sm);
  color: var(--stc-text-secondary);
}

.stc-article-meta__date {
  display: flex;
  align-items: center;
  gap: var(--stc-space-2);
}

.stc-article-meta__author {
  display: flex;
  align-items: center;
  gap: var(--stc-space-2);
}

.stc-article-meta__author img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}


/* ==========================================================================
   AUTHOR BYLINE
   ========================================================================== */

.stc-author-byline {
  display: flex;
  align-items: flex-start;
  gap: var(--stc-space-4);
  padding: var(--stc-space-6);
  background: var(--stc-surface);
  border-radius: var(--stc-radius-lg);
  border: 1px solid var(--stc-border);
  margin: var(--stc-space-10) 0;
}

.stc-author-byline__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.stc-author-byline__name {
  font-weight: 700;
  font-size: var(--stc-text-base);
  color: var(--stc-text-bright);
}

.stc-author-byline__title {
  font-size: var(--stc-text-sm);
  color: var(--stc-primary);
  display: block;
  margin-bottom: var(--stc-space-2);
}

.stc-author-byline__bio {
  font-size: var(--stc-text-sm);
  color: var(--stc-text-secondary);
  line-height: var(--stc-leading-normal);
  margin: 0;
}


/* ==========================================================================
   RELATED PRODUCTS (bottom of single pages)
   ========================================================================== */

.stc-related-products {
  margin-top: var(--stc-space-12);
  padding-top: var(--stc-space-8);
  border-top: 1px solid var(--stc-border);
}

.stc-related-products__title {
  font-size: var(--stc-text-xl);
  font-weight: 700;
  margin-bottom: var(--stc-space-6);
  color: var(--stc-text-bright);
}


/* ==========================================================================
   DATA TABLES (generic)
   ========================================================================== */

.stc-table-wrapper {
  overflow-x: auto;
  margin: var(--stc-space-6) 0;
  border-radius: var(--stc-radius);
  border: 1px solid var(--stc-border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--stc-text-sm);
}

thead {
  background: var(--stc-surface);
  border-bottom: 1px solid var(--stc-border);
}

th {
  padding: var(--stc-space-3) var(--stc-space-4);
  text-align: left;
  font-weight: 600;
  color: var(--stc-text-bright);
  white-space: nowrap;
}

td {
  padding: var(--stc-space-3) var(--stc-space-4);
  border-bottom: 1px solid var(--stc-border);
  color: var(--stc-text-secondary);
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover {
  background: var(--stc-surface-hover);
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.stc-footer {
  background: var(--stc-bg-alt);
  border-top: 1px solid var(--stc-border);
  color: var(--stc-text-secondary);
  padding: var(--stc-space-16) var(--stc-space-6);
  margin-top: var(--stc-space-20);
}

.stc-footer-inner {
  max-width: var(--stc-max-width-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--stc-space-8);
}

.stc-footer__brand {
  font-size: var(--stc-text-xl);
  font-weight: 800;
  color: var(--stc-text-bright);
  margin-bottom: var(--stc-space-3);
}

.stc-footer__brand span {
  background: linear-gradient(135deg, var(--stc-primary), var(--stc-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stc-footer__desc {
  font-size: var(--stc-text-sm);
  line-height: var(--stc-leading-normal);
  max-width: 35ch;
}

.stc-footer__heading {
  font-size: var(--stc-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stc-text-muted);
  margin-bottom: var(--stc-space-4);
  padding: 0;
  border: none;
}

.stc-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stc-footer__links li {
  padding: var(--stc-space-1) 0;
}

.stc-footer__links a {
  color: var(--stc-text-secondary);
  font-size: var(--stc-text-sm);
  transition: color var(--stc-transition);
}

.stc-footer__links a:hover {
  color: var(--stc-primary);
}

.stc-footer__bottom {
  max-width: var(--stc-max-width-wide);
  margin: var(--stc-space-8) auto 0;
  padding-top: var(--stc-space-6);
  border-top: 1px solid var(--stc-border);
  font-size: var(--stc-text-xs);
  color: var(--stc-text-muted);
  display: flex;
  justify-content: space-between;
}

.stc-footer__bottom a {
  color: var(--stc-text-secondary);
}

.stc-footer__bottom a:hover {
  color: var(--stc-primary);
}


/* ==========================================================================
   PAGINATION
   ========================================================================== */

.stc-pagination {
  display: flex;
  justify-content: center;
  gap: var(--stc-space-2);
  margin-top: var(--stc-space-10);
}

.stc-pagination a,
.stc-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--stc-space-3);
  background: var(--stc-surface);
  border: 1px solid var(--stc-border);
  border-radius: var(--stc-radius-sm);
  font-size: var(--stc-text-sm);
  font-weight: 500;
  color: var(--stc-text-secondary);
  transition: all var(--stc-transition);
  text-decoration: none;
}

.stc-pagination a:hover {
  border-color: var(--stc-primary);
  color: var(--stc-primary);
}

.stc-pagination span.current {
  background: var(--stc-primary);
  color: var(--stc-bg);
  border-color: var(--stc-primary);
  font-weight: 700;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
  h1 {
    font-size: var(--stc-text-2xl);
  }

  h2 {
    font-size: var(--stc-text-xl);
  }

  .stc-hero {
    padding: var(--stc-space-16) var(--stc-space-6);
  }

  .stc-hero__tagline {
    font-size: var(--stc-text-3xl);
  }

  .stc-header-inner {
    flex-direction: column;
    gap: var(--stc-space-3);
  }

  .stc-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stc-product-hero {
    grid-template-columns: 1fr;
  }

  .stc-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .stc-video-gallery {
    grid-template-columns: 1fr;
  }

  .stc-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .stc-footer-inner {
    grid-template-columns: 1fr;
    gap: var(--stc-space-6);
  }

  .stc-email-capture__form {
    flex-direction: column;
  }

  .stc-author-byline {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stc-section__header {
    flex-direction: column;
    gap: var(--stc-space-2);
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --stc-space-6: 1rem;
    --stc-space-8: 1.5rem;
  }

  .stc-hero__tagline {
    font-size: var(--stc-text-2xl);
  }

  .stc-product-grid {
    grid-template-columns: 1fr;
  }

  .stc-trending-bar .stc-product-card {
    min-width: 240px;
  }

  .stc-deal-alert {
    flex-direction: column;
    text-align: center;
  }
}