:root {
    --aw-bg: #f7f4ed;
    --aw-paper: #fcfaf5;
    --aw-green: #39452c;
    --aw-green-dark: #29331f;
    --aw-brown: #8c5a35;
    --aw-gold: #c89b62;
    --aw-text: #24231f;
    --aw-muted: #716d64;
    --aw-border: #ded9cf;
}

.aw-home {
    margin: 0;
    background: var(--aw-bg);
    color: var(--aw-text);
    font-family: inherit;
}

.aw-home * {
    box-sizing: border-box;
}

.aw-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


/* HERO */

.aw-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(15,12,8,.92) 0%,
            rgba(15,12,8,.62) 42%,
            rgba(15,12,8,.15) 75%
        ),
        linear-gradient(
            135deg,
            #372418,
            #8d5c35
        );

    color: #fff;
}

.aw-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 72% 45%,
            rgba(188,125,67,.35),
            transparent 38%
        );
}

.aw-hero-content {
    position: relative;
    z-index: 2;
}

.aw-eyebrow {
    margin: 0 0 10px;
    color: var(--aw-gold);
    font-family: Georgia, serif;
    font-size: clamp(23px, 3vw, 35px);
    font-style: italic;
}

.aw-hero h1 {
    max-width: 530px;
    margin: 0;
    color: white;
    font-size: clamp(58px, 8vw, 98px);
    font-weight: 800;
    letter-spacing: -3px;
    line-height: .85;
}

.aw-hero h1 strong {
    display: block;
}

.aw-hero-description {
    margin: 28px 0 25px;
    color: #fff;
    font-size: 20px;
    line-height: 1.45;
}

.aw-button {
    display: inline-flex;
    gap: 18px;
    align-items: center;
    padding: 15px 24px;
    border-radius: 4px;

    background: var(--aw-green);
    color: white !important;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none !important;
    text-transform: uppercase;

    transition: .2s ease;
}

.aw-button:hover {
    background: var(--aw-green-dark);
    transform: translateY(-2px);
}


/* BENEFICIOS */

.aw-benefits {
    border-bottom: 1px solid var(--aw-border);
    background: var(--aw-paper);
}

.aw-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.aw-benefits article {
    display: flex;
    gap: 15px;
    padding: 28px 25px;
    border-right: 1px solid var(--aw-border);
}

.aw-benefits article:last-child {
    border-right: 0;
}

.aw-icon {
    flex: 0 0 auto;
    font-size: 36px;
    color: var(--aw-green);
}

.aw-benefits h3 {
    margin: 0 0 6px;
    font-size: 13px;
    text-transform: uppercase;
}

.aw-benefits p {
    margin: 0;
    color: var(--aw-muted);
    font-size: 12px;
    line-height: 1.5;
}


/* TITULOS */

.aw-section-heading {
    margin-bottom: 30px;
    text-align: center;
}

.aw-section-heading h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 700;
    text-transform: uppercase;
}

.aw-section-heading > span {
    display: block;
    width: 38px;
    height: 2px;
    margin: 13px auto 0;
    background: var(--aw-green);
}

.aw-section-heading.aw-left {
    text-align: left;
}

.aw-section-heading.aw-left > span {
    margin-left: 0;
}


/* PRODUCTOS */

.aw-products {
    padding: 55px 0 70px;
}

.aw-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.aw-product-card {
    overflow: hidden;
    border: 1px solid var(--aw-border);
    border-radius: 8px;

    background: white;

    box-shadow: 0 4px 15px rgba(0,0,0,.035);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.aw-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0,0,0,.09);
}

.aw-product-card a {
    color: inherit !important;
    text-decoration: none !important;
}

.aw-product-image {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #ebe5da;
}

.aw-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.aw-product-card:hover img {
    transform: scale(1.035);
}

.aw-product-info {
    padding: 17px 18px 20px;
    text-align: center;
}

.aw-product-info h3 {
    min-height: 42px;
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.3;
}

.aw-price {
    min-height: 25px;
    margin-bottom: 15px;
    color: var(--aw-muted);
    font-size: 14px;
}

.aw-product-button {
    display: block;
    width: 100%;
    padding: 10px 15px;
    border-radius: 4px;

    background: var(--aw-green);
    color: white;

    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}


/* NOSOTROS */

.aw-about {
    padding: 20px 0 75px;
}

.aw-about-grid {
    display: grid;
    grid-template-columns: .85fr 1.4fr;
    gap: 55px;
    align-items: center;
}

.aw-reason {
    display: flex;
    gap: 17px;
    margin-bottom: 23px;
}

.aw-reason > span {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;

    border: 1px solid var(--aw-green);
    border-radius: 50%;

    color: var(--aw-green);
    font-size: 24px;
}

.aw-reason h3 {
    margin: 0 0 4px;
    font-size: 15px;
}

.aw-reason p {
    margin: 0;
    color: var(--aw-muted);
    font-size: 13px;
    line-height: 1.5;
}

.aw-about-image {
    overflow: hidden;
    border-radius: 8px;
}

.aw-about-image img {
    display: block;
    width: 100%;
    min-height: 460px;
    object-fit: cover;
}


/* MOMENTOS */

.aw-moments {
    padding: 34px 0;
    background:
        linear-gradient(
            rgba(35,43,28,.92),
            rgba(35,43,28,.92)
        );

    color: white;
}

.aw-section-heading.aw-light h2 {
    color: white;
}

.aw-section-heading.aw-light > span {
    background: white;
}

.aw-moments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.aw-moments article {
    padding: 10px 20px;
    text-align: center;
}

.aw-moments strong {
    display: block;
    margin-bottom: 8px;
    font-size: 36px;
    font-weight: 400;
}

.aw-moments p {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}


/* CONFIANZA */

.aw-trust {
    border-top: 1px solid var(--aw-border);
    border-bottom: 1px solid var(--aw-border);
    background: var(--aw-paper);
}

.aw-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.aw-trust article {
    padding: 25px 20px;
    text-align: center;
}

.aw-trust strong,
.aw-trust span {
    display: block;
}

.aw-trust strong {
    margin-bottom: 4px;
    font-size: 12px;
    text-transform: uppercase;
}

.aw-trust span {
    color: var(--aw-muted);
    font-size: 11px;
}


/* TABLET */

@media (max-width: 950px) {

    .aw-benefits-grid,
    .aw-product-grid,
    .aw-moments-grid,
    .aw-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aw-about-grid {
        grid-template-columns: 1fr;
    }

}


/* MOVIL */

@media (max-width: 600px) {

    .aw-container {
        width: min(100% - 28px, 1180px);
    }

    .aw-hero {
        min-height: 540px;
    }

    .aw-hero h1 {
        letter-spacing: -2px;
    }

    .aw-benefits-grid,
    .aw-product-grid,
    .aw-moments-grid,
    .aw-trust-grid {
        grid-template-columns: 1fr;
    }

    .aw-benefits article {
        border-right: 0;
        border-bottom: 1px solid var(--aw-border);
    }

    .aw-product-grid {
        gap: 15px;
    }

    .aw-about {
        padding-top: 10px;
    }

    .aw-about-image img {
        min-height: 330px;
    }

}


/* =========================================================
   PÁGINA DE PREVISUALIZACIÓN - FULL WIDTH
   ========================================================= */

body.page-id-505 .content-area,
body.page-id-505 .site-main,
body.page-id-505 .entry-content,
body.page-id-505 .content-container,
body.page-id-505 .site-container {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.page-id-505 .entry-content-wrap {
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

body.page-id-505 .entry-header,
body.page-id-505 .entry-title,
body.page-id-505 .post-navigation,
body.page-id-505 .entry-footer {
    display: none !important;
}

body.page-id-505 .aw-home {
    width: 100%;
    max-width: none;
    margin: 0;
}

body.page-id-505 #primary {
    width: 100% !important;
    max-width: none !important;
}

body.page-id-505 #secondary {
    display: none !important;
}


/* =========================================================
   HERO FOTOGRÁFICO V2
   ========================================================= */

body.page-id-505 .aw-hero {
    min-height: 610px;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    align-items: center;
}

body.page-id-505 .aw-hero-overlay {
    background:
        radial-gradient(
            circle at 72% 45%,
            rgba(0,0,0,0),
            rgba(0,0,0,.08) 55%,
            rgba(0,0,0,.20)
        );
}

body.page-id-505 .aw-hero-content {
    padding-top: 70px;
    padding-bottom: 70px;
}

body.page-id-505 .aw-eyebrow {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 15px;

    color: #d7ad72;

    font-family:
        "Segoe Script",
        "Brush Script MT",
        cursive;
}

body.page-id-505 .aw-hero h1 {
    max-width: 520px;

    font-size: clamp(58px, 6vw, 92px);
    line-height: .88;
    letter-spacing: -3px;

    text-shadow:
        0 3px 20px rgba(0,0,0,.20);
}

body.page-id-505 .aw-hero-description {
    margin-top: 24px;
    margin-bottom: 27px;

    font-size: 20px;
    font-weight: 500;

    text-shadow:
        0 2px 9px rgba(0,0,0,.45);
}

body.page-id-505 .aw-button {
    min-width: 178px;
    justify-content: center;

    padding: 15px 22px;

    background: #39432d;

    box-shadow:
        0 6px 16px rgba(0,0,0,.18);
}

body.page-id-505 .aw-button:hover {
    background: #27301f;
}


/* MÓVIL */

@media (max-width: 600px) {

    body.page-id-505 .aw-hero {
        min-height: 550px;
        background-position: 60% center;
    }

    body.page-id-505 .aw-hero-content {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    body.page-id-505 .aw-eyebrow {
        font-size: 25px;
    }

    body.page-id-505 .aw-hero h1 {
        max-width: 350px;
        font-size: 57px;
    }

}


/* =========================================================
   HERO - IMAGEN REAL
   ========================================================= */

body.page-id-505 .aw-hero {
    background-image:
        linear-gradient(
            90deg,
            rgba(12,10,7,.92) 0%,
            rgba(12,10,7,.70) 35%,
            rgba(12,10,7,.24) 65%,
            rgba(12,10,7,.06) 100%
        ),
        url("https://aritriwood.cl/wp-content/uploads/2026/03/Image-5.jpeg") !important;

    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}


/* =========================================================
   OCULTAR HEADER ORIGINAL SOLO EN PÁGINA 505
   ========================================================= */

body.page-id-505 #masthead,
body.page-id-505 .site-header,
body.page-id-505 .site-header-wrap,
body.page-id-505 .site-top-header-wrap,
body.page-id-505 .site-main-header-wrap,
body.page-id-505 .site-bottom-header-wrap {
    display: none !important;
}


/* =========================================================
   HEADER ARITRIWOOD
   ========================================================= */

body.page-id-505 .aw-custom-header {
    position: relative;
    z-index: 100;

    width: 100%;

    background: #fbfaf6;
    border-bottom: 1px solid rgba(40,40,30,.08);
}

body.page-id-505 .aw-custom-header-inner {
    width: min(1220px, calc(100% - 48px));
    min-height: 94px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 190px 1fr 190px;
    align-items: center;
}

body.page-id-505 .aw-brand {
    display: inline-flex;
    align-items: center;
}

body.page-id-505 .aw-brand img {
    display: block;
    width: auto;
    max-width: 145px;
    max-height: 72px;
    object-fit: contain;
}


/* MENU */

body.page-id-505 .aw-main-nav {
    display: flex;
    justify-content: center;
}

body.page-id-505 .aw-nav-list {
    display: flex;
    gap: 37px;
    align-items: center;

    margin: 0;
    padding: 0;

    list-style: none;
}

body.page-id-505 .aw-nav-list li {
    margin: 0;
    padding: 0;
}

body.page-id-505 .aw-nav-list a {
    position: relative;

    padding: 36px 0 31px;

    color: #282820 !important;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;
}

body.page-id-505 .aw-nav-list a::after {
    content: "";

    position: absolute;
    left: 0;
    right: 100%;
    bottom: 23px;

    height: 2px;

    background: #3c472e;

    transition: right .2s ease;
}

body.page-id-505 .aw-nav-list a:hover::after,
body.page-id-505 .aw-nav-list .current-menu-item > a::after {
    right: 0;
}


/* ICONOS */

body.page-id-505 .aw-header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
}

body.page-id-505 .aw-header-icon,
body.page-id-505 .aw-search-toggle {
    position: relative;

    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;

    padding: 0;
    border: 0;
    background: transparent;

    color: #292923 !important;
    cursor: pointer;
}

body.page-id-505 .aw-header-icon svg,
body.page-id-505 .aw-search-toggle svg {
    width: 23px;
    height: 23px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.page-id-505 .aw-cart-count {
    position: absolute;
    top: -5px;
    right: -6px;

    display: grid;
    width: 17px;
    height: 17px;
    place-items: center;

    border-radius: 50%;

    background: #465039;
    color: white;

    font-size: 9px;
    font-weight: 700;
}


/* BUSCADOR DESPLEGABLE */

body.page-id-505 .aw-search-panel {
    display: none;
    padding: 18px 24px;

    background: #f5f2ea;
    border-top: 1px solid #e4dfd5;
}

body.page-id-505 .aw-search-panel.is-open {
    display: block;
}

body.page-id-505 .aw-search-panel form {
    display: flex;
    width: min(600px, 100%);
    margin: 0 auto;
}

body.page-id-505 .aw-search-panel input[type="search"] {
    flex: 1;

    min-height: 46px;

    padding: 0 16px;

    border: 1px solid #d9d4c9;
    border-radius: 4px 0 0 4px;

    background: white;
}

body.page-id-505 .aw-search-panel button {
    padding: 0 24px;

    border: 0;
    border-radius: 0 4px 4px 0;

    background: #3c472e;
    color: white;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    body.page-id-505 .aw-custom-header-inner {
        grid-template-columns: 130px 1fr;
    }

    body.page-id-505 .aw-main-nav {
        display: none;
    }

    body.page-id-505 .aw-header-actions {
        grid-column: 2;
    }

}

@media (max-width: 600px) {

    body.page-id-505 .aw-custom-header-inner {
        width: calc(100% - 28px);
        min-height: 76px;
    }

    body.page-id-505 .aw-brand img {
        max-width: 95px;
        max-height: 58px;
    }

}


/* =========================================================
   HERO FINAL - NUEVO_HERO
   ========================================================= */

body.page-id-505 .aw-hero {
    position: relative !important;

    width: 100% !important;
    min-height: 0 !important;
    aspect-ratio: 1717 / 916;

    background-image: url("https://aritriwood.cl/wp-content/uploads/2026/08/nuevo_hero.png") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}


/* La imagen ya contiene diseño y textos */
body.page-id-505 .aw-hero-overlay {
    display: none !important;
}


/* Dentro del hero solo permanece el botón */
body.page-id-505 .aw-hero-content {
    position: absolute !important;

    left: 50% !important;
    bottom: clamp(25px, 5vw, 70px) !important;

    transform: translateX(-50%) !important;

    width: min(1180px, calc(100% - 40px)) !important;

    margin: 0 !important;
    padding: 0 !important;

    z-index: 3;
}


/* Seguridad: ocultar cualquier texto antiguo si quedara cacheado */
body.page-id-505 .aw-eyebrow,
body.page-id-505 .aw-hero h1,
body.page-id-505 .aw-hero-description {
    display: none !important;
}


/* Botón */
body.page-id-505 .aw-hero .aw-button {
    display: inline-flex !important;

    width: auto !important;
    min-width: 165px;

    align-items: center;
    justify-content: center;
    gap: 18px;

    padding: 14px 23px;

    border-radius: 4px;

    background: #39452c !important;
    color: #ffffff !important;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;

    box-shadow: 0 5px 18px rgba(0,0,0,.18);
}


/* Móvil */
@media (max-width: 600px) {

    body.page-id-505 .aw-hero {
        aspect-ratio: 1717 / 916;
        background-position: center center !important;
    }

    body.page-id-505 .aw-hero-content {
        bottom: 20px !important;
        width: calc(100% - 28px) !important;
    }

    body.page-id-505 .aw-hero .aw-button {
        min-width: 145px;
        padding: 12px 18px;
        font-size: 11px;
    }
}


/* =========================================================
   ICONOGRAFÍA LUCIDE
   ========================================================= */

body.page-id-505 .aw-home svg.lucide {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Beneficios superiores */

body.page-id-505 .aw-icon {
    display: flex;
    width: 45px;
    height: 45px;
    flex: 0 0 45px;

    align-items: center;
    justify-content: center;

    color: #39452c;
}

body.page-id-505 .aw-icon svg {
    width: 34px;
    height: 34px;
}


/* ¿Por qué elegirnos? */

body.page-id-505 .aw-reason-icon {
    display: flex !important;

    width: 48px !important;
    height: 48px !important;
    flex: 0 0 48px !important;

    align-items: center;
    justify-content: center;

    border: 1px solid #39452c;
    border-radius: 50%;

    color: #39452c;
}

body.page-id-505 .aw-reason-icon svg {
    width: 23px;
    height: 23px;
}


/* Más que tablas */

body.page-id-505 .aw-moment-icon {
    display: flex !important;

    height: 48px;

    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    color: #fff;
}

body.page-id-505 .aw-moment-icon svg {
    width: 35px;
    height: 35px;

    stroke-width: 1.5;
}


/* Barra inferior de confianza */

body.page-id-505 .aw-trust article {
    display: grid;
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto auto;

    column-gap: 12px;

    align-items: center;
    text-align: left;
}

body.page-id-505 .aw-trust-icon {
    grid-column: 1;
    grid-row: 1 / 3;

    width: 31px;
    height: 31px;

    color: #39452c;
}

body.page-id-505 .aw-trust article strong {
    grid-column: 2;
    grid-row: 1;
}

body.page-id-505 .aw-trust article span {
    grid-column: 2;
    grid-row: 2;
}


/* Móvil */

@media (max-width: 600px) {

    body.page-id-505 .aw-trust article {
        max-width: 300px;
        margin-inline: auto;
        width: 100%;
    }

}


/* =========================================================
   IMAGEN POR QUÉ ELEGIRNOS
   ========================================================= */

body.page-id-505 .aw-about-image {
    overflow: hidden;
    border-radius: 8px;
}

body.page-id-505 .aw-about-image .aw-porque-image {
    display: block;

    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    object-fit: contain !important;

    margin: 0;
    padding: 0;

    border-radius: 8px;
}


/* =========================================================
   PRODUCTOS DESTACADOS - MÓVIL COMPACTO
   2 productos + parte del tercero visible
   ========================================================= */

@media (max-width: 600px) {

    body.page-id-505 .aw-products {
        padding: 34px 0 42px;
    }

    body.page-id-505 .aw-products .aw-container {
        width: 100% !important;
        max-width: none !important;
    }

    body.page-id-505 .aw-products .aw-section-heading {
        margin-bottom: 22px;
        padding: 0 18px;
    }

    body.page-id-505 .aw-products .aw-section-heading h2 {
        font-size: 21px;
    }


    /* Carrusel horizontal */
    body.page-id-505 .aw-product-grid {
        display: grid !important;

        grid-template-columns: none !important;
        grid-auto-flow: column;
        grid-auto-columns: 43%;

        gap: 12px;

        width: 100%;

        margin: 0;
        padding: 0 18px 14px;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x proximity;
        overscroll-behavior-inline: contain;

        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    body.page-id-505 .aw-product-grid::-webkit-scrollbar {
        display: none;
    }


    /* Tarjetas */
    body.page-id-505 .aw-product-card {
        width: 100%;
        min-width: 0;

        margin: 0;

        border-radius: 7px;

        scroll-snap-align: start;
    }


    /* Imagen más compacta */
    body.page-id-505 .aw-product-image {
        width: 100%;
        aspect-ratio: 1 / 1;

        overflow: hidden;
    }

    body.page-id-505 .aw-product-image img {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
    }


    /* Información */
    body.page-id-505 .aw-product-info {
        padding: 11px 9px 12px;
    }

    body.page-id-505 .aw-product-info h3 {
        min-height: 34px;

        margin-bottom: 6px;

        font-size: 12px;
        line-height: 1.3;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    body.page-id-505 .aw-price {
        min-height: 19px;
        margin-bottom: 9px;

        font-size: 11px;
    }

    body.page-id-505 .aw-product-button {
        padding: 8px 6px;

        font-size: 9px;
        line-height: 1.2;
    }

}


/* =========================================================
   FOOTER ARITRIWOOD
   ========================================================= */

/* Footer original oculto SOLO en página 505 */
body.page-id-505 #colophon,
body.page-id-505 .site-footer {
    display: none !important;
}


/* Footer nuevo */

body.page-id-505 .aw-footer {
    width: 100%;
    margin: 0;

    background: #303826;
    color: #f3f0e8;
}

body.page-id-505 .aw-footer-main {
    padding: 48px 0 42px;
}

body.page-id-505 .aw-footer-container {
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.45fr
        .8fr
        .9fr
        .9fr
        1.25fr;

    gap: 45px;
}


/* LOGO Y MARCA */

body.page-id-505 .aw-footer-brand {
    padding-right: 20px;
}

body.page-id-505 .aw-footer-logo {
    display: block;

    width: auto !important;
    height: auto !important;

    max-width: 92px !important;
    max-height: 82px !important;

    margin: 0 0 18px !important;

    filter: brightness(0) invert(1);
    opacity: .94;
}

body.page-id-505 .aw-footer-brand p {
    max-width: 245px;

    margin: 0 0 20px;

    color: rgba(255,255,255,.72);

    font-size: 12px;
    line-height: 1.65;
}


/* TITULOS */

body.page-id-505 .aw-footer h3 {
    margin: 2px 0 18px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;

    text-transform: uppercase;
}


/* LISTAS */

body.page-id-505 .aw-footer ul,
body.page-id-505 .aw-footer-menu {
    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

body.page-id-505 .aw-footer li {
    margin: 0 0 9px !important;
    padding: 0 !important;

    list-style: none !important;
}

body.page-id-505 .aw-footer li::marker {
    content: "";
}

body.page-id-505 .aw-footer a {
    color: rgba(255,255,255,.72) !important;

    font-size: 12px;
    line-height: 1.4;

    text-decoration: none !important;

    transition:
        color .2s ease,
        opacity .2s ease;
}

body.page-id-505 .aw-footer a:hover {
    color: #ffffff !important;
}


/* REDES */

body.page-id-505 .aw-footer-social {
    display: flex;
    gap: 10px;
}

body.page-id-505 .aw-footer-social a {
    display: flex;

    width: 33px;
    height: 33px;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;

    color: #ffffff !important;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

body.page-id-505 .aw-footer-social a:hover {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.6);

    transform: translateY(-2px);
}

body.page-id-505 .aw-footer-social svg {
    width: 16px;
    height: 16px;

    stroke-width: 1.7;
}


/* CONTACTO */

body.page-id-505 .aw-footer-contact p {
    margin: 0 0 16px;

    color: rgba(255,255,255,.72);

    font-size: 12px;
    line-height: 1.55;
}

body.page-id-505 .aw-footer-whatsapp {
    display: inline-flex !important;

    align-items: center;
    gap: 8px;

    margin-bottom: 20px;
    padding: 10px 15px;

    border: 1px solid rgba(255,255,255,.32);
    border-radius: 4px;

    color: #ffffff !important;

    font-size: 11px !important;
    font-weight: 700;

    text-transform: uppercase;
}

body.page-id-505 .aw-footer-whatsapp svg {
    width: 16px;
    height: 16px;
}

body.page-id-505 .aw-footer-whatsapp:hover {
    background: #ffffff;
    color: #303826 !important;
}


/* PAGOS */

body.page-id-505 .aw-footer-payment {
    padding-top: 15px;

    border-top: 1px solid rgba(255,255,255,.13);
}

body.page-id-505 .aw-footer-payment span,
body.page-id-505 .aw-footer-payment strong {
    display: block;
}

body.page-id-505 .aw-footer-payment span {
    margin-bottom: 5px;

    color: rgba(255,255,255,.48);

    font-size: 10px;
    text-transform: uppercase;
}

body.page-id-505 .aw-footer-payment strong {
    color: rgba(255,255,255,.82);

    font-size: 11px;
    font-weight: 600;
}


/* PARTE INFERIOR */

body.page-id-505 .aw-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);

    background: #293020;
}

body.page-id-505 .aw-footer-bottom-inner {
    width: min(1220px, calc(100% - 48px));

    min-height: 52px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    color: rgba(255,255,255,.58);

    font-size: 10px;
}

body.page-id-505 .aw-footer-made {
    display: flex;
    align-items: center;
    gap: 7px;
}

body.page-id-505 .aw-footer-made svg {
    width: 13px;
    height: 13px;
}


/* TABLET */

@media (max-width: 1000px) {

    body.page-id-505 .aw-footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 45px;
    }

    body.page-id-505 .aw-footer-brand {
        grid-column: 1 / -1;
    }

}


/* MÓVIL */

@media (max-width: 600px) {

    body.page-id-505 .aw-footer-main {
        padding: 38px 0 30px;
    }

    body.page-id-505 .aw-footer-container {
        width: calc(100% - 36px);

        grid-template-columns: 1fr;

        gap: 0;
    }

    body.page-id-505 .aw-footer-brand {
        padding: 0 0 27px;

        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    body.page-id-505 .aw-footer-column {
        padding: 25px 0;

        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    body.page-id-505 .aw-footer-column:last-child {
        border-bottom: 0;
    }

    body.page-id-505 .aw-footer-brand p {
        max-width: 310px;
    }

    body.page-id-505 .aw-footer-bottom-inner {
        width: calc(100% - 36px);
        min-height: 68px;

        flex-direction: column;
        justify-content: center;

        gap: 5px;

        text-align: center;
    }

}


/* =========================================================
   FOOTER ARITRIWOOD
   ========================================================= */

/* Footer original oculto SOLO en página 505 */
body.page-id-505 #colophon,
body.page-id-505 .site-footer {
    display: none !important;
}


/* Footer nuevo */

body.page-id-505 .aw-footer {
    width: 100%;
    margin: 0;

    background: #303826;
    color: #f3f0e8;
}

body.page-id-505 .aw-footer-main {
    padding: 48px 0 42px;
}

body.page-id-505 .aw-footer-container {
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.45fr
        .8fr
        .9fr
        .9fr
        1.25fr;

    gap: 45px;
}


/* LOGO Y MARCA */

body.page-id-505 .aw-footer-brand {
    padding-right: 20px;
}

body.page-id-505 .aw-footer-logo {
    display: block;

    width: auto !important;
    height: auto !important;

    max-width: 92px !important;
    max-height: 82px !important;

    margin: 0 0 18px !important;

    filter: brightness(0) invert(1);
    opacity: .94;
}

body.page-id-505 .aw-footer-brand p {
    max-width: 245px;

    margin: 0 0 20px;

    color: rgba(255,255,255,.72);

    font-size: 12px;
    line-height: 1.65;
}


/* TITULOS */

body.page-id-505 .aw-footer h3 {
    margin: 2px 0 18px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;

    text-transform: uppercase;
}


/* LISTAS */

body.page-id-505 .aw-footer ul,
body.page-id-505 .aw-footer-menu {
    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

body.page-id-505 .aw-footer li {
    margin: 0 0 9px !important;
    padding: 0 !important;

    list-style: none !important;
}

body.page-id-505 .aw-footer li::marker {
    content: "";
}

body.page-id-505 .aw-footer a {
    color: rgba(255,255,255,.72) !important;

    font-size: 12px;
    line-height: 1.4;

    text-decoration: none !important;

    transition:
        color .2s ease,
        opacity .2s ease;
}

body.page-id-505 .aw-footer a:hover {
    color: #ffffff !important;
}


/* REDES */

body.page-id-505 .aw-footer-social {
    display: flex;
    gap: 10px;
}

body.page-id-505 .aw-footer-social a {
    display: flex;

    width: 33px;
    height: 33px;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;

    color: #ffffff !important;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

body.page-id-505 .aw-footer-social a:hover {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.6);

    transform: translateY(-2px);
}

body.page-id-505 .aw-footer-social svg {
    width: 16px;
    height: 16px;

    stroke-width: 1.7;
}


/* CONTACTO */

body.page-id-505 .aw-footer-contact p {
    margin: 0 0 16px;

    color: rgba(255,255,255,.72);

    font-size: 12px;
    line-height: 1.55;
}

body.page-id-505 .aw-footer-whatsapp {
    display: inline-flex !important;

    align-items: center;
    gap: 8px;

    margin-bottom: 20px;
    padding: 10px 15px;

    border: 1px solid rgba(255,255,255,.32);
    border-radius: 4px;

    color: #ffffff !important;

    font-size: 11px !important;
    font-weight: 700;

    text-transform: uppercase;
}

body.page-id-505 .aw-footer-whatsapp svg {
    width: 16px;
    height: 16px;
}

body.page-id-505 .aw-footer-whatsapp:hover {
    background: #ffffff;
    color: #303826 !important;
}


/* PAGOS */

body.page-id-505 .aw-footer-payment {
    padding-top: 15px;

    border-top: 1px solid rgba(255,255,255,.13);
}

body.page-id-505 .aw-footer-payment span,
body.page-id-505 .aw-footer-payment strong {
    display: block;
}

body.page-id-505 .aw-footer-payment span {
    margin-bottom: 5px;

    color: rgba(255,255,255,.48);

    font-size: 10px;
    text-transform: uppercase;
}

body.page-id-505 .aw-footer-payment strong {
    color: rgba(255,255,255,.82);

    font-size: 11px;
    font-weight: 600;
}


/* PARTE INFERIOR */

body.page-id-505 .aw-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);

    background: #293020;
}

body.page-id-505 .aw-footer-bottom-inner {
    width: min(1220px, calc(100% - 48px));

    min-height: 52px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    color: rgba(255,255,255,.58);

    font-size: 10px;
}

body.page-id-505 .aw-footer-made {
    display: flex;
    align-items: center;
    gap: 7px;
}

body.page-id-505 .aw-footer-made svg {
    width: 13px;
    height: 13px;
}


/* TABLET */

@media (max-width: 1000px) {

    body.page-id-505 .aw-footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 45px;
    }

    body.page-id-505 .aw-footer-brand {
        grid-column: 1 / -1;
    }

}


/* MÓVIL */

@media (max-width: 600px) {

    body.page-id-505 .aw-footer-main {
        padding: 38px 0 30px;
    }

    body.page-id-505 .aw-footer-container {
        width: calc(100% - 36px);

        grid-template-columns: 1fr;

        gap: 0;
    }

    body.page-id-505 .aw-footer-brand {
        padding: 0 0 27px;

        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    body.page-id-505 .aw-footer-column {
        padding: 25px 0;

        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    body.page-id-505 .aw-footer-column:last-child {
        border-bottom: 0;
    }

    body.page-id-505 .aw-footer-brand p {
        max-width: 310px;
    }

    body.page-id-505 .aw-footer-bottom-inner {
        width: calc(100% - 36px);
        min-height: 68px;

        flex-direction: column;
        justify-content: center;

        gap: 5px;

        text-align: center;
    }

}


/* =========================================================
   LO QUE DICEN NUESTROS CLIENTES
   ========================================================= */

body.page-id-505 .aw-testimonials {
    padding: 58px 0 64px;

    background: #f8f5ee;
}

body.page-id-505 .aw-testimonials .aw-section-heading {
    margin-bottom: 32px;
}

body.page-id-505 .aw-testimonial-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);

    gap: 18px;

    overflow-x: auto;

    padding: 4px 4px 16px;

    scroll-snap-type: x proximity;
    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
}

body.page-id-505 .aw-testimonial-slider::-webkit-scrollbar {
    display: none;
}


/* TARJETA */

body.page-id-505 .aw-testimonial-card {
    min-height: 225px;

    display: flex;
    flex-direction: column;

    padding: 27px 26px 23px;

    border: 1px solid #e2ddd3;
    border-radius: 8px;

    background: #ffffff;

    box-shadow:
        0 5px 18px rgba(30,30,20,.045);

    scroll-snap-align: start;
}


/* ESTRELLAS */

body.page-id-505 .aw-testimonial-stars {
    margin-bottom: 14px;

    color: #bd893c;

    font-size: 16px;
    letter-spacing: 3px;
}


/* TESTIMONIO */

body.page-id-505 .aw-testimonial-text {
    flex: 1;

    margin: 0 0 24px;

    color: #555147;

    font-size: 14px;
    line-height: 1.65;
}


/* CLIENTE */

body.page-id-505 .aw-testimonial-client {
    display: flex;

    align-items: center;

    gap: 12px;
}

body.page-id-505 .aw-testimonial-avatar {
    width: 48px !important;
    height: 48px !important;

    flex: 0 0 48px;

    margin: 0 !important;

    border-radius: 50%;

    object-fit: cover;

    border: 2px solid #eee8de;
}

body.page-id-505 .aw-testimonial-client strong {
    color: #27271f;

    font-size: 13px;
}


/* INDICACIÓN */

body.page-id-505 .aw-testimonial-note {
    display: none;

    margin: 12px 0 0;

    color: #716d64;

    font-size: 11px;
    text-align: center;
}


/* ESCRITORIO */

@media (min-width: 1000px) {

    body.page-id-505 .aw-testimonial-slider {
        grid-auto-columns: calc(
            (100% - 36px) / 3
        );
    }

}


/* TABLET */

@media (
    min-width: 601px
) and (
    max-width: 999px
) {

    body.page-id-505 .aw-testimonial-slider {
        grid-auto-columns: 48%;
    }

}


/* MÓVIL */

@media (max-width: 600px) {

    body.page-id-505 .aw-testimonials {
        padding: 40px 0 44px;
    }

    body.page-id-505 .aw-testimonials .aw-container {
        width: 100%;
    }

    body.page-id-505 .aw-testimonials .aw-section-heading {
        padding: 0 20px;

        margin-bottom: 24px;
    }

    body.page-id-505 .aw-testimonials .aw-section-heading h2 {
        font-size: 20px;
    }

    body.page-id-505 .aw-testimonial-slider {
        grid-auto-columns: 78%;

        gap: 12px;

        padding:
            3px
            18px
            14px;
    }

    body.page-id-505 .aw-testimonial-card {
        min-height: 205px;

        padding: 22px 19px;
    }

    body.page-id-505 .aw-testimonial-text {
        font-size: 13px;
    }

    body.page-id-505 .aw-testimonial-note {
        display: block;
    }

}


/* =========================================================
   TESTIMONIOS - CARRUSEL FINAL
   ========================================================= */

body.page-id-505 .aw-testimonials .aw-container {
    position: relative;
}


/* ESCRITORIO: exactamente 3 tarjetas visibles */

body.page-id-505 .aw-testimonial-slider {
    display: grid !important;

    grid-template-columns: none !important;
    grid-auto-flow: column !important;

    grid-auto-columns:
        calc((100% - 36px) / 3) !important;

    gap: 18px !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    padding:
        4px
        2px
        18px !important;

    scrollbar-width: none;
}

body.page-id-505 .aw-testimonial-slider::-webkit-scrollbar {
    display: none;
}

body.page-id-505 .aw-testimonial-card {
    width: 100% !important;

    scroll-snap-align: start;
}


/* FLECHAS */

body.page-id-505 .aw-testimonial-arrow {
    position: absolute;

    top: 56%;

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #ded9cf;
    border-radius: 50%;

    background: #ffffff;

    color: #39452c;

    box-shadow:
        0 5px 18px rgba(20, 24, 15, .12);

    cursor: pointer;

    z-index: 10;

    transition:
        transform .2s ease,
        background .2s ease,
        opacity .2s ease;
}

body.page-id-505 .aw-testimonial-arrow svg {
    width: 21px;
    height: 21px;

    stroke-width: 1.8;
}

body.page-id-505 .aw-testimonial-prev {
    left: -23px;
}

body.page-id-505 .aw-testimonial-next {
    right: -23px;
}

body.page-id-505 .aw-testimonial-arrow:hover:not(:disabled) {
    background: #39452c;
    color: #ffffff;

    transform: scale(1.07);
}

body.page-id-505 .aw-testimonial-arrow:disabled {
    opacity: .25;
    cursor: default;
}


/* Evitar que las fotos sean excesivamente altas */

body.page-id-505 .aw-testimonial-photo {
    width: 100%;
    height: 345px;

    overflow: hidden;

    background: #f3f0e8;
}

body.page-id-505 .aw-testimonial-image {
    display: block;

    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;

    margin: 0 !important;
}


/* TABLET: 2 testimonios */

@media (min-width: 601px) and (max-width: 999px) {

    body.page-id-505 .aw-testimonial-slider {
        grid-auto-columns:
            calc((100% - 16px) / 2) !important;

        gap: 16px !important;
    }

    body.page-id-505 .aw-testimonial-prev {
        left: -10px;
    }

    body.page-id-505 .aw-testimonial-next {
        right: -10px;
    }

}


/* MÓVIL */

@media (max-width: 600px) {

    body.page-id-505 .aw-testimonial-slider {
        grid-auto-columns: 82% !important;

        gap: 12px !important;

        padding:
            3px
            18px
            17px !important;
    }

    body.page-id-505 .aw-testimonial-photo {
        height: 300px;
    }

    body.page-id-505 .aw-testimonial-arrow {
        width: 39px;
        height: 39px;

        top: 55%;
    }

    body.page-id-505 .aw-testimonial-prev {
        left: 5px;
    }

    body.page-id-505 .aw-testimonial-next {
        right: 5px;
    }

}


/* =========================================================
   FOOTER V2 - SOCIALES + BUSCADOR + VINTECH
   ========================================================= */


/* -------------------------
   ICONOS SOCIALES REALES
   ------------------------- */

body.page-id-505 .aw-footer-social {
    display: flex !important;
    align-items: center;
    gap: 10px !important;
}

body.page-id-505 .aw-footer-social a,
body.page-id-505 .aw-footer-social-disabled {
    display: flex !important;

    width: 38px !important;
    height: 38px !important;

    align-items: center;
    justify-content: center;

    margin: 0 !important;
    padding: 0 !important;

    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;

    background: transparent;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

body.page-id-505 .aw-footer-social a:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.70);

    transform: translateY(-2px);
}

body.page-id-505 .aw-footer-social img {
    display: block !important;

    width: 17px !important;
    height: 17px !important;

    margin: 0 !important;

    filter: brightness(0) invert(1);

    opacity: .95;
}

body.page-id-505 .aw-footer-social-disabled {
    opacity: .8;
}


/* =========================================================
   BUSCADOR DEL FOOTER
   ========================================================= */

/*
 * El fondo blanco que vemos actualmente pertenece al
 * CONTENEDOR del formulario, no solamente al input.
 */

body.page-id-505 .aw-footer .search-form,
body.page-id-505 .aw-footer .woocommerce-product-search,
body.page-id-505 .aw-footer .wp-block-search,
body.page-id-505 .aw-footer .wp-block-search__inside-wrapper,
body.page-id-505 .aw-footer .aw-search-panel,
body.page-id-505 .aw-footer .search-form-wrap {
    width: 100% !important;
    max-width: 265px;

    margin-top: 12px !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;

    box-shadow: none !important;
}


/* INPUT */

body.page-id-505 .aw-footer input[type="search"],
body.page-id-505 .aw-footer .search-field,
body.page-id-505 .aw-footer .wp-block-search__input {
    width: 100% !important;
    height: 48px !important;

    margin: 0 !important;

    padding:
        0
        44px
        0
        17px !important;

    border:
        1px solid
        rgba(255,255,255,.24) !important;

    border-radius: 6px !important;

    outline: none !important;

    background:
        rgba(255,255,255,.06) !important;

    color: #ffffff !important;

    font-size: 13px !important;

    box-shadow: none !important;
}


body.page-id-505 .aw-footer input[type="search"]::placeholder,
body.page-id-505 .aw-footer .search-field::placeholder,
body.page-id-505 .aw-footer .wp-block-search__input::placeholder {
    color:
        rgba(255,255,255,.55) !important;

    opacity: 1;
}


/* FOCUS */

body.page-id-505 .aw-footer input[type="search"]:focus,
body.page-id-505 .aw-footer .search-field:focus {
    border-color:
        rgba(255,255,255,.55) !important;

    background:
        rgba(255,255,255,.10) !important;
}


/* BOTÓN / LUPA */

body.page-id-505 .aw-footer button[type="submit"],
body.page-id-505 .aw-footer .search-submit,
body.page-id-505 .aw-footer .wp-block-search__button {
    background: transparent !important;

    border: 0 !important;

    color: #ffffff !important;

    box-shadow: none !important;
}


/* =========================================================
   CRÉDITO VINTECH
   ========================================================= */

body.page-id-505 .aw-footer-vintech {
    display: flex;
    align-items: center;

    gap: 4px;

    color: rgba(255,255,255,.55);
}

body.page-id-505 .aw-footer-vintech a {
    color: rgba(255,255,255,.88) !important;

    font-size: inherit !important;
    font-weight: 600;

    text-decoration: none !important;

    transition: color .2s ease;
}

body.page-id-505 .aw-footer-vintech a:hover {
    color: #ffffff !important;

    text-decoration: underline !important;
}


/* MÓVIL */

@media (max-width: 600px) {

    body.page-id-505 .aw-footer .search-form,
    body.page-id-505 .aw-footer .woocommerce-product-search,
    body.page-id-505 .aw-footer .wp-block-search,
    body.page-id-505 .aw-footer .aw-search-panel {
        max-width: 100%;
    }

    body.page-id-505 .aw-footer-social a,
    body.page-id-505 .aw-footer-social-disabled {
        width: 36px !important;
        height: 36px !important;
    }

}


/* =========================================================
   FOOTER - BUSCADOR FIBOSEARCH
   ========================================================= */

body.page-id-505 .aw-footer .dgwt-wcas-search-wrapp {
    width: 100% !important;
    max-width: 265px !important;

    margin: 14px 0 0 !important;
    padding: 0 !important;

    background: transparent !important;
}


/* Wrapper interno */

body.page-id-505 .aw-footer .dgwt-wcas-sf-wrapp {
    position: relative !important;

    width: 100% !important;
    height: 46px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 6px !important;

    background: transparent !important;

    box-shadow: none !important;
}


/* Campo */

body.page-id-505 .aw-footer .dgwt-wcas-search-input {
    width: 100% !important;
    height: 46px !important;

    margin: 0 !important;

    padding:
        0
        42px
        0
        16px !important;

    border:
        1px solid
        rgba(255,255,255,.25) !important;

    border-radius: 6px !important;

    background:
        rgba(255,255,255,.06) !important;

    color: #ffffff !important;

    font-size: 13px !important;
    font-weight: 400 !important;

    line-height: 46px !important;

    box-shadow: none !important;

    outline: none !important;
}


/* Placeholder */

body.page-id-505 .aw-footer
.dgwt-wcas-search-input::placeholder {
    color:
        rgba(255,255,255,.55) !important;

    opacity: 1 !important;
}


/* Al hacer clic */

body.page-id-505 .aw-footer
.dgwt-wcas-search-input:focus {
    border-color:
        rgba(255,255,255,.55) !important;

    background:
        rgba(255,255,255,.10) !important;
}


/* Botón */

body.page-id-505 .aw-footer
.dgwt-wcas-search-submit {
    position: absolute !important;

    top: 0 !important;
    right: 0 !important;

    width: 44px !important;
    height: 46px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;

    background: transparent !important;

    box-shadow: none !important;
}


/* Lupa */

body.page-id-505 .aw-footer
.dgwt-wcas-ico-magnifier {
    width: 18px !important;
    height: 18px !important;

    fill: #ffffff !important;

    opacity: .9 !important;
}


/* Quitar cualquier fondo blanco extra */

body.page-id-505 .aw-footer
.dgwt-wcas-search-wrapp *,
body.page-id-505 .aw-footer
.dgwt-wcas-sf-wrapp * {
    box-sizing: border-box;
}


/* Ocultar texto auxiliar si FiboSearch lo agrega */

body.page-id-505 .aw-footer
.dgwt-wcas-preloader {
    display: none !important;
}


/* MÓVIL */

@media (max-width: 600px) {

    body.page-id-505 .aw-footer
    .dgwt-wcas-search-wrapp {
        max-width: 100% !important;
    }

}


/* =========================================================
   CORRECCIÓN FINAL LUPA BUSCADOR FOOTER
   ========================================================= */

body.page-id-505 .aw-footer .dgwt-wcas-sf-wrapp {
    position: relative !important;
}


/* Texto: espacio libre a la derecha para la lupa */
body.page-id-505 .aw-footer .dgwt-wcas-search-input {
    padding-left: 18px !important;
    padding-right: 52px !important;

    text-indent: 0 !important;
}


/* Botón de búsqueda completamente a la derecha */
body.page-id-505 .aw-footer .dgwt-wcas-search-submit {
    position: absolute !important;

    top: 50% !important;
    right: 8px !important;
    left: auto !important;

    width: 38px !important;
    height: 38px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    transform: translateY(-50%) !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    z-index: 5 !important;
}


/* SVG de la lupa */
body.page-id-505 .aw-footer
.dgwt-wcas-search-submit .dgwt-wcas-ico-magnifier,
body.page-id-505 .aw-footer
.dgwt-wcas-search-submit svg {
    position: static !important;

    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    width: 18px !important;
    height: 18px !important;

    margin: 0 !important;

    transform: none !important;

    fill: none !important;
    stroke: #ffffff !important;
    stroke-width: 2 !important;

    opacity: .9 !important;
}


/* Eliminar posibles lupas adicionales */
body.page-id-505 .aw-footer
.dgwt-wcas-search-input + .dgwt-wcas-ico-magnifier {
    display: none !important;
}


/* Placeholder alineado correctamente */
body.page-id-505 .aw-footer
.dgwt-wcas-search-input::placeholder {
    text-indent: 0 !important;
    opacity: .7 !important;
}

/* Lupa más pequeña en buscador del footer */
body.page-id-505 .aw-footer
.dgwt-wcas-search-submit .dgwt-wcas-ico-magnifier,
body.page-id-505 .aw-footer
.dgwt-wcas-search-submit svg {
    width: 14px !important;
    height: 14px !important;
    stroke-width: 1.7 !important;
}

body.page-id-505 .aw-footer .dgwt-wcas-search-submit {
    width: 30px !important;
    height: 30px !important;
    right: 10px !important;
}
