/* VQM Content Lock Banner Styles */

/* Visible content before lock */
.vqm-content-visible {
    position: relative;
}

/* Content lock banner container */
.vqm-content-lock-banner {
    position: relative;
    margin-top: -4rem;
    padding-top: 6rem;
    background: linear-gradient(
        to bottom,
        rgba(255, 253, 241, 0) 0%,
        rgba(255, 253, 241, 0.9) 15%,
        rgba(255, 253, 241, 1) 30%
    );
}

/* Fade overlay effect */
.vqm-content-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6rem;
    background: linear-gradient(
        to bottom,
        rgba(255, 253, 241, 0) 0%,
        rgba(255, 253, 241, 1) 100%
    );
    pointer-events: none;
}

/* Lock box */
.vqm-content-lock-box {
    max-width: 500px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    text-align: center;
    background: #f1efde;
    border: 1px solid #d6d1b7;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Lock icon */
.vqm-content-lock-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    color: #302328;
}

.vqm-content-lock-icon svg {
    width: 48px;
    height: 48px;
}

/* Title */
.vqm-content-lock-title {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    line-height: 1.3;
}

/* Description */
.vqm-content-lock-description {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Action buttons container */
.vqm-content-lock-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

@media (min-width: 480px) {
    .vqm-content-lock-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Button styles */
.vqm-content-lock-actions .vqm-btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    min-width: 160px;
}

.vqm-lock-subscribe-btn {
    background: #007cba;
    color: white !important;
}

.vqm-lock-subscribe-btn:hover {
    background: #005a87;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}

.vqm-lock-login-btn {
    background: #ffffff;
    color: #212529 !important;
    border: 2px solid #dee2e6;
}

.vqm-lock-login-btn:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    color: #212529 !important;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .vqm-content-lock-box {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .vqm-content-lock-title {
        font-size: 1.25rem;
    }

    .vqm-content-lock-description {
        font-size: 0.9375rem;
    }

    .vqm-content-lock-actions .vqm-btn {
        width: 100%;
        min-width: auto;
    }
}
