.pricing-skeleton {
    cursor: default;
    pointer-events: none;
}

.pricing-skeleton:hover {
    transform: none;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.sk-line {
    border-radius: 8px;
    background: linear-gradient(90deg, #ececec 25%, #f5f5f5 37%, #ececec 63%);
    background-size: 400% 100%;
    animation: sk-shimmer 1.4s ease infinite;
    margin: 0 auto;
}

@keyframes sk-shimmer {
    0% { background-position: 100% 50%; }
    100% { background-position: 0 50%; }
}

.sk-title {
    width: 60%;
    height: 28px;
    margin-bottom: 15px;
}

.sk-badge {
    width: 45%;
    height: 22px;
    border-radius: 25px;
    margin-bottom: 25px;
}

.sk-price {
    width: 50%;
    height: 50px;
    margin-bottom: 30px;
}

.sk-btn {
    width: 100%;
    height: 48px;
    border-radius: 30px;
    margin-bottom: 35px;
}

.sk-feat {
    width: 100%;
    height: 16px;
    margin-bottom: 15px;
}

.sk-feat:last-child {
    width: 70%;
}

.pricing-error {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 15px;
}

.pricing-error a {
    color: var(--secondary-dark);
    font-weight: 600;
    text-decoration: none;
}

.pricing-error a:hover {
    text-decoration: underline;
}