/* =============================================
   RESPONSIVE - GUÍAS AFILIADOS PRO
   ============================================= */

/* Tablets y pantallas medianas */
@media screen and (max-width: 1024px) {
    .gap-builder-layout {
        grid-template-columns: 1fr !important;
    }
    
    .gap-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .gap-widgets-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Móviles grandes */
@media screen and (max-width: 768px) {
    /* Página de afiliados (login/registro) */
    .gap-auth-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Constructor */
    .gap-builder-header h1 {
        font-size: 2rem !important;
    }
    
    .gap-builder-header p {
        font-size: 1rem !important;
    }
    
    .gap-style-options {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .gap-color-picker {
        grid-template-columns: 1fr !important;
    }
    
    /* Dashboard */
    .gap-stats-grid {
        grid-template-columns: 1fr !important;
    }
    
    .gap-widgets-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Widget list */
    .gap-list-wrapper > div {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .gap-list-wrapper > div > div:first-child {
        width: 100% !important;
    }
    
    .gap-list-wrapper > div > div:last-child {
        width: 100% !important;
        text-align: left !important;
    }
}

/* Móviles pequeños */
@media screen and (max-width: 480px) {
    .gap-builder-header {
        padding: 30px 20px !important;
    }
    
    .gap-builder-header h1 {
        font-size: 1.6rem !important;
    }
    
    .gap-style-options {
        grid-template-columns: 1fr !important;
    }
    
    .gap-tour-item {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .gap-tour-thumb {
        width: 100% !important;
        height: 120px !important;
        margin-bottom: 10px !important;
    }
    
    .gap-code-box textarea {
        font-size: 11px !important;
    }
}