#destacados-slider-wrap {
    background: #ffffff;
    padding: 30px 0 40px;
    margin-bottom: 30px;
}

.dest-titulo-wrap { text-align: center; margin-bottom: 25px; }
.dest-titulo { font-size: 24px; color: #113648; margin: 0; }

.dest-slider-outer {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}

.dest-slider-viewport { overflow: hidden; flex: 1; }

.dest-slider-track { display: flex; will-change: transform; }

.dest-slide { flex-shrink: 0; box-sizing: border-box; padding: 0 10px; }

.dest-arrow {
    background: #ff7705;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 16px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}
.dest-arrow:hover { background: #113648; }
.dest-arrow--disabled { opacity: 0.3; cursor: default; pointer-events: none; }

.dest-card {
    border: 1px solid #ff7705;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

.dest-card__img-wrap { position: relative; overflow: hidden; }
.dest-card__img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.dest-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff7705;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

.dest-card__titulo {
    background: #ebebeb;
    color: #000;
    padding: 6px 8px;
    font-size: 13px;
    min-height: 36px;
    line-height: 1.4;
}

.dest-card__pvp {
    background: #ff7705;
    color: #fff;
    padding: 6px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dest-card__ref    { font-size: 12px; }
.dest-card__precio { font-size: 18px; font-weight: bold; }

.dest-card__iconos {
    background: #ebebeb;
    height: 38px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    gap: 10px;
}
.dest-card__iconos p { margin: 0; font-size: 12px; }

@media (max-width: 1023px) { .dest-slider-outer { padding: 0 44px; } }
@media (max-width: 767px)  {
    .dest-slider-outer { padding: 0 36px; }
    .dest-card__img-wrap img { height: 180px; }
}