/*
 Theme Name:   WooHoo Child Theme
 Theme URI:    http://http://woohoo.axiomthemes.com
 Description:  WooHoo Child Theme
 Author:       AxiomThemes
 Author URI:   http://axiomthemes.com
 Template:     woohoo
 Version:      1.0
 Tags:         flexible-header, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, full-width-template, microformats, post-formats, theme-options, threaded-comments, translation-ready
 Text Domain:  woohoo
*/


/* =Theme customization starts here
------------------------------------------------------------ */
/* ============================================
   Custom WooCommerce Shop Banner - FORCED FULL WIDTH
   ============================================ */

.custom_shop_banner_wrapper {
    position: relative;
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    margin-top: 0 !important;
    margin-bottom: 40px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* Si está dentro de un contenedor, sacarlo */
.content .custom_shop_banner_wrapper,
.content_wrap .custom_shop_banner_wrapper,
.page_content_wrap .custom_shop_banner_wrapper {
    position: relative !important;
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50% !important;
    margin-left: -50vw !important;
}

.custom_shop_banner {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

.custom_shop_banner_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.custom_shop_banner_content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.custom_shop_banner_title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    line-height: 1.2;
}

.custom_shop_banner_description {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

/* Ocultar título por defecto */
.woocommerce-products-header__title.page-title {
    display: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .custom_shop_banner {
        height: 300px;
    }
    
    .custom_shop_banner_title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .custom_shop_banner {
        height: 250px;
    }
    
    .custom_shop_banner_title {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .custom_shop_banner_description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .custom_shop_banner {
        height: 200px;
    }
    
    .custom_shop_banner_title {
        font-size: 28px;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }
    
    .custom_shop_banner_description {
        font-size: 14px;
    }
}