/* Pricing Table Container */
.wpt-pricing-table {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Pricing Column */
.wpt-pricing-column {
    flex: 1;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

.wpt-pricing-column:hover {
    transform: translateY(-5px);
}
/* Pricing Column End */

/* Popular Tag */
.wpt-popular-tag {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    width: 200px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Professional Plan Highlight */
.wpt-professional {
    border-width: 2px;
    border-style: solid;
    transform: scale(1.05);
}

.wpt-professional:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Header Section */
.wpt-pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.wpt-pricing-header h3 {
    font-size: 1.5rem;
    color: #111827;
    margin: 0 0 1rem 0;
}

/* Price Styling */
.wpt-price {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.wpt-regular-price {
    font-size: 1.5rem;
    color: #6b7280;
    text-decoration: line-through;
    opacity: 0.8;
}

.wpt-discount-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
}

.wpt-regular-price .wpt-currency,
.wpt-regular-price .wpt-amount {
    font-size: 1.25rem;
    font-weight: 500;
}

.wpt-discount-price .wpt-currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 0.25rem;
}

.wpt-period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: normal;
}

/* Add a "HEMAT XX%" label */
.wpt-price {
    position: relative;
}

.wpt-regular-price::after {
    content: attr(data-savings);
    position: absolute;
    top: -10px;
    right: -45px;
    background: #ef4444;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(15deg);
}

.wpt-description {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0;
}

/* Features List */
.wpt-features {
    margin: 2rem 0;
    padding: 0 1rem;
}

.wpt-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.4;
}

.wpt-check {
    color: #00AB4E;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    display: inline-flex;
    align-items: center;
}

/* Button Styling */
.wpt-footer {
    text-align: center;
}

.wpt-btn {
    display: inline-block;
    color: #00AB4E;
    background-color: transparent;
    border: 2px solid #00AB4E;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
}

.wpt-btn:hover {
    background-color: #00AB4E;
    color: white;
}

.wpt-professional .wpt-btn {
    background-color: #00AB4E;
    color: white;
    border: none;
    transition: transform 0.3s ease;
}

.wpt-professional .wpt-btn:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .wpt-pricing-table {
        gap: 1rem;
    }
    
    .wpt-pricing-column {
        width: calc(33.333% - 1rem);
    }
}

@media (max-width: 768px) {
    .wpt-pricing-table {
        flex-direction: column;
        align-items: center;
    }
    
    .wpt-pricing-column {
        width: 100%;
        max-width: 400px;
        margin-bottom: 2rem;
    }
    
    .wpt-professional {
        transform: none;
    }
    
    .wpt-professional:hover {
        transform: translateY(-5px);
    }
}
