.sha-pricing-container {
    display: flex;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

@media (max-width: 768px) {
    .sha-pricing-container {
        flex-direction: column;
        padding: 10px;
    }
}

.sha-pricing-card {
    flex: 1;
    background: transparent;
    border-radius: 12px;
    padding: 32px;
}

.sha-pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.sha-pricing-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.sha-pricing-price-wrap {
    text-align: right;
}

.sha-pricing-original {
    color: #888;
    font-size: 16px;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.sha-pricing-current {
    color: #cccccc;
    font-size: 20px;
    font-weight: 500;
}

.sha-pricing-sale {
    color: #c8f547;
    font-size: 24px;
    font-weight: 600;
}

.sha-pricing-period {
    color: #888;
    font-size: 16px;
    font-weight: 400;
}

.sha-discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c8f547 0%, #a8d537 100%);
    color: #1a1a2e;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-top: 6px;
}

.sha-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.sha-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.sha-pricing-features li:last-child {
    margin-bottom: 0;
}

.sha-check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #ffffff;
    margin-top: 2px;
}

.sha-pricing-button {
    display: block;
    width: 100%;
    background: #c8f547;
    color: #1a1a2e;
    text-align: center;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.sha-pricing-button:hover {
    background: #d4ff4f;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(200, 245, 71, 0.3);
    color: #1a1a2e;
    text-decoration: none;
}

