/* Container for the entire form */


/* Variation list: remove default bullet styling */
.cev-variation-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

/* Each variation item has a border and spacing */
.cev-variation-item {
  border: 2px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 15px;
  cursor: pointer;
  transition: border-color 0.3s;
  display: flex;
  align-items: center;
  position: relative;
}
.cev-variation-item label {
    display: flex;
    width: 100%;
	align-items: center;
}
.cev-variation-item:hover,
.cev-variation-item label:hover{
    cursor: pointer!important;
}
.cev-variation-item:hover {
  border-color: #aaa;
}

/* When selected, highlight the border */
.cev-variation-item.selected {
  border-color: #3cb300; /* or your highlight color */
}

/* Hide the default radio button */
.cev-variation-item input[type="radio"] {
  display: none;
}

/* Custom radio circle to replace the default radio */
.cev-radio-custom {
  width: 24px;
  height: 24px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0;
  display: inline-block;
}
.cev-variation-item.selected .cev-radio-custom {
  border-color: #3cb300;
}
.cev-radio-custom::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #3cb300;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
  opacity: 0;
  transition: opacity 0.2s;
}
.cev-variation-item.selected .cev-radio-custom::after {
  opacity: 1;
}

/* Variation content area (name, desc, etc.) */
.cev-variation-content {
  display: flex;
  flex-direction: column;
  margin-right: auto; /* push price to the right */
  align-self: center;
}

/* Variation header: title + "Najpopularnije" badge */
.cev-variation-header {
  display: flex;
  align-items: center;
}
.cev-variation-title {
  font-size: 15px;
  font-weight: 600;
}
.cev-popular-label {
    background: #f0b80e;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 10px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    top: -10px;
    right: 5px;
}

/* Variation description */
.cev-variation-desc {
  color: #666;
  /*background: #F7F7F7;*/
  font-size: 12px;
  /*padding: 2px 10px;*/
  /*margin: 0 3px;*/
}

/* Price container: right side of the item */
.cev-price-wrapper {
  text-align: right;
  margin-left: 20px;
}

/* Old (regular) price with strikethrough */
.cev-old-price {
  display: block;
  color: #e00;
  text-decoration: line-through;
  margin-bottom: 2px;
  font-size: 12px;
}

/* New (sale) price or normal price */
.cev-new-price {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

/* Savings label in green */
.cev-saving {
  display: block;
  color: #3cb300;
  font-size: 12px;
  margin-top: 2px;
}

/* Buttons */
.cev-add-to-cart,
.cev-buy-now {
  display: inline-block;
  padding: 15px 30px;
  margin-right: 10px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.cev-add-to-cart {
  background-color: #333;
  color: #fff;
}

.cev-add-to-cart:hover {
  background-color: #555;
}

.cev-buy-now {
  background-color: #3cb300;
  color: #fff;
}

.cev-buy-now:hover {
  background-color: #59c81d;
}
