.vrudhi-subscription-container {
    margin: 20px 0;
    font-family: inherit;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.vrudhi-subs-option {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.vrudhi-subs-option:last-child {
    border-bottom: none;
}

.vrudhi-subs-option.active {
    background: #f9f9f9;
}

.vrudhi-subs-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    width: 100%;
}

.vrudhi-subs-option input[type="radio"] {
    margin-right: 15px;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    outline: none;
    position: relative;
}

.vrudhi-subs-option input[type="radio"]:checked {
    border-color: #000;
}

.vrudhi-subs-option input[type="radio"]:checked::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.option-label {
    flex-grow: 1;
    font-weight: 600;
    font-size: 1.1em;
    color: #333;
}

.option-price {
    font-weight: 700;
    font-size: 1.1em;
    color: #000;
}

.vrudhi-sub-details {
    margin-top: 15px;
    padding-left: 33px;
    padding-bottom: 5px;
}

.sub-benefits {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 12px;
    font-style: italic;
}

.frequency-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.frequency-selector label {
    font-size: 0.9em;
    font-weight: 500;
    width: auto;
}

.frequency-selector select {
    padding: 5px 30px 5px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 0.9em;
}

/* Premium micro-animations */
.vrudhi-subs-option:hover {
    background: #f5f5f5;
}
