/*
Theme Name: Farsheed Elegance
Theme URI: https://renov-fenetre-bordeaux.fr
Author: Farsheed
Author URI: https://renov-fenetre-bordeaux.fr
Description: Thème élégant pour Rénov Fenêtre Bordeaux – menuiserie, fenêtres et réparation sur mesure. Design inspiré de l'artisanat de luxe avec palette or et vert profond.
Version: 1.0
Text Domain: farsheed-elegance
*/
:root {
    --gold: #C9A84C;
    --gold-light: #E8D08A;
    --dark: #0F1A14;
    --dark-2: #1A2D22;
    --green: #2C4A35;
    --green-light: #3D6B4A;
    --cream: #F5F0E8;
    --cream-2: #EDE5D4;
    --text-light: #D4CBB8;
    --white: #FFFFFF;
  }
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--cream);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 60px;
    background: linear-gradient(to bottom, rgba(15,26,20,0.95) 0%, transparent 100%);
    backdrop-filter: blur(2px);
  }
  .logo {
    display: flex; align-items: center; gap: 14px;
  }
  .logo-mark {
    width: 44px; height: 44px;
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    transform: rotate(45deg);
  }
  .logo-mark::before {
    content: '';
    position: absolute; inset: 4px;
    border: 1px solid var(--gold-light);
    opacity: 0.5;
  }
  .logo-mark span {
    transform: rotate(-45deg);
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 900;
    color: var(--gold);
    line-height: 1;
  }
  .logo-text {
    display: flex; flex-direction: column;
  }
  .logo-text .brand {
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 700;
    color: var(--cream); letter-spacing: 0.02em;
    line-height: 1.1;
  }
  .logo-text .tagline {
    font-size: 10px; font-weight: 300;
    color: var(--gold); letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  nav ul {
    display: flex; gap: 36px; list-style: none;
  }
  nav ul a {
    text-decoration: none; color: var(--text-light);
    font-size: 13px; font-weight: 400; letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  nav ul a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold);
    color: var(--dark) !important;
    padding: 10px 24px;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; color: var(--dark) !important; }

  /* HERO SLIDER */
  .hero {
    position: relative; height: 100vh; overflow: hidden;
  }
  .slides {
    display: flex; height: 100%;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .slide {
    min-width: 100%; height: 100%;
    position: relative; overflow: hidden;
  }
  .slide-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.05);
    transition: transform 6s ease;
  }
  .slide.active .slide-bg { transform: scale(1); }
  .slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,26,20,0.85) 0%, rgba(15,26,20,0.3) 60%, transparent 100%);
  }
  .slide-content {
    position: absolute; bottom: 15%; left: 60px;
    max-width: 580px;
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s 0.4s, transform 0.8s 0.4s;
  }
  .slide.active .slide-content {
    opacity: 1; transform: translateY(0);
  }
  .slide-label {
    font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .slide-label::before {
    content: ''; display: block;
    width: 40px; height: 1px; background: var(--gold);
  }
  .slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 900; line-height: 1.05;
    color: var(--white); margin-bottom: 20px;
  }
  .slide-title em {
    font-style: italic; color: var(--gold-light);
  }
  .slide-desc {
    font-size: 16px; font-weight: 300; color: var(--text-light);
    line-height: 1.7; margin-bottom: 36px;
    max-width: 420px;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold); color: var(--dark);
    padding: 15px 32px; font-size: 13px;
    font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; text-decoration: none;
    transition: all 0.25s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateX(4px); }
  .btn-primary svg { width: 16px; height: 16px; }

  /* Slider controls */
  .slider-nav {
    position: absolute; bottom: 12%; right: 60px;
    display: flex; flex-direction: column; gap: 8px; align-items: center;
  }
  .slider-dots {
    display: flex; flex-direction: column; gap: 6px;
  }
  .dot {
    width: 2px; height: 24px;
    background: rgba(201,168,76,0.3);
    cursor: pointer; transition: all 0.3s;
  }
  .dot.active {
    height: 48px; background: var(--gold);
  }
  .slider-arrows {
    display: flex; flex-direction: column; gap: 8px; margin-top: 20px;
  }
  .arrow-btn {
    width: 44px; height: 44px;
    border: 1px solid rgba(201,168,76,0.4);
    background: transparent; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); transition: all 0.2s;
  }
  .arrow-btn:hover { background: var(--gold); color: var(--dark); }
  .arrow-btn svg { width: 18px; height: 18px; }

  /* Slide counter */
  .slide-counter {
    position: absolute; top: 50%; right: 60px;
    transform: translateY(-50%);
    font-size: 11px; letter-spacing: 0.1em; color: var(--text-light);
    writing-mode: vertical-rl;
  }

  /* SERVICES STRIP */
  .services-strip {
    background: var(--dark-2);
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    display: flex; overflow: hidden;
  }
  .service-item {
    flex: 1; padding: 32px 40px;
    border-right: 1px solid rgba(201,168,76,0.1);
    display: flex; align-items: center; gap: 18px;
    transition: background 0.2s; cursor: default;
  }
  .service-item:last-child { border-right: none; }
  .service-item:hover { background: rgba(201,168,76,0.05); }
  .service-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
  }
  .service-icon svg { width: 22px; height: 22px; }
  .service-info .s-title {
    font-size: 14px; font-weight: 500; color: var(--cream);
    margin-bottom: 4px;
  }
  .service-info .s-sub {
    font-size: 12px; color: var(--text-light); font-weight: 300;
  }

  /* ABOUT SECTION */
  .section { padding: 100px 60px; }
  .about {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center;
  }
  .section-label {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before {
    content: ''; width: 30px; height: 1px; background: var(--gold);
  }
  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 900; line-height: 1.1; color: var(--cream);
    margin-bottom: 24px;
  }
  h2 em { font-style: italic; color: var(--gold-light); }
  .about-text p {
    font-size: 16px; font-weight: 300; color: var(--text-light);
    line-height: 1.8; margin-bottom: 16px;
  }
  .stats-row {
    display: flex; gap: 40px; margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(201,168,76,0.2);
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 42px; font-weight: 700; color: var(--gold);
    line-height: 1;
  }
  .stat-label {
    font-size: 12px; font-weight: 300; color: var(--text-light);
    letter-spacing: 0.05em; margin-top: 4px;
  }
  .about-img {
    position: relative;
  }
  .about-img-main {
    width: 100%; aspect-ratio: 4/5;
    background: var(--dark-2);
    overflow: hidden; position: relative;
  }
  .about-badge {
    position: absolute; bottom: -24px; left: -24px;
    width: 140px; height: 140px;
    background: var(--gold);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
  }
  .about-badge .b-num {
    font-family: 'Playfair Display', serif;
    font-size: 44px; font-weight: 900; color: var(--dark);
    line-height: 1;
  }
  .about-badge .b-text {
    font-size: 11px; font-weight: 500; color: var(--dark);
    text-align: center; line-height: 1.3;
    letter-spacing: 0.05em;
  }

  /* PRODUCTS GRID */
  .products-section { padding: 100px 60px; background: var(--dark-2); }
  .section-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 60px;
  }
  .products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  }
  .product-card {
    position: relative; overflow: hidden; cursor: pointer;
    aspect-ratio: 3/4;
  }
  .product-card:first-child {
    grid-row: span 2; aspect-ratio: auto;
  }
  .product-bg {
    position: absolute; inset: 0;
    transition: transform 0.5s ease;
  }
  .product-card:hover .product-bg { transform: scale(1.05); }
  .product-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,26,20,0.9) 0%, transparent 50%);
    transition: opacity 0.3s;
  }
  .product-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 28px;
  }
  .product-num {
    font-size: 11px; letter-spacing: 0.15em; color: var(--gold);
    margin-bottom: 6px;
  }
  .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700; color: var(--white);
  }
  .product-sub {
    font-size: 13px; color: var(--text-light); margin-top: 4px;
  }

  /* TESTIMONIALS */
  .testimonials { padding: 100px 60px; }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: 60px;
  }
  .testimonial-card {
    background: var(--dark-2);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 36px;
    position: relative;
  }
  .testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 80px; font-weight: 900; color: var(--gold);
    opacity: 0.15; position: absolute; top: 10px; left: 24px;
    line-height: 1;
  }
  .stars {
    display: flex; gap: 4px; margin-bottom: 20px;
  }
  .star { color: var(--gold); font-size: 14px; }
  .t-text {
    font-size: 15px; font-weight: 300; color: var(--text-light);
    line-height: 1.8; margin-bottom: 24px;
    font-style: italic;
  }
  .t-author {
    display: flex; align-items: center; gap: 12px;
  }
  .t-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--green); border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 500; color: var(--gold-light);
    font-family: 'Playfair Display', serif;
  }
  .t-name { font-size: 14px; font-weight: 500; color: var(--cream); }
  .t-loc { font-size: 12px; color: var(--text-light); }

  /* CTA */
  .cta-section {
    padding: 100px 60px;
    background: var(--green);
    text-align: center; position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 50%;
  }
  .cta-section::after {
    content: ''; position: absolute;
    bottom: -150px; left: -150px;
    width: 400px; height: 400px;
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 50%;
  }
  .cta-section h2 { font-size: clamp(36px, 4vw, 60px); margin-bottom: 20px; }
  .cta-section p {
    font-size: 17px; font-weight: 300; color: var(--text-light);
    max-width: 500px; margin: 0 auto 44px; line-height: 1.7;
  }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid var(--gold); color: var(--gold);
    padding: 15px 32px; font-size: 13px;
    font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; text-decoration: none;
    transition: all 0.25s; background: transparent;
    cursor: pointer;
  }
  .btn-outline:hover { background: rgba(201,168,76,0.1); }

  /* FOOTER */
  footer {
    background: #070E09;
    padding: 60px;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
    margin-bottom: 48px;
  }
  .footer-brand p {
    font-size: 14px; font-weight: 300; color: var(--text-light);
    line-height: 1.8; margin-top: 20px; margin-bottom: 24px;
    max-width: 280px;
  }
  .footer-contact-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--text-light); margin-bottom: 8px;
  }
  .footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
  .footer-col h4 {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px; font-weight: 500;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    font-size: 14px; font-weight: 300; color: var(--text-light);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid rgba(201,168,76,0.1);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p { font-size: 12px; color: var(--text-light); font-weight: 300; }

  .bg-1 { background: linear-gradient(135deg, #1e3a2a 0%, #2d5c3f 100%); }
  .bg-2 { background: linear-gradient(135deg, #2a2a1e 0%, #4a3d20 100%); }
  .bg-3 { background: linear-gradient(135deg, #1e2a3a 0%, #2a3d5c 100%); }
  .bg-4 { background: linear-gradient(135deg, #2a1e1e 0%, #5c2a2a 100%); }
  .bg-5 { background: linear-gradient(135deg, #1a1e2a 0%, #2a2d4a 100%); }

  .window-graphic {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .window-graphic svg {
    width: 60%; height: 60%; opacity: 0.15; color: var(--gold-light);
  }


/* -------------------------------------------------------------
   WordPress-ready additions: assets, responsive navigation,
   accessibility and mobile layout. All page content is wrapped
   in #rfb-site to keep it isolated from the active WP theme.
-------------------------------------------------------------- */
html { scroll-behavior: smooth; }
body.rfb-preview-body { margin: 0; background: #0F1A14; }
#rfb-site { --rfb-nav-height: 84px; min-height: 100vh; background: var(--dark); color: var(--cream); }
#rfb-site img { display: block; max-width: 100%; }
#rfb-site .slide-bg {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: saturate(.94) contrast(1.02);
}
#rfb-site .slide-overlay {
  background: linear-gradient(90deg, rgba(7,14,9,.9) 0%, rgba(15,26,20,.72) 35%, rgba(15,26,20,.18) 72%, rgba(15,26,20,.06) 100%);
}
#rfb-site .rfb-hero-city {
  display: block; margin-top: 10px; color: var(--cream); font-size: .46em;
  font-style: normal; font-weight: 400; letter-spacing: .28em; text-transform: uppercase;
}
#rfb-site .about-img-main img,
#rfb-site img.product-bg { width: 100%; height: 100%; object-fit: cover; }
#rfb-site img.product-bg { position: absolute; inset: 0; transition: transform .6s ease; }
#rfb-site .product-card:hover img.product-bg { transform: scale(1.045); }
#rfb-site .product-card { background: var(--dark); }
#rfb-site .product-overlay { background: linear-gradient(to top, rgba(7,14,9,.94) 0%, rgba(15,26,20,.28) 56%, rgba(15,26,20,.04) 100%); }
#rfb-site .product-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
}
#rfb-site .rfb-menu-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid rgba(201,168,76,.45);
  background: rgba(15,26,20,.72); align-items: center; justify-content: center;
  flex-direction: column; gap: 5px; cursor: pointer;
}
#rfb-site .rfb-menu-toggle span { width: 19px; height: 1px; background: var(--gold); transition: transform .25s, opacity .25s; }
#rfb-site .rfb-menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
#rfb-site .rfb-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
#rfb-site .rfb-menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
#rfb-site .dot { border: 0; padding: 0; display: block; }
#rfb-site .rfb-form-status { min-height: 20px; margin-top: 10px; text-align: center; font-size: 13px; color: var(--gold-light); }
#rfb-site :focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
#rfb-site input::placeholder,
#rfb-site textarea::placeholder { color: rgba(212,203,184,.48); }
#rfb-site input,
#rfb-site textarea,
#rfb-site button { border-radius: 0; }

#rfb-site nav {
  align-items: center;
}

@media (max-width: 1100px) {
  #rfb-site nav { padding: 18px 30px; }
  #rfb-site nav ul { gap: 22px; }
  #rfb-site .slide-content { left: 30px; max-width: 540px; }
  #rfb-site .slider-nav, #rfb-site .slide-counter { right: 30px; }
  #rfb-site .service-item { padding: 26px 22px; }
  #rfb-site .section, #rfb-site .products-section, #rfb-site .testimonials, #rfb-site .cta-section { padding-left: 30px; padding-right: 30px; }
  #rfb-site .about { gap: 48px; }
}

@media (max-width: 860px) {
  #rfb-site { --rfb-nav-height: 76px; }
  #rfb-site nav { padding: 14px 22px; background: rgba(7,14,9,.94); backdrop-filter: blur(12px); }
  #rfb-site .rfb-menu-toggle { display: flex; }
  #rfb-site nav ul {
    position: absolute; top: 100%; left: 0; right: 0; display: grid; gap: 0;
    background: rgba(7,14,9,.98); border-top: 1px solid rgba(201,168,76,.18);
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .25s, transform .25s, visibility .25s;
  }
  #rfb-site nav ul.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  #rfb-site nav ul li { border-bottom: 1px solid rgba(201,168,76,.1); }
  #rfb-site nav ul a { display: block; padding: 17px 22px; }
  #rfb-site nav ul .nav-cta { margin: 12px 22px 18px; text-align: center; }
  #rfb-site .hero { height: min(860px, 100svh); min-height: 680px; }
  #rfb-site .slide-content { left: 24px; right: 70px; bottom: 13%; }
  #rfb-site .slide-title { font-size: clamp(38px, 9vw, 58px); }
  #rfb-site .slider-nav { right: 22px; bottom: 9%; }
  #rfb-site .slide-counter { display: none; }
  #rfb-site .services-strip { display: grid; grid-template-columns: 1fr 1fr; }
  #rfb-site .service-item { border-bottom: 1px solid rgba(201,168,76,.1); }
  #rfb-site .about { grid-template-columns: 1fr; }
  #rfb-site .about-img { max-width: 640px; width: 100%; margin: 0 auto; }
  #rfb-site .products-grid { grid-template-columns: repeat(2, 1fr); }
  #rfb-site .product-card:first-child { grid-row: span 1; aspect-ratio: 3/4; }
  #rfb-site .testimonials-grid { grid-template-columns: 1fr; }
  #rfb-site .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
  #rfb-site .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  #rfb-site nav { padding: 12px 16px; }
  #rfb-site .logo-mark { width: 38px; height: 38px; }
  #rfb-site .logo-text .brand { font-size: 15px; }
  #rfb-site .logo-text .tagline { font-size: 8px; }
  #rfb-site .hero { min-height: 640px; }
  #rfb-site .slide-bg { object-position: 58% center; }
  #rfb-site .slide-overlay { background: linear-gradient(90deg, rgba(7,14,9,.9), rgba(15,26,20,.62) 74%, rgba(15,26,20,.18)); }
  #rfb-site .slide-content { left: 18px; right: 46px; bottom: 12%; }
  #rfb-site .slide-desc { font-size: 15px; margin-bottom: 28px; }
  #rfb-site .btn-primary, #rfb-site .btn-outline { padding: 14px 20px; }
  #rfb-site .slider-nav { right: 14px; }
  #rfb-site .slider-arrows { display: none; }
  #rfb-site .services-strip { grid-template-columns: 1fr; }
  #rfb-site .service-item { border-right: 0; }
  #rfb-site .section, #rfb-site .products-section, #rfb-site .testimonials, #rfb-site .cta-section, #rfb-site #devis { padding: 72px 18px !important; }
  #rfb-site .stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  #rfb-site .stat-num { font-size: 34px; }
  #rfb-site .about-badge { left: -8px; bottom: -18px; width: 116px; height: 116px; }
  #rfb-site .about-badge .b-num { font-size: 36px; }
  #rfb-site .section-header { align-items: flex-start; flex-direction: column; gap: 24px; }
  #rfb-site .products-grid { grid-template-columns: 1fr; gap: 10px; }
  #rfb-site .product-card, #rfb-site .product-card:first-child { aspect-ratio: 4/5; }
  #rfb-site .testimonials-grid { margin-top: 36px; }
  #rfb-site .testimonial-card { padding: 28px 24px; }
  #rfb-site .cta-btns { flex-direction: column; align-items: stretch; }
  #rfb-site .cta-btns a { justify-content: center; }
  #rfb-site footer { padding: 52px 18px; }
  #rfb-site .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  #rfb-site .footer-brand { grid-column: 1 / -1; }
  #rfb-site .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  #rfb-site #rfb-quote-form [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  #rfb-site #service-choices { grid-template-columns: repeat(2,1fr) !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  #rfb-site *, #rfb-site *::before, #rfb-site *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
