/* ===== VERSTECKT "IN STOCK"-ANZEIGE ===== */
.stock-badge { 
  display: none !important; 
}

/* ===== NAVBAR-LINK STYLES ===== */
.nav-link {
  color: white !important;
  font-weight: 500;
  position: relative;
  text-decoration: none !important;
  transition: all 0.3s ease;
  padding: 0.5rem 0 !important;
  background: transparent !important;
  border: none !important;
}

.nav-link:hover {
  color: #aaa !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #3498db;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:active,
.nav-link.active {
  color: #3498db !important;
}

.nav-link:active::after,
.nav-link.active::after {
  width: 100% !important;
}

/* Mobile Optimierung */
@media (max-width: 992px) {
  .navbar-nav {
    gap: 1rem !important;
    padding-top: 1rem;
  }
  .nav-link::after {
    display: none;
  }
}
/* ===== ENTFERNT RAND BEI PRODUKTBILDERN ===== */
.products .card .card-img-top img,
.product-wrapper .carousel img,
.product-wrapper .thumbnails img,
.hero .search-modal .product .image img {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Optional: Falls Bilder in anderen Komponenten sind */
img[src*="product"], 
.product-image, 
.product-img {
    border: none !important;
}
/* Alternative Lösung mit spezifischeren Selektoren */
.product-wrapper .variants .variant .name {
    color: #aaa !important;  /* Grau für Variantennamen */
    font-size: 1.1rem !important;
}

.product-wrapper .variants .variant .price {
    color: white !important;  /* Weiß für Preise */
    font-size: 1.2rem !important;
    font-weight: bold !important;
}

/* "In Stock" Text */
.stock-indicator {
    color: #4CAF50 !important;
    font-size: 0.9rem !important;
}
/* ===== PRODUKT-VARIANTEN-STIL ===== */
/* "Lifetime", "Month", etc. - größer und fetter */
.variants .variant .name {
    color: #aaa !important;
    font-size: 1.3rem !important;  /* Deutlich größer */
    font-weight: 700 !important;   /* Sehr fett */
    text-transform: uppercase !important;
}

/* "in stock" - weiß */
.stock-indicator, 
.stock-status, 
.variants .variant .stock {
    color: white !important;
    font-size: 1rem !important;
}

/* Preise - weiß und hervorgehoben */
.variants .variant .price {
    color: white !important;
    font-size: 1.4rem !important;
    font-weight: 800 !important;
}
/* ===== ENTFERNT "IN STOCK" TEXT ===== */
.variants .variant .stock,
.stock-indicator,
.stock-status {
    display: none !important;
}
/* ===== STIL FÜR VARIANTEN (FETT & GRÖSSER) ===== */
.variants .variant .name {
    color: #aaa !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    margin-bottom: 0.5rem !important; /* Abstand nach unten */
}

/* ===== PREISE (WEISS & FETT) ===== */
.variants .variant .price {
    color: white !important;
    font-size: 1.4rem !important;
    font-weight: 800 !important;
}
/* Ändert "Buy Now" zu "Paypal & Crypto" */
.buy-now-btn, .add-to-cart-btn {
    position: relative;
    overflow: hidden;
}

.buy-now-btn::after, .add-to-cart-btn::after {
    content: "PAYPAL & CRYPTO";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cl-accent); /* Behält dein bestehendes Button-Design bei */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-transform: uppercase;
}

.buy-now-btn span, .add-to-cart-btn span {
    visibility: hidden;
}
/* Ändert "Buy Now" zu "Paypal & Crypto" */
.buy-now-btn {
  position: relative;
}

.buy-now-btn::after {
  content: "PAYPAL & CRYPTO";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cl-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 0.5rem;
}

.buy-now-btn span {
  visibility: hidden;
}

/* Optional: Icons hinzufügen */
.buy-now-btn::before {
  content: "\f1f4 \f15a"; /* Unicode für PayPal & Bitcoin */
  font-family: "Font Awesome 6 Brands";
  margin-right: 8px;
}
/* Stil für Produkte mit einer Variante */
.product-single-variant {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.product-price {
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 1rem 0;
}

.product-actions {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.payment-btn {
  background: var(--cl-accent);
  flex-grow: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.product-features {
  color: #aaa;
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.product-features li {
  margin-bottom: 0.5rem;
}
/* Stil für Produktkarten */
.card {
  transition: transform 0.3s ease;
  background: rgba(255,255,255,0.05);
  border-radius: 12px !important;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
}

.product-actions .btn {
  padding: 0.5rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.product-features li {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}
/* Produktkarten-Stil */
.product-card {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card-img-top {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card-body {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  color: white;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.product-price {
  margin: 0.5rem 0;
}

.current-price {
  color: #4CAF50;
  font-weight: bold;
  font-size: 1.2rem;
}

.old-price {
  color: #aaa;
  margin-left: 0.5rem;
  font-size: 0.9rem;
}

.price-range {
  color: #4CAF50;
  font-weight: bold;
}

.product-actions {
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.payment-btn {
  background: var(--cl-accent);
  color: white;
  font-weight: bold;
  flex: 1;
  text-transform: uppercase;
}

.add-to-cart {
  flex: 1;
}

.view-products {
  width: 100%;
}

/* Badges */
.badges {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.badges div {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
}
/* Produktansicht für Einzelprodukte */
.product-single-view {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
}

.product-title {
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.product-price {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #4CAF50;
  margin-bottom: 2rem;
}

.old-price {
  color: #aaa;
  font-size: 1.4rem;
  margin-left: 0.5rem;
}

.product-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.payment-btn {
  background: var(--cl-accent);
  flex-grow: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.product-features {
  color: #aaa;
  padding-left: 1.5rem;
  margin-top: 1rem;
  list-style-type: none;
}

.product-features li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.product-features li:before {
  content: "•";
  color: var(--cl-accent);
  position: absolute;
  left: 0;
}
/* Custom Product Styling */
.custom-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.custom-product-card {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.custom-product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 1.2rem;
}

.product-price {
  margin: 0.8rem 0;
}

.current-price {
  color: #4CAF50;
  font-size: 1.4rem;
  font-weight: 800;
}

.original-price {
  color: #aaa;
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1rem;
}

.payment-btn {
  background: var(--cl-accent);
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.add-to-cart {
  background: #333;
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 6px;
  cursor: pointer;
}