/* ================================
   Racing Division - Footer
================================ */

.rd-footer {
  background: #030303;
  border-top: 1px solid rgba(0,200,83,.28);
  color: var(--rd-text);
}

.rd-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding: 46px 0 38px;
}

.rd-footer__logo {
  display: inline-flex;
  margin-bottom: 18px;
}

.rd-footer__logo img {
  width: 170px;
  height: auto;
}

.rd-footer__brand p,
.rd-footer__contact p {
  margin: 0 0 8px;
  color: var(--rd-text);
  font-size: 16px;
  line-height: 1.5;
}

.rd-footer__social {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.rd-footer__social a {
  font-size: 0;
  width: 20px;
  height: 20px;
  position: relative;
  opacity: .85;
}

.rd-footer__social a::before {
  font-size: 15px;
  color: var(--rd-text);
}



.rd-footer__social a:hover::before {
  color: var(--rd-green);
}

.rd-footer__col h3 {
  margin: 0 0 16px;
  color: var(--rd-green);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.rd-footer__col a {
  display: block;
  margin-bottom: 8px;
  color: var(--rd-text);
  font-size: 16px;
  line-height: 1.4;
}

.rd-footer__col a:hover {
  color: var(--rd-green);
}

.rd-footer__contact p {
  position: relative;
  padding-left: 22px;
}

.rd-footer__contact p::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rd-green);
  font-size: 13px;
}

.rd-footer__bottom {
  border-top: 1px solid var(--rd-border);
}

.rd-footer__bottom-inner {
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.rd-footer__bottom p {
  margin: 0;
  color: var(--rd-text-muted);
  font-size: 12px;
}

.rd-footer__payments {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.rd-footer__payments a{
    display: flex;
  justify-content: center;
  align-items: center;
}

.rd-footer__payments img{
      object-fit: contain;
    width: 30px;
    height: 30px;
}

.rd-footer__payments span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 18px;
  padding: 0 5px;
  background: #141414;
  border: 1px solid var(--rd-border);
  border-radius: 4px;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.rd-footer__currency {
  justify-self: end;
  color: var(--rd-text);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .rd-footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .rd-footer__top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 0 32px;
  }

  .rd-footer__logo img{
    width: 120px;
  }

  .rd-footer__bottom-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 18px 0;
  }

  .rd-footer__currency {
    justify-self: center;
  }
}

.rd-whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 58px;
  height: 58px;

  border-radius: 50%;
  background: #25d366;
  color: #fff;

  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.rd-whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.rd-whatsapp-float:hover,
.rd-whatsapp-float:focus-visible {
  background: #1ebe5d;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .45);
}

.rd-whatsapp-float:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

@media (max-width: 767px) {
  .rd-whatsapp-float {
    right: 16px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .rd-whatsapp-float svg {
    width: 27px;
    height: 27px;
  }
}

.rd-footer__social-row {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 24px;
}

.rd-footer__social {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 0;
}

.rd-footer__language {
    display: flex;
    align-items: center;
}

.rd-footer__language .gtranslate_wrapper {
    display: flex;
    align-items: center;
}

.rd-footer__language select {
    min-width: 105px;
    min-height: 34px;
    padding: 0 28px 0 10px;
    border: 1px solid rgba(0, 200, 83, .45);
    border-radius: 5px;
    background: #0b100d;
    color: #fff;
    font-size: 11px;
    cursor: pointer;
}

.rd-footer__language select:focus {
    outline: 2px solid rgba(0, 200, 83, .35);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .rd-footer__social-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }
}

/* ==========================================================
   RACING DIVISION · NUR POPUP
========================================================== */

.rd-nur-popup {
  position: fixed;
  inset: 0;
  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity .4s ease,
    visibility .4s ease;
}

.rd-nur-popup.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* BACKDROP */

.rd-nur-popup__backdrop {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}


/* POPUP */

.rd-nur-popup__dialog {
  position: relative;
  z-index: 2;

  width: min(1180px, 100%);
  min-height: 610px;

  display: grid;
  grid-template-columns: 43% 57%;
  grid-template-rows: 1fr auto;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 75% 45%,
      rgba(182, 145, 64, .08),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #111 0%,
      #090909 55%,
      #050505 100%
    );

  border: 1px solid rgba(255,255,255,.20);
  border-radius: 12px;

  box-shadow:
    0 40px 100px rgba(0,0,0,.75);

  transform: translateY(30px) scale(.97);

  transition:
    transform .5s cubic-bezier(.22,.61,.36,1);
}

.rd-nur-popup.is-active .rd-nur-popup__dialog {
  transform: translateY(0) scale(1);
}


/* CLOSE */

.rd-nur-popup__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 20;

  width: 42px;
  height: 42px;

  border: 0;
  padding: 0;
  background: transparent;

  cursor: pointer;
}

.rd-nur-popup__close span {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 24px;
  height: 1px;

  background: #fff;

  transition: transform .25s ease;
}

.rd-nur-popup__close span:first-child {
  transform:
    translate(-50%, -50%)
    rotate(45deg);
}

.rd-nur-popup__close span:last-child {
  transform:
    translate(-50%, -50%)
    rotate(-45deg);
}

.rd-nur-popup__close:hover span:first-child {
  transform:
    translate(-50%, -50%)
    rotate(135deg);
}

.rd-nur-popup__close:hover span:last-child {
  transform:
    translate(-50%, -50%)
    rotate(45deg);
}


/* TEXT */

.rd-nur-popup__content {
  position: relative;
  z-index: 5;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 70px 20px 55px 60px;
}

.rd-nur-popup__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-bottom: 20px;

  color: #c9a95d;

  font-size: 13px;
  font-weight: 500;

  letter-spacing: .25em;
  text-transform: uppercase;
}

.rd-nur-popup__eyebrow span {
  width: 38px;
  height: 1px;
  background: #c9a95d;
}


.rd-nur-popup__content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(70px, 7vw, 116px);
  font-weight: 700;
  line-height: .84;
  letter-spacing: -.05em;
}


.rd-nur-popup__claim {
  margin-top: 20px;

  color: rgba(255,255,255,.94);

  font-size: 14px;
  font-weight: 500;

  letter-spacing: .27em;
  text-transform: uppercase;
}


.rd-nur-popup__description {
  max-width: 430px;

  margin: 26px 0 0;

  color: rgba(255,255,255,.65);

  font-size: 16px;
  line-height: 1.65;
}


/* DESCUENTO */

.rd-nur-popup__offer {
  position: relative;

  display: flex;
  flex-direction: column;

  margin-top: 30px;
  padding-left: 25px;
}

.rd-nur-popup__offer::before {
  content: "";

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;

  width: 1px;

  background: linear-gradient(
    to bottom,
    rgba(201,169,93,.1),
    #c9a95d,
    rgba(201,169,93,.1)
  );
}


.rd-nur-popup__offer-label {
  color: #fff;

  font-size: 15px;
  font-weight: 500;

  letter-spacing: .3em;
  text-transform: uppercase;
}


.rd-nur-popup__offer strong {
  display: block;

  margin: 4px 0;

  font-size: clamp(64px, 6vw, 96px);
  line-height: 1;

  letter-spacing: -.06em;

  background: linear-gradient(
    135deg,
    #f0d58d,
    #a77a2e
  );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}


.rd-nur-popup__offer-small {
  color: rgba(255,255,255,.68);

  font-size: 11px;
  font-weight: 500;

  letter-spacing: .24em;
  text-transform: uppercase;
}


/* CTA */

.rd-nur-popup__cta {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;

  min-width: 270px;

  margin-top: 28px;
  padding: 18px 24px;

  color: #080808 !important;

  background: linear-gradient(
    135deg,
    #dec67f,
    #b38b3c
  );

  border: 1px solid rgba(255,255,255,.16);
  border-radius: 3px;

  font-size: 13px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: .04em;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease;
}

.rd-nur-popup__cta svg {
  width: 20px;
  height: 20px;

  transition: transform .25s ease;
}

.rd-nur-popup__cta:hover {
  color: #080808 !important;

  transform: translateY(-2px);

  filter: brightness(1.08);

  box-shadow:
    0 12px 40px rgba(184,143,60,.20);
}

.rd-nur-popup__cta:hover svg {
  transform: translateX(4px);
}


/* PRODUCT */

.rd-nur-popup__visual {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 0;
  min-height: 500px;

  overflow: hidden;
}

.rd-nur-popup__visual::after {
  content: "";

  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 10%;

  height: 60px;

  background: rgba(181, 139, 51, .16);
  filter: blur(45px);

  border-radius: 50%;
}


.rd-nur-popup__wheel {
  position: relative;
  z-index: 5;

  display: block;

  width: 115%;
  max-width: 760px;
  height: auto;

  object-fit: contain;

  filter:
    drop-shadow(0 30px 30px rgba(0,0,0,.70));

  transform: translateX(-1%);

  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}

.rd-nur-popup__dialog:hover .rd-nur-popup__wheel {
  transform:
    translateX(-1%)
    scale(1.025);
}


.rd-nur-popup__visual-copy {
  position: absolute;
  top: 70px;
  right: 50px;
  z-index: 7;

  display: flex;
  flex-direction: column;

  opacity: .18;

  text-transform: uppercase;
}

.rd-nur-popup__visual-copy strong {
  color: #fff;

  font-size: 20px;
  line-height: 1;
}

.rd-nur-popup__visual-copy span {
  margin-top: 5px;

  color: #fff;

  font-size: 8px;

  letter-spacing: .16em;
}


.rd-nur-popup__glow {
  position: absolute;

  width: 360px;
  height: 360px;

  border-radius: 50%;

  background: rgba(173, 131, 47, .1);

  filter: blur(100px);
}


/* FEATURES */

.rd-nur-popup__features {
  position: relative;
  z-index: 8;

  grid-column: 1 / -1;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  margin: 0 50px;

  padding: 24px 0 30px;

  border-top: 1px solid rgba(255,255,255,.10);
}


.rd-nur-popup__feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  min-width: 0;

  padding: 0 20px;

  border-right: 1px solid rgba(255,255,255,.10);
}

.rd-nur-popup__feature:last-child {
  border-right: 0;
}


.rd-nur-popup__feature-icon {
  color: rgba(255,255,255,.8);

  font-size: 27px;
  font-weight: 300;
}


.rd-nur-popup__feature div {
  display: flex;
  flex-direction: column;
}

.rd-nur-popup__feature strong {
  color: #fff;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: .12em;
  text-transform: uppercase;
}

.rd-nur-popup__feature div span {
  margin-top: 3px;

  color: rgba(255,255,255,.55);

  font-size: 9px;

  letter-spacing: .09em;
  text-transform: uppercase;
}


/* BODY LOCK */

body.rd-popup-open {
  overflow: hidden;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

  .rd-nur-popup {
    padding: 25px;
  }

  .rd-nur-popup__dialog {
    grid-template-columns: 48% 52%;

    min-height: auto;
  }

  .rd-nur-popup__content {
    padding:
      60px
      10px
      45px
      40px;
  }

  .rd-nur-popup__wheel {
    width: 125%;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

  .rd-nur-popup {
    align-items: flex-end;

    padding: 12px;
  }

  .rd-nur-popup__dialog {
    width: 100%;
    max-height: calc(100vh - 24px);

    display: flex;
    flex-direction: column;

    overflow-y: auto;

    border-radius: 10px;
  }

  .rd-nur-popup__close {
    position: fixed;

    top: 28px;
    right: 28px;

    width: 38px;
    height: 38px;
  }


  .rd-nur-popup__content {
    order: 2;

    padding:
      0
      24px
      28px;
  }


  .rd-nur-popup__eyebrow {
    margin: 12px 0px;

    font-size: 10px;
  }

  .rd-nur-popup__eyebrow span {
    width: 26px;
  }


  .rd-nur-popup__content h2 {
    font-size: 40px;
  }


  .rd-nur-popup__claim {
    margin-top: 12px;

    font-size: 10px;
  }


  .rd-nur-popup__description {
    margin-top: 16px;

    font-size: 13px;
    line-height: 1.5;
  }


  .rd-nur-popup__offer {
    margin-top: 20px;

    padding-left: 18px;
  }

  .rd-nur-popup__offer-label {
    font-size: 11px;
  }

  .rd-nur-popup__offer strong {
    font-size: 42px;
  }


  .rd-nur-popup__cta {
    width: 100%;
    min-width: 0;

    margin-top: 20px;

    padding: 16px 18px;
  }


  .rd-nur-popup__visual {
    order: 1;

    min-height: 260px;
    height: 260px;

    padding-top: 20px;
  }

  .rd-nur-popup__wheel {
    width: 100%;
    max-width: 390px;

    transform: none;
  }

  .rd-nur-popup__dialog:hover .rd-nur-popup__wheel {
    transform: none;
  }


  .rd-nur-popup__visual-copy {
    display: none;
  }


  .rd-nur-popup__features {
    order: 3;

    grid-template-columns: repeat(2, 1fr);

    margin: 0 20px;
    display: none;
    padding: 15px 0 20px;

    gap: 0;
  }

  .rd-nur-popup__feature {
    justify-content: flex-start;

    padding: 14px 10px;

    border-right: 0;
  }

  .rd-nur-popup__feature-icon {
    font-size: 20px;
  }

}

.change-settings-button{
  background:transparent !important;
}