body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0a0a0a;
  color: #e6e6e6;
  overflow-x: hidden; /* Empêche le débordement horizontal */
  padding-top: 50px; /* Ajustez selon la hauteur du menu fixe pour éviter le chevauchement */
}

header {
  text-align: center;
  background-color: #1a1a1a;
  padding: 1rem;
  color: #00ffff;
}

header .logo img {
  max-height: 60px;
}

h1, h2.headerlogo {
  font-weight: 700;
  color: #00ffff;
  font-family: "Orbitron", sans-serif;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  display: inline-block;
  padding: 20px;
  font-size: 30px;
}

h1 a, h2.headerlogo a {
  color: #00ffff;
  text-decoration: none;
}


#deals-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0 1rem;
}

/* Style pour l'affichage en deux colonnes */
#deals-container.two-columns {
  grid-template-columns: 1fr 1fr;
}

/* Bouton de retour en haut en bas à gauche sur PC */
#scroll-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #1a1a1a;
  color: #ff00ff;
  padding: 10px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none; /* Par défaut caché */
  z-index: 1000;
}

/* Affiche le bouton de retour en haut sur scroll */
.show-scroll-top #scroll-to-top {
  display: block;
}

#fixed-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #0d0d0d;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}
#hamburger-icon {
  margin-left: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #00ffff;
}

#home-icon {
    font-size: 24px;
    cursor: pointer;
    color: #00ffff;
    margin: auto; /* Centre l'icône dans le conteneur */
}

#grid-icon {
  margin-right: 30px;
  font-size: 24px;
  cursor: pointer;
  color: #00ffff;
}

#search-icon {
  margin-right: 30px;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

#fixed-top-bar.show {
  display: flex;
}

#fixed-top-bar button {
  background: none;
  border: none;
  color: #e6e6e6;
  cursor: pointer;
  font-size: 1.2rem;
}

.ssjinstinct ul li.horizontal-item {
    display: inline-block;
    margin-right: 10px;
}


/* Styles pour la section des offres */
.offers {
  padding: 2rem;
  text-align: center;
  background-color: #1a1a1a;
}



.offers h2, .offers h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00ccff;
  background:transparent;
}

.offers p {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

/* Liste de deals */
.ssjinstinct ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 0;
  list-style-type: none;
}

/* Style de chaque deal */
.ssjinstinct ul li {
  background-color: #0d0d0d;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 255, 255, 0.3);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 300px; /* Ajusté pour un meilleur rendu responsive */
  width: 100%;
  text-align: left;
  font-size: 0.95rem;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.ssjinstinct ul.compact-view li {
  max-width: 180px;
}

.ssjinstinct ul li:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 20px rgba(255, 0, 255, 0.5);
}

.ssjinstinct ul li .bim_pix {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  background-color: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.ssjinstinct ul li .bim_pix img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gtz_amacompliant {
  position: fixed;
  min-height: 20px;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0d0d0d;
  color: #e6e6e6;
  text-align: center;
  padding: 6px 0;
  margin: 0;
  font-size: 11px;
  opacity: 0.9;
}

/* Contenu de chaque deal */
.onrow {
  padding: 0.5rem 0;
}

.onbrand {
  font-size: 11px;
  padding-top:3px;
  padding-left:3px;
  color: #00ffff;
}

.blockincentive {
  background: #1a1a1a;
  display: inline-flex;
  width: 100%;
  text-align: center;
  vertical-align: bottom;
}

.onrow2 {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

.onrow2 strong {
  color: #e6e6e6;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.elprice {
  color: #ff00ff;
  font-size: 1.4rem;
  font-weight: bold;
  margin-right: 5px;
  text-align: right;
}

.strike-price {
  color: #666666;
  text-decoration: line-through;
  text-align: right;
}

.econome,
.econome2 {
  font-size: 0.95rem;
  color: #0a0a0a;
  font-weight: 600;
  display: inline-block;
  padding: 4px 10px;
  margin-right: 5px;
}

.econome {
  background: #00ffff;
}

.econome2 {
  background: #ff00ff;
  display: inline-block;
}

.kamesen {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.ctta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
  color: #0a0a0a;
  font-size: 1rem;
  font-weight: bold;
  background: #00ccff;
}

.ctta i {
  margin-left: 5px;
  font-size: 1rem;
}

/* Icône du marchand */
.bim_marchand {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  margin-bottom:5px;
}

.bim_marchand img {
	border-radius: 50%;
  width: 25px;
  height: 25;
  object-fit: cover;
  margin-right: 8px;
  background: white;
}

/* Pied de page */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #1a1a1a;
  color: #e6e6e6;
  font-size: 0.9rem;
  margin-top: 2rem;
}

footer a{ 
	color:#00ffff;
	text-decoration:none;
}

footer a:hover{ 
	color:#ff00ff;
}

/* Style pour la section Black Friday sous les deals */
.black-friday-content {
  margin: 40px auto;
  padding: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e6e6e6;
  background-color: #0d0d0d;
  border: 1px solid #333333;
  border-radius: 12px;
  max-width: 1550px;
}

/* Titres H2 stylisés */
.black-friday-content h2 {
  font-size: 1.8em;
  color: #00ffff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Texte en gras */
.black-friday-content strong {
  font-weight: bold;
  color: #ff00ff;
}

/* Texte en italique */
.black-friday-content em {
  font-style: italic;
  color: #cccccc;
}

/* Texte souligné */
.black-friday-content u {
  text-decoration: underline;
  color: #999999;
}

/* Bloc de citation */
.black-friday-content blockquote {
  border-left: 4px solid #00ffff;
  margin: 20px 0;
  padding: 10px 20px;
  color: #cccccc;
  font-style: italic;
  background-color: #1a1a1a;
}

/* Listes stylisées */
.black-friday-content ul {
  padding-left: 20px;
  margin-top: 10px;
}

.black-friday-content ul li {
  margin-bottom: 8px;
}
.newrules24 {
  position: absolute;
  top: 24px;
  right: 7px;
  width: auto !important;
}

/* Styles responsives */
@media (max-width: 768px) {
  .ssjinstinct ul {
  }

  .ssjinstinct ul li {
    max-width: none;
    padding: 1rem;
    width: auto;
  }

  .onrow2 {
    flex-direction: column;
    align-items: flex-start;
  }
  .offers {
    padding: 10px;
  }
  #deals-container {
    padding: 0;
  }
  #deal-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 1rem;
  }

  /* Style pour l'affichage en deux colonnes */
  #deal-items.two-columns {
    grid-template-columns: 1fr 1fr;
  }
  #deal-items.two-columns li {
    padding: 3px;
  }
  #deal-items.two-columns li .onrow {
    text-align: center;
  }

  #deal-items.two-columns li .onrow .elprice {
    color: #ff00ff;
    font-size: 1.4rem;
    font-weight: bold;
    margin-right: 5px;
    text-align: center;
    display: block;
    width: 100%;
  }

  #deal-items.two-columns li .onrow .strike-price {
    color: #666666;
    text-decoration: line-through;
    text-align: center;
    display: block;
    width: 100%;
    text-align: center;
  }
  
  #deal-items.two-columns li .econome {
	padding-top:8px;
	font-size:18px;	 
  }
  
  #deal-items.two-columns li .next-button {
	 display:none; 
  }
  
  #deal-items.two-columns li .blockincentive, #deal-items .scroll-container li .blockincentive{
	  display:block;
  }

  #deal-items.two-columns li .econome, #deal-items.two-columns li .econome2, #deal-items .scroll-container li .econome2, #deal-items .scroll-container li .econome {
	  display:block;
	  margin:0;
	  padding:0;
  }
  
	#deal-items.two-columns li .bim_marchand,#deal-items.two-columns li .onbrand {
  display:block;
  }
	  
}

.compact-view .econome {
	padding-top:8px;
	font-size:18px;	 
}

.next-button {
  position: absolute;
  right: 10px;
  top: 35%;
  transform: initial;
  background-color: #00ffff;
  color: #0a0a0a;
  border: none;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  animation: blink-animation 1s infinite;
  box-shadow: 0px 4px 10px rgba(0, 255, 255, 0.3);
  height: 40px;
  width: 40px;
  font-size: 20px;
  line-height: 20px;
}

/* Styles pour les boutons de filtre */
.filter-buttons button {
  background-color: #00ccff;
  color: #0a0a0a;
  font-size: 0.9rem;
  padding: 10px 15px;
  margin: 5px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.filter-buttons button:hover {
  background-color: #ff00ff;
  transform: scale(1.05);
}

.filter-buttons button:active {
  transform: scale(0.95);
}

/* Style spécifique pour le bouton #show-more */
#show-more {
  background-color: #1a1a1a;
  color: #00ffff;
  font-weight: bold;
  border: 1px solid #333333;
  padding: 8px 12px;
  border-radius: 20px;
  transition: background-color 0.3s, color 0.3s;
  font-size: 0.9rem;
  margin-top: 10px;
}

#show-more:hover {
  background-color: #0d0d0d;
  color: #ff00ff;
  cursor: pointer;
}

#mobile-menu {
  position: absolute;
  top: 50px; /* Juste en dessous de la barre fixe */
  left: 0;
  right: 0;
  background-color: rgba(10, 10, 10, 0.95);
  color: white;
  padding: 20px 2px;
  text-align: center;
}

#mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#mobile-menu ul li {
  margin: 10px 0;
}

/* Styles pour le bouton hamburger en version mobile */
#hamburger-menu {
  display: none;
  background-color: #1a1a1a;
  color: #00ffff;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  margin-bottom: 1rem;
}

/* Bouton pour changer le mode d'affichage en version mobile */
#toggle-view {
  display: none;
  background-color: #00ccff;
  color: #0a0a0a;
  font-size: 0.9rem;
  padding: 10px 15px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Affiche le bouton hamburger en version mobile */
@media (max-width: 768px) {
  #hamburger-menu {
    display: block;
  }

  /* Styles pour masquer les catégories supplémentaires en version mobile */
  #more-categories {
    display: none;
  }

  /* Masque les catégories de filtre par défaut sur mobile */
  .filter-buttons {
    display: none;
  }

  /* Affiche les filtres lorsque le menu est ouvert en mobile */
  .filter-buttons.open {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Affiche le bouton de changement de mode en version mobile */
  #toggle-view {
    display: block;
  }

  /* Styles pour l'affichage à une colonne par défaut */
  #top-categories button {
    width: 100%;
  }

  /* Styles pour basculer en deux colonnes */
  #top-categories.two-columns button {
    width: 48%;
    margin: 1%;
  }
}

/* Styles pour les catégories en tant que tags en ligne sur PC */
#category-list.inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#category-list.inline-tags li {
  display: inline;
  padding: 5px 10px;
  background-color: #1a1a1a;
  border-radius: 12px;
  margin: 4px;
}

/* Optimisation du menu pour mobile */
#mobile-menu {
  position: fixed;
  top: 50px; /* Juste en dessous de la barre fixe */
  left: 0;
  right: 0;
  bottom: 0; /* S'étend jusqu'en bas de l'écran */
  background-color: rgba(10, 10, 10, 0.95);
  color: white;
  padding: 20px;
  text-align: center;
  overflow-y: auto; /* Ajoute le défilement vertical */
  max-height: calc(
    100vh - 50px
  ); /* Limite la hauteur pour qu'il ne dépasse pas l'écran */
  z-index: 9999; /* Assure qu'il soit au-dessus des autres éléments */
}

#mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#mobile-menu.inline-tags ul {
  display: block;
}

#mobile-menu.inline-tags ul li {
  display: inline-grid;
  margin: 0;
}

#mobile-menu.inline-tags ul li a {
  background: #00ccff;
  margin: 2px;
  padding: 5px;
  color: #0a0a0a;
  border-radius: 3px;
  text-decoration: none;
}

#mobile-menu.inline-tags ul li a:hover {
  background: #ff00ff;
}

@media (max-width: 768px) {
 .gtz_amacompliant {
    padding: 5px 70px;
    width: auto;
    font-size: 10px;
  }
}

.scroll-container {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    padding: 10px 0;
    padding-right: 10px; /* Ajoute un espace pour montrer une partie de l'item 3 */
}

/* Chaque item dans le défilement horizontal à 50% */
.scroll-container .horizontal-item {
    flex: 0 0 46%; 
    scroll-snap-align: start;
    box-sizing: border-box;
    margin-right: 5%;
}

/* Amélioration de l'apparence de la scrollbar en fonction du navigateur */
.scroll-container::-webkit-scrollbar {
    height: 6px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background-color: #00ffff;
    border-radius: 3px;
}

/* Animation de clignotement */
@keyframes blink-animation {
    50% {
        opacity: 0.5;
    }
}

.loader {
    border: 5px solid #1a1a1a; /* Couleur de fond */
    border-top: 5px solid #00ffff; /* Couleur de la roue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: none; /* Cachée par défaut */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#toolbar-toggle {
	margin-right: 30px;
  font-size: 24px;
  cursor: pointer;
}

#toolbar {
	margin: 40px 0;
  display: inline-flex;
  background: black;
  padding: 20px;
  border-radius:5px;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
	.offers h2, .offers h1 {
	  font-size: 20px;
	}

    .mobile-only {
        display: block;
    }
	#toolbar {
		display:none;
		position: fixed;
		z-index: 999;
		background: black;
		opacity: 0.9;
		top: 42px;
		margin: 0;
		
		display: block;
	}
	#toolbar button, #toolbar select{width:100%;margin: 5px 0;}
}
.filter-icon svg {
    fill: #fff; /* Couleur de l'icône (noire par défaut) */
    width: 32px; /* Largeur personnalisée */
    height: 32px; /* Hauteur personnalisée */
    cursor: pointer; /* Change le curseur pour indiquer une interaction */
    transition: transform 0.3s ease;
}

.filter-icon svg:hover {
    transform: scale(1.2); /* Agrandit légèrement au survol */
    fill: #007bff; /* Change la couleur au survol */
}
#toggle-toolbar-btn {
    display: inline-block;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background-image: url('/filter.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: invert(1);
  margin-top: 8px;
}


#toggle-toolbar-btn:hover {
    transform: scale(1.2); /* Effet zoom */
    opacity: 0.8; /* Légère transparence */
}


#toolbar button {
    background-color: #4CAF50; /* Vert élégant */
    color: white; /* Texte blanc */
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px; /* Coins arrondis */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Légère ombre */
    transition: background-color 0.3s, transform 0.2s; /* Animation sur hover */
    margin-right: 10px; /* Espacement entre les boutons */
}

/* Effet hover et actif pour les boutons de la toolbar */
#toolbar button:hover {
    background-color: #45a049; /* Couleur légèrement plus foncée au survol */
    transform: translateY(-2px); /* Soulève légèrement le bouton */
}

#toolbar button:active {
    background-color: #3e8e41; /* Couleur encore plus foncée lorsqu'il est cliqué */
    transform: translateY(0); /* Remet le bouton à sa position initiale */
}

/* Cible les menus déroulants (select) uniquement dans la toolbar */
#toolbar select {
    background-color: #ffffff; /* Fond blanc */
    color: #333; /* Couleur du texte */
    border: 1px solid #ccc; /* Bordure grise */
    padding: 10px;
    font-size: 16px;
    border-radius: 5px; /* Coins arrondis */
    cursor: pointer;
    margin-right: 10px; /* Espacement entre les champs */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Légère ombre */
    transition: border-color 0.3s, box-shadow 0.3s; /* Animation sur focus */
	text-transform:uppercase;
}

/* Effet focus pour les menus déroulants de la toolbar */
#toolbar select:focus {
    border-color: #4CAF50; /* Bordure verte au focus */
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.5); /* Glow vert élégant */
    outline: none; /* Supprime l'outline par défaut */
}

/* Options dans les menus déroulants */
#toolbar select option {
    padding: 10px;
    background-color: #fff;
    color: #333;
}
#toolbar button.active {
    background-color: #007bff; /* Exemple de couleur pour le bouton actif */
    color: white; /* Texte blanc */
    border: 2px solid #0056b3; /* Bordure différente */
}

/* Conteneur pour le champ de recherche et le bouton */
.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Espacement entre les éléments */
    margin-bottom: 10px;
	max-width: 990px;
	margin: 0 auto;
}

/* Champ de recherche */
#search-input {
    flex: 1; /* Le champ prend tout l'espace disponible */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.2s, box-shadow 0.2s;
}

#search-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.4);
}

/* Bouton de recherche */
#search-button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
}

#search-button:hover {
    background-color: #0056b3;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Conteneur des résultats de recherche */
#search-results {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 250px;
    overflow-y: auto;
    display: none; /* Masqué par défaut */
    background-color: #fff;
    margin: 0 auto;
    padding: 0;
    z-index: 1000;
    width: 100%;
	max-width:800px;
}

/* Éléments individuels des résultats */
#search-results li {
    padding: 10px 15px;
    cursor: pointer;
    list-style: none;
    transition: background-color 0.2s, color 0.2s;
    color: #333;
    font-size: 14px;
}

/* État survolé d'un élément */
#search-results li:hover {
    background-color: #007bff;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    #search-input {
        font-size: 12px;
    }

    #search-button {
        font-size: 12px;
        padding: 8px 15px;
    }
	
	.search-container, #search-results {
		max-width:80%;
	}
}

.ctashowfilter  {
  display: inline-block;
  width: 92%;
  height: 40px;
  cursor: pointer;
  background-image: url('/filter.svg');
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: 3%;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin-top: 8px;
  border-radius: 7px;
  padding: 0 10px;
  font-weight: bold;
  background-color: #97f997;
  border: 0;
  color: black;
  text-transform: uppercase;
}

#dreamteamcat {background: linear-gradient(90deg,#ff4757,#181818);
  padding: 20px;
  border-radius: 8px;
  margin-top: 10px;
}

.open-category-btn {
    margin-top: 15px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    display: inline-block;
    width: auto; /* Ajuste la largeur automatiquement */
}

.open-category-btn:hover {
    background: linear-gradient(90deg, #0056b3, #003f88);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.open-category-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(90deg, #00408a, #002d61);
}

.open-category-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.4);
}

nav.footermenu {max-width: 1600px;
  margin: 0 auto;
}

.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.categories li {
    margin: 0;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.categories li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.categories li a:hover {
    color: #007bff;
}

.karina_ean-offer-container {
   display: block;
    align-items: center;
    gap: 10px;
    padding: 5px;
    border-bottom: 1px solid #ddd;
}

.karina_ean-offer-container img {
    border-radius: 5px;
}

.karina_ean-twister-refurb-badge {
    background-color: #f4a742;
    color: white;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
	display:block;
}

.karina_ean-twister-amz-note {
    font-size: 12px;
    color: #FF9900;
    font-weight: bold;
}

.karina_ean-twister-merchant-price-old {
    text-decoration: line-through;
    color: grey;
    font-size: 12px;
    margin-left: 5px;
}

.karina_ean-twister-merchant-discount {
    background-color: #ff0000;
    color: white;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    margin-left: 5px;
}
.karina_ean-twister-merchant-name {
	font-size:12px;text-transform:capitalize;margin-left: 5px;
  top: -4px;
  position: relative;
  }
.kamesen.pololoxean {
cursor: pointer;
  font-weight: bold;
  color: white;
  background: linear-gradient(90deg, #00408a, #337fd7);
  text-align: center;
    display: block;
   padding: 5px;
  border-radius: 6px;
  margin-top: 5px;

}

.kamesen.pololoxean:hover {
    text-decoration: underline;
}

.priceean {float:right;}
.pololoxean img {
    border-radius: 5px;
}

.pololoxean .btn-go {
    background-color: #007BFF;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 12px;
}

.pololoxean .btn-go:hover {
    background-color: #0056b3;
}
.eantwistitwisti {background: linear-gradient(90deg, #00408a, #002d61);color:white;padding:10px;border-radius:8px;text-align:center;cursor:pointer;display:block;margin-top: 7px;}
.eantwistitwisti:hover{opacity:0.8;} 

.existeneuf {color:blue;text-decoration:underline;}
.existeneuf:hover {text-decoration:none;}

.blockkomplementaire {display: block;
  background: #cfcfee;
  padding: 20px;
  margin: 10px 0 auto;
  border-radius: 8px;
  color:black;}
.blockkomplementaire strong{display:inline-block;}