.rd-form p { margin-bottom: 14px; }
.rd-form label { display: block; font-weight: 600; margin-bottom: 4px; }
.rd-form input[type="text"],
.rd-form select,
.rd-form textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}
.rd-form button {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
}
.rd-form button:hover { background: #135e96; }

.rd-msg {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}
.rd-success { background: #d7f5d7; border: 1px solid #6bbf6b; color: #1a5c1a; }
.rd-error { background: #fbdada; border: 1px solid #e57373; color: #7a1f1f; }

.rd-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.rd-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px 18px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.rd-card h3 { margin: 0 0 6px; font-size: 18px; font-weight: 700; }
.rd-rubro {
    display: inline-block;
    background: #eef4fb;
    color: #2271b1;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    margin-bottom: 8px;
}
.rd-zona-label { font-size: 12px; color: #777; }
.rd-zona {
    display: inline-block;
    background: #f2ede3;
    color: #8a5a1f;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    margin-bottom: 8px;
}
.rd-comentario { font-size: 14px; color: #444; margin: 8px 0; }
.rd-tel, .rd-por { font-size: 13px; color: #555; margin: 4px 0; }
.rd-tel a { color: #2271b1; text-decoration: none; }

.rd-stars { margin-top: 10px; }
.rd-star {
    font-size: 22px;
    color: #d0d0d0;
    cursor: pointer;
    transition: color 0.15s;
}
.rd-star.filled { color: #f5a623; }
.rd-star:hover,
.rd-star:hover ~ .rd-star { color: #d0d0d0; }
.rd-stars:hover .rd-star.filled { color: #f5a623; }
.rd-avg { font-size: 13px; color: #777; margin-left: 6px; }

.rd-comments { margin-top: 14px; border-top: 1px solid #eee; padding-top: 10px; }
.rd-comments-heading { font-size: 13px; font-weight: 700; color: #333; margin: 0 0 6px; }
.rd-comments-list { margin-bottom: 8px; }
.rd-comment-item { padding: 6px 0; border-bottom: 1px dashed #eee; }
.rd-comment-item:last-child { border-bottom: none; }
.rd-comment-item strong { font-size: 12.5px; color: #333; }
.rd-comment-item p { font-size: 13px; color: #555; margin: 2px 0 0; }
.rd-comment-form { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.rd-comment-nombre, .rd-comment-texto {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
    line-height: 1.4;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    display: block;
    outline: none;
}
.rd-comment-texto { resize: vertical; min-height: 50px; max-height: 160px; }
.rd-comment-nombre:focus, .rd-comment-texto:focus { border-color: #2271b1; }
.rd-comment-submit {
    align-self: flex-start;
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
}
.rd-comment-submit:hover { background: #135e96; }
