/* Container */
.hhp-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

/* Toggle Switch */
.hhp-toggle-container {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.hhp-label { font-weight: 600; color: #333; }

.hhp-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}
.hhp-switch input { opacity: 0; width: 0; height: 0; }
.hhp-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.hhp-slider:before {
    position: absolute;
    content: "";
    height: 16px; width: 16px;
    left: 4px; bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .hhp-slider { background-color: #0066ff; }
input:checked + .hhp-slider:before { transform: translateX(26px); }

/* Grid */
.hhp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

/* Card */
.hhp-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.hhp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hhp-recommended {
    border-top: 4px solid #0066ff;
}

/* Typography & Price */
.hhp-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 10px;
    margin-top: 0; 
}

.hhp-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin: 10px 0;
}
.hhp-price .currency { font-size: 1.2rem; }
.hhp-period {
    font-size: 0.8rem;
    color: #888;
    font-weight: 400;
}

/* Features List */
ul.hhp-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: center;
}

/* --- STRONG OVERRIDE FOR LIST ITEMS --- */
ul.hhp-features li {
    padding: 1px 0;
    margin: 5px !important; /* This forces margin to zero */
    font-size: 0.88rem;
    color: #555;
    border-bottom: 1px solid #f9f9f9;
    line-height: 1.5;
}
/* -------------------------------------- */

.hhp-features li strong { color: #333; }

/* Button */
.hhp-btn {
    display: inline-block;
    background-color: #0066ff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    width: 100%;
    box-sizing: border-box;
}
.hhp-btn:hover { background-color: #0052cc; color: white; }