:root {
    --otros-bg: #f5f0e9;
    --otros-surface: #fbf8f2;
    --otros-ink: #2f231b;
    --otros-muted: #6c5b4f;
    --otros-brand: #936647;
    --otros-brand-soft: #bd9a7f;
    --otros-line: rgba(79, 57, 41, 0.2);
    --otros-shadow: 0 18px 40px rgba(43, 27, 16, 0.1);
}

.otros-wrap {
    width: min(1200px, calc(100% - 32px));
    margin-inline: auto;
}

.otros-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.otros-section-head--compact {
    margin-bottom: 22px;
}

.otros-section-head--centered {
    justify-content: center;
    text-align: center;
}

.otros-section-kicker {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--otros-brand);
}

.otros-section-head h2 {
    margin: 4px 0 0;
    font-family: "Playfair Display", serif;
    color: var(--otros-ink);
    font-size: clamp(1.7rem, 2.4vw, 2.45rem);
    line-height: 1.1;
}

.otros-section-head a {
    color: var(--otros-brand);
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition:
        border-color 0.25s ease,
        color 0.25s ease;
}

.otros-section-head a:hover,
.otros-section-head a:focus-visible {
    color: var(--otros-ink);
    border-color: currentColor;
}

.otros-mega-demo {
    padding: 64px 0 56px;
    background:
        radial-gradient(
            circle at 84% 8%,
            rgba(147, 102, 71, 0.12),
            transparent 52%
        ),
        linear-gradient(180deg, #f5f0e8 0%, #f0e8de 100%);
    border-top: 1px solid var(--otros-line);
}

.otros-mega-panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid var(--otros-line);
    background: rgba(255, 253, 249, 0.9);
    box-shadow: var(--otros-shadow);
    opacity: 0;
    animation: otrosReveal 0.7s ease forwards;
}

.otros-mega-col h3 {
    margin: 0 0 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--otros-brand);
}

.otros-mega-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

.otros-mega-col a {
    font-family: "Lato", sans-serif;
    font-size: 0.94rem;
    color: var(--otros-ink);
    text-decoration: none;
    transition:
        color 0.24s ease,
        transform 0.24s ease;
}

.otros-mega-col a:hover,
.otros-mega-col a:focus-visible {
    color: var(--otros-brand);
    transform: translateX(4px);
}

.otros-mega-media {
    display: grid;
    gap: 12px;
}

.otros-mega-feature {
    position: relative;
    margin: 0;
    min-height: 152px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.otros-mega-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    animation: otrosImagePop 0.9s ease forwards;
}

.otros-mega-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 35%,
        rgba(24, 15, 9, 0.66) 100%
    );
}

.otros-mega-feature span {
    position: absolute;
    z-index: 2;
    left: 12px;
    bottom: 10px;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
}

.otros-arrivals {
    padding: 62px 0;
    background: var(--otros-surface);
}

/* ─── Carrusel New Arrivals ─── */
@keyframes oaFadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.97);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes oaShimmer {
    0% {
        transform: translateX(-100%) skewX(-20deg);
    }
    100% {
        transform: translateX(200%) skewX(-20deg);
    }
}

@keyframes oaPulse {
    0%,
    100% {
        box-shadow: 0 4px 12px rgba(34, 22, 12, 0.08);
    }
    50% {
        box-shadow: 0 4px 20px rgba(147, 102, 71, 0.2);
    }
}

.oa-carousel {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.oa-carousel__top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.oa-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 8px 4px 12px;
    scrollbar-width: thin;
    scrollbar-color: var(--otros-brand) transparent;
    flex: 1;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 3%,
        #000 97%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 3%,
        #000 97%,
        transparent 100%
    );
}

.oa-track::-webkit-scrollbar {
    height: 5px;
}

.oa-track::-webkit-scrollbar-track {
    background: transparent;
}

.oa-track::-webkit-scrollbar-thumb {
    background: var(--otros-brand-soft);
    border-radius: 9px;
}

/* ─── Card ─── */
.oa-card {
    position: relative;
    flex: 0 0 260px;
    scroll-snap-align: start;
    border: 1px solid var(--otros-line);
    border-radius: 16px;
    background: #fffdf9;
    box-shadow: 0 10px 24px rgba(34, 22, 12, 0.05);
    transition:
        transform 0.32s cubic-bezier(0.33, 1, 0.68, 1),
        box-shadow 0.32s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: oaFadeSlideIn 0.55s ease forwards;
}

.oa-card:nth-child(1) {
    animation-delay: 0.03s;
}
.oa-card:nth-child(2) {
    animation-delay: 0.07s;
}
.oa-card:nth-child(3) {
    animation-delay: 0.11s;
}
.oa-card:nth-child(4) {
    animation-delay: 0.15s;
}
.oa-card:nth-child(5) {
    animation-delay: 0.19s;
}
.oa-card:nth-child(6) {
    animation-delay: 0.23s;
}
.oa-card:nth-child(7) {
    animation-delay: 0.27s;
}
.oa-card:nth-child(8) {
    animation-delay: 0.31s;
}

.oa-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 34px rgba(34, 22, 12, 0.12),
        0 0 0 1px rgba(147, 102, 71, 0.15);
    border-color: rgba(147, 102, 71, 0.3);
}

.oa-card__fav {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: 1px solid rgba(147, 102, 71, 0.3);
    background: rgba(255, 255, 255, 0.9);
    color: var(--otros-brand);
    cursor: pointer;
    display: inline-grid;
    place-items: center;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
    opacity: 0;
    transform: scale(0.85);
}

.oa-card:hover .oa-card__fav,
.oa-card:focus-within .oa-card__fav {
    opacity: 1;
    transform: scale(1);
}

.oa-card__fav:hover {
    background: var(--otros-brand);
    color: #fff;
    transform: scale(1.06) !important;
}

.oa-card__img-wrap {
    position: relative;
    overflow: hidden;
}

.oa-card__img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.oa-card:hover .oa-card__img-wrap img {
    transform: scale(1.08);
}

/* Shimmer effect on image */
.oa-card__img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    transform: translateX(-100%) skewX(-20deg);
    pointer-events: none;
}

.oa-card:hover .oa-card__img-wrap::after {
    animation: oaShimmer 0.7s ease forwards;
}

.oa-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 3px 9px;
    border-radius: 999px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--otros-brand);
    color: #fff;
    box-shadow: 0 2px 8px rgba(34, 22, 12, 0.18);
}

.oa-card__badge[data-type="discount"] {
    background: #c0392b;
}

.oa-price--old {
    text-decoration: line-through;
    color: #bba58a;
    font-weight: 600;
    margin-right: 0.2rem;
    font-size: 0.78rem;
}

.oa-card__price .oa-price--old + .oa-price--discount {
    color: #c0392b;
    font-weight: 800;
}

.oa-card__body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.oa-card__title {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    color: var(--otros-ink);
    line-height: 1.2;
    transition: color 0.25s ease;
}

.oa-card:hover .oa-card__title {
    color: #000;
}

.oa-card__desc {
    margin: 0;
    font-family: "Lato", sans-serif;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--otros-muted);
    flex: 1;
}

.oa-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 6px;
}

.oa-card__price {
    font-family: "Lato", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--otros-brand);
    transition: transform 0.25s ease;
}

.oa-card:hover .oa-card__price {
    transform: scale(1.03);
}

.oa-card__add {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: 1px solid rgba(147, 102, 71, 0.3);
    background: rgba(255, 255, 255, 0.9);
    color: var(--otros-brand);
    cursor: pointer;
    display: inline-grid;
    place-items: center;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.oa-card__add:hover {
    background: var(--otros-brand);
    color: #fff;
    transform: scale(1.06);
}

.oa-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px 20px;
    color: var(--otros-muted);
    text-align: center;
}

.oa-empty i {
    font-size: 2.2rem;
    opacity: 0.35;
}

.oa-empty p {
    margin: 0;
    font-family: "Lato", sans-serif;
    font-size: 0.92rem;
}

/* ─── Flechas de navegación ─── */
.oa-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--otros-line);
    background: rgba(255, 255, 255, 0.92);
    color: var(--otros-brand);
    cursor: pointer;
    display: inline-grid;
    place-items: center;
    font-size: 0.95rem;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
    box-shadow: 0 4px 12px rgba(34, 22, 12, 0.08);
    z-index: 2;
}

.oa-arrow:hover {
    background: var(--otros-brand);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(147, 102, 71, 0.32);
}

.oa-arrow:active {
    transform: scale(0.95);
}

.oa-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(0.92);
    box-shadow: none;
}

/* ─── Dots de progreso ─── */
.oa-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 2px 0 0;
}

.oa-dot {
    width: 24px;
    height: 4px;
    border-radius: 4px;
    border: 0;
    background: rgba(147, 102, 71, 0.18);
    cursor: pointer;
    padding: 0;
    transition:
        background-color 0.35s ease,
        width 0.35s ease;
}

.oa-dot.is-active {
    background: var(--otros-brand);
    width: 32px;
}

.oa-dot:hover:not(.is-active) {
    background: rgba(147, 102, 71, 0.35);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .oa-card {
        flex: 0 0 230px;
        animation: none;
        opacity: 1;
        transform: none;
    }

    .oa-card__img-wrap img {
        height: 160px;
    }

    .oa-arrow {
        display: none;
    }

    .oa-dots {
        gap: 5px;
    }

    .oa-dot {
        width: 18px;
        height: 3px;
    }

    .oa-dot.is-active {
        width: 26px;
    }

    .oa-track {
        padding: 8px 0 12px;
        scroll-snap-type: x proximity;
        mask-image: none;
        -webkit-mask-image: none;
    }
}

@media (max-width: 540px) {
    .oa-card {
        flex: 0 0 200px;
    }

    .oa-card__img-wrap img {
        height: 140px;
    }

    .oa-card__body {
        padding: 10px 12px 12px;
    }

    .oa-card__desc {
        display: none;
    }

    .oa-dots {
        display: none;
    }
}

.otros-piezas {
    padding: 66px 0;
    background: linear-gradient(180deg, #efe6dc 0%, #f7f3ec 100%);
}

.otros-piezas-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.otros-pieza-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
    box-shadow: 0 20px 34px rgba(45, 31, 18, 0.1);
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    animation: otrosReveal 0.72s ease forwards;
}

.otros-pieza-card:nth-child(1) {
    animation-delay: 0.04s;
}

.otros-pieza-card:nth-child(2) {
    animation-delay: 0.11s;
}

.otros-pieza-card:nth-child(3) {
    animation-delay: 0.18s;
}

.otros-pieza-card:nth-child(4) {
    animation-delay: 0.25s;
}

.otros-pieza-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(19, 11, 6, 0.08) 28%,
        rgba(19, 11, 6, 0.64) 100%
    );
}

.otros-pieza-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: otrosImagePop 1s ease forwards;
    transform: scale(1.05);
    transition: transform 0.45s ease;
}

.otros-pieza-card span {
    position: absolute;
    z-index: 2;
    left: 16px;
    bottom: 14px;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    letter-spacing: 0.04em;
}

.otros-pieza-card:hover img,
.otros-pieza-card:focus-visible img {
    transform: scale(1.11);
}

.otros-editorial {
    padding: 64px 0;
    background: var(--otros-bg);
}

.otros-editorial-card {
    position: relative;
    min-height: 430px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--otros-line);
    box-shadow: var(--otros-shadow);
    opacity: 0;
    animation: otrosReveal 0.8s ease forwards;
}

.otros-editorial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: otrosImagePop 0.95s ease forwards;
}

.otros-editorial-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        94deg,
        rgba(18, 10, 5, 0.78) 8%,
        rgba(18, 10, 5, 0.26) 54%,
        rgba(18, 10, 5, 0.08) 100%
    );
}

.otros-editorial-card__content {
    position: absolute;
    z-index: 2;
    left: clamp(18px, 4vw, 52px);
    bottom: clamp(22px, 4.6vw, 54px);
    max-width: 540px;
    color: #fff;
    opacity: 0;
    animation: otrosReveal 0.8s ease 0.2s forwards;
}

.otros-editorial-card__content p {
    margin: 0 0 10px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
}

.otros-editorial-card__content h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.05;
}

.otros-editorial-card__content a {
    display: inline-block;
    margin-top: 16px;
    padding: 11px 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.otros-editorial-card__content a:hover,
.otros-editorial-card__content a:focus-visible {
    background: #fff;
    color: var(--otros-ink);
}

.otros-servicios {
    padding: 66px 0 58px;
    background: #f6f0e7;
    border-top: 1px solid var(--otros-line);
}

.otros-servicios-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.otros-servicio-card {
    padding: 12px 12px 16px;
    border-radius: 16px;
    border: 1px solid var(--otros-line);
    background: #fffdf9;
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 30px rgba(30, 20, 12, 0.07);
    opacity: 0;
    transform: translateY(26px) scale(0.985);
    animation: otrosReveal 0.74s ease forwards;
}

.otros-servicio-card:nth-child(1) {
    animation-delay: 0.03s;
}

.otros-servicio-card:nth-child(2) {
    animation-delay: 0.1s;
}

.otros-servicio-card:nth-child(3) {
    animation-delay: 0.17s;
}

.otros-servicio-card:nth-child(4) {
    animation-delay: 0.24s;
}

.otros-servicio-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    object-fit: cover;
    animation: otrosImagePop 0.9s ease forwards;
}

.otros-servicio-card h3 {
    margin: 14px 0 8px;
    font-family: "Playfair Display", serif;
    color: var(--otros-ink);
    font-size: 1.23rem;
}

.otros-servicio-card p {
    margin: 0;
    font-family: "Lato", sans-serif;
    color: var(--otros-muted);
    font-size: 0.97rem;
    line-height: 1.55;
}

.otros-servicio-card a {
    margin-top: auto;
    padding-top: 12px;
    color: var(--otros-brand);
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.otros-servicio-card a:hover,
.otros-servicio-card a:focus-visible {
    color: var(--otros-ink);
}

.otros-footer {
    background: #ece4d8;
    border-top: 1px solid var(--otros-line);
    padding: 54px 0 24px;
}

.otros-footer__top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.9fr;
    gap: 26px;
}

.otros-footer section {
    opacity: 0;
    transform: translateY(20px);
    animation: otrosReveal 0.72s ease forwards;
}

.otros-footer section:nth-child(1) {
    animation-delay: 0.03s;
}

.otros-footer section:nth-child(2) {
    animation-delay: 0.09s;
}

.otros-footer section:nth-child(3) {
    animation-delay: 0.15s;
}

.otros-footer section:nth-child(4) {
    animation-delay: 0.21s;
}

.otros-footer p,
.otros-footer a,
.otros-footer li {
    font-family: "Lato", sans-serif;
    color: var(--otros-muted);
    font-size: 0.93rem;
    line-height: 1.45;
}

.otros-footer h3 {
    margin: 10px 0 12px;
    color: var(--otros-ink);
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 0.78rem;
}

.otros-footer a {
    text-decoration: none;
}

.otros-footer a:hover,
.otros-footer a:focus-visible {
    color: var(--otros-brand);
}

.otros-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 7px;
}

.otros-footer__social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.otros-footer__social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(47, 35, 27, 0.28);
    color: var(--otros-ink);
    display: grid;
    place-items: center;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.otros-footer__social a:hover,
.otros-footer__social a:focus-visible {
    background: var(--otros-brand);
    color: #fff;
    transform: translateY(-2px);
}

.otros-footer__reviews {
    display: grid;
    place-items: center;
}

.otros-footer__badge {
    width: 134px;
    height: 134px;
    border-radius: 50%;
    border: 2px solid rgba(47, 35, 27, 0.65);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 16px;
    color: var(--otros-ink);
}

.otros-footer__badge span {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    line-height: 1;
}

.otros-footer__badge small {
    font-family: "Lato", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
}

.otros-footer__bottom {
    margin-top: 30px;
    padding-top: 16px;
    border-top: 1px solid rgba(47, 35, 27, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.otros-footer__bottom p {
    margin: 0;
    font-size: 0.84rem;
}

.otros-footer__bottom ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.otros-footer__bottom li {
    font-size: 0.84rem;
}

@keyframes otrosReveal {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes otrosImagePop {
    from {
        opacity: 0;
        filter: blur(5px);
        transform: scale(1.09);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

@media (max-width: 1120px) {
    .otros-mega-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .otros-mega-media {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .otros-products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .otros-piezas-grid,
    .otros-servicios-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .otros-footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .otros-mega-demo,
    .otros-arrivals,
    .otros-piezas,
    .otros-editorial,
    .otros-servicios,
    .otros-footer {
        padding-top: 50px;
    }

    .otros-section-head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .otros-mega-panel {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .otros-mega-media {
        grid-template-columns: 1fr;
    }

    .otros-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .otros-product img {
        height: 156px;
    }

    .otros-piezas-grid,
    .otros-servicios-grid,
    .otros-footer__top {
        grid-template-columns: 1fr;
    }

    .otros-pieza-card {
        min-height: 280px;
    }

    .otros-editorial-card {
        min-height: 360px;
    }

    .otros-footer__reviews {
        justify-items: start;
    }

    .otros-footer__bottom ul {
        gap: 9px 14px;
    }
}

@media (max-width: 480px) {
    .otros-wrap {
        width: min(1200px, calc(100% - 22px));
    }

    .otros-products {
        grid-template-columns: 1fr;
    }

    .otros-product {
        max-width: 320px;
        margin-inline: auto;
        width: 100%;
    }

    .otros-footer__bottom {
        align-items: flex-start;
    }

    .otros-footer__bottom ul {
        display: grid;
    }
}

/* ─── Scroll suave para toda la página ─── */
html {
    scroll-behavior: smooth;
}

/* ─── Efecto brillo al llegar a Contacto (footer) ─── */
@keyframes contactoBrillo {
    0% {
        box-shadow: 0 0 0 0 rgba(147, 102, 71, 0);
        border-color: rgba(79, 57, 41, 0.2);
    }
    15% {
        box-shadow: 0 0 40px 12px rgba(147, 102, 71, 0.4);
        border-color: var(--otros-brand);
    }
    40% {
        box-shadow: 0 0 25px 6px rgba(147, 102, 71, 0.2);
        border-color: var(--otros-brand-soft);
    }
    70% {
        box-shadow: 0 0 35px 10px rgba(147, 102, 71, 0.35);
        border-color: var(--otros-brand);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(147, 102, 71, 0);
        border-color: rgba(79, 57, 41, 0.2);
    }
}

@keyframes contactoIconosBrillo {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(147, 102, 71, 0);
    }
    20% {
        transform: scale(1.2);
        box-shadow: 0 0 30px 10px rgba(189, 154, 127, 0.6);
        background: var(--otros-brand);
        color: #fff;
    }
    45% {
        transform: scale(1);
        box-shadow: 0 0 12px 4px rgba(147, 102, 71, 0.3);
        background: var(--otros-brand);
        color: #fff;
    }
    70% {
        transform: scale(1.12);
        box-shadow: 0 0 25px 8px rgba(189, 154, 127, 0.5);
        background: var(--otros-brand);
        color: #fff;
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(147, 102, 71, 0);
    }
}

.contacto-animar {
    animation: contactoBrillo 3s ease-out;
    border-top-color: var(--otros-brand);
}

.contacto-animar .otros-footer__social a {
    animation: contactoIconosBrillo 3s ease-out;
}

.contacto-animar .otros-footer__social a:nth-child(1) {
    animation-delay: 0.1s;
}
.contacto-animar .otros-footer__social a:nth-child(2) {
    animation-delay: 0.3s;
}
.contacto-animar .otros-footer__social a:nth-child(3) {
    animation-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .otros-mega-panel,
    .otros-product,
    .otros-pieza-card,
    .otros-editorial-card,
    .otros-editorial-card__content,
    .otros-servicio-card,
    .otros-footer section,
    .otros-product img,
    .otros-pieza-card img,
    .otros-servicio-card img,
    .otros-mega-feature img,
    .otros-editorial-card img,
    .contacto-animar,
    .contacto-animar .otros-footer__social a {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
    }
}
