:root {
    --radical-surface: #ffffff;
    --radical-surface-soft: #f7fafc;
    --radical-surface-tint: #eef3f8;
    --radical-border: #dbe4ee;
    --radical-border-strong: #c7d3e0;
    --radical-text: #182230;
    --radical-muted: #526071;
    --radical-subtle: #6b7280;
    --radical-chip: #f8fbfd;
    --radical-chip-border: #e3ebf3;
    --radical-brand-red: #b91c1c;
    --radical-brand-orange: #ea580c;
    --radical-brand-green: #166534;
    --radical-brand-blue: #1d4ed8;
    --radical-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
    --radical-shadow-hover: 0 22px 48px rgba(15, 23, 42, 0.12);
    --radical-radius-xl: 24px;
    --radical-radius-lg: 18px;
    --radical-radius-md: 14px;
    --radical-radius-sm: 12px;
}

#chollos-feed.grid-radical {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    max-width: 1080px !important;
    margin: 0 auto !important;
    padding: 18px 15px 26px !important;
}

.radical-scroll-anchor {
    display: block;
    width: 100%;
    height: 1px;
    max-width: 1080px;
    margin: 0 auto;
}

.card-radical,
.telegram-banner-card,
.aliexpress-banner-card,
.reacondicionados-banner-card {
    content-visibility: auto;
    contain-intrinsic-size: 340px;
}

.card-radical {
    position: relative !important;
    isolation: isolate !important;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.92), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
    border-radius: var(--radical-radius-xl) !important;
    border: 1px solid var(--radical-border) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    box-shadow: var(--radical-shadow) !important;
    transition:
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease !important;
}

.card-radical::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--radical-brand-red), var(--radical-brand-orange));
    opacity: 0.95;
}

.temp-llamas::before {
    background: linear-gradient(180deg, #dc2626, #ea580c);
}

.temp-fuego::before {
    background: linear-gradient(180deg, #ea580c, #f59e0b);
}

.temp-caliente::before {
    background: linear-gradient(180deg, #d97706, #facc15);
}

.temp-tibio::before {
    background: linear-gradient(180deg, #64748b, #94a3b8);
}

.temp-frio::before {
    background: linear-gradient(180deg, #1d4ed8, #38bdf8);
}

.card-radical:hover {
    transform: translateY(-2px) !important;
    border-color: var(--radical-border-strong) !important;
    box-shadow: var(--radical-shadow-hover) !important;
}

.card-temp-col {
    width: 78px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    padding: 18px 10px !important;
    background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%) !important;
    border-right: 1px solid #e2e8f0 !important;
}

.temp-llamas .card-temp-col {
    background: linear-gradient(180deg, #fff5f5 0%, #fee2e2 100%) !important;
}

.temp-fuego .card-temp-col {
    background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%) !important;
}

.temp-caliente .card-temp-col {
    background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%) !important;
}

.temp-tibio .card-temp-col {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%) !important;
}

.temp-frio .card-temp-col {
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%) !important;
}

.voto-btn-m {
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 999px !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475467;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
    transition:
        background 0.16s ease,
        color 0.16s ease,
        transform 0.16s ease,
        box-shadow 0.16s ease !important;
}

.voto-btn-m.up:hover {
    background: #166534 !important;
    color: #ffffff !important;
    transform: translateY(-1px) scale(1.06) !important;
    box-shadow: 0 14px 20px rgba(22, 101, 52, 0.28) !important;
}

.voto-btn-m.down:hover {
    background: #475467 !important;
    color: #ffffff !important;
    transform: translateY(-1px) scale(1.06) !important;
    box-shadow: 0 14px 20px rgba(71, 84, 103, 0.24) !important;
}

.voto-btn-m:disabled {
    opacity: 0.42 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.temp-display {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
}

.temp-icon {
    font-size: 18px !important;
    line-height: 1;
}

.temp-num {
    font-size: 18px !important;
    font-weight: 900 !important;
    line-height: 1.1;
    color: #344054;
    letter-spacing: -0.02em;
}

.temp-llamas .temp-num {
    color: #b42318 !important;
}

.temp-fuego .temp-num {
    color: #c2410c !important;
}

.temp-caliente .temp-num {
    color: #a16207 !important;
}

.temp-tibio .temp-num {
    color: #475467 !important;
}

.temp-frio .temp-num {
    color: #1d4ed8 !important;
}

.card-radical-main {
    flex: 1 !important;
    display: grid !important;
    grid-template-columns: minmax(252px, 310px) minmax(0, 1fr) !important;
    overflow: hidden !important;
    min-width: 0 !important;
    align-self: stretch !important;
}

.main-img {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}

.voto-btn-m,
.btn-compartir-radical,
.btn-ir-oferta,
.leer-mas-link,
.precio-valor,
.main-img {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.card-radical-img-wrapper {
    min-height: 100% !important;
    padding: 20px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.98), transparent 34%),
        linear-gradient(160deg, #f8fafc 0%, #eef3f8 58%, #e6edf5 100%) !important;
}

.card-radical-img-wrapper::after {
    content: "";
    position: absolute;
    inset: auto -18% -22% auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.card-radical-img-wrapper img {
    max-width: 100% !important;
    width: 100% !important;
    max-height: 228px !important;
    object-fit: contain !important;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 16px 22px rgba(15, 23, 42, 0.08));
    transition: transform 0.32s ease !important;
}

.card-radical:hover .card-radical-img-wrapper img {
    transform: scale(1.04) !important;
}

.badge-new {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    background: linear-gradient(135deg, #b91c1c, #ef4444) !important;
    color: #ffffff !important;
    font-size: 10px !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
    box-shadow: 0 10px 22px rgba(185, 28, 28, 0.22) !important;
    z-index: 2 !important;
}

.card-radical-body {
    padding: 22px 24px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
}

.card-radical-meta {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    margin-bottom: 12px !important;
    font-size: 11px !important;
    color: var(--radical-muted) !important;
}

.card-radical-meta > span,
.card-radical-meta > a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    min-height: 28px;
    padding: 4px 10px !important;
    border-radius: 999px !important;
    background: var(--radical-chip) !important;
    border: 1px solid var(--radical-chip-border) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
    max-width: 100% !important;
    min-width: 0 !important;
}

.shop-badge {
    background: #eef4ff !important;
    color: var(--radical-brand-blue) !important;
    border-color: #d5e4ff !important;
    font-weight: 800 !important;
}

.meta-cat {
    color: #475467 !important;
    text-decoration: none !important;
    overflow-wrap: anywhere !important;
}

.meta-cat:hover {
    color: var(--radical-brand-red) !important;
    border-color: #f1d4d4 !important;
    background: #fff6f6 !important;
}

.card-radical-title {
    font-size: clamp(1.2rem, 1.02rem + 0.5vw, 1.45rem) !important;
    font-weight: 900 !important;
    line-height: 1.16 !important;
    margin-bottom: 12px !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    letter-spacing: -0.03em !important;
    color: var(--radical-text) !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    hyphens: auto !important;
    min-width: 0 !important;
}

.card-radical-title a {
    color: inherit !important;
    text-decoration: none !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    hyphens: auto !important;
}

.card-radical-title a:hover {
    color: var(--radical-brand-red) !important;
}

.precio-box {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    margin-bottom: 12px !important;
}

.precio-inline {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    flex-wrap: wrap !important;
    margin-bottom: 0 !important;
}

.precio-kicker {
    display: none !important;
}

.precio-valor {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0 !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #166534, #15803d) !important;
    min-height: 44px !important;
    padding: 8px 16px !important;
    border-radius: var(--radical-radius-sm) !important;
    text-decoration: none !important;
    letter-spacing: -0.03em !important;
    box-shadow: 0 10px 20px rgba(21, 128, 61, 0.22) !important;
    transition: transform 0.16s ease, box-shadow 0.16s ease !important;
}

.precio-cifra {
    display: inline-flex !important;
    align-items: center !important;
    font-size: clamp(1.22rem, 1.04rem + 0.56vw, 1.5rem) !important;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;
}

.precio-pill {
    display: none !important;
}

.precio-valor:hover {
    transform: translateY(-1px) scale(1.02) !important;
    box-shadow: 0 16px 26px rgba(21, 128, 61, 0.3) !important;
    color: #ffffff !important;
}

.afiliado-nota {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 0 12px !important;
    font-size: 11px !important;
    line-height: 1.5 !important;
    color: #667085 !important;
    text-wrap: pretty;
}

.afiliado-fecha {
    font-weight: 700 !important;
    color: #526071 !important;
}

.afiliado-nota a {
    color: #475467 !important;
    text-decoration: underline !important;
    text-decoration-thickness: 1px !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
}

.card-radical-excerpt {
    margin: 0 0 16px !important;
    max-width: 60ch;
    font-size: 14px !important;
    line-height: 1.62 !important;
    color: var(--radical-muted) !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-wrap: pretty;
}

.card-radical-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 14px !important;
    margin-top: auto !important;
    padding-top: 12px !important;
    border-top: 1px solid #eef2f6 !important;
}

.leer-mas-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    min-height: 40px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    border: 1px solid #e4ebf3 !important;
    background: #f8fbfd !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #0057b8 !important;
    text-decoration: none !important;
    flex-shrink: 0;
    transition:
        color 0.16s ease,
        background 0.16s ease,
        border-color 0.16s ease,
        transform 0.16s ease !important;
}

.leer-mas-link::after {
    content: "\2192";
    font-size: 14px;
    line-height: 1;
    transition: transform 0.16s ease;
}

.leer-mas-link:hover::after {
    transform: translateX(2px);
}

.leer-mas-link:hover {
    background: #eef5ff !important;
    border-color: #d6e4fb !important;
    color: #004799 !important;
    transform: translateY(-1px) !important;
}

.footer-actions-container {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
    min-width: 0 !important;
}

.btn-compartir-radical {
    background: #f2f4f7 !important;
    border: 1px solid #e5e7eb !important;
    cursor: pointer;
    width: 40px !important;
    height: 40px !important;
    border-radius: var(--radical-radius-sm) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #344054;
    position: relative;
    flex-shrink: 0;
    transition:
        background 0.16s ease,
        border-color 0.16s ease,
        transform 0.16s ease !important;
}

.btn-compartir-radical:hover {
    background: #e9eef5 !important;
    border-color: #d6dce4 !important;
    transform: translateY(-1px) !important;
}

.btn-compartir-radical svg {
    flex-shrink: 0;
}

.btn-compartir-radical .share-tooltip {
    display: none;
    position: absolute;
    bottom: 112%;
    left: 50%;
    transform: translateX(-50%);
    background: #111827;
    color: #ffffff;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 12px 18px rgba(15, 23, 42, 0.16);
}

.btn-compartir-radical.copied .share-tooltip {
    display: block;
}

.btn-ir-oferta {
    background: linear-gradient(135deg, #b91c1c, #d84315) !important;
    color: #ffffff !important;
    padding: 0 16px !important;
    height: 40px !important;
    border-radius: var(--radical-radius-sm) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    box-shadow: 0 12px 20px rgba(185, 28, 28, 0.24) !important;
    transition: transform 0.16s ease, box-shadow 0.16s ease !important;
}

.btn-ir-oferta:hover {
    transform: translateY(-1px) scale(1.02) !important;
    box-shadow: 0 18px 28px rgba(185, 28, 28, 0.3) !important;
    color: #ffffff !important;
}

.btn-ir-oferta::after {
    content: "\2192";
    font-size: 14px;
    line-height: 1;
}

.voto-btn-m:active,
.btn-compartir-radical:active,
.btn-ir-oferta:active,
.leer-mas-link:active,
.precio-valor:active {
    transform: translateY(0) scale(0.98) !important;
}

.radical-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.voto-btn-m:focus-visible,
.btn-compartir-radical:focus-visible,
.btn-ir-oferta:focus-visible,
.leer-mas-link:focus-visible,
.card-radical-title a:focus-visible,
.main-img:focus-visible,
.precio-valor:focus-visible,
.meta-cat:focus-visible,
.radical-volver-arriba:focus-visible {
    outline: 3px solid #111111 !important;
    outline-offset: 3px !important;
}

.telegram-banner-card,
.aliexpress-banner-card,
.reacondicionados-banner-card {
    padding: 0 !important;
    border-radius: var(--radical-radius-xl) !important;
    border: 1px solid var(--radical-border) !important;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.88), transparent 38%),
        linear-gradient(135deg, #f8fafc 0%, #eef3f8 100%) !important;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06) !important;
    display: block !important;
    overflow: hidden !important;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease !important;
}

.telegram-banner-card:hover,
.aliexpress-banner-card:hover,
.reacondicionados-banner-card:hover {
    transform: translateY(-2px) !important;
    border-color: var(--radical-border-strong) !important;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.11) !important;
}

.telegram-banner-card a,
.aliexpress-banner-card a,
.reacondicionados-banner-card a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 180px !important;
    padding: 18px !important;
}

.telegram-banner-card img,
.aliexpress-banner-card img,
.reacondicionados-banner-card img {
    width: 100% !important;
    max-height: 148px !important;
    object-fit: contain !important;
    border-radius: 18px !important;
}

.radical-fin-feed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 0 16px;
}

.radical-fin-feed span {
    font-size: 13px;
    font-weight: 700;
    color: var(--radical-muted);
}

.radical-volver-arriba {
    background: #111827 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: var(--radical-radius-sm) !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    cursor: pointer;
    transition: background 0.16s ease, transform 0.16s ease !important;
}

.radical-volver-arriba:hover {
    background: var(--radical-brand-red) !important;
    transform: translateY(-1px) !important;
}

.radical-disclosure {
    font-size: 11px !important;
    color: var(--radical-muted) !important;
    text-align: center !important;
    padding: 8px 15px !important;
    max-width: 1200px !important;
    margin: 0 auto 4px !important;
    line-height: 1.55 !important;
}

.aviso-antiguedad {
    background: #fff7d6 !important;
    color: #8a6500 !important;
    font-size: 10px !important;
    padding: 6px 8px !important;
    border-radius: 10px !important;
    margin-bottom: 10px !important;
    text-align: center !important;
    font-weight: 700 !important;
    border: 1px solid #fde68a !important;
}

.aviso-precio-amazon {
    background: #edf7ff !important;
    color: #1457b2 !important;
    font-size: 10px !important;
    padding: 6px 8px !important;
    border-radius: 10px !important;
    margin-bottom: 10px !important;
    text-align: center !important;
    font-weight: 600 !important;
    border: 1px solid #bfdbfe !important;
}

.skeleton-chollo {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e7edf4;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    min-height: 210px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.skeleton-temp-col {
    width: 78px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #f6f9fc 0%, #eef2f7 100%);
}

.skeleton-main {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
}

.skeleton-img-area,
.skeleton-line {
    background: linear-gradient(90deg, #edf2f7 25%, #f7fafc 50%, #edf2f7 75%);
    background-size: 300% 100%;
    animation: radical-shimmer 1.35s ease-in-out infinite;
}

.skeleton-img-area {
    height: 100%;
    min-height: 150px;
}

.skeleton-body-area {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.skeleton-line {
    border-radius: 999px;
    height: 12px;
}

.skeleton-line.s-short {
    width: 36%;
    height: 10px;
}

.skeleton-line.s-long {
    width: 92%;
}

.skeleton-line.s-medium {
    width: 66%;
}

.skeleton-line.s-price {
    width: 32%;
    height: 16px;
}

@keyframes radical-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

#loading-scroll {
    padding: 16px 15px !important;
    max-width: 1080px;
    margin: 0 auto;
}

#loading-scroll .radical-cargando-label {
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--radical-muted);
    padding-bottom: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

#loading-scroll .radical-cargando-label .dots::after {
    content: "";
    display: inline-block;
    width: 18px;
    text-align: left;
    animation: radical-dots 1.2s steps(3, end) infinite;
}

@keyframes radical-dots {
    0% {
        content: "";
    }

    33% {
        content: ".";
    }

    66% {
        content: "..";
    }

    100% {
        content: "...";
    }
}

#chollos-feed .entry-title,
#chollos-feed .post-title,
#chollos-feed .entry-meta,
#chollos-feed .post-meta,
#chollos-feed .posted-on,
#chollos-feed .byline,
#chollos-feed .cat-links,
#chollos-feed .comments-link,
#chollos-feed .meta {
    display: none !important;
}

.loader-scroll,
.spinner-radical {
    display: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .card-radical,
    .card-radical-img-wrapper img,
    .voto-btn-m,
    .precio-valor,
    .btn-ir-oferta,
    .radical-volver-arriba,
    .btn-compartir-radical,
    .telegram-banner-card,
    .aliexpress-banner-card,
    .reacondicionados-banner-card,
    .leer-mas-link::after {
        transition: none !important;
    }

    .card-radical:hover,
    .card-radical:hover .card-radical-img-wrapper img,
    .voto-btn-m.up:hover,
    .voto-btn-m.down:hover,
    .precio-valor:hover,
    .btn-ir-oferta:hover,
    .radical-volver-arriba:hover,
    .telegram-banner-card:hover,
    .aliexpress-banner-card:hover,
    .reacondicionados-banner-card:hover,
    .leer-mas-link:hover::after {
        transform: none !important;
    }

    .skeleton-img-area,
    .skeleton-line,
    #loading-scroll .radical-cargando-label .dots::after {
        animation: none !important;
    }
}

@media (max-width: 980px) {
    .et_pb_section,
    .et_pb_row {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    #chollos-feed.grid-radical {
        padding: 12px !important;
        gap: 14px !important;
        padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px)) !important;
    }

    .card-radical-main {
        grid-template-columns: 220px minmax(0, 1fr) !important;
    }

    .card-radical-body {
        padding: 20px 20px 18px !important;
    }

    .card-radical-excerpt {
        -webkit-line-clamp: 2;
    }

    .skeleton-main {
        grid-template-columns: 200px minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .card-radical {
        flex-direction: column !important;
    }

    .card-radical::before {
        inset: 0 0 auto 0;
        width: 100%;
        height: 4px;
    }

    .card-temp-col {
        width: 100% !important;
        padding: 12px 14px !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        border-right: none !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }

    .temp-display {
        flex-direction: row !important;
        gap: 8px !important;
    }

    .card-radical-main,
    .skeleton-main {
        grid-template-columns: 1fr !important;
    }

    .card-radical-img-wrapper {
        min-height: 210px !important;
        padding: 18px 18px 20px !important;
    }

    .main-img {
        width: 100% !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
        box-sizing: border-box !important;
    }

    .card-radical-img-wrapper img {
        max-width: 100% !important;
        max-height: 210px !important;
    }

    .card-radical-body {
        padding: 18px 16px 16px !important;
    }

    .card-radical-title {
        font-size: 1.06rem !important;
        line-height: 1.24 !important;
        letter-spacing: -0.02em !important;
        -webkit-line-clamp: 3;
        margin-bottom: 10px !important;
    }

    .card-radical-meta {
        gap: 6px !important;
        margin-bottom: 10px !important;
        font-size: 10px !important;
    }

    .card-radical-meta > span,
    .card-radical-meta > a {
        min-height: 26px !important;
        max-width: 100% !important;
        padding: 4px 8px !important;
        line-height: 1.25 !important;
        white-space: normal !important;
    }

    .meta-cat,
    .shop-badge {
        max-width: 100% !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
    }

    .precio-inline,
    .precio-valor {
        max-width: 100% !important;
    }

    .precio-box {
        gap: 7px !important;
    }

    .precio-inline {
        align-items: stretch !important;
    }

    .precio-valor {
        min-width: 0 !important;
        width: 100% !important;
        justify-content: space-between !important;
        line-height: 1.15 !important;
        white-space: normal !important;
    }

    .precio-cifra {
        font-size: 1.18rem !important;
    }

    .precio-pill {
        min-height: 28px !important;
        padding: 0 9px !important;
        font-size: 10px !important;
    }

    .afiliado-nota {
        gap: 6px !important;
    }

    .card-radical-footer {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
    }

    .footer-actions-container {
        width: 100% !important;
        justify-content: space-between !important;
        align-items: stretch !important;
    }

    .leer-mas-link {
        width: 100% !important;
        justify-content: flex-start !important;
        min-height: 42px !important;
    }

    .btn-compartir-radical {
        width: 42px !important;
        height: 42px !important;
    }

    .btn-ir-oferta {
        flex: 1 !important;
        min-width: 0 !important;
        width: auto !important;
        padding: 0 14px !important;
        text-align: center !important;
    }
}

@media (max-width: 420px) {
    .card-radical-body {
        padding: 16px !important;
    }

    .card-radical-title {
        font-size: 1rem !important;
        line-height: 1.26 !important;
        -webkit-line-clamp: 3;
    }

    .card-radical-meta > span,
    .card-radical-meta > a {
        min-height: 26px;
        padding: 4px 7px !important;
    }

    .precio-valor {
        font-size: 0.96rem !important;
        padding: 8px 12px !important;
    }

    .precio-cifra {
        font-size: 1.08rem !important;
    }

    .afiliado-nota,
    .card-radical-excerpt {
        font-size: 12px !important;
        line-height: 1.55 !important;
    }

    .footer-actions-container {
        gap: 6px !important;
    }

    .leer-mas-link {
        padding: 0 11px !important;
        font-size: 12px !important;
    }

    .btn-compartir-radical,
    .btn-ir-oferta {
        height: 38px !important;
    }
}
