

.package-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: #0000002e 0px 5px 10px;
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s ease;
    position: relative;
    min-width: 302px;
    max-width: 374px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    flex: 1;
}

.package-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgb(186 181 249 / 15%);
}

.package-thumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0, #e9ecef 100%);
    border-radius: 16px;
    height: 219px;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-item:hover .package-thumb img {
    transform: scale(1.05);
}

.package-thumb img {
    width: 100%;
    height: 100%;
    transition: transform .3s ease;
    object-fit: cover;
}
.package-contint {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.package-contint>a {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 900;
    color: var(--uicolor-2);
    display: block;
    line-height: 1.4;
    flex: 1;
}

.package-contint>a:hover {
    color: var(--uicolor);
}

.bp-content {
    color: var(--secondarytext);
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 16px;
    flex: 1;
    font-weight: 700;
}

.link-carts {
    /* width: 100%; */
    background: linear-gradient(135deg, #667eea 0, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    flex: 1;
}

.link-carts:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, .4);
    background: linear-gradient(135deg, #3933b3, var(--uicolor-2));
}

.link-carts a {
    color: white;
    gap: 7px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
}

.post-category {
}

.post-category i {
    font-size: 13px;
}


.subscription-option {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
    min-width: max-content;
    max-width: max-content;
    background: white;
}

.wl-attr-btn.active {
    background: var(--positive);
    color: white;
}
.subscription-option input[type=radio] {
    display: none;
}
.wl-attr-btn.is-active, .wl-attr-btn:hover {
    background: var(--uicolor);
    color: #fff;
    border-color: var(--uicolor);
}
.subscription-option label {
    padding: 8px 12px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    color: #666;
    min-width: max-content;
}
.subscription-options.wl-attr-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 11px;
    width: 100%;
    justify-content: center;
}

.price-section {
    padding: 10px;
    background: var(--background);
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 115px;
}

.price-display.wl-price-display {
    font-size: 16px;
    font-weight: 300;
}

span.price-amount {
    font-size: 40px;
    font-weight: 600;
}

span.currency {
    font-size: 19px;
    font-weight: 700;
}

.link-carts-box {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: space-between;
    margin-top: 14px;
}

.package-btn {
    color: var(--uicolor-2);
    text-decoration: none;
    background: white;
    border: 1px solid #e5e7eb;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
}

.package-btn:hover {
    background: var(--uicolor);
    color: white;
}

