.product-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* ACTIONS */
.product-actions {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.product-actions button {
  width: 32px;
  height: 32px;
  border: none;
  background: #f4f4f4;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

.product-actions button:hover {
  background: var(--primary);
  color: var(--light);
}

.product-actions input {
  width: 40px;
  height: 32px;
  border: none;
  text-align: center;
  background: var(--light);
  border-radius: 6px;
  font-weight: 600;
}

/* IMAGE */
.thumb {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid var(--light);
}

/* OPTIONS - MINIMAL RADIO STYLE */
.option-group {
  margin-bottom: 22px;
  padding: 1rem;
}

.option-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option-item {
  position: relative;
}

/* hide radio */
.option-item input {
  display: none;
}

/* label style */
.option-label {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 20px;
  border: 1px solid  var(--primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* hover */
.option-label:hover {
  border-color: var(--dark);
}

/* checked state */
.option-item input:checked + .option-label {
  border-color: var(--dark);
  font-weight: 500;
}

/* subtle dot indicator */
.option-item input:checked + .option-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #000;
  display: inline-block;
  margin-inline-end: 6px;
}

/* responsive */
@media (max-width: 768px) {
  .product-card {
    padding: 15px;
  }

  .option-label {
    font-size: 12px;
    padding: 5px 10px;
  }
}
