/*
Theme Name: Racing Pro
Theme URI: https://example.com/
Author: Mariano
Author URI: https://marianotimistit.com.ar/
Description: Child theme of Rasti Reusable for minor adjustments.
Version: 1.0.0
Template: rasti-reusable
Text Domain: racing-pro
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Child theme overrides below */
.wp-child-theme-racing-pro {

    /* Header */
    .header {

        .header__logo-container {
            pointer-events: none;
        }

        .header__nav-container {
            .navbar__menu {
                .menu {
                    li {        
                        &.menu-item-has-children {
                            & > .sub-menu {
        
                                a {
                                    font-size: 18px;
                                }
                            }
                        }
                    }
                }
            }
        }

        .header__nav-container-mobile {
        
            .navbar__menu-mobile {
    
                .menu {
                    background: #000000;
                }
            }
        }
    }

    /* Brand Logo */
    .brand-logo {
        
        .brand-logo__container {

            /* Mobile */
            @media (max-width: 767px) {
                padding-bottom: 0;
            }
        }
    }

    /* Hero Slider */
    .hero-slider { 
        background-color: #16ace3;
    }

    /* Full Width Video */
    .full-width-video {

        .full-width-video__header-text {
            font-size: 40px;
            font-weight: 700;
            color: white;
            text-align: center;
            max-width: 580px;
            margin: 0 auto;

            /* Mobile */
            @media (max-width: 767px) {
                font-size: 24px;
            }
        }

        .full-width-video__video-container {
            height: 550px;

            /* Mobile */
            @media (max-width: 767px) {
                max-width: 100%;
                height: 210px;
            }
        }
    }
    
    /* Single Product */
    &.single-products {

        .product-content {

            /* Mobile */
            @media (max-width: 767px) {
                padding-top: 0;
            }

            .product-content__summary-cta{
                background-color: #ED3E3D;
            }
        }

        .related-products {
            .related-products__back-cta {
                background-color: #ED3E3D;
            }
        }
    }

    &.category.category-valijas-contenedoras-2-en-1 { 

        .category-header {
    
            .category-title {
                position: relative;

                &::after {
                    content: url('../racing-pro/assets/images/2-en-1.png');
                    position: absolute;
                    top: -10px;
                    right: -54px;

                    /* Mobile */
                    @media (max-width: 767px) {
                        display: none;
                    }
                }
            }
        }
    }

    .footer {

        .footer__left-container {
            min-width: 232px;

            /* Mobile */
            @media (max-width: 767px) {
                min-width: none;
            }
        }

        .footer__center-container {

            & > a {
                pointer-events: none;
            }
        }
    }
}