.angie-pricing-card-0bcab824 {
    display: flex;
    flex-direction: column;
    height: 100%;
    will-change: transform, box-shadow;
    overflow: hidden;
    padding: 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    width: 100%; /* Default width to be controlled by Elementor Container/Settings */
    direction: ltr; /* Default LTR */
    text-align: left;
}

.angie-pricing-card-0bcab824.angie-pricing-card-rtl {
    direction: rtl;
    text-align: right;
}

.angie-pricing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.angie-pricing-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.angie-pricing-card-media {
    flex-shrink: 0;
    margin-left: 15px;
    transition: transform 0.3s ease;
}
.angie-pricing-card-rtl .angie-pricing-card-media {
    margin-left: 0;
    margin-right: 15px;
}

.angie-pricing-card-0bcab824:hover .angie-pricing-card-media,
.angie-pricing-card-0bcab824:hover .angie-pricing-header-icon {
    transform: rotate(15deg);
}
.angie-pricing-card-rtl:hover .angie-pricing-card-media,
.angie-pricing-card-rtl:hover .angie-pricing-header-icon {
    transform: rotate(-15deg); /* Mirror tilt for RTL */
}

.angie-pricing-card-media img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.angie-pricing-header-icon {
    flex-shrink: 0;
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 80px; /* Default size for icon fallback */
    transition: transform 0.3s ease;
}
.angie-pricing-card-rtl .angie-pricing-header-icon {
    margin-left: 0;
    margin-right: 15px;
}

.angie-pricing-header-icon svg {
    width: 80px; /* Default width for svg fallback */
    height: 80px; /* Default height for svg fallback */
    fill: currentColor;
}

.angie-pricing-block {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.angie-pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 5px;
}
.angie-pricing-card-rtl .angie-pricing-currency {
    margin-right: 0;
    margin-left: 5px;
}

.angie-pricing-price {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.angie-pricing-subtext {
    width: 100%;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.angie-pricing-description {
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
    word-break: break-word; /* Ensure description text breaks and wraps */
    white-space: normal;
}

.angie-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.angie-pricing-feature-item {
    display: flex;
    align-items: center;
}

.angie-pricing-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 10px;
    color: #333;
}
.angie-pricing-card-rtl .angie-pricing-feature-icon {
    margin-right: 0;
    margin-left: 10px;
}

.angie-pricing-feature-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.angie-pricing-footer {
    margin-top: auto;
}

.angie-pricing-button {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 12px 24px;
    background: #000;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.angie-pricing-button:hover {
    background: #333;
    color: #fff;
}