/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 19 2025 | 19:39:25 */
/* HERO SECTION */
#heroSucursales {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 42vw;
    position: relative;
    border-bottom: .01rem solid #dee2e6;
    background-image: url('https://outletdeplayeras.com.mx/wp-content/uploads/2025/06/Banner-Sucursales-Outlet-Playeras-min.png');
    background-size: cover;
    background-position: center;
}

.hero__row {
    display: flex;
    height: 100%;
}

.slide-content {
    display: flex;
    flex-direction: column;
    width: 38%;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
    padding: 0 0 0 2rem;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-wrap: balance;
    text-transform: uppercase;
    color: #011A42;
    margin: 0 0 1rem;
}

.slide-subtitle {
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #011A42;
    margin: 0 0 2.5rem;
}

.sucursales-dropdown {
    display: inline-block;
    position: relative;
    font-family: 'Outfit';
    margin: 0 0 1rem;
}

.dropdown-toggle {
    padding: .875rem 2rem;
    border: 2px solid transparent;
    border-radius: 5px;
    color: #fff;
    background-color: #011A42;
    cursor: pointer;
    min-width: 180px;
    text-align: left;
}

.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 100%;
    z-index: 10;
    margin-top: 2px;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background-color: #eee;
}

/* BRANCHES SECTION */
#branchesSection {
    display: flex;
    flex-direction: column;
    padding: 2% 0;
}

.branches__row {
    display: flex;
    max-width: 1200px;
    width: 95%;
    margin: auto;
    gap: 8.75vw;
}

.branches__row:nth-child(even) iframe {
    order: 2;
}

.branches__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 40.5%;
}

iframe {
    width: 49% !important;
    border-radius: 10px;
    padding: 2.5rem;
}

.branches__title {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 1.5rem;
    text-wrap: balance;
}

.branch__list {
    padding: 0;
    list-style: none;
}

.branch__list .branch__item {
    position: relative;
    padding: 0 0 0 2rem;
    margin: 0 0 1.5rem 0;
}

.branch__list .location::before {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url('https://outletdeplayeras.com.mx/wp-content/uploads/2025/05/location-icon.svg');
    background-size: contain;
}

.branch__list .phone::before {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url('https://outletdeplayeras.com.mx/wp-content/uploads/2025/05/phone-icon.svg');
    background-size: contain;
}

.branch__list .schedule::before {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url('https://outletdeplayeras.com.mx/wp-content/uploads/2025/05/schedule-icon.svg');
    background-size: contain;
}

.branch__link {
    text-decoration: none;
    color: #000;
    transition: all ease-in-out;
}

.branch__link:hover {
    text-decoration: underline;
}

/* MOBILE STYLES */
@media screen and (max-width: 768px) {
    /* HERO SECTION */
    #heroSucursales {
        height: 122vw;
        background-image: url('https://outletdeplayeras.com.mx/wp-content/uploads/2025/06/Banner-Sucursales-Outlet-Playeras-Mobile-min.png');
    }

    .slide-content {
        justify-content: flex-end;
        width: 100%;
        padding: 0 0 0 1rem;
    }

    .slide-title {
        font-size: 1.875rem;
        margin: 0 0 .5rem;
    }

    .slide-subtitle {
        margin: 0 0 1rem;
    }

    .slide-content .cta-button {
        padding: .875rem 2rem;
        margin: 0 0 1rem;
    }

    /* BRANCHES SECTION */
    #branchesSection {
        padding: 10% 0;
        gap: 12.5vw;
    }

    .branches__row {
        flex-direction: column;
        gap: 8vw;
    }

    .branches__content {
        width: auto;
    }

    iframe {
        width: auto !important;
        padding: 0;
        border-radius: 10px !important;
        aspect-ratio: 1/1 !important;
    }

    .branches__title {
        text-wrap: unset;
    }

    .branches__row:nth-child(even) iframe {
        order: unset;
    }
}