/**
 * Public styles for NatralWorld Subscription Cards.
 */

.nw-subscription-container {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nw-subscription-card {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    margin-bottom: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
    width: 100%;
}

.nw-subscription-card:hover {
    border-color: #b3b3b3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nw-subscription-card.active {
    border-color: #000;
    background-color: #fff;
}

/* One-time card specific styles */
.nw-one-time {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Subscription card specific styles */
.nw-subscription .nw-card-content {
    width: 100%;
}

.nw-subscription .nw-card-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nw-card-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nw-radio-container {
    margin-right: 5px;
}

.nw-radio-container input[type="radio"] {
    margin: 0;
    width: 18px;
    height: 18px;
}

.nw-card-title {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    color: #000;
}

.nw-card-right {
    text-align: right;
}

.nw-price {
    font-weight: 600;
    font-size: 16px;
    color: #000;
}

.nw-original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-left: 5px;
}

/* Subscription details styles */
.nw-subscription-details {
    padding: 0 20px 20px 30px;
    display: block;
}

.nw-subscription-details h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #000;
}

.nw-subscription-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

/* Checkmark bullets for subscription benefits */
.nw-subscription-details li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.nw-subscription-details li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background-color: #000;
    border-radius: 50%;
}

.nw-subscription-details li:after {
    content: '\2713';
    position: absolute;
    left: 4px;
    top: 0;
    color: #fff;
    font-size: 12px;
}

.nw-frequency-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.nw-frequency-label {
    font-size: 14px;
    color: #999;
}

.nw-frequency-select {
    width: 150px;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nw-subscription-container {
        gap: 20px;
    }
    
    .nw-subscription-card {
        margin-bottom: 15px;
    }
}
