
  .result-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Nexa Heavy', sans-serif;
    color: white;
  }

  .selected-item {
  display: flex;
  justify-content: center; /* centre la ligne entière */
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 10px;
}
.selected-item img {
  width: 40px;
  height: 40px;
}


.item-results {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* 👈 Centre tous les items */
  gap: 8px;
  max-width: 480px;
  margin-bottom: 20px;
}


  .item-block {
    background-color: #2c2c34;
    border-radius: 6px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    height: 50px; /* 👈 force même hauteur */
    width: 150px; /* 👈 force même hauteur */
    box-sizing: border-box;
  }

  .item-icon {
    width: 32px;
    height: 32px;
    margin-right: 6px;
    flex-shrink: 0;
  }

  .item-info {
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .price-total {
  color: #00ff8a; /* Vert lumineux */
}
.price-details {
  color: #999;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: center; /* 👈 Centrage horizontal */
  background-color: #2c2c34;
  border-radius: 6px;
  padding: 6px;
  margin: 4px 0;
  font-size: 14px;
  font-family: 'Nexa Heavy', sans-serif;
  text-transform: uppercase;
  width: 150px;
  height: 50px;
  box-sizing: border-box;
}




  .summary-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }

