a {
    text-decoration: none !important;
}
.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
    transition: 0.3s ease;
}

.popular {
    border: 2px solid #000;
}

.price {
    font-size: 14px;
    margin-top: 15px;
}

.plan-name {
    font-size: 14px;
    font-weight: 600;
}

.badge-top {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.plan-features ul {
    width: 100%;
    margin-bottom: 26px;
    color: #333;
    font-size: 1rem;
    padding-left: 0;
    list-style: none;
    text-align: left;
}

ul {
    list-style: none !important;    
}

.plan-features li {
    margin-bottom: 12px;
    padding-left: 0px;
    position: relative;
    font-size: 12px;
    color: rgba(33, 37, 41, 0.75);
}

.plan-features li::before {
    content: "✓";
    color: rgba(33, 37, 41, 0.75);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1em;
    font-weight: bold;
    transform: translateX(-18px);
}


.addon-card {
    border: 1px solid #e6e6e6;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.addon-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
    transition: 0.3s ease;
}

.addon-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.addon-icon {
    background: linear-gradient(to right, #fa5c86, #a74cf2);
    color: white;
    border-radius: 50%;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.addon-icon i {
    font-size: 1.25rem;
}

.addon-title {
    font-weight: bold;
    margin: 0;
    font-size: 14px;
}

.addon-desc {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.btn-addon {
    min-width: 120px;
}