/* ✅ COLORS (Couleur) */
#couleur.bt-image-color-sw {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
  gap: 3px 1px;
  margin-top: 1rem;
  width: 100%; /* full width */
}

#couleur label {
  cursor: pointer;
  text-align: center;
  border-radius: 8px;
  padding: 8px;
  box-sizing: border-box;
  transition: transform 0.2s ease;
}

/* Color dot */
#couleur .bt_color_sw_span {
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: 0.2s ease;
}

/* Label text */
#couleur .label_text {
  font-size: 16px;
  color: #333;
  display: block;
}

/* Selected (checked) styles */
#couleur input[type="radio"]:checked + label .bt_color_sw_span {
  outline: 2px solid #E3B602; /* Your brand primary color */
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #E3B602;
}
#couleur input[type="radio"]:checked + label {
  border: 2px solid; /* add border */
  transform: scale(1.05);
  font-weight: 500;
}


/* ✅ STORAGE (Capacité de stockage) */
#capacite-de-stockage.bas_radio_variations {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
  gap: 3px 1px;
  margin-top: 1rem;
  width: 100%; /* full width */
}

#capacite-de-stockage label {
  cursor: pointer;
  text-align: center;
  border-radius: 8px;
  padding: 8px;
  box-sizing: border-box;
  transition: transform 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #333;
  min-height: 60px; /* optional for consistent height */
}

/* Highlight border and scale on checked */
#capacite-de-stockage input[type="radio"]:checked + label {
  border: 2px solid; /* add border */
  transform: scale(1.05);
  font-weight: 600;
}
