/** Shopify CDN: Minification failed

Line 1251:0 Unexpected "}"

**/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, -webkit-system-font, "Helvetica Neue", Arial, sans-serif;
  color: #111827;
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 20;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav a {
  margin-left: 16px;
  font-size: 14px;
  opacity: 0.8;
}

.nav a:hover {
  opacity: 1;
}

.main {
  padding: 32px 0 64px;
}

.footer {
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  font-size: 13px;
}

.hero--home {
  padding: 72px 0;
}

.hero--tiktok {
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #f9fafb;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero-copy p {
  font-size: 18px;
  max-width: 520px;
  color: #4b5563;
}

.hero--tiktok .hero-copy p {
  color: #e5e7eb;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
}

.hero-badges span {
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4f6;
}

.hero--tiktok .hero-badges span {
  background: rgba(15,23,42,0.7);
  color: #e5e7eb;
}

.hero-art {
  text-align: center;
}

.hero-product-image,
.highlight-image {
  max-width: 100%;
  border-radius: 32px;
  background: #000;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
}

.btn-primary {
  background: #111827;
  color: #ffffff;
}

.hero--tiktok .btn-primary {
  background: #f97316;
  color: #111827;
}

.btn-primary:hover {
  background: #000000;
}

.hero--tiktok .btn-primary:hover {
  background: #fb923c;
}

.btn-outline {
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
}

.btn-outline:hover {
  background: #f9fafb;
}

.btn-full {
  width: 100%;
}

.product-page {
  margin-top: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
}

.product-image-main {
  width: 100%;
  border-radius: 24px;
  background: #000;
  object-fit: cover;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.product-thumb {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  opacity: 0.9;
}

.product-thumb:hover {
  opacity: 1;
}

.product-title {
  font-size: 32px;
  margin: 0 0 8px;
}

.product-subtitle {
  margin: 0 0 16px;
  color: #4b5563;
}

.product-pricing {
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 700;
}

.price--compare {
  font-size: 16px;
  text-decoration: line-through;
  color: #9ca3af;
  margin-left: 8px;
}

.badge--trust {
  display: inline-flex;
  margin-top: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f3f4f6;
  font-size: 12px;
  color: #4b5563;
}

.product-guarantees {
  font-size: 12px;
  color: #6b7280;
  margin-top: 8px;
  text-align: center;
}

.product-benefits {
  margin-top: 24px;
  padding-left: 20px;
  color: #374151;
}

.product-benefits li {
  margin-bottom: 4px;
}

.section {
  padding: 56px 0;
}

.section--light {
  background: #ffffff;
}

.section--highlight {
  background: #111827;
  color: #f9fafb;
}

.section--highlight h2 {
  color: #ffffff;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.section-subtitle {
  color: #6b7280;
  margin-bottom: 24px;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 20px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.table-wrapper {
  margin-top: 24px;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
  text-align: left;
}

.comparison-table th {
  background: #f9fafb;
}

.compat-list,
.delivery-list {
  padding-left: 20px;
  margin-top: 12px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}

.rating-stars {
  font-size: 18px;
}

.rating-text {
  color: #4b5563;
}

.reviews .review-text {
  font-size: 14px;
  color: #4b5563;
}

.rating {
  font-size: 15px;
  margin: 0 0 4px;
}

.review-author {
  font-size: 13px;
  color: #6b7280;
}

.faq h3 {
  margin-top: 16px;
  margin-bottom: 4px;
  font-size: 16px;
}

.faq p {
  margin: 0 0 8px;
  color: #4b5563;
}

.product-grid-home {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card-home {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(15,23,42,0.08);
}

.product-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card-body {
  padding: 14px 16px 16px;
}

.product-card-body h3 {
  font-size: 15px;
  margin: 0 0 4px;
}

.product-card-price {
  font-size: 14px;
  margin: 0 0 6px;
}

.product-card-cta {
  font-size: 13px;
  color: #111827;
  opacity: 0.75;
}

.highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.trust-row-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  color: #6b7280;
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .product-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner,
  .highlight-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .hero--home {
    padding-top: 40px;
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .product-grid-home {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Cart styles */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.cart-table th,
.cart-table td {
  padding: 10px 8px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  font-size: 14px;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-product-image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
}

.cart-product-title {
  font-weight: 600;
}

.cart-qty-input {
  width: 72px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
}

.cart-summary {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: baseline;
}

.cart-total-label {
  font-size: 14px;
  color: #6b7280;
}

.cart-total-price {
  font-size: 20px;
  font-weight: 700;
}

.cart-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Contact page */
.contact-page p {
  max-width: 560px;
  color: #4b5563;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}

.contact-field label {
  font-size: 13px;
  margin-bottom: 4px;
  color: #4b5563;
}

.contact-field input,
.contact-field textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font: inherit;
}

.contact-field textarea {
  resize: vertical;
}

.contact-success {
  padding: 10px 12px;
  border-radius: 12px;
  background: #ecfdf3;
  color: #14532d;
  font-size: 14px;
  margin-top: 16px;
}

.contact-errors {
  padding: 10px 12px;
  border-radius: 12px;
  background: #fef2f2;
  color: #991b1b;
  font-size: 14px;
  margin-top: 16px;
}

.contact-extra {
  margin-top: 20px;
  font-size: 14px;
  color: #4b5563;
}

@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Header nav improvements */
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav a {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
  text-decoration: none;
}

.nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Payment / trust row (if you add it later in HTML) */
.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  color: #4b5563;
}

.payment-pill {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}


.payment-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  color: #4b5563;
}

.payment-row-label {
  font-weight: 500;
}

.payment-icons svg {
  height: 20px;
  width: auto;
  margin-right: 6px;
}

.payment-pill {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}


.price-animating {
  animation: priceFade 0.18s ease-out;
}

@keyframes priceFade {
  from {
    opacity: 0.4;
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.review-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.review-track {
  overflow: hidden;
  display: flex;
  transition: transform 0.25s ease-out;
  width: 100%;
}

.review-card {
  min-width: 100%;
  max-width: 100%;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.review-stars {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.review-text {
  font-size: 14px;
  color: #374151;
  margin-bottom: 8px;
}

.review-author {
  font-size: 13px;
  color: #6b7280;
}

.review-arrow {
  border: none;
  background: #111827;
  color: #f9fafb;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.review-arrow:hover {
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .review-arrow {
    display: none;
  }

  .review-card {
    min-width: 100%;
  }
}




/* Zentix Mobile Feinschliff */
@media (max-width: 900px) {
  .btn,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding-inline: 16px;
  }

  .hero {
    padding-inline: 16px;
    padding-top: 28px;
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: 26px;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.45;
  }

  .product-page {
    padding-inline: 16px;
    margin-top: 12px;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 23px;
  }
  .hero-subtitle {
    font-size: 14px;
  }
}




/* Zentix Header modern */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(15, 23, 42, 0.90);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav a {
  font-size: 14px;
  color: #e5e7eb;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav a:hover {
  background: rgba(148, 163, 184, 0.18);
  color: #f9fafb;
}

/* Mobile nav toggle */
.mobile-nav-toggle {
  display: none;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.12);
  background: #0f172a;
  color: #f9fafb;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  position: relative;
}

.mobile-nav-toggle span::before,
.mobile-nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav-toggle span::before {
  top: -5px;
}

.mobile-nav-toggle span::after {
  top: 5px;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .nav--mobile-open {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    right: 16px;
    left: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.97);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.45);
    z-index: 40;
  }

  .nav--mobile-open a {
    color: #f9fafb;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }
}




/* Zentix Produktseiten – Apple-like Look */
.product-page {
  margin-top: 32px;
  padding-bottom: 56px;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 48px;
  align-items: flex-start;
}

.product-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-image-main {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  background: radial-gradient(circle at 10% 0, #111827 0, #020617 60%);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.35);
}

.product-summary {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-title {
  font-size: 32px;
  letter-spacing: -0.03em;
}

.product-subtitle {
  color: #4b5563;
}

.product-cta {
  margin-top: 10px;
  padding: 14px 16px 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0f172a, #020617);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.55);
}

.product-cta .btn-full {
  width: 100%;
  justify-content: center;
  font-size: 16px;
}

.product-guarantees {
  margin-top: 8px;
  font-size: 13px;
  color: #e5e7eb;
  text-align: center;
}

.product-detail-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-detail-grid .card {
  border-radius: 22px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.04), #ffffff 58%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.product-detail-grid .card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.product-detail-grid .card p {
  font-size: 14px;
  color: #4b5563;
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .product-title {
    font-size: 26px;
  }

  .product-detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}




/* Zentix Cart Progress */
.cart-progress {
  margin-bottom: 16px;
}

.cart-progress-label {
  font-size: 14px;
  color: #4b5563;
}

.cart-progress-bar {
  margin-top: 6px;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.cart-progress-fill {
  width: 33%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f172a, #4b5563);
}

.cart-progress-steps {
  margin-top: 4px;
  font-size: 12px;
  color: #9ca3af;
}




/* Zentix Reviews Fade Slider */
.review-track {
  position: relative;
  min-height: 140px;
}

.review-card {
  transition: opacity 0.35s ease;
}



/* Zentix Apple-like Hover & Motion */
.btn,
.btn-primary,
.btn-secondary {
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, opacity 0.16s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.30);
}

.product-card-home {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card-home:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.20);
  border-color: rgba(15, 23, 42, 0.25);
}

/* Scroll-in sections */
.section[data-animate="true"] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.section.section--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sticky Buy Bar */
#sticky-buy{
 position:fixed; bottom:0; left:0; right:0;
 background:white; border-top:1px solid #ddd;
 padding:10px; z-index:9999; display:flex; justify-content:center;
}
.sticky-inner{width:100%; max-width:900px; display:flex; justify-content:space-between; align-items:center;}
.sticky-btn{background:#000;color:#fff;padding:12px 22px;border-radius:8px;}
.social-proof{font-size:14px;color:#555;margin-bottom:14px;}
.spec-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:16px;margin-top:20px;}


/* Zentix logo header visibility fix */
.logo {
  color: #f9fafb;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.header .logo {
  color: #f9fafb;
}

.header .logo:hover {
  color: #e5e7eb;
}

/* Home review strip */
.home-reviews-strip { padding:40px 0; background:#f9fafb; overflow:hidden; }
.home-reviews-track { display:flex; gap:40px; animation:scrollReviews 30s linear infinite; white-space:nowrap; }
.home-review { font-size:18px; color:#111827; }
@keyframes scrollReviews {
  0% { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}


/* Hero mini review bubbles */
.hero-mini-reviews {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 480px;
}
.hero-mini-review {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #111827;
}

/* As seen in strip */
.section--as-seen {
  padding-top: 18px;
  padding-bottom: 18px;
}
.as-seen-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.as-seen-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}
.as-seen-logos span {
  font-size: 13px;
  color: #6b7280;
  margin-right: 14px;
}

/* Video review section */
.section--dark {
  background: #020617;
  color: #e5e7eb;
}
.section--dark .section-subtitle,
.section-subtitle--on-dark {
  color: #9ca3af;
}
.video-review-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.video-review-card {
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.7);
  padding: 12px 12px 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
}
.video-thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  display: block;
}
.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.85);
  color: #f9fafb;
  font-size: 20px;
  cursor: pointer;
}
.video-caption {
  margin-top: 10px;
  font-size: 14px;
  color: #e5e7eb;
}

@media (max-width: 900px) {
  .video-review-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}



}


/* Apple-style polish */
body {
  -webkit-font-smoothing: antialiased;
}

.section.section--highlight {
  background: radial-gradient(circle at top left, rgba(59,130,246,0.06), transparent 55%),
              radial-gradient(circle at bottom right, rgba(56,189,248,0.06), transparent 55%),
              #f9fafb;
}

.section--highlight .card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.highlight-card {
  padding: 18px 18px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.8);
  box-shadow: 0 18px 45px rgba(15,23,42,0.08);
}

.highlight-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.highlight-pill-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #9ca3af;
}

/* Compare stripe */
.compare-section {
  background: #0b1220;
  color: #e5e7eb;
}

.compare-section h2 {
  color: #f9fafb;
}

.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.compare-col {
  border-radius: 18px;
  padding: 16px 16px 18px;
  background: rgba(15,23,42,0.85);
}

.compare-col--zentix {
  border: 1px solid rgba(236, 72, 153, 0.65);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.85);
}

.compare-col h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-list li {
  font-size: 14px;
  margin-bottom: 6px;
}

.compare-list li span {
  opacity: 0.8;
}

@media (max-width: 900px) {
  .compare-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Apple-style Tech Specs grid */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.spec-grid > div {
  font-size: 14px;
  color: #111827;
  padding: 12px 12px 14px;
  border-radius: 18px;
  background: rgba(249, 250, 251, 0.9);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.spec-grid--apple > div strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #6b7280;
}

.product-meta-line {
  margin-top: 4px;
  font-size: 13px;
  color: #6b7280;
}


/* Fix contrast for 'Warum Zentix' highlight section */
.section.section--highlight h2 {
  color: #111827;
}

.section.section--highlight .section-subtitle {
  color: #4b5563;
}

.highlight-pill-label {
  color: #6b7280;
}

.highlight-card {
  background: rgba(255,255,255,0.98);
}

.highlight-card h3 {
  color: #111827;
}

.highlight-card p {
  color: #4b5563;
}


.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(15, 23, 42, 0.9);
}

.header-scrolled {
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.45);
}

.logo {
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
}


/* Sticky add-to-cart bar */
.sticky-cart-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 35;
  background: rgba(15, 23, 42, 0.98);
  color: #f9fafb;
  display: none;
}

.sticky-cart-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-cart-title {
  font-size: 14px;
  font-weight: 500;
}

.sticky-cart-price {
  font-size: 14px;
  opacity: 0.9;
}

.sticky-cart-bar .btn {
  padding-inline: 18px;
  padding-block: 8px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .sticky-cart-inner {
    padding-inline: 12px;
    gap: 8px;
  }
  .sticky-cart-title {
    font-size: 13px;
  }
}


.spec-compat-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
  list-style: none;
  padding: 0;
}

.spec-compat-list li {
  font-size: 14px;
}


.cart-trust {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
  font-size: 13px;
  color: #4b5563;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
}

.cart-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cart-trust-badges {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}


/* Bundle Section – Zentix Cinema Set */
.section--bundle {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #f9fafb;
}

.bundle-pill-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #9ca3af;
  margin-bottom: 6px;
}

.section--bundle h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.bundle-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.bundle-card {
  border-radius: 20px;
  padding: 16px 16px 18px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
}

.bundle-card--primary {
  border: 1px solid rgba(59,130,246,0.4);
}

.bundle-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.bundle-card-text {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 6px;
}

.bundle-card-price {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.bundle-cta-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.bundle-note {
  font-size: 13px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .section--bundle {
    padding-inline: 16px;
  }
}
