/* Password Gate Overlay */
#brickquote-password-gate {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 24px;
}

.password-gate-content {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.password-gate-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary, #C75B39);
    margin-bottom: 24px;
}

.password-gate-content h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text, #1a1a1a);
}

.password-gate-content p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
}

.password-gate-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.password-gate-form input[type="password"],
.password-gate-form input[type="text"] {
    padding: 14px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.show-password-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    justify-content: center;
}

.show-password-label input {
    width: 16px;
    height: 16px;
}

.password-gate-form input:focus {
    border-color: var(--primary, #C75B39);
}

.password-gate-button {
    padding: 14px 16px;
    background: var(--primary, #C75B39);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.password-gate-button:hover {
    background: var(--primary-dark, #A84A2D);
}

.password-gate-error {
    color: #dc2626;
    font-size: 0.9rem;
    min-height: 1.2em;
    margin: 12px 0 0;
}

.password-gate-help {
    font-size: 0.85rem;
    color: #999;
    margin-top: 24px;
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .password-gate-content {
        padding: 32px 24px;
    }
    .password-gate-content h1 {
        font-size: 1.4rem;
    }
}
