/* ============================================
   SnapBerry - Estilos principales
   ============================================ */

/* --- Tailwind Config Override (via script tag in HTML) --- */

/* --- Custom Gradients & Effects --- */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #8b5cf6, #3b82f6);
}

.bg-gradient-brand {
    background: linear-gradient(to right, #8b5cf6, #3b82f6);
}

/* --- Glassmorphism Panel --- */
.glass-panel {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Banner Dot Pattern --- */
.banner-dots-pattern {
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 20px 20px;
}

/* --- Form Selection States --- */
input[type="radio"]:checked + label,
input[type="checkbox"]:checked + label {
    border-color: #8b5cf6;
    background-color: rgba(139, 92, 246, 0.1);
}

/* --- Phone Country Code Dropdown Arrow --- */
#phone-country-code {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 24px;
}
