/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/* Hide native radio inputs */
.wcsatt-options-prompt-action-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Base card style */
.wcsatt-options-prompt-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border: 2px solid #e0ddd5;
  border-radius: 10px;
  cursor: pointer;
  background: #ffffff;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
}

/* Hover state */
.wcsatt-options-prompt-label:hover {
  border-color: #c8a84b;
  background: #fdf9ec;
}

/* Selected card (add this class via JS) */
.wcsatt-options-prompt-label.is-selected {
  border-color: #c8a84b;
  background: #fdf3d0;
}

/* Custom radio dot */
.custom-radio-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ccc;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
}

.wcsatt-options-prompt-label.is-selected .custom-radio-dot {
  border-color: #c8a84b;
  background: #c8a84b;
}

.wcsatt-options-prompt-label.is-selected .custom-radio-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}

.wcsatt-options-prompt-radios {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}