.pt-wrapper-f59d3736 {
    font-family: inherit;
}

/* Toggle Switch */
.pt-toggle-wrapper-f59d3736 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    gap: 15px;
}
.pt-toggle-label-f59d3736 {
    font-weight: 600;
    color: #666;
    transition: color 0.3s ease;
    position: relative;
}
.pt-toggle-label-f59d3736.active {
    color: #333;
}
.pt-discount-badge-f59d3736 {
    position: absolute;
    top: -25px;
    right: -30px;
    background: #ff5a5f;
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 12px;
    white-space: nowrap;
}

.pt-toggle-switch-f59d3736 {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.pt-toggle-switch-f59d3736 input {
    opacity: 0;
    width: 0;
    height: 0;
}
.pt-toggle-switch-f59d3736 .slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
}
.pt-toggle-switch-f59d3736 .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}
.pt-toggle-switch-f59d3736 input:checked + .slider {
    background-color: #3b82f6; /* Will be overridden by primary color */
}
.pt-toggle-switch-f59d3736 input:checked + .slider:before {
    transform: translateX(26px);
}
.pt-toggle-switch-f59d3736 .slider.round {
    border-radius: 34px;
}
.pt-toggle-switch-f59d3736 .slider.round:before {
    border-radius: 50%;
}

/* Plans Grid */
.pt-plans-f59d3736 {
    display: grid;
    gap: 30px;
    align-items: center;
}

/* Cards */
.pt-card-f59d3736 {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center; /* Default fallback */
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 30px; /* Space for top icon if used */
}

.pt-card-f59d3736.is-highlighted {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: scale(1.03);
    z-index: 1;
}

/* Hover Effects */
.pt-card-f59d3736.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.pt-card-f59d3736.is-highlighted.hover-lift:hover {
    transform: translateY(-10px) scale(1.03);
}

.pt-card-f59d3736.hover-glow:hover {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

.pt-card-f59d3736.hover-scale:hover {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Ribbon/Badge */
.pt-badge-f59d3736 {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

/* Top Icon */
.pt-plan-icon-top-wrapper-f59d3736 {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
    transition: box-shadow 0.3s ease;
}
.pt-plan-icon-top-wrapper-f59d3736 i {
    font-size: 24px;
    color: #fff;
}
.pt-plan-icon-top-wrapper-f59d3736 svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* Card Header */
.pt-card-header-f59d3736 {
    margin-bottom: 20px;
}
.pt-card-header-f59d3736.has-top-icon {
    margin-top: 15px;
}
.pt-plan-icon-f59d3736 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #3b82f6;
}
.pt-plan-icon-f59d3736 svg {
    width: 40px;
    height: 40px;
    fill: #3b82f6;
}
.pt-plan-title-f59d3736 {
    font-size: 24px;
    margin: 0 0 5px 0;
    color: #333;
}
.pt-plan-tagline-f59d3736 {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}
.pt-price-wrapper-f59d3736 {
    display: flex;
    justify-content: center; /* Default fallback */
    align-items: baseline;
}
.pt-currency-f59d3736 {
    font-size: 24px;
    font-weight: 600;
    position: relative;
    top: -15px;
}
.pt-price-f59d3736 {
    font-size: 48px;
    font-weight: 700;
    color: #111;
    line-height: 1;
    transition: opacity 0.3s ease;
}
.pt-period-f59d3736 {
    font-size: 16px;
    color: #777;
    margin-left: 5px;
    transition: opacity 0.3s ease;
}
.pt-price-caption-f59d3736 {
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}

/* Features */
.pt-features-f59d3736 {
    text-align: left; /* Default fallback */
    margin-bottom: 30px;
    flex-grow: 1;
}
.pt-feature-item-f59d3736 {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Default fallback */
}
.pt-feature-item-f59d3736:last-child {
    border-bottom: none;
}
.pt-feature-item-f59d3736 i {
    color: #3b82f6;
    margin-right: 12px;
}

/* Button */
.pt-button-f59d3736 {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: #f8f9fa;
    color: #333;
    border: 2px solid #eee;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}
.pt-card-f59d3736.is-highlighted .pt-button-f59d3736 {
    background: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
}
.pt-button-f59d3736:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}
