.pricing-table-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    font-family: inherit;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 350px;
    position: relative;
    color: #333333;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pricing-card.is-popular {
    border-color: #02CDFF;
    box-shadow: 0 0 20px rgba(2, 205, 255, 0.15);
    transform: scale(1.02);
}

.pricing-card.is-popular:hover {
    transform: scale(1.02) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #02CDFF;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(2, 205, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #02CDFF;
}

.card-icon i, .card-icon svg {
    font-size: 20px;
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.plan-name {
    font-size: 24px;
    margin: 0 0 15px 0;
    font-weight: 600;
    color: #1a1a1a;
}

.plan-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 30px;
    min-height: 63px;
}

.plan-price-display {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1;
    color: #1a1a1a;
}

.plan-meta {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #e8e8e8;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 10px 0;
}

.meta-row:not(:last-child) {
    border-bottom: 1px solid #e8e8e8;
}

.meta-value {
    font-weight: 700;
    color: #333333;
}

.delivery-toggles {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.toggle-group {
    display: flex;
    gap: 10px;
    width: 100%;
}

.toggle-btn {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    color: #666666;
    padding: 8px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    border-color: #02CDFF;
    color: #02CDFF;
    background: rgba(2, 205, 255, 0.05);
}

.feature-list {
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 14px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    color: #444444;
}

.feature-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: #02CDFF;
    font-weight: bold;
    font-family: sans-serif;
}

.action-btn {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.pricing-card:not(.is-popular) .action-btn {
    background-color: #f8f9fa;
    color: #333333;
    border: 1px solid #e8e8e8;
}

.pricing-card:not(.is-popular) .action-btn:hover {
    background-color: #e8e8e8;
}

.pricing-card.is-popular .action-btn {
    background-color: #02CDFF;
    color: #ffffff;
    border: 1px solid #02CDFF;
}

.pricing-card.is-popular .action-btn:hover {
    background-color: #00b0e0;
    border-color: #00b0e0;
}