        .pricing-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    text-align: center;
}

.plan-select {
    margin-bottom: 15px;
}

.plan-select select {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.pricing-card h3 {
    color: #0A165E;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.price {
    
    margin: 10px 0;    
    font-size: 45px;
    font-weight: 800;
    color: #0a165e;
}

.features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 30px 0;
}

.features li {
    margin: 10px 0;
}

.features li.inactive {
    color: #ccc;
    text-decoration: line-through;
}

.button-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.add-to-cart {
    flex: 1.3;
    padding: 12px;
    background-color: #2B4DFF;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
}

.learn-more {
    flex: 0.7;
    background: none;
    border: none;
    color: #888;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}
        
        /* Price card styling */
        .pricing-card {
            padding: 2.5rem;
            border-radius: 15px;
            background: #fff;
            box-shadow: 0 25px 60px rgba(0.5, 0.5, 0.5, 0.2);
            transition: all 0.3s ease;
            border: none;
            text-align: center;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        /* Price table styling */
        .resume4pro-price-table {
            margin: 1.5rem 0;
        }

        .price-row {
            padding: 1px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }

        .price-col {
            text-align: center;
            display: flex;
            align-items: center;
        }

        .price .currency {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-color);
            vertical-align: top;
            margin-right: 2px;
            line-height: 1;
        }

        .price .amount {
            font-size: 2.5rem;            
            font-family: Sora, sans-serif;
            color: var(--heading-color);
            font-weight: 800;
            line-height: 1;
            display: inline-block;
        }

        .original-price {
            font-size: 1.7rem;
            color: #94a3b8;
            text-decoration: line-through;
            font-weight: 700;
            white-space: nowrap;
            line-height: 1;
        }

        .discount-text {
            color: #22c55e;
            font-size: 28px;
            font-weight: 800;
            /*padding: 0.5rem 1rem;*/
            border-radius: 2rem;
            white-space: nowrap;
            display: inline-block;
            line-height: 1;
        }

        .plan-alert {
            color: #dc2626;
            text-align: center;
            padding: 0.5rem;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .plan-alert {
            font-size: 0.875rem;
            padding: 0.5rem;
            border-radius: 0.5rem;
            background-color: rgba(220, 38, 38, 0.1);
        }

        .plan-alert i {
            margin-right: 0.25rem;
        }

        /* Feature list styling */
        .resume4pro-price-features {
            margin-top: 2px;
            margin-bottom: 2rem;
            padding: 0;
            list-style: none;
        }

        .resume4pro-price-features li {
            margin: 8px 0;
            color: #666;
            font-size: 20px;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .resume4pro-price-features li.available i {
            color: #22c55e;
        }

        .resume4pro-price-features li.unavailable {
            color: #999;
        }

        .resume4pro-price-features li.unavailable i {
            color: #dc2626;
        }

        /* Button styling */
        .resume4pro-button-group {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-top: 2rem;
            padding: 0 1rem;
        }


        /* Improve card interaction */
        .pricing-card {
            border-radius: 18px;
            background: #fff;
            box-shadow: 0 25px 60px rgba(0.5, 0.5, 0.5, 0.2);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-color: var(--primary-color);
        }

        /* Plan selector styling */
        .plan-select {
            margin-bottom: 1.5rem;
        }

        .resume4pro-form-control {
            padding: 0.75rem 1rem;
            border-radius: 8px;
            border: 1px solid #ddd;
            width: 100%;
            font-size: 1rem;
            color: #333;
            transition: all 0.3s ease;
        }

        .resume4pro-form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
        }

        /* Delivery option styling */
        .delivery-option {
            gap: 0.5rem !important;
        }

        .delivery-option i {
            color: var(--primary-color) !important;
        }

        .delivery-option span {
            white-space: nowrap;
        }

        .delivery-select {
            width: 100%;
            margin-top: 0.5rem;
            padding: 0.5rem;
            font-size: 0.875rem !important;
            border-radius: 6px;
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
        }

        .delivery-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
            outline: none;
        }

        .delivery-select option {
            padding: 0.5rem;
        }

        /* Notification styling */
        .notification {
            position: fixed;
            bottom: 20px;
            right: 20px;
            padding: 1rem 1.5rem;
            border-radius: 0.5rem;
            background: white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            z-index: 1000;
            animation: slideIn 0.3s ease-out;
        }

        .notification.success {
            border-left: 4px solid #22c55e;
        }

        .notification.error {
            border-left: 4px solid #dc2626;
        }

        .notification i {
            font-size: 1.25rem;
        }

        .notification.success i {
            color: #22c55e;
        }

        .notification.error i {
            color: #dc2626;
        }

        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* Responsive adjustments for services/pricing cards */
        @media (max-width: 992px) {
            .pricing-card {
                padding: 1.75rem;
            }

            /* Stack price columns vertically on narrower screens */
            .price-row {
                /*flex-direction: column; */
                gap: 0.6rem;
                align-items: center;
                justify-content: center;
            }

            .price-col {
                
                justify-content: center;
                flex-direction: row;
            }

            /* Make selectors and inputs full width */
            .plan-select .resume4pro-form-control,
            .delivery-select,
            .resume4pro-form-control {
                width: 100%;
            }

            /* Buttons stack and become full width for easy tapping */
            .resume4pro-button-group {
                flex-direction: column;
                gap: 0.75rem;
                padding: 0;
            }

            .resume4pro-button-group .resume4pro-default-btn,
            .resume4pro-button-group .resume4pro-icon-btn {
                width: 100%;
                justify-content: center;
            }

            .discount-text { font-size: 20px; }
        }

        @media (max-width: 768px) {
            .pricing-card {
                padding: 1.1rem;
                border-radius: 12px;
            }

            .price .currency { font-size: 1.2rem; }
            .price .amount { font-size: 1.6rem; }
            .original-price { font-size: 22px; }
            .discount-text { font-size: 22px; padding: 0.35rem 0.8rem; }

            .resume4pro-price-features li { font-size: 15px; gap: 0.6rem; }

            .resume4pro-pricing-price p { font-size: 0.95rem; }

            /* Reduce spacing for delivery options and selectors */
            .delivery-select { font-size: 0.9rem; }

            /* Ensure notifications don't overflow on small screens */
            .notification { right: 10px; left: 10px; }
        }

        @media (max-width: 480px) {
            .pricing-card { padding: 0.9rem; }
            .price .amount { font-size: 1.4rem; }
            .testi-grid { gap: 8px; }
            .resume4pro-price-features li { font-size: 17px; }
            .resume4pro-button-group { gap: 0.5rem; }
        }

/* small fraction styling for psychological .99 display */
        .pricing-card .price .fraction,
        .pricing-card .original-price .fraction {
            font-size: 18px;
            margin-left: 0.12rem;
            opacity: 100%;
        }