body {
    padding-top: 175px;
    min-width: 300px;
}
header .line__dmv {
    float: none;
    height: auto;
    text-wrap: balance;
}
header .line__dmv .contenedor {
    display: flex;
}
header .line__dmv .dmv_infobar {
    text-transform: uppercase;
    text-align: center;
    width: auto;
    flex: 1;
    float: none;
    line-height: 1.4;
    padding: 4px 0;
}
header .line__dmv .social {
    width: auto;
    float: none;
}

.dmv_menu {
    background: #3b8a36;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
}
.dmv_menu_nav {
    float: none;
    display: flex;
    justify-content: space-between;
}
.dmv_menu_item {
    max-width: 200px;
    width: 100%;
    text-align: center;
    position: relative;
}
.dmv_menu_link {
    transition: all 0.3s ease-in-out;
    padding: 12px;
    display: block;
    background: #3b8a36;
    border-bottom: 2px solid rgba(255, 255, 255, 0);
}
.dmv_menu_link:hover,
.dmv_menu_link__activo {
    padding: 12px;
    display: block;
    background: #93c120;
    border-bottom: 2px solid rgba(255, 255, 255, 1);
}
.dmv_menu_link__ofertas,
.dmv_menu_link__ofertas:hover {
    background: #fda23f;
}
.dmv_menu_submenu {
    position: absolute;
    top: 100%;
    width: 100%;
    display: none;
    background: #3b8a36;
    z-index: 99999;
}
.dmv_menu_item:hover .dmv_menu_submenu {
    display: block;
}

.dmv_menu_bg {
    display: none;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 320px) and (max-width: 1080px) {
    body {
        padding-top: 130px;
    }
    .dmv_menu {
        width: 100%;
        opacity: 0;
        transition: all 0.3s ease-in-out;
    }
    .dmv_menu__activo {
        opacity: 1;
    }
    .dmv_menu__activo .dmv_menu_bg {
        transform: translateX(0);
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 10;
    }
    .dmv_menu_nav {
        transform: translateX(100%);
        flex-direction: column;
        align-items: end;
        justify-content: flex-start;
        overflow-y: auto;
        width: 60%;
        left: auto;
        right: 0;
        padding: 24px;
        z-index: 30;
        transition: all 0.3s ease-in-out;
    }
    .dmv_menu__activo .dmv_menu_nav {
        transform: translateX(0);
    }

    .dmv_menu_item .btn {
        margin: 0;
        padding: 0 12px;
        text-align: left;
        border-radius: 4px;
    }
    .dmv_menu_item {
        max-width: none;
        text-align: left;
        margin: 0 auto;
        margin-bottom: 12px;
    }
    .dmv_menu_submenu {
        display: block;
        position: relative;
        top: 0;
        text-indent: 6px;
    }
}

.dmv_banners {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 36px;
    color: #fff;
    text-align: center;
}
.dmv_banners_wrap {
    display: flex;
    justify-content: space-around;
    align-items: start;
    margin-top: 88px;
    margin-bottom: 24px;
}
.dmv_banners_item {
    width: 300px;
    background: #93c120;
    border-radius: 24px;
    display: block;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0);
}
.dmv_banners_item:hover {
    transform: scale(1.1) translateY(-24px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
    background: #3b8a36;
}
.dmv_banners_img {
    display: block;
    width: 100%;
    margin-top: -64px;
}
.dmv_banners_nombre {
    display: block;
    margin-bottom: 24px;
}

.dmv_banners_item__1 {
    /*background: #3b8a36;*/
    /*width: 380px;*/
}

@media only screen and (min-width: 320px) and (max-width: 1080px) {
    .dmv_banners_wrap {
        flex-direction: column;
        gap: 84px;
        align-items: center;
        justify-content: center;
    }
    .dmv_banners_item {
        width: 80% !important;
        min-width: 280px;
        max-width: 320px;
    }
}

.dmv_productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.dmv_productos_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    background: #fff;
    transition: 0.3s all ease;
    padding: 20px;
    box-sizing: border-box;
    max-width: 400px;
}
.dmv_productos_item:hover {
    box-shadow: 0 0 15px 0 #e6e6e6;
}
.dmv_productos_item_arriba {
    position: relative;
    padding-top: 20px;
}
.dmv_productos_item_marca {
    position: absolute;
    top: 20px;
    left: 20px;
}
.dmv_productos_item_arriba_marca_img {
    width: 80px;
}
.dmv_productos_item_descuento {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    border-radius: 100%;
    line-height: 50px;
    text-align: center;
    font-weight: 600;
}
.dmv_productos_item_imagen {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    margin: 0 auto;
}
.dmv_productos_item_tamano {
    position: absolute;
    left: 20px;
    bottom: 10px;
}
.dmv_productos_item_tamano i {
    position: relative;
    bottom: 0;
    width: 21px;
    height: 28px;
    -webkit-border-radius: 63px 63px 63px 63px / 108px 108px 72px 72px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    float: left;
    border: 1px solid #94c120;
    margin-right: 3px;
    background: #fff;
}
.dmv_productos_item_tamano i:nth-child(2) {
    width: 18px;
    height: 25px;
    bottom: -3px;
}
.dmv_productos_item_tamano i:nth-child(3) {
    width: 16px;
    height: 21px;
    bottom: -7px;
}
.dmv_productos_item_tamano i:nth-child(4) {
    width: 15px;
    height: 20px;
    bottom: -8px;
}
.dmv_productos_item_tamano i.active {
    background: #94c120;
}
.dmv_productos_item_detalle {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.dmv_productos_item_categoria {
    color: #333;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.dmv_productos_item_nombre {
    display: block;
    width: 100%;
    color: #3f3f3f;
    font-weight: 700;
    font-size: 14px;
    margin: 5px 0;
    height: 34px;
    overflow: hidden;
}
.dmv_productos_item_precio {
    color: #81c301;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}
.dmv_productos_item_precio_antes {
    color: #999;
    font-weight: 500;
    margin-top: -3px;
    font-size: 13.4px;
}
.dmv_productos_item_flex {
    flex: 1;
}

.dmv_productos_item_botones .cant {
    display: none;
    position: relative;
    box-shadow: 0 0 15px 0 #e4e4e4;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.dmv_productos_item_botones .cant button {
    position: absolute;
    top: 0;
    height: 48px;
    width: 48px;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.dmv_productos_item_botones .cant .cant-min {
    left: 0;
}
.dmv_productos_item_botones .cant .cant-mas {
    right: 0;
}

.dmv_productos_item_botones .cant input {
    float: left;
    width: 100%;
    line-height: 46px;
    text-align: center;
    border: 0;
    padding-right: 45px;
    color: #333;
    font-weight: 700;
    font-size: 16px;
    cursor: initial;
}

.dmv_productos_item_botones .cant label {
    position: absolute;
    left: calc(50% - 10px);
    color: #333;
    font-weight: 700;
    font-size: 16px;
    text-align: left;
    line-height: 48px;
    text-transform: uppercase;
}
