/* 1. Container Layout */
.wps_sfw_subscription_wrapper {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Reduced gap for a tighter look */
}

/* 2. Base Card Styling (Desktop) */
.wps_sfw_subscription_inner_wrapper label,
.wps_wsp_onetimesimple_wrapper label {
    display: flex !important;
    align-items: center;
    padding: 25px 20px; 
    border: 2px solid #eee !important;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #ffffff !important;
    position: relative;
}

/* 3. Selected State (Active Blue) */
.wps_sfw_subscription_inner_wrapper:has(input:checked) label,
.wps_wsp_onetimesimple_wrapper:has(input:checked) label {
    background: #f0f7ff !important;
    border: 2px solid #3498db !important;
}

/* 4. "BEST VALUE" Badge */
.wps_sfw_subscription_inner_wrapper label::before {
    content: "2-Month Delivery - BEST VALUE";
    position: absolute;
    top: -12px; 
    left: 15px; 
    background: #3498db; 
    color: white;
    font-size: 10px; 
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 20;
}

/* 5. Radio Buttons */
.wps_sfw_subscription_inner_wrapper input[type="radio"],
.wps_wsp_onetimesimple_wrapper input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    margin: 0 15px 0 0;
    width: 22px; 
    height: 22px;
    border: 2px solid #3498db;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-grid;
    place-content: center;
}

.wps_sfw_subscription_inner_wrapper input[type="radio"]:checked::before,
.wps_wsp_onetimesimple_wrapper input[type="radio"]:checked::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #3498db;
}

/* 6. Text Formatting */
.custom-option-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.option-title {
    font-weight: 700;
    font-size: 16px; 
    color: #000;
    line-height: 1.2;
}

.option-desc {
    font-size: 13px; 
    color: #666;
    line-height: 1.3;
    margin-top: 3px;
}

.woocommerce-Price-amount {
    font-weight: 700;
    font-size: 18px; 
    color: #222;
}

/* 7. MOBILE OPTIMIZATIONS (The "Less Clunky" Fix) */
@media (max-width: 480px) {
    .wps_sfw_subscription_inner_wrapper label,
    .wps_wsp_onetimesimple_wrapper label {
        padding: 15px 12px; /* Much smaller padding */
        min-height: 70px;
    }

    .option-title {
        font-size: 14px; /* Smaller text for mobile */
    }

    .option-desc {
        font-size: 12px;
    }

    .woocommerce-Price-amount {
        font-size: 16px;
    }

    .wps_sfw_subscription_inner_wrapper label::before {
        font-size: 9px;
        top: -10px;
        padding: 2px 10px;
    }
    
    /* Move price to bottom if it's too cramped on small screens */
    .wps_sfw_subscription_inner_wrapper label,
    .wps_wsp_onetimesimple_wrapper label {
        flex-wrap: wrap; 
    }
}