/* RED Collections v1.0.0 — Frontend CSS */

/* ── Grid ── */
.rc-grid {
    display: grid;
    gap: 24px;
}
.rc-grid-1 { grid-template-columns: repeat(1, 1fr); }
.rc-grid-2 { grid-template-columns: repeat(2, 1fr); }
.rc-grid-3 { grid-template-columns: repeat(3, 1fr); }
.rc-grid-4 { grid-template-columns: repeat(4, 1fr); }
.rc-grid-5 { grid-template-columns: repeat(5, 1fr); }
.rc-grid-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 1024px) {
    .rc-grid-4, .rc-grid-5, .rc-grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .rc-grid-3, .rc-grid-4, .rc-grid-5, .rc-grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .rc-grid { grid-template-columns: 1fr !important; }
}

/* ── Card base ── */
.rc-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}
.rc-hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.rc-card-hidden { opacity: .5; }

/* ── Imagem ── */
.rc-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #f1f5f9;
    flex-shrink: 0;
}
.rc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}
.rc-card:hover .rc-card-img img { transform: scale(1.04); }
.rc-card-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px; color: #cbd5e1;
}

/* ── Overlay ── */
.rc-card-overlay {
    position: absolute; inset: 0;
    background: rgba(225,29,72,.85);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity .25s ease;
}
.rc-card:hover .rc-card-overlay { opacity: 1; }
.rc-card-cta-overlay {
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}
.rc-card-hidden-badge {
    position: absolute; top: 8px; right: 8px;
    background: rgba(0,0,0,.7); color: #fff;
    font-size: 11px; padding: 3px 8px; border-radius: 4px;
}

/* ── Corpo ── */
.rc-card-body {
    padding: 16px 18px 18px;
    display: flex; flex-direction: column; flex: 1;
}
.rc-card-title { margin: 0 0 4px; font-size: 16px; font-weight: 700; color: #1e293b; line-height: 1.3; }
.rc-card-title a { text-decoration: none; color: inherit; }
.rc-card-title a:hover { color: #e11d48; }
.rc-card-subtitle { font-size: 13px; font-weight: 600; color: #e11d48; margin-bottom: 8px; }
.rc-card-desc { font-size: 13px; color: #64748b; line-height: 1.6; margin-bottom: 12px; flex: 1; }

/* ── Meta fields ── */
.rc-card-meta { margin-bottom: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.rc-meta-item { font-size: 12px; background: #f1f5f9; color: #475569; padding: 3px 9px; border-radius: 20px; }
.rc-meta-cargo { background: #fff0f3; color: #e11d48; }
.rc-meta-row { font-size: 13px; color: #64748b; margin-bottom: 4px; }
.rc-meta-price { font-size: 18px; font-weight: 800; color: #e11d48; margin-bottom: 4px; }
.rc-meta-price-old { font-size: 13px; color: #94a3b8; text-decoration: line-through; margin-right: 6px; }
.rc-meta-location { font-size: 12px; color: #64748b; margin-top: 4px; }
.rc-meta-stars { font-size: 14px; margin-bottom: 6px; }
.rc-meta-credit { font-size: 12px; color: #94a3b8; }

/* ── CTA Button ── */
.rc-card-cta {
    display: inline-block;
    padding: 9px 20px;
    background: #e11d48;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    margin-top: auto;
    align-self: flex-start;
    transition: background .15s, transform .1s;
}
.rc-card-cta:hover { background: #be123c; transform: translateY(-1px); }

/* ── Card Overlay style ── */
.rc-card-overlay { position:relative; }
.rc-card-overlay .rc-card-img { height: 320px; }
.rc-card-overlay .rc-card-body {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
    color: #fff; padding: 24px 18px 18px;
}
.rc-card-overlay .rc-card-title a,
.rc-card-overlay .rc-card-subtitle,
.rc-card-overlay .rc-card-desc { color: #fff; }

/* ── Placeholder no editor ── */
.rc-placeholder {
    text-align: center; padding: 60px 20px;
    border: 2px dashed #e2e8f0; border-radius: 12px;
    background: #f8fafc; color: #94a3b8;
}
.rc-placeholder-icon { font-size: 48px; margin-bottom: 12px; }
.rc-placeholder-title { font-size: 18px; font-weight: 700; color: #475569; margin-bottom: 6px; }
.rc-placeholder-sub { font-size: 13px; }

/* ── Painel de gestão no editor ── */
.rc-editor-panel {
    margin-top: 24px;
    border: 2px solid #e11d48;
    border-radius: 12px;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.rc-editor-panel-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(135deg, #e11d48, #9f1239);
    color: #fff; font-size: 13px; font-weight: 600;
}
.rc-editor-panel-header code { background: rgba(255,255,255,.2); padding: 2px 7px; border-radius: 4px; font-size: 11px; }
.rc-btn-add-item {
    padding: 6px 14px; background: #fff; color: #e11d48;
    border: none; border-radius: 6px; font-size: 12px; font-weight: 700;
    cursor: pointer; font-family: inherit; transition: all .15s;
}
.rc-btn-add-item:hover { background: #fff0f3; }
.rc-editor-panel-body { padding: 12px; background: #fff; }
.rc-editor-loading { padding: 20px; text-align: center; color: #94a3b8; font-size: 13px; }

/* Lista de itens no editor */
.rc-editor-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border: 1px solid #e2e8f0;
    border-radius: 8px; margin-bottom: 8px; background: #f8fafc;
    transition: background .15s;
}
.rc-editor-item:hover { background: #fff; }
.rc-editor-item-thumb { width: 42px; height: 42px; border-radius: 6px; object-fit: cover; background: #e2e8f0; flex-shrink: 0; }
.rc-editor-item-info { flex: 1; min-width: 0; }
.rc-editor-item-title { font-size: 13px; font-weight: 600; color: #1e293b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rc-editor-item-sub { font-size: 11px; color: #94a3b8; margin-top: 1px; }
.rc-editor-item-actions { display: flex; gap: 4px; flex-shrink: 0; }
.rc-editor-item-btn {
    width: 28px; height: 28px; border-radius: 6px; border: 1px solid #e2e8f0;
    background: #fff; cursor: pointer; font-size: 13px; display: flex;
    align-items: center; justify-content: center; transition: all .15s;
}
.rc-editor-item-btn:hover { background: #f1f5f9; }
.rc-editor-item-btn.del:hover { background: #fef2f2; border-color: #fecaca; }
.rc-editor-item-hidden { opacity: .4; }

/* ── Modal de edição ── */
.rc-edit-modal {
    position: fixed; inset: 0; z-index: 999999;
    display: flex; align-items: center; justify-content: center;
}
.rc-edit-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.rc-edit-modal-box {
    position: relative; z-index: 1;
    background: #fff; border-radius: 14px;
    width: 90%; max-width: 600px; max-height: 85vh;
    display: flex; flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    overflow: hidden;
}
.rc-edit-modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; border-bottom: 1px solid #e2e8f0; flex-shrink: 0;
    background: #f8fafc;
}
.rc-edit-modal-header h3 { margin: 0; font-size: 16px; color: #1e293b; }
.rc-edit-modal-close {
    background: #e2e8f0; border: none; border-radius: 6px;
    width: 28px; height: 28px; cursor: pointer; font-size: 14px;
}
.rc-edit-modal-body { overflow-y: auto; padding: 20px; flex: 1; }
.rc-edit-modal-footer {
    padding: 14px 20px; border-top: 1px solid #e2e8f0;
    display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}

/* Campos do modal */
.rc-field-group { margin-bottom: 20px; }
.rc-field-group-title {
    font-size: 11px; font-weight: 700; color: #64748b;
    text-transform: uppercase; letter-spacing: .06em;
    margin-bottom: 12px; padding-bottom: 6px;
    border-bottom: 1px solid #f1f5f9;
}
.rc-field { margin-bottom: 14px; }
.rc-field label { display: block; font-size: 12px; font-weight: 700; color: #475569; margin-bottom: 5px; }
.rc-field input, .rc-field textarea, .rc-field select {
    width: 100%; padding: 9px 12px; border: 1px solid #e2e8f0;
    border-radius: 8px; font-size: 13px; font-family: inherit; color: #1e293b;
    transition: border-color .15s; box-sizing: border-box;
}
.rc-field input:focus, .rc-field textarea:focus, .rc-field select:focus {
    outline: none; border-color: #e11d48; box-shadow: 0 0 0 3px rgba(225,29,72,.1);
}
.rc-field textarea { resize: vertical; min-height: 80px; }
.rc-field-hint { font-size: 11px; color: #94a3b8; margin-top: 4px; }

/* Imagem no modal */
.rc-field-img-wrap { display: flex; gap: 12px; align-items: flex-start; }
.rc-field-img-preview { width: 80px; height: 60px; border-radius: 8px; object-fit: cover; border: 1px solid #e2e8f0; flex-shrink: 0; }
.rc-field-img-placeholder { width: 80px; height: 60px; border-radius: 8px; border: 2px dashed #e2e8f0; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #cbd5e1; flex-shrink: 0; }
.rc-field-img-actions { display: flex; flex-direction: column; gap: 6px; }
.rc-field-img-btn { padding: 6px 12px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 6px; font-size: 12px; font-weight: 600; color: #475569; cursor: pointer; font-family: inherit; transition: all .15s; }
.rc-field-img-btn:hover { background: #e11d48; color: #fff; border-color: #e11d48; }
.rc-upload-progress { height: 3px; background: #f1f5f9; border-radius: 3px; margin-top: 4px; overflow: hidden; }
.rc-upload-bar { height: 100%; background: #e11d48; width: 0; transition: width .3s; }

/* Botões do modal */
.rc-btn-save-item {
    padding: 10px 24px; background: linear-gradient(135deg, #e11d48, #9f1239);
    color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 700;
    cursor: pointer; font-family: inherit; transition: opacity .15s;
}
.rc-btn-save-item:hover { opacity: .9; }
.rc-btn-save-item:disabled { opacity: .6; cursor: not-allowed; }
.rc-edit-result { font-size: 13px; font-weight: 600; padding: 8px 12px; border-radius: 6px; }
.rc-edit-result.ok  { background: #d4edda; color: #1d8a4e; }
.rc-edit-result.err { background: #fef2f2; color: #991b1b; }

/* ── Single page ── */
.rc-single-wrap { max-width: 1100px; margin: 40px auto; padding: 0 24px; }
.rc-single-breadcrumb { font-size: 13px; color: #94a3b8; margin-bottom: 24px; }
.rc-single-breadcrumb a { color: #e11d48; text-decoration: none; }
.rc-single-breadcrumb span { margin: 0 6px; }
.rc-single-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 768px) { .rc-single-layout { grid-template-columns: 1fr; } }
.rc-single-main-img img { width: 100%; border-radius: 12px; }
.rc-single-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 10px; }
.rc-gallery-thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 6px; transition: opacity .2s; }
.rc-gallery-thumb:hover img { opacity: .8; }
.rc-single-title { font-size: 28px; font-weight: 800; color: #1e293b; margin: 0 0 8px; }
.rc-single-subtitle { font-size: 16px; font-weight: 600; color: #e11d48; margin-bottom: 14px; }
.rc-single-desc { font-size: 15px; color: #64748b; line-height: 1.7; margin-bottom: 20px; }
.rc-single-content { font-size: 15px; color: #475569; line-height: 1.8; margin-top: 20px; }
.rc-single-fields { margin-bottom: 20px; }
.rc-sf-row { display: flex; gap: 12px; padding: 8px 0; border-bottom: 1px solid #f1f5f9; font-size: 14px; }
.rc-sf-label { font-weight: 700; color: #64748b; min-width: 100px; }
.rc-sf-price { font-size: 28px; font-weight: 800; color: #e11d48; margin-bottom: 8px; }
.rc-sf-price-old { font-size: 16px; color: #94a3b8; text-decoration: line-through; }
.rc-sf-prices { margin-bottom: 12px; }
.rc-sf-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
.rc-sf-spec { background: #f8fafc; border-radius: 8px; padding: 12px; text-align: center; }
.rc-sf-spec-val { display: block; font-size: 20px; font-weight: 800; color: #1e293b; }
.rc-sf-spec-lbl { display: block; font-size: 11px; color: #94a3b8; text-transform: uppercase; margin-top: 2px; }
.rc-sf-location { font-size: 14px; color: #64748b; margin-bottom: 6px; }
.rc-sf-ref { font-size: 12px; color: #94a3b8; }
.rc-sf-social { display: flex; gap: 8px; margin-top: 14px; }
.rc-sf-social-btn { padding: 8px 16px; border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 700; }
.rc-sf-wa { background: #25d366; color: #fff; }
.rc-sf-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.rc-sf-li { background: #0077b5; color: #fff; }
.rc-sf-stars { font-size: 20px; margin-bottom: 8px; }
.rc-single-cta { display: inline-block; padding: 12px 28px; background: #e11d48; color: #fff; border-radius: 9px; text-decoration: none; font-weight: 700; font-size: 15px; margin-top: 20px; }
.rc-single-cta:hover { background: #be123c; }

/* ── Lightbox ── */
.rc-lightbox { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; }
.rc-lightbox-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.92); }
.rc-lightbox-content { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; }
.rc-lightbox-img { max-width: 100%; max-height: 85vh; border-radius: 8px; }
.rc-lightbox-close, .rc-lightbox-prev, .rc-lightbox-next { position: absolute; background: rgba(255,255,255,.15); color: #fff; border: none; border-radius: 50%; width: 40px; height: 40px; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; }
.rc-lightbox-close { top: -50px; right: 0; }
.rc-lightbox-prev { left: -60px; top: 50%; transform: translateY(-50%); }
.rc-lightbox-next { right: -60px; top: 50%; transform: translateY(-50%); }

/* ══════════════════════════════════════════
   TEMPLATES ESPECÍFICOS
══════════════════════════════════════════ */

/* ── Funcionários: Portrait ── */
.rc-card-func_portrait .rc-card-img-portrait,
.rc-card-func_banner .rc-card-img-portrait { height: 360px; position: relative; overflow: hidden; }
.rc-card-func_portrait .rc-card-img-portrait img,
.rc-card-func_banner .rc-card-img-portrait img { width:100%; height:100%; object-fit:cover; object-position: top center; }
.rc-func-banner {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
    padding: 24px 16px 16px;
}
.rc-func-banner .rc-card-title a { color: #fff; }
.rc-func-banner .rc-card-subtitle { color: rgba(255,255,255,.8); font-size: 12px; }
.rc-func-name-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,.92);
    padding: 12px 16px; text-align: center;
    backdrop-filter: blur(4px);
}
.rc-func-name-overlay .rc-card-title { font-size: 15px; margin: 0; }
.rc-func-cargo-small { font-size: 12px; color: #64748b; margin-top: 2px; }

/* ── Funcionários: Card Contacto ── */
.rc-card-func_card .rc-card-img-square,
.rc-card-func_centered .rc-func-avatar { overflow: hidden; }
.rc-card-func_card .rc-card-img-square { height: 240px; }
.rc-card-func_card .rc-card-img-square img { width:100%; height:100%; object-fit:cover; object-position: top center; }
.rc-card-body-center { text-align: center; align-items: center; }
.rc-func-esp { font-size: 12px; color: #64748b; margin-bottom: 12px; }
.rc-func-contacts { display: flex; gap: 8px; justify-content: center; margin: 12px 0; }
.rc-contact-btn {
    width: 36px; height: 36px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 16px;
    text-decoration: none; background: #f1f5f9; transition: all .15s;
}
.rc-contact-btn:hover { transform: scale(1.1); }

/* ── Funcionários: Centrado (avatar circular) ── */
.rc-func-avatar { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin: 0 auto 14px; border: 3px solid #f1f5f9; }
.rc-func-avatar img { width:100%; height:100%; object-fit:cover; }
.rc-func-avatar-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; background:#f1f5f9; font-size:32px; }

/* ── Imóveis: Preço grande ── */
.rc-imovel-price-big { font-size: 22px; font-weight: 800; color: #1e293b; margin-bottom: 6px; }
.rc-imovel-specs-row { display: flex; gap: 12px; font-size: 13px; color: #64748b; margin: 8px 0; }
.rc-imovel-badge { display: inline-block; background: #f0fdf4; color: #16a34a; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-top: 8px; }

/* ── Imóveis: Overlay Stats (como imagem 3) ── */
.rc-card-imovel_overlay .rc-card-img-full { height: 320px; position: relative; }
.rc-imovel-overlay-stats {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 30%, transparent 100%);
    padding: 20px 16px 14px;
    display: flex; align-items: flex-end; justify-content: space-between;
}
.rc-imovel-overlay-price { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.rc-imovel-overlay-specs { display: flex; align-items: center; gap: 6px; }
.rc-imovel-stat { text-align: center; color: #fff; }
.rc-imovel-stat span { display: block; font-size: 20px; font-weight: 800; }
.rc-imovel-stat-sep { width: 1px; height: 30px; background: rgba(255,255,255,.3); }

/* ── Imóveis: Lista Specs ── */
.rc-imovel-specs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 12px 0; }
.rc-imovel-spec-item { background: #f8fafc; border-radius: 8px; padding: 10px 8px; text-align: center; }
.rc-imovel-spec-item .v { display: block; font-size: 16px; font-weight: 800; color: #1e293b; }
.rc-imovel-spec-item .l { display: block; font-size: 10px; color: #94a3b8; text-transform: uppercase; margin-top: 2px; }
.rc-imovel-price-bottom { font-size: 20px; font-weight: 800; color: #e11d48; margin: 10px 0; }

/* ── Imóveis: Luxury ── */
.rc-imovel-luxury-body { background: #1e293b; color: #fff; }
.rc-imovel-luxury-body .rc-card-title a { color: #fff; }
.rc-imovel-luxury-body .rc-meta-location { color: rgba(255,255,255,.6); }
.rc-imovel-ref { font-size: 11px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.rc-imovel-luxury-divider { height: 1px; background: rgba(255,255,255,.1); margin: 14px 0; }
.rc-imovel-luxury-bottom { display: flex; align-items: center; justify-content: space-between; }
.rc-imovel-luxury-price { font-size: 20px; font-weight: 800; color: #fff; }
.rc-imovel-luxury-specs { display: flex; gap: 10px; font-size: 13px; color: rgba(255,255,255,.6); }

/* ── Testemunhos ── */
.rc-test-quote-body, .rc-test-stars-body { padding: 24px; }
.rc-test-quote-mark { font-size: 64px; line-height: 1; color: #e11d48; font-family: Georgia, serif; margin-bottom: 8px; }
.rc-test-quote-mark-sm { font-size: 40px; margin-bottom: 4px; }
.rc-test-quote-text { font-size: 14px; color: #475569; line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.rc-test-quote-text-sm { font-size: 13px; }
.rc-test-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.rc-test-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.rc-test-avatar-placeholder { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,#e11d48,#9f1239); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; flex-shrink:0; }
.rc-test-stars { font-size: 16px; }
.rc-test-stars-top { margin-bottom: 12px; }
.rc-test-divider { height: 1px; background: #f1f5f9; margin: 14px 0; }

/* ── Serviços ── */
.rc-card-img-icon { height: 160px; }
.rc-serv-meta { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0; }
.rc-serv-badge { font-size: 12px; padding: 4px 10px; background: #f1f5f9; color: #475569; border-radius: 20px; }
.rc-serv-price { background: #fff0f3; color: #e11d48; font-weight: 700; }
.rc-serv-price-block { background: #f8fafc; border-radius: 10px; padding: 14px; margin: 12px 0; text-align: center; }
.rc-serv-price-big { font-size: 24px; font-weight: 800; color: #e11d48; }
.rc-serv-duration { font-size: 12px; color: #94a3b8; margin-top: 4px; }
.rc-serv-minimal-body { border-left: 4px solid #e11d48; }
.rc-serv-minimal-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 10px; border-top: 1px solid #f1f5f9; }

/* ── Produtos ── */
.rc-prod-cat { font-size: 11px; color: #94a3b8; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.rc-prod-price-row { display: flex; align-items: center; gap: 8px; margin: 10px 0; }
.rc-prod-overlay-price { position: absolute; top: 12px; right: 12px; background: #e11d48; color: #fff; font-weight: 800; padding: 6px 12px; border-radius: 8px; font-size: 15px; }
.rc-prod-sale-badge { position: absolute; top: 12px; left: 12px; background: #e11d48; color: #fff; font-weight: 800; padding: 4px 10px; border-radius: 6px; font-size: 12px; letter-spacing: .06em; }

/* ── Horizontal universal ── */
.rc-card-horizontal { display: flex; }
.rc-card-img-horizontal { width: 160px; flex-shrink: 0; height: auto !important; }
.rc-card-img-horizontal img { width:100%; height:100%; object-fit:cover; }

/* ── Minimal universal ── */
.rc-card-img-minimal { height: 180px; }
.rc-card-body-minimal { padding: 10px 0 0; }

/* ── Overlay universal ── */
.rc-card-img-full { position: relative; height: 300px; }
.rc-card-img-full img { width:100%; height:100%; object-fit:cover; }
.rc-card-overlay-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 100%);
    padding: 30px 16px 16px;
}
.rc-card-overlay-content .rc-card-title a,
.rc-card-overlay-content .rc-card-subtitle { color: #fff; }
