:root {
  --bg: #0f1115;
  --bg-soft: #151922;
  --card: #1d2330;
  --text: #ffffff;
  --text-muted: #b8c0cc;
  --accent: #2ea3f2;
  --accent-soft: rgba(46, 163, 242, 0.15);
  --border: rgba(255, 255, 255, 0.1);

  --max-width: 1180px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;

  border-bottom: 1px solid var(--border);
  background: rgba(15, 17, 21, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.main-nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.main-nav a:hover {
  color: var(--text);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 48px;

  background:
    radial-gradient(circle at top right,
      rgba(46, 163, 242, 0.20),
      transparent 30%),

    radial-gradient(circle at bottom left,
      rgba(0, 179, 164, 0.14),
      transparent 28%),

    linear-gradient(
      180deg,
      #111722 0%,
      #0f1115 100%
    );
}
.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

  background-size: 34px 34px;

  mask-image: linear-gradient(to bottom,
    rgba(0,0,0,0.7),
    transparent);

  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: none;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

h1{
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  font-weight: 650;
}

.hero-text {
  max-width: 760px;
  margin: 26px 0 0;
  font-size: 1.18rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 54px;
}

.hero-actions-support {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}

.btn-primary {
  background: var(--accent);
  color: #071018;
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.hero-actions-support {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 54px;
}

.hero-text-secondary {
  margin-top: 18px;
  font-size: 1.02rem;
  opacity: 0.88;
}
/* Globaler Section-Look */

.section-surface{
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at top right,
      rgba(46,163,242,0.10),
      transparent 30%
    ),

    radial-gradient(
      circle at bottom left,
      rgba(0,179,164,0.08),
      transparent 28%
    ),

    linear-gradient(
      180deg,
      #111722 0%,
      #0f1115 100%
    );
}
/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.site-footer a:hover {
  color: var(--text);
}

/* Responsive */

@media (max-width: 800px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .hero {
    padding: 72px 0 86px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
.btn-support {
  background: #00b3a4;
  color: #041412;
}

.btn-support:hover {
  filter: brightness(1.08);
}

.btn-youtube {
  background: #ff0033;
  color: white;
}

.btn-youtube:hover {
  filter: brightness(1.08);
}
/* Kategorien */

.categories-section {
  padding: 40px 0 70px;
  background: var(--bg);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.section-head p:last-child {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.category-card {
  display: block;
  padding: 30px;
  min-height: 240px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 163, 242, 0.45);
  background: #222a39;
}

.category-icon {
  display: inline-flex;
  margin-bottom: 22px;
  font-size: 2rem;
}

.category-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.category-card p {
  margin: 0;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: auto;
  }
}
.category-card {
  display: block;
  padding: 30px;
  min-height: 240px;
  border-radius: var(--radius);
  background: var(--card) !important;
  border: 1px solid var(--border);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
/* Featured */

.featured-section {
  padding: 30px 0 90px;
}

.featured-grid {
   margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.featured-card {
  position: relative;

  padding: 34px;
  border-radius: var(--radius);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.015)
    );

  border: 1px solid var(--border);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.featured-card:hover {
  transform: translateY(-5px);

  border-color: rgba(46,163,242,0.4);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.025)
    );
}

.featured-badge {
  display: inline-flex;

  margin-bottom: 18px;
  padding: 6px 12px;

  border-radius: 999px;

  background: rgba(46,163,242,0.12);

  color: var(--accent);

  font-size: 0.82rem;
  font-weight: 700;
}

.featured-card h3 {
  margin: 0 0 14px;

  font-size: 1.6rem;
  line-height: 1.2;
}

.featured-card p {
  margin: 0 0 26px;

  color: var(--text-muted);
}

.featured-link {
  color: var(--accent);
  font-weight: 700;
}

.featured-link:hover {
  opacity: 0.85;
}

@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}
/* Produktseiten */

.product-hero {
  padding: 72px 0 58px;
  background:
    radial-gradient(circle at top right, rgba(46, 163, 242, 0.18), transparent 32%),
    linear-gradient(180deg, #111722 0%, #0f1115 100%);
}

.product-hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.product-hero h1{
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.product-score-card,
.content-card,
.sidebar-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

.product-score-card {
  padding: 32px;
}

.product-score-card strong {
  display: block;
  margin: 10px 0 14px;
  font-size: 1.45rem;
  line-height: 1.25;
}

.product-score-card p {
  color: var(--text-muted);
  margin: 0;
}

.product-label {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-content {
  padding: 50px 0 90px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: start;
}

.product-main {
  display: grid;
  gap: 24px;
}

.content-card {
   margin-bottom: 34px;
  padding: 34px;
}

.content-card h2 {
  margin-top: 0;
  font-size: 1.8rem;
}

.content-card p {
  color: var(--text-muted);
}

.check-list,
.minus-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.check-list li,
.minus-list li {
  margin-bottom: 12px;
  color: var(--text-muted);
}

.check-list li::before {
  content: "✓ ";
  color: #00b3a4;
  font-weight: 800;
}

.minus-list li::before {
  content: "– ";
  color: #ff6b6b;
  font-weight: 800;
}

.spec-table {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.spec-table div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.spec-table span {
  color: var(--text-muted);
}

.spec-table strong {
  text-align: right;
}

.source-note {
  margin-top: 22px;
  font-size: 0.92rem;
}

.product-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 20px;
}

.sidebar-card {
  padding: 24px;
}

.sidebar-card h3 {
  margin-top: 0;
}

.sidebar-card p {
  color: var(--text-muted);
}

.affiliate-note {
  background: rgba(255,255,255,0.035);
}

@media (max-width: 950px) {
  .product-hero-inner,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    position: static;
  }

  .spec-table div {
    flex-direction: column;
    gap: 4px;
  }

  .spec-table strong {
    text-align: left;
  }
}
/* Produktbild Sidebar */

.sidebar-image-card {
  padding: 24px;

  border-radius: var(--radius);

  background: var(--card);

  border: 1px solid var(--border);

  text-align: center;
}

.product-sidebar-image {
  width: 100%;
  max-width: 240px;
  height: auto;

  filter:
    drop-shadow(0 18px 40px rgba(0,0,0,0.45));

  transition:
    transform 0.25s ease;
}

.product-sidebar-image:hover {
  transform: translateY(-4px);
}
/* Amazon Box */

.amazon-box {
  margin-top: 26px;
  padding-top: 24px;

  border-top: 1px solid var(--border);
}

.amazon-label {
  display: block;

  margin-bottom: 14px;

  color: var(--text-muted);

  font-size: 0.9rem;
}

.amazon-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 0 22px;

  border-radius: 999px;

  background: #ff9900;

  color: #111;

  font-weight: 800;

  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.amazon-button:hover {
  transform: translateY(-2px);

  filter: brightness(1.04);
}
/* Rechtliche Seiten */

.legal-section {
  padding: 72px 0 90px;
  background:
    radial-gradient(circle at top right, rgba(46, 163, 242, 0.12), transparent 32%),
    linear-gradient(180deg, #111722 0%, #0f1115 100%);
}

.legal-wrap {
  max-width: 920px;
}

.legal-wrap h1 {
  margin-bottom: 34px;
}

.legal-card h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--text-muted);
}

.legal-card code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: var(--text);
}
/* Vergleichsseiten */

.quick-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.quick-item {
  padding: 24px;
  border-radius: var(--radius);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.015)
    );

  border: 1px solid var(--border);
}

.quick-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.quick-item p {
  margin: 0;
  color: var(--text-muted);
}

.compare-table {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.compare-row div {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.compare-row div:not(:last-child) {
  border-right: 1px solid var(--border);
}

.compare-head {
  background: rgba(255,255,255,0.05);
  font-weight: 700;
}

.compare-row:nth-child(even) {
  background: rgba(255,255,255,0.015);
}

@media (max-width: 800px) {

  .quick-compare {
    grid-template-columns: 1fr;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-row div {
    border-right: none !important;
  }

}
/* Zubehör */

.accessory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.accessory-card {
  padding: 32px;
}

.accessory-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.accessory-card p {
  color: var(--text-muted);
}

.accessory-card .amazon-button {
  margin-top: 18px;
}

@media (max-width: 800px) {
  .accessory-grid {
    grid-template-columns: 1fr;
  }
}
/* Abstände für Inhaltsseiten */

.section-spacer {
  margin-top: 58px;
}
/* Hersteller Hero */

.brand-hero-inner {
  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(280px, 0.65fr);

  gap: 40px;

  align-items: center;
}

.brand-hero-inner > div:first-child {
  max-width: 760px;
}

@media (max-width: 950px) {

  .brand-hero-inner {
    grid-template-columns: 1fr;
  }

}
/* Produktbild Hero */

.hero-product-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-product-image {
  width: 100%;
  max-width: 340px;

  margin: 0 auto;

  display: block;

  filter:
    drop-shadow(0 18px 40px rgba(0,0,0,0.45));

  transition: transform 0.25s ease;
}

.hero-product-image:hover {
  transform: translateY(-4px);
}
/* Intro Produktbox */

.intro-product-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(240px, 0.8fr);

  gap: 36px;

  align-items: center;
}

.intro-product-image-wrap {
  display: flex;
  justify-content: center;
}

.intro-product-image {
  width: 100%;
  max-width: 320px;

  filter:
    drop-shadow(0 20px 42px rgba(0,0,0,0.45));
}

@media (max-width: 900px) {

  .intro-product-grid {
    grid-template-columns: 1fr;
  }

}
/* Positiv / Negativ */

.pros-cons-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;
}

@media (max-width: 800px) {

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

}
.recommend-table-wrap{
  width: 100%;
  overflow-x: auto;
}

.recommend-table{
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.recommend-table thead{
  background: rgba(255,255,255,0.03);
}

.recommend-table th,
.recommend-table td{
  padding: 22px 26px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  text-align: left;
}

.recommend-table th{
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.recommend-table td{
  color: var(--text-muted);
  font-size: 1rem;
}

.recommend-table td:nth-child(2){
  color: var(--text);
  font-weight: 700;
}

.recommend-table tr:hover{
  background: rgba(255,255,255,0.025);
}

/* Spaltenbreiten */

.recommend-table th:nth-child(1),
.recommend-table td:nth-child(1){
  width: 15%;
}

.recommend-table th:nth-child(2),
.recommend-table td:nth-child(2){
  width: 16%;
}

.recommend-table th:nth-child(3),
.recommend-table td:nth-child(3){
  width: auto;
}

.recommend-table th:nth-child(4),
.recommend-table td:nth-child(4){
  width: 160px;
  white-space: nowrap;
}

.recommend-table th:nth-child(5),
.recommend-table td:nth-child(5){
  width: 90px;
  text-align: right;
}

/* Warenkorb Button */

.buy-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  border-radius: 12px;

  background: #ff9900;

  color: #111;

  font-size: 1.1rem;
  font-weight: 800;

  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.buy-button:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.product-pick-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 42px;
}

.product-pick-card{
  padding: 30px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
}

.product-pick-badge{
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-pick-card h3{
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.28;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.product-pick-card p{
  color: var(--text-muted);
}

.product-pick-price{
  display: block;
  margin: 20px 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  opacity: 0.92;
}

@media (max-width: 950px){
  .product-pick-grid{
    grid-template-columns: 1fr;
  }
}
.bottom-back-link{
  display: flex;
  justify-content: flex-end;
  margin-top: 56px;
  margin-bottom: 0px;
  padding-right: 24px;
}
.bottom-back-link .btn{
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.92rem;
  font-weight: 600;
  opacity: 0.82;
}
.bottom-back-link .btn:hover{
  opacity: 1;
}
.bottom-actions{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 56px;
  margin-bottom: 8px;
}

.bottom-actions .btn-secondary{
  margin-left: auto;
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.92rem;
  opacity: 0.82;
}

/* =========================================================
   KURSBOXEN
   ========================================================= */

.course-info-card,
.course-video-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  padding:34px;
}

.course-video-card{
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.course-video-card iframe{
  width:100%;
  aspect-ratio:16/9;
  border:none;
  border-radius:18px;
  display:block;
}

@media (max-width:980px){

  .project-course-grid{
    grid-template-columns:1fr;
  }

}
/* RECHTE KURS-SPALTE */

.course-right-column{
  display:flex;
  flex-direction:column;
  gap:18px;
    justify-content:flex-start;
}

/* BUTTON BOX */

.course-link-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  padding:22px;
    margin-bottom:0;
}

/* BUTTON VOLLBREITE */

.btn-full{
  width:100%;
  justify-content:center;
}
.project-course-grid{
  display:grid;
  grid-template-columns:1fr 0.9fr;
  gap:32px;
  align-items:start;
}

.course-right-column{
  display:flex;
  flex-direction:column;
  gap:18px;
   justify-content:flex-start;
}
/* =========================================================
   YOUTUBE VIDEO IN CONTENT BOX
   ========================================================= */

.project-video-embed{
  margin-top:28px;
  margin-bottom:28px;

  border-radius:22px;
  overflow:hidden;

  border:1px solid rgba(255,255,255,0.08);

  background:#000;
}

.project-video-embed iframe{
  width:100%;
  aspect-ratio:16/9;
  border:none;
  display:block;
}
.course-spacer{
  margin-top:42px;
}

.project-overview-note{
  margin-top:48px;
}
/* =========================================================
   FAZIT MIT VIDEO
   ========================================================= */

.project-fazit-grid{
  display:grid;
  grid-template-columns:1fr 0.9fr;
  gap:32px;
  align-items:start;
}

.project-video-embed{
  border-radius:22px;
  overflow:hidden;

  border:1px solid rgba(255,255,255,0.08);

  background:#000;
}

.project-video-embed iframe{
  width:100%;
  aspect-ratio:16/9;
  border:none;
  display:block;
}

.project-highlight-link{
  color:#59c3ff;
  font-weight:600;
  text-decoration:none;
  transition:0.2s ease;
}

.project-highlight-link:hover{
  color:#8fd8ff;
  text-decoration:underline;
}

@media (max-width:980px){

  .project-fazit-grid{
    grid-template-columns:1fr;
  }

}
.menu-search{
  opacity:0.8;
}

.menu-search:hover{
  opacity:1;
}
/* =========================================================
   PAGEFIND SUCHSTIL
   ========================================================= */

:root{
  --pagefind-ui-primary: #ffffff;
  --pagefind-ui-text: rgba(255,255,255,0.82);
  --pagefind-ui-background: #111827;
  --pagefind-ui-border: rgba(255,255,255,0.08);
  --pagefind-ui-tag: #38bdf8;
}

.pagefind-ui{
  color:rgba(255,255,255,0.82);
}

.pagefind-ui__result-title a{
  color:#ffffff !important;
  text-decoration:none;
  font-weight:600;
}

.pagefind-ui__result-title a:hover{
  color:#7dd3fc !important;
}

.pagefind-ui__result{
  background:rgba(255,255,255,0.04);

  border:1px solid rgba(255,255,255,0.08);

  border-radius:22px;

  padding:22px;

  margin-bottom:18px;
}

.pagefind-ui__result-excerpt{
  color:rgba(255,255,255,0.72);
}

.pagefind-ui__search-input{
  background:rgba(255,255,255,0.04) !important;

  border:1px solid rgba(255,255,255,0.08) !important;

  color:#ffffff !important;

  border-radius:18px !important;

  padding:16px 18px !important;
}

.pagefind-ui__search-input::placeholder{
  color:rgba(255,255,255,0.45);
}

.pagefind-ui__button{
  border-radius:14px !important;
}
/* =========================================================
   MENU SEARCH ICON
   ========================================================= */

.menu-search{
  display:flex;
  align-items:center;
  justify-content:center;

  opacity:0.78;

  transition:all 0.2s ease;
}

.menu-search:hover{
  opacity:1;

  transform:translateY(-1px);
}

.menu-search svg{
  width:20px;
  height:20px;
}

/* =========================
   Tabellen allgemein
========================= */

.table-scroll{
  width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}

.recommend-table-wrap{
  min-width:760px;
}

.recommend-table{
  width:100%;
  border-collapse:collapse;
  table-layout:fixed;
}

/* =========================
   Desktop
========================= */

.recommend-table th,
.recommend-table td{
  padding:14px 16px;
  vertical-align:top;
}

/* =========================
   Mobile Optimierung
========================= */

@media (max-width:768px){

  .recommend-table-wrap{
    min-width:620px;
  }

  .recommend-table th,
  .recommend-table td{
    font-size:12px;
    line-height:1.3;
    padding:8px 8px;
    white-space:normal;
    word-break:break-word;
  }

  /* Serie */
  .recommend-table th:nth-child(1),
  .recommend-table td:nth-child(1){
    width:110px;
  }

  /* Kapazität */
  .recommend-table th:nth-child(2),
  .recommend-table td:nth-child(2){
    width:70px;
    text-align:center;
  }

  /* Modell */
  .recommend-table th:nth-child(3),
  .recommend-table td:nth-child(3){
    width:180px;
  }

  /* Preis */
  .recommend-table th:nth-child(4),
  .recommend-table td:nth-child(4){
    width:85px;
    text-align:center;
  }

  /* Kaufen */
  .recommend-table th:nth-child(5),
  .recommend-table td:nth-child(5){
    width:60px;
    text-align:center;
  }

  .buy-button{
    width:36px;
    height:36px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0;
    font-size:16px;
  }

  .drive-series-row td{
    font-size:13px;
    font-weight:700;
    padding:10px;
  }
}
.drive-card-section {
  margin-top: 24px;
}

.drive-card-section h3 {
  margin: 28px 0 16px;
  font-size: 1.15rem;
}

.drive-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.drive-card {
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.drive-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.drive-card-head strong {
  font-size: 0.95rem;
  line-height: 1.3;
}

.drive-card-head span {
  flex: 0 0 auto;
  font-weight: 700;
  background: rgba(12, 113, 195, 0.08);
  color: #0c71c3;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.85rem;
}

.drive-card p {
  margin: 14px 0 18px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #475569;
}

.drive-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.drive-card-bottom span {
  font-weight: 700;
}

@media (max-width: 900px) {
  .drive-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .drive-card-grid {
    grid-template-columns: 1fr;
  }

  .drive-card {
    padding: 16px;
  }

  .drive-card-head strong {
    font-size: 0.9rem;
  }

  .drive-card p {
    font-size: 0.88rem;
  }
}
.drive-card{
  background: var(--card-bg, #111827);
  color: var(--text-color, #f8fafc);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 18px;
  padding: 18px;

  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.drive-card p{
  color: rgba(255,255,255,0.75);
}

.drive-card-bottom span{
  color: #fff;
}
.drive-card-info{
  margin-bottom:18px;
  font-size:0.88rem;
  line-height:1.45;
  color:rgba(255,255,255,0.72);
}
.featured-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 1100px) {
  .featured-grid-4,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .featured-grid-4,
  .category-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-card,
  .featured-card {
    padding: 20px;
  }

  .category-card h3,
  .featured-card h3 {
    font-size: 1.05rem;
  }

  .category-card p,
  .featured-card p {
    font-size: 0.92rem;
    line-height: 1.5;
  }
}
.hero-product-duo {
  overflow: hidden;
}

.hero-duo-images {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: center;
  margin-top: 22px;
}

.hero-duo-images img {
  width: 180px;
  height: 180px;

  object-fit: contain;
  object-position: center bottom;

  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.35));
}

@media (max-width: 768px) {

  .hero-duo-images {
    gap: 12px;
  }

  .hero-duo-images img {
    width: 130px;
    height: 130px;
  }

}
@media (max-width: 640px) {

  .nas-headline h2 {
    font-size: 1.65rem;
    line-height: 1.2;
    font-weight: 600;
  }

}
.buy-button svg{
  width:18px;
  height:18px;
}