/*
Theme Name: CPU Storefront
Author: CPU Digitall
Description: Tema Storefront para CPU Digitall 
Template: futurio-storefront
Version: 1.0.3
Tested up to: 6.7
Requires PHP: 5.6
License: GNU General Public License v3
License URI: http://www.gnu.org/licenses/gpl.html
Tags: one-column, two-columns, right-sidebar, left-sidebar, custom-background, custom-header, full-width-template, rtl-language-support, custom-menu, editor-style, featured-images, translation-ready, custom-logo, threaded-comments, footer-widgets, blog, e-commerce
Text Domain: futurio
*/

/*******************************************/
/**       ESTILOS DEL FOOTER              **/
/*******************************************/

/********************/
/** Footer General **/
/********************/
footer {
    background-color: #3f3f3f;
    border-top: 2px solid #373737;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    max-width: max-content;  
    margin: 0 auto;
}

.footer-column {
    padding: 0px;
    border: 0px solid #ddd;
    text-align: center;
    color: #666;

}

.footer-column h3 {
    color: #AC8C2E;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

/*********************/
/** Columnas Footer **/
/*********************/
.footer-column-logo {
    padding: 0px;
    border: 0px solid #ddd;
    text-align: center;

}

.footer-column-logo h3 {
    color: #AC8C2E;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-column-menu {
    padding: 0px;
    border: 0px solid #ddd;
    text-align: center;
}

.footer-column-menu h3 {
    color: #AC8C2E;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

/**********************/
/** Col1.Footer Logo **/
/**********************/
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 10px;
}

.logo img {
    
    height: auto;
}

/**********************/
/** Col1.Footer RRSS **/
/**********************/
.social-section{
    display: inline-flex;
    flex-direction: inline-flex;
    align-items: center;
    justify-content: center;
    
}

.social-text {
    display: inline-flex;
    color: #ffffff;
    font-size: 11px;
    text-transform: uppercase;
    margin: 15px 0 10px 0;
    font-weight: 600;
}

/* Iconos de redes sociales */
.social-icons {
    display: inline-flex;
    gap: 0px;
    justify-content: center;
    width: 140px;
    height: auto;
}

.social-icons a {
    width: 35px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s;
    font-size: 24px;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/*************************/
/** Col2y3. Footer Menu **/
/*************************/
.footer-column-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column-menu ul li {
    margin-bottom: 0px;
}

.footer-column-menu ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 13px;
}

.footer-column-menu ul li a:hover {
    color: #6ec1e4;
}


/**************************/
/** Col4.Footer Contacto **/
/**************************/
.contact-section{
    display: flex;
    flex-direction: inline-flex;
    align-items: center;
    justify-content: center;
    
}

.contact-icons {
    display: inline-flex;
    gap: 0px;
    justify-content: center;
    width: 140px;
    height: auto;
    margin-top: 40px;
    position: relative;

}

.contact-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s;
    text-decoration: none;
}

.contact-icons a:hover {
    transform: scale(1.2);
}

/**********************/
/** Footer Copyright **/
/**********************/
.footer-bottom {
    background-color: #3f3f3f;
    padding: 15px;
    text-align: center;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    border-top: px solid #ddd;
}


/* Menú desplegable móvil - oculto por defecto */
.mobile-menu-toggle {
    display: none;
}



/* ========================================
   RESPONSIVE: Móvil
   ======================================== */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-column .footer-column-logo .footer-column-menu {
        padding: 20px;
        border: 1px solid #AC8C2E;
        border-bottom: none;
    }

    .footer-column:last-of-type {
        border-bottom: 1px solid #AC8C2E;
    }

    /* Logo más pequeño en móvil */
    .logo {
        max-width: 120px;
        margin-bottom: 15px;
    }

    .social-text {
        font-size: 10px;
        margin: 12px 0 8px 0;
    }
    
    .social-icons {
        margin-bottom: 10px;

    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .contact-icons a {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    /* Títulos de sección visibles */
    .footer-column h3 {
        display: block;
        margin-bottom: 12px;
    }




    /* ---------- MENÚS DESPLEGABLES EN FOOTER ---------- */
    .mobile-menu-toggle {
    display: none; /* oculto por defecto (solo móvil) */
    background: none;
    border: none;
    color: #AC8C2E; /* color dorado como el resto del footer */
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    }

    .mobile-menu-toggle:after {
    content: ' ▼';
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s;
    }

    /* Ocultar el menú por defecto en móvil */
    .footer-menu-container {
    display: block;
    }

    /* Cuando está desplegado */
    .footer-column-menu.open .mobile-menu-toggle:after {
    transform: rotate(180deg);
    }

    /* Mostrar comportamiento móvil */
    @media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    .footer-menu-container {
        display: none;
    }
    .footer-column-menu.open .footer-menu-container {
        display: block;
    }
    .footer-column-menu h3{
        display: none;
    }
    }
}

    /******************************************************/
    /**       OCULTAR ELEMENTOS EN PAGINA DE TIENDA      **/
    /******************************************************/
    /* Ocultamos elementos predeterminados que no queremos o que tenemos en otra parte customizados */
    /* Ocultar breadcrumb */
    .woocommerce-breadcrumb {
        display: none !important;
    }

    /* Ocultar título "Tienda" */
    .woocommerce-products-header__title,
    .page-title {
        display: none !important;
    }

    /* Ocultar contador de resultados */
    .woocommerce-result-count {
        display: none !important;
    }

    /* Ocultar selector de ordenación */
    .woocommerce-ordering {
        display: none !important;
    }