/* ===== Frisan Canarias - Custom Styles ===== */

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.dark ::-webkit-scrollbar-track {
    background: #1f2937;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* --- Cursor wait --- */
.cursor-wait {
    cursor: wait;
}

/* --- Body no scroll (modals) --- */
.body-no-scroll {
    overflow: hidden;
}

/* --- Honeypot field (anti-spam) --- */
.honeypot-field {
    position: absolute;
    left: -5000px;
    top: -5000px;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

/* --- Form validation states --- */
.input-valid {
    border-color: #22c55e !important;
}
.input-invalid {
    border-color: #ef4444 !important;
}
.validation-icon.fa-check-circle {
    color: #22c55e;
}
.validation-icon.fa-times-circle {
    color: #ef4444;
}

/* --- Smooth section transitions --- */
section {
    scroll-margin-top: 80px;
}

/* --- Button loading spinner --- */
.btn-loading {
    position: relative;
    pointer-events: none;
}
.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Print styles --- */
@media print {
    header, footer, #contacto, .no-print {
        display: none !important;
    }
    main {
        padding-top: 0 !important;
    }
}
