/** Shopify CDN: Minification failed

Line 273:0 Unexpected "}"

**/
/* ============================
   COREHASH PREMIUM PRODUCT CARD
   ============================ */

/* Brand-Farben (Kommentar zur Orientierung)
   COREHASH Blue:   #0072F7
   COREHASH Cyan:   #04D0D1
   Mining Black:    #0A0A0A
   Graphite Dark:   #1A1A1A
   Neutral Gray:    #B4BCC4
   Text Muted:      #94A3B8
*/

/* ===== GLOBAL FIX: Horizontales Scrollen verhindern ===== */
/* Nur body - nicht html (sonst Burger-Menü kaputt) */
body {
  overflow-x: hidden;
}

/* ===== GLOBAL FIX: Product Gallery - Layout Shift verhindern ===== */
.product-gallery:not(.product-gallery--left) {
  width: 100% !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.product-gallery:not(.product-gallery--left) .product-gallery__viewer {
  width: 100% !important;
}

.product-gallery:not(.product-gallery--left) .product-gallery__navigation {
  margin-left: 0 !important;
}

/* Swiper Wrapper - keine Transition für Desktop */
@media (min-width: 721px) {
  .product-gallery .swiper-wrapper {
    transition-duration: 0ms !important;
    transition-property: none !important;
  }
  
  /* Feste Höhe für Viewer - verhindert Shift bei verschiedenen Bildgrößen */
  .product-gallery__viewer .swiper-wrapper {
    height: auto !important;
    align-items: flex-start !important;
  }
  
  /* Alle Slides gleiche Position - kein Transform-Shift */
  .product-gallery__viewer .swiper-slide {
    transition: none !important;
  }
}

/* Fix: Bilder im Swiper - feste Aspect Ratio verhindert Layout-Shift */
.product-gallery__viewer .swiper-slide .media {
  aspect-ratio: 1 / 1 !important;
  overflow: hidden;
}

.product-gallery__viewer .swiper-slide .media__image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* ===== GLOBAL FIX: Header Logo ===== */
/* Fix für abgeschnittenes Logo nach CLS-Optimierung */
.site-logo-image {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
}

/* ===== GLOBAL FIX: Header WhatsApp/Promo Icon ===== */
/* Fix für abgeschnittenes Icon nach CLS-Optimierung */
.small-promo-icon img,
.small-promo-custom-icon {
  width: auto !important;
  height: auto !important;
  max-height: 60px;
  object-fit: contain;
}

/* ===== GLOBAL FIX: WhatsApp Floating Button ===== */
/* Fix für abgeschnittenen WhatsApp Button nach CLS-Optimierung */
[class*="whatsapp"] img,
[class*="wa-"] img,
[id*="whatsapp"] img,
[id*="wa-chat"] img,
a[href*="wa.me"] img,
a[href*="whatsapp"] img {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 100%;
}

/* ===== Bild-Container & Overlay ===== */
.productitem__image-container {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: 
    /* Dezenter Blau-Glow oben */
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(0, 114, 247, 0.10) 0%, transparent 70%),
    /* Subtiler Cyan-Akzent rechts */
    radial-gradient(ellipse 40% 30% at 95% 30%, rgba(4, 208, 209, 0.05) 0%, transparent 60%),
    /* Basis */
    #1a1a1a;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 1px 0 rgba(0, 0, 0, 0.5);
}

.productitem__image-container img {
  transform: scale(1.02);
  transition: transform 0.4s ease-out;
}

.productitem:hover .productitem__image-container img {
  transform: scale(1.06);
  /* filter: saturate(1.12); - DEAKTIVIERT wegen GPU-Ueberlastung */
}

/* ===== Product Detail Page (PDP) Gallery Overlays ===== */
.product-gallery {
  position: relative;
}

/* PDP Hintergrund - Blue Border Glow konsistent mit Cards */
/* WICHTIG: Glow nur auf Viewer, NICHT auf Slides - sonst verschiebt sich der Effekt */
.product-gallery__viewer {
  background: linear-gradient(180deg, rgba(15, 20, 30, 0.6), rgba(10, 14, 20, 0.8));
  border-radius: 16px;
  border: 1px solid rgba(0, 114, 247, 0.25);
  box-shadow: 0 0 0 1px rgba(0, 114, 247, 0.1), 0 10px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-gallery__viewer:hover {
  border-color: rgba(0, 114, 247, 0.5);
  box-shadow: 0 0 0 1px rgba(0, 114, 247, 0.4), 0 0 20px rgba(0, 114, 247, 0.15), 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Slides ohne eigenen Glow/Border */
.product-gallery__viewer .swiper-slide {
  background: #1a1a1a;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

/* Mobile Anpassungen für Produktbilder */
@media screen and (max-width: 749px) {
  .productitem__image-container {
    border-radius: 10px 10px 0 0;
  }
  
/* ============================
   VERSCHIEDENE HINTERGRÜNDE PRO PRODUKT
   Basierend auf Metafeld: specs.algorithm
   ============================ */

/* ----- NACH ALGORITHMUS (METAFELD) ----- */
/* Wird automatisch aus dem Metafeld "Algorithmus" gelesen - keine Tags nötig! */

/* SHA256 (Bitcoin, BCH) - Orange/Gold */
[data-algorithm="sha256"] .productitem__image-container,
[data-algorithm="sha-256"] .productitem__image-container {
  background: 
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(247, 147, 26, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 95% 30%, rgba(255, 193, 7, 0.08) 0%, transparent 60%),
    #1a1a1a !important;
}

/* SCRYPT (Litecoin, Dogecoin, Bells) - Silber/Blau */
/* Hinweis: Hintergrund wird jetzt inline im Template gesetzt */

/* kHeavyHash (Kaspa) - Türkis */
[data-algorithm="kheavyhash"] .productitem__image-container,
[data-algorithm="kaspa"] .productitem__image-container {
  background: 
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(73, 234, 209, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 95% 30%, rgba(0, 188, 212, 0.08) 0%, transparent 60%),
    #1a1a1a !important;
}

/* Ethash/Etchash (Ethereum Classic) - Grün */
[data-algorithm="ethash"] .productitem__image-container,
[data-algorithm="etchash"] .productitem__image-container {
  background: 
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(60, 179, 113, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 95% 30%, rgba(0, 128, 0, 0.08) 0%, transparent 60%),
    #1a1a1a !important;
}

/* Blake3 (Alephium) - COREHASH Blau */
[data-algorithm="blake3"] .productitem__image-container {
  background: 
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(0, 114, 247, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 95% 30%, rgba(4, 208, 209, 0.08) 0%, transparent 60%),
    #1a1a1a !important;
}

/* X11 (Dash) - Blau/Lila */
[data-algorithm="x11"] .productitem__image-container {
  background: 
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(0, 141, 228, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 95% 30%, rgba(98, 126, 234, 0.08) 0%, transparent 60%),
    #1a1a1a !important;
}

/* Eaglesong (CKB/Nervos) - Grün */
[data-algorithm="eaglesong"] .productitem__image-container {
  background: 
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(58, 189, 89, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 95% 30%, rgba(46, 204, 113, 0.08) 0%, transparent 60%),
    #1a1a1a !important;
}

/* Kadena (KDA) - Lila/Pink */
[data-algorithm="kadena"] .productitem__image-container,
[data-algorithm="blake2s"] .productitem__image-container {
  background: 
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(237, 36, 124, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 95% 30%, rgba(156, 39, 176, 0.08) 0%, transparent 60%),
    #1a1a1a !important;
}

/* Handshake (HNS) - Gelb */
[data-algorithm="handshake"] .productitem__image-container,
[data-algorithm="blake2b-sha3"] .productitem__image-container {
  background: 
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(255, 193, 7, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 95% 30%, rgba(255, 235, 59, 0.08) 0%, transparent 60%),
    #1a1a1a !important;
}

/* ----- FALLBACK: NACH VENDOR (Hersteller) ----- */
/* Falls kein Algorithmus gesetzt ist */

/* Bitmain Produkte - Orange/Rot Akzent */
[data-algorithm=""] [data-vendor="bitmain"] .productitem__image-container,
[data-vendor="bitmain"]:not([data-algorithm]) .productitem__image-container {
  background: 
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(255, 87, 34, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 95% 30%, rgba(255, 152, 0, 0.06) 0%, transparent 60%),
    #1a1a1a !important;
}

/* IceRiver Produkte - Cyan/Blau Akzent */
[data-algorithm=""] [data-vendor="iceriver"] .productitem__image-container,
[data-vendor="iceriver"]:not([data-algorithm]) .productitem__image-container {
  background: 
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(0, 188, 212, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 95% 30%, rgba(0, 150, 136, 0.08) 0%, transparent 60%),
    #1a1a1a !important;
}
    #1a1a1a !important;
}
  .product-gallery__viewer,
  .product-gallery__viewer .swiper-slide {
    border-radius: 12px;
  }
}

.pdp-overlay-left {
  position: absolute;
  top: 20px;
  left: 28px;
  z-index: 10;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

.pdp-overlay-vendor {
  font-size: 16px;
  letter-spacing: 0.14em;
  opacity: 0.85;
}

.pdp-overlay-model {
  font-size: 32px;
  font-weight: 800;
  margin-top: 4px;
  letter-spacing: 0.06em;
}

.pdp-overlay-right {
  position: absolute;
  top: 12px;
  right: 32px;
  z-index: 10;
  display: flex;
  gap: 12px;
  pointer-events: none;
}

.pdp-overlay-coin {
  width: 48px;
  height: 48px;
  /* filter: drop-shadow - DEAKTIVIERT wegen GPU */
}

.pdp-overlay-logo {
  position: absolute;
  left: 50%;
  top: 85%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.pdp-overlay-logo img {
  width: 260px;
  height: auto;
  /* filter: drop-shadow - DEAKTIVIERT wegen GPU */
}

/* PDP Responsive */
@media (max-width: 767px) {
  .pdp-overlay-left {
    top: 14px;
    left: 20px;
  }
  .pdp-overlay-vendor {
    font-size: 13px;
  }
  .pdp-overlay-model {
    font-size: 22px;
  }
  .pdp-overlay-right {
    top: 6px;
    right: 20px;
    gap: 8px;
  }
  .pdp-overlay-coin {
    width: 42px;
    height: 42px;
  }
  .pdp-overlay-logo {
    top: 76%;
  }
  .pdp-overlay-logo img {
    width: 220px;
  }
}

@media (max-width: 479px) {
  .pdp-overlay-left {
    top: 10px;
    left: 16px;
  }
  .pdp-overlay-vendor {
    font-size: 11px;
  }
  .pdp-overlay-model {
    font-size: 18px;
  }
  .pdp-overlay-right {
    top: 4px;
    right: 14px;
    gap: 6px;
  }
  .pdp-overlay-coin {
    width: 36px;
    height: 36px;
  }
  .pdp-overlay-logo {
    top: 78%;
  }
  .pdp-overlay-logo img {
    width: 180px;
  }
}

/* dunkler Gradient-Overlay für bessere Lesbarkeit */
.productitem__image-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    transparent 100%
  );
}

.overlay-left {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.75);
}

.overlay-vendor {
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.9;
}

.overlay-model {
  font-size: 18px;
  font-weight: 800;
  margin-top: 2px;
  letter-spacing: 0.08em;
}

/* Coins – etwas kleiner */
.overlay-right {
  position: absolute;
  top: 8px;
  right: 12px;
  display: flex;
  gap: 6px;
}

.overlay-coin {
  width: 24px;
  height: 24px;
  /* filter: drop-shadow - DEAKTIVIERT wegen GPU */
}

.overlay-logo {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  pointer-events: none;
}

.overlay-logo img {
  width: 120px;
  height: auto;
  /* filter: drop-shadow - DEAKTIVIERT wegen GPU */
  object-fit: contain;
}

/* Responsive Logo Sizes */
@media (min-width: 480px) {
  .overlay-logo {
    bottom: 10px;
  }
  .overlay-logo img {
    width: 100px;
  }
}

@media (min-width: 768px) {
  .overlay-logo {
    bottom: 12px;
  }
  .overlay-logo img {
    width: 110px;
  }
}

@media (min-width: 1024px) {
  .overlay-logo {
    bottom: 14px;
  }
  .overlay-logo img {
    width: 130px;
  }
}

/* Mobile: noch kleiner */
@media (max-width: 479px) {
  .overlay-logo {
    bottom: 6px;
  }
  .overlay-logo img {
    width: 70px;
  }
}

/* ===== Card-Optik & Basislayout ===== */
.productitem {
  background: linear-gradient(180deg, rgba(15, 20, 30, 0.95), rgba(10, 14, 20, 0.98));
  border-radius: 16px;
  overflow: hidden;
  padding: 10px 12px 14px;
  border: 1px solid rgba(0, 114, 247, 0.25);
  box-shadow: 0 0 0 1px rgba(0, 114, 247, 0.08), 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.productitem:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 114, 247, 0.6);
  box-shadow: 0 0 0 1px rgba(0, 114, 247, 0.4), 0 0 20px rgba(0, 114, 247, 0.2), 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* ===== Info-Bereich mit solidem Hintergrund ===== */
.productitem--info {
  background: #050506;
  margin: 0 -12px -14px -12px;
  padding: 12px 12px 14px;
  border-radius: 0 0 14px 14px;
}

/* ===== Titel & Vendor (unten) – werden komplett ausgeblendet ===== */
.productitem--title {
  margin-top: 4px;
  margin-bottom: 2px;
}

.productitem--title a {
  color: #E5E7EB;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.2s ease-out;
}

.productitem:hover .productitem--title a {
  color: #ffffff;
}

.productitem--vendor,
.productitem--vendor a {
  color: #94A3B8;
  font-size: 13px;
  text-decoration: none;
}

/* Titel & Vendor unten ausblenden (alle Viewports) */
.productitem--info > .productitem--title,
.productitem--info > .productitem--vendor {
  display: none !important;
}

/* ===== Preis – Basis, einzeilig ===== */
.productitem--price,
.productitem--price .price,
.productitem--price span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Preis-Container ===== */
.productitem--price {
  padding: 8px 0;
  border-top: 1px solid rgba(180, 188, 196, 0.12);
}

/* ===== Price & Specs separator ===== */
.product-specs-card {
  padding-top: 8px;
  border-top: 1px solid rgba(180, 188, 196, 0.1);
}

/* ===== Product Specs ===== */
.product-specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px; /* kompakt */
}

.product-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #E5E7EB;
  padding: 2px 0;
}

.spec-left {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Icons & Werte leicht verkleinert */
.spec-icon {
  width: 16px;
  height: 16px;
  opacity: 0.95;
  color: #04D0D1;
}

.spec-label {
  display: inline;
  color: #94A3B8;
}

.spec-value {
  font-weight: 600;
  text-align: right;
  font-size: 13px;
  color: #F9FAFB;
}

.product-spec--highlight .spec-value {
  color: #04D0D1;
}

/* ===== Desktop-Feintuning Specs & Padding ===== */
@media (min-width: 720px) {
  .spec-icon {
    width: 18px;
    height: 18px;
  }

  .product-spec {
    font-size: 14px;
  }

  .spec-value {
    font-size: 14px;
  }

  .productitem {
    padding: 12px 14px 18px;
  }
}

/* ===== Preis-Schriftgrößen – jetzt noch etwas größer ===== */
@media screen and (max-width: 749px) {
  .productitem [class*="price"],
  .productitem--price,
  .productitem--price .price,
  .productitem--price * {
    font-size: 12px !important;      /* größer, mobil */
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  /* Coins mobil noch kleiner */
  .overlay-coin {
    width: 22px;
    height: 22px;
  }
}

@media screen and (min-width: 750px) {
  .productitem [class*="price"],
  .productitem--price,
  .productitem--price .price,
  .productitem--price * {
    font-size: 16px !important;      /* größer, Desktop */
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }
}

/* ===== Buttons-Bereich ===== */
.productitem--actions {
  margin-top: 14px;
  padding-top: 10px;
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.productitem--action .productitem--action-trigger {
  width: 100%;
}

.productitem--actions .element-button,
.productitem--actions .button-primary,
.productitem--actions .button-secondary {
  box-shadow: 0 0 0 1px rgba(180, 188, 196, 0.40);
  transition:
    box-shadow 0.2s ease-out,
    transform 0.15s ease-out,
    background-color 0.2s ease-out,
    color 0.2s ease-out;
}

.productitem--actions .element-button:hover,
.productitem--actions .button-primary:hover,
.productitem--actions .button-secondary:hover {
  box-shadow:
    0 0 0 1px rgba(4, 208, 209, 0.9),
    0 12px 26px rgba(0, 0, 0, 0.9);
  transform: translateY(-1px);
}

/* ============================
   MOBILE
   ============================ */
@media screen and (max-width: 749px) {
  /* 2 Produkte – zentral, symmetrisch */
  .productgrid--items,
  .collection--products,
  .collection--grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 6px;
    row-gap: 12px;
    padding-left: 2px;
    padding-right: 2px;
    margin: 10px auto 0;
  }

  .productgrid--items > .productgrid--item,
  .collection--products > .productgrid--item,
  .collection--grid > .productgrid--item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    margin: 0 !important;
  }

  .productitem {
    width: 100%;
    padding: 8px 8px 12px;
    border-radius: 10px;
  }

  .productitem__image-container {
    margin-bottom: 6px;
    border-radius: 10px 10px 0 0;
  }

  .overlay-left {
    top: 5px;
    left: 7px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  }

  .overlay-vendor {
    font-size: 7px;
    letter-spacing: 0.10em;
  }

  .overlay-model {
    font-size: 9px;
    letter-spacing: 0.05em;
    margin-top: 0;
  }

  .overlay-right {
    top: 2px;
    right: 5px;
    gap: 3px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .overlay-coin {
    /* mobil schon auf 22x22 im Media-Block oben verkleinert */
  }

  /* Specs – etwas kleiner & kompakt */
  .product-specs-card {
    margin-top: 5px;
    padding-top: 4px;
  }

  .product-specs-list {
    gap: 2px;
  }

  .product-spec {
    font-size: 10px;
    padding: 1px 0;
  }

  .spec-icon {
    width: 16px;
    height: 16px;
  }

  .spec-label {
    display: none;
  }

  .spec-value {
    font-size: 10px;
  }

  /* Buttons: kleiner, einzeilig, näher an den Specs */
  .productitem--actions {
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
    padding-top: 8px;
  }

  .productitem--action .productitem--action-trigger {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .productitem--actions .element-button,
  .productitem--actions .button-primary,
  .productitem--actions .button-secondary {
    font-size: 9px;
    line-height: 1.2;
    padding: 6px 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
  }
}

/* ============================
   TABLET - Touch-optimiert
   ============================ */
@media screen and (min-width: 750px) and (max-width: 1023px) {
  /* Hover mit BLAUEM statt Cyan Rahmen */
  .productitem:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 114, 247, 0.8) !important;
    box-shadow:
      0 22px 45px rgba(0, 0, 0, 0.95),
      0 0 0 1px rgba(0, 114, 247, 0.9) !important,
      0 0 32px rgba(0, 114, 247, 0.45) !important;
    background: radial-gradient(
      circle at top left,
      #1A1A1A 0,
      #0B1020 38%,
      #050506 100%
    ) !important;
  }
  
  /* Image-Hover normal */
  .productitem:hover .productitem__image-container img {
    transform: scale(1.06) !important;
    filter: saturate(1.12) !important;
  }
  
  /* Grid Layout wie Desktop (3-4 Spalten) */
  .productgrid--items,
  .collection--products,
  .collection--grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
  }
}

/* ============================
   DESKTOP / TABLET SPEZIFISCH
   ============================ */
@media screen and (min-width: 750px) {
  .productitem--info > .productitem--title,
  .productitem--info > .productitem--vendor {
    display: none !important;
  }
}

/* ============================
   PDP PREIS & VENDOR STYLING
   ============================ */

/* Preis - Grüner Gradient wie Cards */
.product__price,
.product__price .money,
.product__price span,
.price__current,
.price .money,
.flex-pdp__price .money {
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 800 !important;
}

/* Vendor - Weiß */
.product__vendor,
.product__vendor a,
.product-vendor,
.product-vendor a {
  color: #ffffff !important;
}

/* ============================
   ADD-TO-CART BUTTON
   Corehash Premium Grün #10B981
   ============================ */

/* EMPIRE THEME: Haupt-Button Klasse - Cyan→Grün Gradient wie Cards */
.product-form--atc-button,
button.product-form--atc-button,
[data-product-atc] {
  background: linear-gradient(135deg, #04D0D1 0%, #10B981 100%) !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 16px 32px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000000 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  box-shadow: 0 4px 20px rgba(4, 208, 209, 0.3) !important;
}

.product-form--atc-button:hover,
button.product-form--atc-button:hover,
[data-product-atc]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 28px rgba(4, 208, 209, 0.4), 0 0 20px rgba(4, 208, 209, 0.2) !important;
}

.product-form--atc-button:active,
[data-product-atc]:active {
  transform: translateY(0) !important;
}

/* Element Button (Flex PDP) - Cyan→Grün Gradient */
.add-to-cart-button.element-button,
.element-button.add-to-cart-button,
button.element-button.add-to-cart-button,
.element-button--inverted.add-to-cart-button {
  background: linear-gradient(135deg, #04D0D1 0%, #10B981 100%) !important;
  border: none !important;
  border-radius: 10px !important;
  color: #000000 !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px rgba(4, 208, 209, 0.3) !important;
}

.add-to-cart-button.element-button:hover,
.element-button.add-to-cart-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 28px rgba(4, 208, 209, 0.4), 0 0 20px rgba(4, 208, 209, 0.2) !important;
}

/* ============================
   TRUST-BADGES
   Unter dem Add-to-Cart Button
   (Nicht für ch-pdp - hat eigene Trust Badges)
   ============================ */

/* Mobile: Kleiner */
[data-product-form]::after {
  content: '✓ 6 Monate Garantie   •   ✓ Schneller Versand   •   ✓ Sichere Zahlung';
  display: block;
  margin-top: 12px;
  padding: 0;
  font-size: 10px;
  font-weight: 400;
  color: #9CA3AF;
  text-align: center;
  letter-spacing: 0.3px;
}

/* Ausblenden auf Custom Product Page (ch-pdp hat eigene Trust Badges) */
.ch-pdp [data-product-form]::after {
  display: none;
}

/* Desktop: Größer */
@media screen and (min-width: 750px) {
  [data-product-form]::after {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 18px;
  }
}

/* ============================
   TECH-SPECS BOX (ch-specs)
   Blue Glow - Konsistent mit Cards
   ============================ */

.ch-specs {
  background: linear-gradient(180deg, rgba(15, 20, 30, 0.95), rgba(10, 14, 20, 0.98)) !important;
  border: 1px solid rgba(0, 114, 247, 0.25) !important;
  border-radius: 14px !important;
  padding: 18px !important;
  margin-top: 12px !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 1px rgba(0, 114, 247, 0.08), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ch-specs:hover {
  border-color: rgba(0, 114, 247, 0.5) !important;
  box-shadow: 0 0 0 1px rgba(0, 114, 247, 0.3), 0 0 16px rgba(0, 114, 247, 0.12), 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Specs Labels in Cyan */
.ch-specs__label,
.ch-spec-label {
  color: #04D0D1 !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

/* Specs Values in Weiß */
.ch-specs__value,
.ch-spec-value {
  color: #ffffff !important;
  font-weight: 700 !important;
}

/* ============================
   PREMIUM VARIANTEN-PICKER
   Blue Glow - Konsistent mit Cards
   ============================ */

/* Container - Blue Border Glow wie Cards */
.options-selection__radios,
.options-selection__swatches {
  background: linear-gradient(180deg, rgba(15, 20, 30, 0.95), rgba(10, 14, 20, 0.98)) !important;
  border: 1px solid rgba(0, 114, 247, 0.25) !important;
  border-radius: 14px !important;
  padding: 18px !important;
  margin: 8px 0 12px !important;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 1px rgba(0, 114, 247, 0.08), 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Hover - Blue Glow wie Cards */
.options-selection__radios:hover,
.options-selection__swatches:hover {
  border-color: rgba(0, 114, 247, 0.5) !important;
  box-shadow: 0 0 0 1px rgba(0, 114, 247, 0.3), 0 0 16px rgba(0, 114, 247, 0.12), 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Überschrift - Cyan Akzent */
.options-selection__option-header {
  margin-bottom: 14px !important;
}

.options-selection__option-name {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #04D0D1 !important;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Kein Icon vor dem Label */
.options-selection__option-name::before {
  content: none !important;
}

/* Varianten-Buttons Container */
.options-selection__option-values {
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
  margin-top: 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Varianten-Buttons - Blue Glow */
.options-selection__option-value-input + .options-selection__option-value-name {
  background: rgba(0, 114, 247, 0.05) !important;
  border: 1px solid rgba(0, 114, 247, 0.2) !important;
  border-radius: 8px !important;
  padding: 10px 16px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  transition: all 0.2s ease !important;
  margin: 0 !important;
}

/* Hover - Blue Glow */
.options-selection__option-value-input:not(:checked):hover + .options-selection__option-value-name {
  border-color: rgba(0, 114, 247, 0.5) !important;
  background: rgba(0, 114, 247, 0.12) !important;
  color: #ffffff !important;
  box-shadow: 0 0 10px rgba(0, 114, 247, 0.15) !important;
}

/* Ausgewählte Variante - Blue Border Glow */
.options-selection__option-value-input:checked + .options-selection__option-value-name {
  background: rgba(0, 114, 247, 0.15) !important;
  border-color: #0072F7 !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  box-shadow: 0 0 0 1px rgba(0, 114, 247, 0.5), 0 0 14px rgba(0, 114, 247, 0.25) !important;
}

/* Checkmark in Blau */
.options-selection__option-value-input:checked + .options-selection__option-value-name::after {
  content: '✓';
  margin-left: 6px;
  font-size: 11px;
  color: #0072F7;
  font-weight: 600;
}

/* Nicht verfügbare Varianten */
.options-selection__option-value-input[data-variant-option-available=false] + .options-selection__option-value-name {
  opacity: 0.35 !important;
  text-decoration: line-through !important;
  cursor: not-allowed !important;
}

/* Mobile Anpassungen */
@media screen and (max-width: 749px) {
  .options-selection__radios,
  .options-selection__swatches {
    padding: 14px !important;
    margin: 10px 0 !important;
  }
  
  .options-selection__option-value-input + .options-selection__option-value-name {
    padding: 8px 12px !important;
    font-size: 12px !important;
  }
  
  .options-selection__option-name {
    font-size: 11px !important;
  }
}

/* ===========================================================================
   COREHASH PDP - ZUSÄTZLICHE KOMPONENTEN
   Quantity Selector, Thumbnails, Labels - Blue Glow konsistent
   =========================================================================== */

/* === QUANTITY SELECTOR - Blue Glow === */
.quantity-selector,
.product__quantity,
[data-quantity-wrapper],
.product-quantity-container {
  background: linear-gradient(180deg, rgba(15, 20, 30, 0.95), rgba(10, 14, 20, 0.98)) !important;
  border: 1px solid rgba(0, 114, 247, 0.25) !important;
  border-radius: 10px !important;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quantity-selector:hover,
.product__quantity:hover,
[data-quantity-wrapper]:hover {
  border-color: rgba(0, 114, 247, 0.5) !important;
  box-shadow: 0 0 12px rgba(0, 114, 247, 0.15) !important;
}

.quantity-selector__button,
.quantity__button,
[data-quantity-minus],
[data-quantity-plus] {
  background: rgba(0, 114, 247, 0.1) !important;
  border: none !important;
  color: #ffffff !important;
  transition: all 0.2s ease !important;
}

.quantity-selector__button:hover,
.quantity__button:hover,
[data-quantity-minus]:hover,
[data-quantity-plus]:hover {
  background: rgba(0, 114, 247, 0.25) !important;
  color: #04D0D1 !important;
}

.quantity-selector__input,
.quantity__input,
[data-quantity-input] {
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  text-align: center !important;
}

/* === PRODUCT GALLERY THUMBNAILS - Blue Glow === */
.product-gallery__thumbnails,
.media-gallery__thumbnails {
  gap: 8px !important;
}

.product-gallery__thumbnail,
.media-gallery__thumbnail {
  border: 1px solid rgba(0, 114, 247, 0.15) !important;
  border-radius: 8px !important;
  overflow: hidden;
  transition: all 0.2s ease !important;
  background: rgba(15, 20, 30, 0.6);
}

.product-gallery__thumbnail:hover,
.media-gallery__thumbnail:hover {
  border-color: rgba(0, 114, 247, 0.4) !important;
  box-shadow: 0 0 10px rgba(0, 114, 247, 0.2) !important;
}

.product-gallery__thumbnail.is-active,
.media-gallery__thumbnail.is-active,
.product-gallery__thumbnail--active {
  border-color: #0072F7 !important;
  box-shadow: 0 0 12px rgba(0, 114, 247, 0.3) !important;
}

/* === INVENTORY / AVAILABILITY BADGE === */
.product__inventory,
.inventory-status,
[data-inventory-status] {
  background: rgba(16, 185, 129, 0.1) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  border-radius: 6px !important;
  padding: 6px 12px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #10B981 !important;
}

/* === PRODUCT LABELS / BADGES === */
.product-label,
.product__badge,
.badge {
  background: linear-gradient(135deg, #04D0D1 0%, #0072F7 100%) !important;
  color: #000000 !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  padding: 4px 10px !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

/* === PRODUCT VENDOR LINK === */
.product__vendor a,
.product-vendor a {
  color: #04D0D1 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: color 0.2s ease !important;
}

.product__vendor a:hover,
.product-vendor a:hover {
  color: #0072F7 !important;
}

/* === PRODUCT TITLE === */
.product__title,
.flex-pdp__title {
  color: #ffffff !important;
  font-weight: 800 !important;
}

/* === PRODUCT TABS / ACCORDIONS === */
.product-tabs__tab,
.accordion__trigger,
[data-accordion-trigger] {
  background: transparent !important;
  border: 1px solid rgba(0, 114, 247, 0.15) !important;
  border-radius: 8px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  transition: all 0.2s ease !important;
}

.product-tabs__tab:hover,
.accordion__trigger:hover,
[data-accordion-trigger]:hover {
  border-color: rgba(0, 114, 247, 0.4) !important;
  background: rgba(0, 114, 247, 0.05) !important;
}

.product-tabs__tab.is-active,
.accordion__trigger.is-open,
[data-accordion-trigger][aria-expanded="true"] {
  border-color: #0072F7 !important;
  background: rgba(0, 114, 247, 0.1) !important;
  color: #ffffff !important;
}

/* === PRODUCT SHARE BUTTONS === */
.product-share__button,
.share-button {
  background: rgba(0, 114, 247, 0.1) !important;
  border: 1px solid rgba(0, 114, 247, 0.25) !important;
  border-radius: 8px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  transition: all 0.2s ease !important;
}

.product-share__button:hover,
.share-button:hover {
  border-color: rgba(0, 114, 247, 0.5) !important;
  background: rgba(0, 114, 247, 0.2) !important;
  box-shadow: 0 0 10px rgba(0, 114, 247, 0.15) !important;
}

/* === PRODUCT DESCRIPTION === */
.product__description,
.product-description {
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.7 !important;
}

.product__description a,
.product-description a {
  color: #04D0D1 !important;
  text-decoration: underline !important;
}

.product__description a:hover,
.product-description a:hover {
  color: #0072F7 !important;
}

/* === MOBILE PDP ADJUSTMENTS === */
@media screen and (max-width: 749px) {
  .product-gallery__viewer {
    border-radius: 12px !important;
  }
  
  .product-gallery__thumbnail {
    border-radius: 6px !important;
  }
  
  .quantity-selector,
  .product__quantity {
    border-radius: 8px !important;
  }
  
  .ch-specs {
    padding: 14px !important;
    border-radius: 12px !important;
  }
}