/* Mobile-Beamer.de – Hauptstylesheet
   Palette: Tief-Navy #0B1628, Leuchtendes Cyan #00C2FF, Warmweiß #F8FAFC,
            Dunkel-Grau #1E293B, Hellgrau #94A3B8, Akzent-Orange #FF6B35
   Typografie: Space Grotesk (Headlines) + Inter (Body)
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1E293B;
  background: #F8FAFC;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #0072CE; text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --navy:    #0B1628;
  --cyan:    #00C2FF;
  --orange:  #FF6B35;
  --white:   #F8FAFC;
  --slate:   #1E293B;
  --muted:   #64748B;
  --light:   #E2E8F0;
  --radius:  10px;
  --shadow:  0 4px 24px rgba(11,22,40,.10);
  --shadow-lg: 0 8px 40px rgba(11,22,40,.16);
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 60px 0; }
.section-sm { padding: 40px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: all .18s ease;
  border: none; text-decoration: none !important;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, #0072CE 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,194,255,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,194,255,.45); }
.btn-orange {
  background: linear-gradient(135deg, var(--orange) 0%, #e55b27 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,107,53,.35);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,.45); }
.btn-ghost { background: transparent; border: 2px solid rgba(255,255,255,.4); color: #fff; }
.hero .btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-sm { padding: 8px 16px; font-size: .85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ===== HEADER ===== */
.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.header-inner {
  display: flex; align-items: center; gap: 24px;
  height: 64px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none !important;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.6rem; }
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem; color: #fff; font-weight: 500;
  letter-spacing: -.02em;
}
.logo-text strong { color: var(--cyan); font-weight: 800; }
.main-nav {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.main-nav a {
  color: rgba(255,255,255,.8);
  padding: 6px 14px; border-radius: 6px;
  font-size: .9rem; font-weight: 500;
  transition: all .15s;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,.1); text-decoration: none; }
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; flex-direction: column; gap: 5px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: #fff;
  display: block; transition: all .25s;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-wrap { background: #EFF6FF; border-bottom: 1px solid var(--light); }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 0; font-size: .82rem; color: var(--muted);
  flex-wrap: wrap;
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after { content: '›'; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--cyan); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #162444 50%, #0a1a38 100%);
  padding: 80px 0 70px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,194,255,.12) 0%, transparent 65%);
}
.hero-inner { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,194,255,.15); border: 1px solid rgba(0,194,255,.3);
  color: var(--cyan); border-radius: 99px;
  padding: 6px 16px; font-size: .8rem; font-weight: 600;
  margin-bottom: 20px; letter-spacing: .05em; text-transform: uppercase;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 span { color: var(--cyan); }
.hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 32px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat { color: rgba(255,255,255,.9); }
.hero-stat strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--cyan); }
.hero-stat span { font-size: .82rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .05em; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 40px; }
.section-header .eyebrow {
  display: inline-block;
  color: var(--cyan); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px;
}
.section-header p { color: var(--muted); max-width: 560px; margin: 12px auto 0; }

/* ===== PROJECTOR GRID ===== */
.projectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* ===== PROJECTOR CARD ===== */
.projector-card {
  background: #fff; border-radius: 16px;
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
  position: relative;
}
.projector-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px; z-index: 2;
}
.badge {
  display: inline-block;
  padding: 4px 10px; border-radius: 99px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.badge-bestseller { background: var(--orange); color: #fff; }
.badge-new { background: #10B981; color: #fff; }
.badge-featured { background: var(--cyan); color: var(--navy); }

.card-image {
  background: #F1F5F9; padding: 24px;
  height: 200px; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.card-image img { max-height: 160px; object-fit: contain; transition: transform .3s; }
.projector-card:hover .card-image img { transform: scale(1.05); }
.card-image-placeholder {
  font-size: 4rem; opacity: .3;
}
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-brand { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.card-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card-name a { color: inherit; }
.card-name a:hover { color: var(--cyan); text-decoration: none; }
.card-rating {
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.stars { display: flex; gap: 2px; }
.star { font-size: 1rem; }
.star.full, .star.half { color: #F59E0B; }
.star.empty { color: #D1D5DB; }
.rating-score { font-weight: 700; font-size: .9rem; color: var(--navy); }
.rating-count { font-size: .78rem; color: var(--muted); }
.card-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px 12px; margin-bottom: 16px;
}
.spec-item { font-size: .8rem; }
.spec-label { color: var(--muted); }
.spec-value { font-weight: 600; color: var(--slate); }
.card-description { font-size: .87rem; color: var(--muted); margin-bottom: 16px; flex: 1; }
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--light); margin-top: auto;
}
.card-price { font-family: 'Space Grotesk', sans-serif; }
.card-price .price { font-size: 1.35rem; font-weight: 800; color: var(--navy); }
.card-price .price-note { font-size: .72rem; color: var(--muted); display: block; margin-top: 2px; }
.btn-amazon {
  background: #FF9900; color: #111 !important;
  font-weight: 700; font-size: .82rem;
  padding: 10px 18px; border-radius: 8px;
  display: flex; align-items: center; gap: 6px;
  transition: all .15s;
}
.btn-amazon:hover { background: #e88800; transform: scale(1.02); text-decoration: none !important; }
.btn-amazon .amazon-logo { font-size: .7rem; font-weight: 400; display: block; margin-top: 1px; }

/* ===== FILTER BAR ===== */
.filter-bar {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 20px 24px; margin-bottom: 32px;
}
.filter-bar form { display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-end; }
.filter-group { display: flex; flex-direction: column; gap: 6px; min-width: 140px; }
.filter-group label { font-size: .8rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.filter-group select,
.filter-group input[type="number"] {
  padding: 10px 14px; border: 1.5px solid var(--light);
  border-radius: 8px; font-size: .9rem; color: var(--slate);
  background: var(--white); transition: border-color .15s;
  font-family: inherit;
}
.filter-group select:focus,
.filter-group input:focus {
  outline: none; border-color: var(--cyan);
}
.filter-checkbox { flex-direction: row; align-items: center; gap: 8px; }
.filter-checkbox input { width: 18px; height: 18px; accent-color: var(--cyan); }
.filter-checkbox label { font-size: .9rem; font-weight: 500; text-transform: none; letter-spacing: 0; }

/* ===== COMPARISON TABLE ===== */
.comparison-table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%; border-collapse: collapse;
  font-size: .9rem;
}
.comparison-table th {
  background: var(--navy); color: #fff;
  padding: 14px 16px; text-align: left;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
}
.comparison-table th:first-child { border-radius: 10px 0 0 0; }
.comparison-table th:last-child  { border-radius: 0 10px 0 0; }
.comparison-table td { padding: 14px 16px; border-bottom: 1px solid var(--light); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: #F0FBFF; }
.comparison-table .rank {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800;
  font-size: .85rem;
}
.rank-1 { background: #F59E0B; color: #fff; }
.rank-2 { background: #94A3B8; color: #fff; }
.rank-3 { background: #CD7F32; color: #fff; }
.rank-other { background: var(--light); color: var(--muted); }

/* ===== PRODUCT DETAIL ===== */
.product-hero {
  background: #fff; border-radius: 16px;
  box-shadow: var(--shadow); overflow: hidden; margin-bottom: 40px;
}
.product-hero-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 0;
}
.product-image-col {
  background: #F8FAFC; padding: 48px;
  display: flex; align-items: center; justify-content: center;
}
.product-image-col img { max-height: 320px; object-fit: contain; }
.product-info-col { padding: 40px; }
.product-brand { color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.product-info-col h1 { font-size: 1.8rem; margin-bottom: 16px; }
.product-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.product-price-block { margin-bottom: 28px; }
.product-price { font-size: 2.2rem; font-weight: 800; color: var(--navy); font-family: 'Space Grotesk', sans-serif; }
.product-price-note { font-size: .8rem; color: var(--muted); margin-top: 4px; }
.product-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.btn-amazon-large {
  background: linear-gradient(135deg, #FF9900 0%, #e88800 100%);
  color: #111 !important; font-weight: 800;
  padding: 16px 32px; border-radius: 10px; font-size: 1rem;
  display: flex; flex-direction: column; align-items: center;
  transition: all .18s;
}
.btn-amazon-large:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,153,0,.4); text-decoration: none !important; }
.btn-amazon-large .sub { font-size: .72rem; font-weight: 400; opacity: .7; }
.key-features { display: flex; flex-wrap: wrap; gap: 8px; }
.kf-tag {
  background: #EFF6FF; color: #1D4ED8;
  padding: 6px 14px; border-radius: 99px;
  font-size: .8rem; font-weight: 600;
}

/* ===== SPECS GRID ===== */
.specs-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.spec-card {
  background: #fff; border-radius: 12px;
  border: 1.5px solid var(--light); padding: 18px;
  text-align: center;
}
.spec-card .spec-icon { font-size: 1.8rem; margin-bottom: 8px; }
.spec-card .spec-val  { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.spec-card .spec-lbl  { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

/* ===== PROS / CONS ===== */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pros-box, .cons-box {
  background: #fff; border-radius: 12px; padding: 24px;
  box-shadow: var(--shadow);
}
.pros-box { border-top: 4px solid #10B981; }
.cons-box { border-top: 4px solid #EF4444; }
.pros-box h4 { color: #10B981; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.cons-box h4 { color: #EF4444; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.pros-list li, .cons-list li {
  padding: 8px 0; border-bottom: 1px solid var(--light);
  font-size: .92rem; display: flex; align-items: flex-start; gap: 10px;
}
.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }
.pros-list li::before { content: '✓'; color: #10B981; font-weight: 700; flex-shrink: 0; }
.cons-list li::before { content: '✗'; color: #EF4444; font-weight: 700; flex-shrink: 0; }

/* ===== VERDICT BOX ===== */
.verdict-box {
  background: linear-gradient(135deg, var(--navy) 0%, #162444 100%);
  border-radius: 16px; padding: 32px; color: #fff;
  position: relative; overflow: hidden;
}
.verdict-box::before {
  content: ''; position: absolute;
  top: -30px; right: -30px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,194,255,.2) 0%, transparent 70%);
  border-radius: 50%;
}
.verdict-box .verdict-label {
  color: var(--cyan); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px;
}
.verdict-box p { color: rgba(255,255,255,.85); position: relative; z-index: 1; }
.verdict-rating-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem; font-weight: 800; color: var(--cyan);
  line-height: 1;
}

/* ===== CATEGORY CARDS ===== */
.categories-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.category-card {
  background: #fff; border-radius: 14px;
  box-shadow: var(--shadow); padding: 28px 20px;
  text-align: center; transition: all .2s;
  text-decoration: none !important;
  border: 2px solid transparent;
}
.category-card:hover { transform: translateY(-3px); border-color: var(--cyan); box-shadow: var(--shadow-lg); }
.category-card .cat-icon { font-size: 2.2rem; margin-bottom: 12px; }
.category-card .cat-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--navy); font-size: 1rem; }
.category-card .cat-count { font-size: .78rem; color: var(--muted); margin-top: 4px; }

/* ===== USP STRIP ===== */
.usp-strip { background: var(--navy); padding: 28px 0; }
.usp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.usp-item { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.85); }
.usp-icon { font-size: 1.8rem; flex-shrink: 0; }
.usp-text strong { display: block; color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: .95rem; }
.usp-text span { font-size: .8rem; color: rgba(255,255,255,.55); }

/* ===== BLOG CARDS ===== */
.posts-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.post-card {
  background: #fff; border-radius: 14px;
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform .2s; display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.post-image { height: 180px; overflow: hidden; background: #EFF6FF; display: flex; align-items: center; justify-content: center; }
.post-image img { width: 100%; height: 100%; object-fit: cover; }
.post-image-placeholder { font-size: 3rem; opacity: .3; }
.post-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.post-type { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--cyan); margin-bottom: 8px; }
.post-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.post-title a { color: inherit; }
.post-title a:hover { color: var(--cyan); text-decoration: none; }
.post-excerpt { font-size: .87rem; color: var(--muted); flex: 1; margin-bottom: 16px; }
.post-meta { font-size: .78rem; color: var(--muted); padding-top: 14px; border-top: 1px solid var(--light); }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy); border-top: 3px solid var(--cyan);
  z-index: 9999; padding: 16px 0;
}
.cookie-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-inner p { color: rgba(255,255,255,.8); font-size: .85rem; margin: 0; flex: 1; }
.cookie-inner a { color: var(--cyan); }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); padding: 60px 0 0; margin-top: 60px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-col p { color: rgba(255,255,255,.5); font-size: .87rem; line-height: 1.6; }
.affiliate-note { font-size: .75rem !important; margin-top: 12px !important; font-style: italic; }
.footer-col h4 { color: #fff; font-family: 'Space Grotesk', sans-serif; margin-bottom: 16px; font-size: .95rem; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,.55); font-size: .88rem; transition: color .15s; }
.footer-col ul a:hover { color: var(--cyan); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .8rem; text-align: center; margin: 0; }

/* ===== PAGINATION ===== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: .9rem; font-weight: 600;
  border: 1.5px solid var(--light); color: var(--slate); transition: all .15s;
}
.pagination a:hover { border-color: var(--cyan); color: var(--cyan); text-decoration: none; }
.pagination .current { background: var(--cyan); border-color: var(--cyan); color: var(--navy); }

/* ===== NOTICE / AFFILIATE ===== */
.affiliate-disclaimer {
  background: #FFF9E6; border: 1px solid #FED7AA;
  border-radius: 10px; padding: 14px 18px;
  font-size: .82rem; color: #92400E; margin-bottom: 32px;
  display: flex; align-items: flex-start; gap: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-hero-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav {
    display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--navy); flex-direction: column; align-items: flex-start;
    padding: 24px 20px; gap: 8px; overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 1.1rem; padding: 12px 16px; width: 100%; }
  .nav-toggle { display: flex; }
  .hero { padding: 50px 0 40px; }
  .hero-stats { gap: 20px; }
  .projectors-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .filter-bar form { flex-direction: column; }
  .filter-group { min-width: unset; }
  .usp-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== MULTI-PROVIDER BUY BUTTONS ===== */
.buy-buttons {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.btn-provider {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 9px; font-weight: 700; cursor: pointer;
  transition: all .18s; text-decoration: none !important;
  color: #111 !important; border: none;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
  box-shadow: 0 3px 10px rgba(0,0,0,.15);
}
.btn-provider:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
  filter: brightness(1.06);
}
.btn-price {
  display: block; font-size: .75em;
  font-weight: 400; opacity: .75; margin-top: 2px;
}

/* ===== PROVIDER ADMIN TABLE ===== */
.provider-color-dot {
  display: inline-block; width: 14px; height: 14px;
  border-radius: 50%; vertical-align: middle; margin-right: 6px;
}
.template-code {
  font-family: monospace; font-size: .8rem;
  background: #F1F5F9; padding: 3px 7px;
  border-radius: 4px; color: #475569;
  word-break: break-all;
}