/* ============================================================
   common.css — FacesByMarbella shared overrides
   ============================================================ */

/* ===== GLOBAL FONT FIX: TildaSans everywhere, no synthetic bold ===== */
.tn-atom, .tn-atom *,
[field^="tn_text_"],
.t1118__title, .t1118__descr,
.t-title, .t-name, .t-descr,
.t450 a, .t-btnflex {
    font-synthesis: none !important;
    -webkit-font-synthesis: none !important;
}
/*.t396__elem .tn-atom,*/
/*.t396__elem .tn-atom *,*/
/*.t1118__title, .t1118__descr,*/
/*.t450 a, .t-btnflex,*/
/*[field^="tn_text_"] {*/
/*    font-family: 'TildaSans', Arial, sans-serif !important;*/
/*    font-synthesis: none !important;*/
/*}*/
[style*="font-family:Felidae"],
[style*="font-family: Felidae"],
[style*="font-family:'Felidae'"],
[style*='font-family:"Felidae"'] {
    font-family: 'TildaSans', Arial, sans-serif !important;
    font-synthesis: none !important;
}

/* ===== Burger button (top-right, fixed) ===== */
.burger-btn {
    position: fixed;
    top: 18px; right: 24px;
    width: 54px; height: 54px;
    background: #fffdf1;
    border: 1px solid rgba(187,157,65,0.3);
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 0;
}
.burger-btn:hover { transform: scale(1.04); }
.burger-btn span {
    display: block;
    width: 22px; height: 2px;
    background-color: #bb9d41;
    transition: all 0.3s ease;
}
.burger-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-open span:nth-child(2) { opacity: 0; }
.burger-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 640px) {
    .burger-btn { width: 44px; height: 44px; top: 12px; right: 12px; }
    .burger-btn span { width: 18px; }
}

/* ===== Slide-out side menu (right) - matches REF4 - no visible scrollbars ===== */
.side-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 380px; max-width: 92vw;
    background: #fffdf6;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 80px 36px 36px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.side-menu::-webkit-scrollbar { display: none; width: 0 !important; height: 0 !important; }
.side-menu.is-open { transform: translateX(0); }
.side-menu__logo {
    display: block;
    width: 160px;
    margin: 0 auto 6px;
    text-align: center;
}
.side-menu__logo img { width: 100%; height: auto; display: block; }
.side-menu__brand {
    text-align: center;
    font-family: 'TildaSans', Arial, sans-serif !important;
    font-size: 12px;
    letter-spacing: 3px;
    color: #161512;
    margin: 0 0 22px 0;
    text-transform: uppercase;
    font-weight: 500;
    font-synthesis: none !important;
}
.side-menu__lang {
    display: block; width: 100%; padding: 12px 14px;
    border: 1px solid rgba(187,157,65,0.4);
    border-radius: 8px; background: #fff;
    font-size: 14px;
    font-family: 'TildaSans', Arial, sans-serif !important;
    color: #333; margin-bottom: 26px; cursor: pointer;
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23bb9d41' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    font-synthesis: none !important;
}
.side-menu__nav { list-style: none; padding: 0; margin: 0 0 24px 0; }
.side-menu__nav li { margin: 14px 0; }
.side-menu__nav a {
    font-family: 'TildaSans', Arial, sans-serif !important;
    font-size: 22px;
    font-weight: 400;
    color: #161512;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
    font-synthesis: none !important;
}
.side-menu__nav a:hover { color: #bb9d41; }
.side-menu__social {
    display: flex; gap: 12px; margin-bottom: 22px;
    justify-content: center;
}
.side-menu__social a {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    background-color: #161512; border-radius: 50%;
    transition: background-color 0.2s ease;
    text-decoration: none;
}
.side-menu__social a:hover { background-color: #bb9d41; }
.side-menu__social svg { width: 18px; height: 18px; fill: #fff; }
.side-menu__cta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.side-menu__cta a {
    display: block; padding: 14px 20px;
    text-align: center; text-decoration: none;
    font-family: 'TildaSans', Arial, sans-serif !important;
    font-size: 13px; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase;
    border-radius: 30px; transition: all 0.2s ease;
    font-synthesis: none !important;
}
.side-menu__cta .btn-gold {
    background-image: linear-gradient(.25turn, #eedc81 0%, #bb9d41 100%);
    color: #161512; border: 1px solid #bb9d41;
}
.side-menu__cta .btn-gold:hover { background-image: none; background-color: #161512; color: #fff; }
.side-menu__cta .btn-outline {
    background: transparent; color: #bb9d41; border: 1px solid #bb9d41;
}
.side-menu__cta .btn-outline:hover { background-color: #161512; color: #fff; border-color: #161512; }
.side-menu__address {
    font-family: 'TildaSans', Arial, sans-serif !important;
    font-size: 12px; color: #666;
    line-height: 1.5; text-align: center;
    font-synthesis: none !important;
}
.menu-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.4); z-index: 1000;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
.menu-backdrop.is-open { opacity: 1; pointer-events: auto; }
@media (max-width: 640px) {
    .side-menu {
        width: 320px; max-width: 88vw;
        padding: 70px 28px 28px;
    }
    .side-menu__logo { width: 130px; }
    .side-menu__nav a { font-size: 20px; }
    .side-menu__nav li { margin: 12px 0; }
}

/* ===== Floating WhatsApp button ===== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px;
    width: 56px; height: 56px;
    background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 999; transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
@media (max-width: 640px) {
    .whatsapp-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ===== Hide the original Tilda menu/bar elements ===== */
#rec886433428, #rec924782896,
#rec1238031746, #rec924734666 { display: none !important; }

/* ============================================================
   HOME HERO — Logo CENTERED (in circle area), buttons below
   Matches REF1 and REF2
   ============================================================ */
@media (min-width: 1200px) {
    #rec885692098 .t396__artboard,
    #rec885692098 .t396__carrier,
    #rec885692098 .t396__filter { height: 100vh !important; min-height: 760px !important; }
}
@media (min-width: 960px) and (max-width: 1199px) {
    #rec885692098 .t396__artboard,
    #rec885692098 .t396__carrier,
    #rec885692098 .t396__filter { height: 100vh !important; min-height: 720px !important; }
}
@media (max-width: 959px) {
    #rec885692098 .t396__artboard,
    #rec885692098 .t396__carrier,
    #rec885692098 .t396__filter { height: 100vh !important; min-height: 760px !important; }
}
@media (max-width: 639px) {
    #rec885692098 .t396__artboard,
    #rec885692098 .t396__carrier,
    #rec885692098 .t396__filter { height: 100vh !important; min-height: 640px !important; max-height: 920px !important; }
}

/* Hero logo: BIGGER and centered vertically (inside circle area per REF1) */
#rec885692098 .tn-elem[data-elem-id="1741344882876"] {
    top: 14% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(820px, 88vw) !important;
    height: auto !important;
    max-width: 820px !important;
    z-index: 4 !important;
}
#rec885692098 .tn-elem[data-elem-id="1741344882876"] .tn-atom__img {
    width: 100% !important;
    height: auto !important;
    max-height: 460px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}
@media (max-width: 959px) {
    #rec885692098 .tn-elem[data-elem-id="1741344882876"] {
        top: 12% !important;
        width: min(620px, 85vw) !important;
    }
    #rec885692098 .tn-elem[data-elem-id="1741344882876"] .tn-atom__img {
        max-height: 360px !important;
    }
}
@media (max-width: 639px) {
    #rec885692098 .tn-elem[data-elem-id="1741344882876"] {
        top: 14% !important;
        width: min(380px, 86vw) !important;
    }
    #rec885692098 .tn-elem[data-elem-id="1741344882876"] .tn-atom__img {
        max-height: 240px !important;
    }
}

/* Hero buttons sizing */
#rec885692098 .tn-elem[data-elem-id="1741344940972"],
#rec885692098 .tn-elem[data-elem-id="1741982459628"],
#rec885692098 .tn-elem[data-elem-id="1741344940970"],
#rec885692098 .tn-elem[data-elem-id="1741982474798"],
#rec885692098 .tn-elem[data-elem-id="9100000001"] {
    width: 280px !important;
    height: 58px !important;
    z-index: 5 !important;
}

/* Desktop button positions */
@media (min-width: 960px) {
    #rec885692098 .tn-elem[data-elem-id="1741344940972"] {
        top: 64% !important; left: calc(50% - 290px) !important; transform: none !important;
    }
    #rec885692098 .tn-elem[data-elem-id="1741982459628"] {
        top: 64% !important; left: calc(50% + 10px) !important; transform: none !important;
    }
    #rec885692098 .tn-elem[data-elem-id="1741982474798"] {
        top: calc(64% + 74px) !important; left: calc(50% - 290px) !important; transform: none !important;
    }
    #rec885692098 .tn-elem[data-elem-id="1741344940970"] {
        top: calc(64% + 74px) !important; left: calc(50% + 10px) !important; transform: none !important;
    }
    #rec885692098 .tn-elem[data-elem-id="9100000001"] {
        top: calc(64% + 148px) !important; left: calc(50% - 140px) !important; transform: none !important;
    }
}
@media (max-width: 959px) and (min-width: 640px) {
    #rec885692098 .tn-elem[data-elem-id="1741344940972"] {
        top: 56% !important; left: calc(50% - 290px) !important; transform: none !important;
    }
    #rec885692098 .tn-elem[data-elem-id="1741982459628"] {
        top: 56% !important; left: calc(50% + 10px) !important; transform: none !important;
    }
    #rec885692098 .tn-elem[data-elem-id="1741982474798"] {
        top: calc(56% + 74px) !important; left: calc(50% - 290px) !important; transform: none !important;
    }
    #rec885692098 .tn-elem[data-elem-id="1741344940970"] {
        top: calc(56% + 74px) !important; left: calc(50% + 10px) !important; transform: none !important;
    }
    #rec885692098 .tn-elem[data-elem-id="9100000001"] {
        top: calc(56% + 148px) !important; left: calc(50% - 140px) !important; transform: none !important;
    }
}
@media (max-width: 639px) {
    #rec885692098 .tn-elem[data-elem-id="1741344940972"],
    #rec885692098 .tn-elem[data-elem-id="1741982459628"],
    #rec885692098 .tn-elem[data-elem-id="1741344940970"],
    #rec885692098 .tn-elem[data-elem-id="1741982474798"],
    #rec885692098 .tn-elem[data-elem-id="9100000001"] {
        width: 220px !important;
        height: 48px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    #rec885692098 .tn-elem[data-elem-id="1741344940972"] { top: 50% !important; }
    #rec885692098 .tn-elem[data-elem-id="1741982459628"] { top: calc(50% + 58px) !important; }
    #rec885692098 .tn-elem[data-elem-id="1741982474798"] { top: calc(50% + 116px) !important; }
    #rec885692098 .tn-elem[data-elem-id="1741344940970"] { top: calc(50% + 174px) !important; }
    #rec885692098 .tn-elem[data-elem-id="9100000001"]    { top: calc(50% + 232px) !important; }
}

/* OUTLINE buttons (4 of 5): white bg, gold border, gold text */
#rec885692098 .tn-elem[data-elem-id="1741982459628"] .tn-atom,
#rec885692098 .tn-elem[data-elem-id="1741344940970"] .tn-atom,
#rec885692098 .tn-elem[data-elem-id="1741982474798"] .tn-atom,
#rec885692098 .tn-elem[data-elem-id="9100000001"] .tn-atom {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important; width: 100% !important;
    background: rgba(255,255,255,0.96) !important;
    background-image: none !important;
    color: #bb9d41 !important;
    border: 1px solid #bb9d41 !important;
    border-radius: 30px !important;
    font-family: 'TildaSans', Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10) !important;
    transition: all 0.25s ease !important;
    overflow: hidden !important;
    font-synthesis: none !important;
}
#rec885692098 .tn-elem[data-elem-id="1741982459628"] a.tn-atom,
#rec885692098 .tn-elem[data-elem-id="1741344940970"] a.tn-atom,
#rec885692098 .tn-elem[data-elem-id="1741982474798"] a.tn-atom,
#rec885692098 .tn-elem[data-elem-id="9100000001"] a.tn-atom {
    color: #bb9d41 !important;
}
#rec885692098 .tn-elem[data-elem-id="1741982459628"] .tn-atom:hover,
#rec885692098 .tn-elem[data-elem-id="1741344940970"] .tn-atom:hover,
#rec885692098 .tn-elem[data-elem-id="1741982474798"] .tn-atom:hover,
#rec885692098 .tn-elem[data-elem-id="9100000001"] .tn-atom:hover {
    background: #161512 !important;
    color: #fff !important;
    border-color: #161512 !important;
}

/* GOLD button (Reservar Cita = first) - with moving glare effect */
#rec885692098 .tn-elem[data-elem-id="1741344940972"] .tn-atom {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important; width: 100% !important;
    background-image: linear-gradient(.25turn, #eedc81 0%, #bb9d41 100%) !important;
    color: #161512 !important;
    border: 1px solid #bb9d41 !important;
    border-radius: 30px !important;
    font-family: 'TildaSans', Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-shadow: 0 2px 10px rgba(187,157,65,0.35) !important;
    transition: all 0.25s ease !important;
    overflow: hidden !important;
    font-synthesis: none !important;
}
#rec885692098 .tn-elem[data-elem-id="1741344940972"] a.tn-atom {
    color: #161512 !important;
}
#rec885692098 .tn-elem[data-elem-id="1741344940972"] .tn-atom:hover {
    box-shadow: 0 4px 14px rgba(187,157,65,0.55) !important;
    transform: translateY(-1px);
}
/* Hide tilda's border pseudo-elements on gold button */
#rec885692098 .tn-elem[data-elem-id="1741344940972"] .tn-atom::before,
#rec885692098 .tn-elem[data-elem-id="9100000001"] .tn-atom::before,
#rec885692098 .tn-elem[data-elem-id="9100000001"] .tn-atom::after {
    display: none !important;
}

/* MOVING GLARE EFFECT (REF3) - using ::after, fully replacing tilda's ::after */
#rec885692098 .tn-elem[data-elem-id="1741344940972"] .tn-atom::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -75% !important;
    width: 50% !important;
    height: 100% !important;
    background: linear-gradient(
        100deg,
        rgba(255, 255, 255, 0) 20%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0) 80%
    ) !important;
    transform: skewX(-20deg) !important;
    animation: btnGlare 3s ease-in-out infinite !important;
    pointer-events: none !important;
    z-index: 1 !important;
    border: none !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
    opacity: 1 !important;
}
@keyframes btnGlare {
    0%   { left: -75%; }
    100% { left: 125%; }
}

/* Hide tilda's existing grette shimmer */
#rec885692098 .tn-elem[data-elem-id="9100000001"] .grette__wrap,
#rec885692098 .tn-elem[data-elem-id="1741344940972"] .grette__wrap,
#rec885692098 .tn-elem[data-elem-id="1741982459628"] .grette__wrap,
#rec885692098 .tn-elem[data-elem-id="1741344940970"] .grette__wrap,
#rec885692098 .tn-elem[data-elem-id="1741982474798"] .grette__wrap { display: none !important; }

/* Social icons in hero - keep top-right */
#rec885692098 .tn-elem[data-elem-id="1741983011934"],
#rec885692098 .tn-elem[data-elem-id="1741983016124"],
#rec885692098 .tn-elem[data-elem-id="1741983021751"] {
    top: 22px !important;
}

/* ============================================================
   "Qué nos hace Diferentes" - TildaSans, slightly larger
   ============================================================ */
#rec896468749 .tn-elem[data-elem-id="1741326011775"] .tn-atom {
    font-size: 52px !important;
    line-height: 1.2 !important;
    font-family: 'TildaSans', Arial, sans-serif !important;
    font-weight: 600 !important;
    font-synthesis: none !important;
    text-transform: none !important;
}
@media (max-width: 959px) {
    #rec896468749 .tn-elem[data-elem-id="1741326011775"] .tn-atom { font-size: 38px !important; }
}
@media (max-width: 640px) {
    #rec896468749 .tn-elem[data-elem-id="1741326011775"] .tn-atom { font-size: 30px !important; }
}

/* ============================================================
   Liquid BBL / Rinolips packs section
   ============================================================ */
#rec886365656 .tn-elem[data-elem-id="9000000012"],
#rec886365656 .tn-elem[data-elem-id="9000000022"] {
    height: auto !important;
    min-height: 64px !important;
    overflow: visible !important;
}
#rec886365656 .tn-elem[data-elem-id="9000000012"] .tn-atom,
#rec886365656 .tn-elem[data-elem-id="9000000022"] .tn-atom {
    line-height: 1.3 !important;
    white-space: normal !important;
}
/*@media (max-width: 480px) {*/
/*    #rec886365656 .t396__artboard,*/
/*    #rec886365656 .t396__carrier,*/
/*    #rec886365656 .t396__filter { height: 3300px !important; min-height: 3300px !important; }*/
/*}*/
/*@media (max-width: 400px) {*/
/*    #rec886365656 .t396__artboard,*/
/*    #rec886365656 .t396__carrier,*/
/*    #rec886365656 .t396__filter { height: 3250px !important; min-height: 3250px !important; }*/
/*}*/

/* ============================================================
   Video section fix
   ============================================================ */
#rec890360293 { overflow: hidden !important; max-width: 100% !important; }
#rec890360293 .t396__artboard {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
#rec890360293 .t396__artboard::-webkit-scrollbar { height: 6px; }
#rec890360293 .t396__artboard::-webkit-scrollbar-thumb { background: #bb9d41; border-radius: 3px; }
#rec890360293 video {
    width: 100%; height: 100%;
    object-fit: cover; border-radius: 12px;
    background: #f0ede4;
}
#rec890360293 .play-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.15);
    display: flex; align-items: center; justify-content: center;
    pointer-events: none; border-radius: 12px;
}
#rec890360293 .play-overlay::before {
    content: '▶'; color: #fff; font-size: 36px;
    background: rgba(0,0,0,0.55);
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    padding-left: 4px;
}

/* ============================================================
   GOOGLE TRANSLATE - hide widget UI but keep functional
   ============================================================ */
.goog-te-banner-frame, .skiptranslate, #goog-gt-tt,
.goog-te-balloon-frame, .goog-te-spinner-pos { display: none !important; }
body { top: 0 !important; }
body.translated-ltr, body.translated-rtl { top: 0 !important; }
.goog-text-highlight { background: transparent !important; box-shadow: none !important; }
#google_translate_element {
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* ============================================================
   COMPACT FOOTER (matches home design) - for treatment & gallery pages
   ============================================================ */
.fbm-footer {
    background: #fff;
    padding: 0;
    font-family: 'TildaSans', Arial, sans-serif !important;
    font-synthesis: none !important;
}
.fbm-footer__contact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 30px 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}
.fbm-footer__logo {
    text-align: center;
    margin: 0 auto 20px;
    width: 100%;
    grid-column: 1 / -1;
}
.fbm-footer__logo img {
    width: 100%;
    max-width: 460px;
    height: auto;
    filter: brightness(0%);
    display: block;
    margin: 0 auto;
}
.fbm-footer__info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}
.fbm-footer__addr {
    font-family: 'TildaSans', Arial, sans-serif !important;
    font-size: 16px;
    color: #161512;
    text-align: center;
    margin: 0 0 8px;
    line-height: 1.5;
    font-synthesis: none !important;
}
.fbm-footer__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 280px;
}
.fbm-footer__btn {
    display: block;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'TildaSans', Arial, sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #161512;
    background-image: linear-gradient(.25turn, #eedc81 0%, #bb9d41 100%);
    border: 1px solid #bb9d41;
    transition: all 0.25s ease;
    font-synthesis: none !important;
}
.fbm-footer__btn:hover {
    background-image: none;
    background-color: #161512;
    color: #fff;
}
.fbm-footer__map {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 12px;
    display: block;
}
.fbm-footer__tagline {
    padding: 40px 30px 60px;
    text-align: center;
    background: #fff;
}
.fbm-footer__tagline h2 {
    font-family: 'TildaSans', Arial, sans-serif !important;
    font-size: 42px;
    font-weight: 600;
    color: #161512;
    margin: 0 0 30px 0;
    line-height: 1.25;
    text-transform: none;
    letter-spacing: 0;
    font-synthesis: none !important;
}
.fbm-footer__tagline-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.fbm-footer__tagline-buttons a {
    display: inline-block;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'TildaSans', Arial, sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    font-synthesis: none !important;
}
.fbm-footer__tagline-buttons .fbm-btn-gold {
    background-image: linear-gradient(.25turn, #eedc81 0%, #bb9d41 100%);
    color: #161512;
    border: 1px solid #bb9d41;
}
.fbm-footer__tagline-buttons .fbm-btn-gold:hover {
    background-image: none;
    background-color: #161512;
    color: #fff;
}
.fbm-footer__tagline-buttons .fbm-btn-outline {
    background: transparent;
    color: #bb9d41;
    border: 1px solid #bb9d41;
}
.fbm-footer__tagline-buttons .fbm-btn-outline:hover {
    background: #161512;
    color: #fff;
    border-color: #161512;
}
.fbm-footer__license {
    background: #171717;
    color: #fff;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.fbm-footer__license-left {
    font-family: 'TildaSans', Arial, sans-serif !important;
    font-size: 13px;
    text-align: left;
    line-height: 1.6;
    color: #fff;
    font-synthesis: none !important;
}
.fbm-footer__license-left a {
    color: #fff;
    text-decoration: underline;
    display: block;
}
.fbm-footer__license-right {
    color: #fff;
    font-family: 'TildaSans', Arial, sans-serif !important;
    font-size: 13px;
    cursor: pointer;
    background: none;
    border: 0;
    text-decoration: none;
    font-synthesis: none !important;
}
.fbm-footer__license-right:hover { text-decoration: underline; }
@media (max-width: 959px) {
    .fbm-footer__contact {
        grid-template-columns: 1fr;
        padding: 40px 20px 30px;
        gap: 28px;
    }
    .fbm-footer__map { height: 320px; }
    .fbm-footer__tagline h2 { font-size: 30px; }
}
@media (max-width: 639px) {
    .fbm-footer__tagline { padding: 30px 18px 40px; }
    .fbm-footer__tagline h2 { font-size: 24px; }
    .fbm-footer__tagline-buttons a { padding: 14px 24px; font-size: 13px; width: 100%; max-width: 280px; }
    .fbm-footer__license {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }
    .fbm-footer__license-left { text-align: center; }
    .fbm-footer__logo img { max-width: 320px; }
}
