/* ─── Footer Diamond Services — styles globaux qui captent aussi le contenu builder ─── */
.rr-footer {
    background: var(--rr-charcoal, #1a0810);
    color: rgba(255,255,255,.78);
    margin-top: 60px;
    position: relative;
}
.rr-footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--rr-gold, #c4907a), transparent);
}
.rr-footer-main { padding: 60px 0 36px; }

/* Tous les éléments à l'intérieur du footer (que ce soit le fallback OU le builder) */
.rr-footer h1, .rr-footer h2, .rr-footer h3, .rr-footer h4, .rr-footer h5 {
    color: var(--rr-gold-light, #d4a894);
    font-family: var(--rr-font-heading, Georgia, serif);
    font-weight: 400;
    font-size: 17px;
    margin: 0 0 18px;
    letter-spacing: .3px;
    position: relative;
    padding-bottom: 10px;
}
.rr-footer h4::after {
    content: '';
    position: absolute; left: 0; bottom: 0;
    width: 36px; height: 2px;
    background: var(--rr-gold, #c4907a);
    border-radius: 2px;
}
.rr-footer p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,.7);
    margin: 0 0 10px;
}
.rr-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.rr-footer ul li {
    margin-bottom: 9px;
    position: relative;
    padding-left: 14px;
}
.rr-footer ul li::before {
    content: '›';
    position: absolute; left: 0; top: 0;
    color: var(--rr-gold, #c4907a);
    font-weight: 700;
}
.rr-footer a {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 14px;
    transition: color .15s, padding .15s;
}
.rr-footer a:hover {
    color: var(--rr-gold-light, #d4a894);
}
.rr-footer ul a:hover { padding-left: 4px; }

/* Logo + tagline (fallback ou bloc HTML custom) */
.rr-footer-logo {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
    font-family: 'Playfair Display', Georgia, serif;
}
.rr-footer-logo .rr-logo-r, .rr-footer-logo .rr-logo-o {
    font-size: 30px;
}
.rr-footer-logo .rr-logo-r {
    color: var(--rr-gold, #c4907a);
    font-weight: 900;
    letter-spacing: 1px;
}
.rr-footer-logo .rr-logo-o {
    color: rgba(255,255,255,.95);
    font-style: italic;
    margin-left: 2px;
}
.rr-footer-tagline {
    font-style: italic;
    color: var(--rr-gold-light, #d4a894);
    margin-bottom: 16px;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Grille fallback (colonnes statiques) */
.rr-footer-cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}
@media (max-width: 900px) {
    .rr-footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .rr-footer-cols { grid-template-columns: 1fr; }
}

/* ─── Newsletter ─── */
.rr-newsletter { display: flex; margin: 14px 0; }
.rr-newsletter input {
    flex: 1;
    padding: 11px 14px;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.05);
    color: #fff;
    border-radius: 6px 0 0 6px;
    font-size: 13px;
}
.rr-newsletter input::placeholder { color: rgba(255,255,255,.5); }
.rr-newsletter input:focus { outline: none; border-color: var(--rr-gold, #c4907a); background: rgba(255,255,255,.08); }
.rr-newsletter button {
    padding: 11px 18px;
    background: var(--rr-gold, #c4907a);
    border: none; color: #fff; cursor: pointer;
    border-radius: 0 6px 6px 0;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s;
}
.rr-newsletter button:hover { background: var(--rr-gold-light, #d4a894); }

/* ─── Social ─── */
.rr-social { display: flex; gap: 9px; margin-top: 16px; }
.rr-social a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.8);
    border-radius: 50%;
    transition: all .2s;
    text-decoration: none;
    font-size: 17px;
}
.rr-social a:hover {
    background: var(--rr-gold, #c4907a);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(187,127,77,.3);
}

/* ─── Footer bottom (copyright + paiements) ─── */
.rr-footer-bottom {
    background: rgba(0,0,0,.35);
    border-top: 1px solid rgba(255,255,255,.05);
    padding: 18px 0;
    font-size: 12px;
}
.rr-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}
.rr-footer-bottom-inner > div:first-child { color: rgba(255,255,255,.55); }
.rr-payments {
    display: flex;
    gap: 8px;
    align-items: center;
    color: rgba(255,255,255,.45);
    font-size: 11px;
}
.rr-payments iconify-icon { font-size: 18px; }
.rr-payments span {
    padding: 4px 9px;
    background: rgba(255,255,255,.06);
    border-radius: 3px;
    letter-spacing: .5px;
}

/* Surcharge des marges/paddings du builder DANS le footer pour que ce soit dense */
.rr-footer .pb-row { padding: 0; }
.rr-footer .pb-row-cols { gap: 36px; }
.rr-footer .pb-block { margin-bottom: 0; }

/* Bloc logo dans le footer builder */
.rr-footer .pb-block img { max-height: 50px; margin-bottom: 12px; }

/* Footer mini (checkout) */
.rr-footer-mini {
    background: var(--rr-cream, #faf5f2);
    color: var(--rr-muted, #888);
    padding: 22px 0;
    text-align: center;
    font-size: 12px;
}
.rr-footer-mini a { color: var(--rr-teal, #8a3040); margin: 0 8px; text-decoration: none; }
.rr-footer-mini a:hover { color: var(--rr-gold, #c4907a); }
