/* weight-selector.css */

.weight-selector-container {
    margin-bottom: 2em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.weight-selector-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.weight-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.weight-option {
    flex: 1;
}

.weight-option input[type="radio"] {
    display: none; /* Hide the actual radio button */
}

.weight-option label {
    display: block;
    padding: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    background-color: #f9fafb;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* When selected */
.weight-option input[type="radio"]:checked + label {
    background-color: #00594b;
    border-color: #00594b;
    color: white;
}

.weight-amount {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.weight-price {
    font-size: 0.875rem;
    opacity: 0.9;
}