.wp-block-button a,
.wp-block-button strong {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.wp-block-button a:hover {
    background-color: var(--wp--preset--color--accent-1) !important;
    color: var(--wp--preset--color--contrast) !important;
}

.ofertas-home {
    position: relative;
}
.ofertas-home__img {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 500px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.ofertas-home__img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #222222;
    background: linear-gradient(
        90deg,
        rgba(34, 34, 34, 0) 0%,
        rgb(34, 34, 34) 100%
    );
}
.ofertas-home__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.ofertas-home .wp-block-columns {
    position: relative;
    z-index: 1;
}

.hero-home h1 {
    line-height: 60px;
}
.hero-home h1 strong {
    font-size: 60px;
    position: relative;
}
@media (width > 768px) {
    .hero-home h1 strong {
        font-size: 80px !important;
    }
}
.hero-home h1 strong::before {
    content: "";
    width: 120%;
    height: 60px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(https://site.carlosmancilla.com/pam/wp-content/uploads/2025/09/linea-strong.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.wccb {
    min-height: 340px;
}
@media (width > 768px) {
    .wccb {
        min-height: 440px;
    }
}
.wccb .wccb-image {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

h2 strong {
    font-size: 40px;
    position: relative;
}
@media (width > 768px) {
    h2 strong {
        font-size: 60px;
    }
}
h2 strong::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(https://site.carlosmancilla.com/pam/wp-content/uploads/2025/09/linea-strong.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

.comentarios-carousel
    .wp-block-cloudcatch-splide-carousel-item
    > .wp-block-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}
.comentarios-carousel
    .wp-block-cloudcatch-splide-carousel-item
    > .wp-block-group
    figure {
    margin-bottom: 100px;
    text-align: right;
}

.variations .label {
    padding-bottom: 0 !important;
}
.variations .label label {
    margin-bottom: 0;
}

.filtro-categorias ul {
    list-style: none;
    padding: 0;
}
.filtro-categorias ul li a {
    text-decoration: none;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    display: block;
}

.wc-block-product {
    display: flex;
}

.producto-loop-plantilla {
    flex: 1;
}
.producto-loop-plantilla .wp-block-columns {
    gap: 0;
}
.producto-loop-plantilla .taxonomy-product_cat {
    margin-top: 0;
}
.producto-loop-plantilla .taxonomy-product_cat a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 300;
}
.producto-loop-plantilla .wc-block-components-product-price,
.producto-loop-plantilla .wp-block-woocommerce-product-price {
    margin-bottom: 0 !important;
}
.producto-loop-plantilla .wc-block-components-product-price del,
.producto-loop-plantilla .wp-block-woocommerce-product-price del {
    font-size: 12px;
    font-weight: 300;
}

.lista-footer {
    padding: 0;
    list-style: none;
}
.lista-footer li a {
    text-decoration: none;
    font-size: 14px;
}

.form-footer input {
    border: 0;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    background-color: transparent;
}
.form-footer input[type="submit"] {
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    width: auto;
    margin-top: 10px;
    font-weight: bold;
    border-radius: 50px;
    padding: 13px 25px;
    cursor: pointer;
    font-family: var(--wp--preset--font-family--plus-jakarta-sans);
}

.wpcf7-not-valid-tip {
    font-size: 12px !important;
}

.menu-lateral {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    visibility: hidden;
}
.menu-lateral__items {
    padding: 60px 40px !important;
    width: 400px;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}
.menu-lateral.active {
    opacity: 1;
    visibility: visible;
}
.menu-lateral.active .menu-lateral__items {
    transform: translateX(0);
}
.menu-lateral .cerrar-menu {
    cursor: pointer;
    transition: all 0.3s ease;
}
.menu-lateral .cerrar-menu:hover {
    transform: rotate(90deg);
}
.menu-lateral nav ul {
    width: 100%;
}
.menu-lateral nav ul li {
    width: 100%;
}
.menu-lateral nav ul li a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    font-weight: bold;
}
.menu-lateral nav ul li a::before {
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--wp--preset--color--accent-1);
    transition: all 0.3s ease;
}
.menu-lateral nav ul li a:hover {
    padding-left: 20px;
}
.menu-lateral nav ul li a:hover::before {
    width: 100%;
}
.menu-lateral .wp-block-social-links {
    margin-top: 20px !important;
    padding-top: 20px !important;
}

.menu-burger {
    cursor: pointer;
    transition: all 0.3s ease;
}
.menu-burger:hover {
    transform: rotate(90deg);
}

.yayextra-option-field-name {
    font-weight: 700;
}

.yayextra-addition-des {
    font-size: 12px;
}

.woocommerce-variation {
    margin: 0 !important;
}

.variations {
    margin-bottom: 0 !important;
}

.imgProductCont .wp-block-woocommerce-product-gallery {
    position: sticky;
    top: 100px;
}

.ofertas-home {
    padding-left: 20px !important;
}
@media (width > 1100px) {
    .ofertas-home {
        padding-left: 300px !important;
    }
}

.BtnWhatCont a {
    display: block;
}
@media (width > 1100px) {
    .BtnWhatCont a {
        display: inline-block;
    }
}

.descuento-popup {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--wp--preset--color--contrast);
    padding: 10px 30px;
    border-radius: 10px;
    margin-top: 0;
    font-weight: bold;
    color: #fff;
} /*# sourceMappingURL=charls.css.map */
