/* 
    Theme Name: DTA
    Theme URI: 
    Author: tekoestudio
    Author URI: https://tekoestudio.com
    Description: Tema diseñado para el ...
    Version: 1.0
    Requires at least: 4.9.6
    Requires PHP: 5.2.4
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: flexbox, responsive, teko-grid, tekoestudio, css
    Text Domain: tkthemewp

*/

.categoria-imagen img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 100%;
    margin-bottom: 16px;
    height: 400px;
    object-fit: contain;
}
.theme-sidebar {
    width: 100%;
    float: none;
}
.productos-con-sidebar{
    margin-top: 0;
}
.producto-imagen img{
    max-width: 100%;
}

.about-us-section {
    margin-bottom: 100px;
    margin-top: 80px;
}
.about-us-section.style-two .about-main-content {
    display: flex;
    align-items: flex-start;
}

.about-us-section.style-two .text {
    width: 50%;
    padding-right: 30px;
}

.about-us-section.style-two .img-box {
    width: 50%;
}

.about-us-section.style-two .img-box img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .about-us-section.style-two .about-main-content {
        flex-direction: column;
    }

    .about-us-section.style-two .text,
    .about-us-section.style-two .img-box {
        width: 100%;
        padding-right: 0;
    }
}

.about-us-section.style-two .img-box {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 50px;
}

.about-us-section.style-two .img-box img {
    width: 80%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

.about-us-section.style-two .about-main-content {
    min-height: 500px;
    align-items: center;
}

.idiom-floating-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    font-family: inherit;
}

.idiom-dropdown {
    position: relative;
}

.idiom-dropdown summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 72px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
}

.idiom-dropdown summary::-webkit-details-marker {
    display: none;
}

.idiom-dropdown summary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.idiom-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.idiom-arrow {
    font-size: 14px;
    transition: transform 0.25s ease;
}

.idiom-dropdown[open] .idiom-arrow {
    transform: rotate(180deg);
}

.idiom-options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 90px;
    padding: 6px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(0, 0, 0, 0.08);
    animation: idiomFadeIn 0.2s ease;
}

.idiom-options a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 12px;
    color: #111111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.idiom-options a:hover {
    background: #f2f2f2;
}

.idiom-options a.active {
    background: #4e94d9;
    color: #ffffff;
}

@keyframes idiomFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .idiom-floating-menu {
        top: 14px;
        right: 14px;
    }

    .idiom-dropdown summary {
        padding: 9px 12px;
        min-width: 66px;
        font-size: 13px;
    }

    .idiom-options {
        min-width: 80px;
    }

    .idiom-options a {
        font-size: 13px;
        padding: 9px 10px;
    }
}