/* ==============================================================
    FONT FACES
===============================================================*/

@font-face {
  font-family: "Rustelyn";
  src:
    url("/synchrony/fonts/Rustelyn.otf") format("opentype"),
    url("/synchrony/fonts/Rustelyn.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir Next";
  src: url("/synchrony/fonts/AvenirLTStd-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir Next";
  src: url("/synchrony/fonts/AvenirLTStd-Heavy.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Avenir Next";
  src: url("/synchrony/fonts/AvenirLTStd-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

/* ==============================================================
    VARIABLES
===============================================================*/

:root {
  --color-primary: #060609;
  --color-heading: #ce0f69;
  --color-secondary: #fe585d;
  --color-text: #000000;
  --color-white: #ffffff;
  --color-focus: #005fcc;
  --color-background: #ffddd6;
  --color-pink-bg: #e51873;
  --colo-earn-text: #ffb6b8;

  --container-width: 1280px;
}

/* ==============================================================
    RESET
===============================================================*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* ==============================================================
    HERO SECTION
===============================================================*/

.tjx-login-hero {
  background-image: url("/syc/img/tjx_banner_desktop.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% auto;
  background-color: #fbd3c7;
}

@media (min-width: 1281px) {
  .tjx-login-hero {
    background-position: top;
    background-size: contain;
    min-height: 824px;
  }
}

.tjx-login-hero__container {
  position: relative;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 60px 48px 80px;
}

.tjx-login-hero__content {
  max-width: 50%;
}

.tjx-login-hero__language-btn {
  position: absolute;
  top: 24px;
  right: 48px;
  min-width: 110px;
  height: 44px;
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  color: var(--color-primary);
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.tjx-login-hero__language-btn:hover {
  outline: 2px solid var(--color-white);
  background-color: var(--color-primary);
  color: var(--color-white);
}

.tjx-login-hero__welcome {
  margin: 0;
  font-family: "Rustelyn", cursive;
  font-size: 175px;
  line-height: 0.6;
  letter-spacing: 3px;
  color: var(--color-secondary);
  transform: rotate(-4deg);
  transform-origin: left center;
  display: inline-block;
}

.tjx-login-hero__title {
  margin: 0 0 24px;
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  color: var(--color-heading);
  letter-spacing: 0.14em;
}

.tjx-login-hero__description {
  margin: 0 0 32px;
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 30px;
  color: var(--color-text);
  letter-spacing: 0.075em;
}

.tjx-login-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 52px;
  padding: 14px 32px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.025em;
  transition: 0.3s;
}

.tjx-login-hero__cta:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  outline: 2px solid var(--color-primary);
}

@media (hover: none) {
  .tjx-login-hero__cta:hover {
    background: var(--color-primary);
    color: var(--color-white);
  }
}

.tjx-login-hero__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text);
  letter-spacing: 0.075em;
}

.tjx-login-hero__links a {
  color: var(--color-text);
  font-weight: 900;
  text-decoration: underline;
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
}

.tjx-login-hero__links a:hover {
  text-decoration: none;
}

.tjx-login-hero__language-btn:focus-visible,
.tjx-login-hero__cta:focus-visible,
.tjx-login-hero__links a:focus-visible,
.tjxbrand-strip a:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

.tjx-brand-strip {
  background: #fff;
}

.tjx-brand-strip__container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 24px;
}

.tjx-brand-strip img {
  height: auto;
  width: 150px;
  padding-right: 25px;
}

.tjx-brand-strip a:last-of-type img {
  width: 75px;
}

@media (max-width: 1024px) {
  .tjx-login-hero__title {
    letter-spacing: 0.05em;
  }
}

@media (max-width: 991px) {
  .tjx-login-hero {
    background-image: url("/syc/img/tjx_banner_mobile.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% auto;
    height: 100vh;
  }

  .tjx-login-hero__container {
    padding: 16px 20px 30px;
  }

  .tjx-login-hero__language-btn {
    position: absolute;
    top: 60px;
    right: 20px;
    min-width: 110px;
    height: 44px;
  }

  .tjx-login-hero__content {
    max-width: 100%;
    padding-top: 30px;
  }

  .tjx-login-hero__welcome {
    font-size: 120px;
    line-height: 0.9;
    margin-bottom: -8px;
  }

  .tjx-login-hero__title {
    font-size: 34px;
    line-height: 1;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
  }

  .tjx-login-hero__description {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .tjx-login-hero__cta {
    min-height: 48px;
    min-width: 220px;
    margin-bottom: 20px;
  }

  .tjx-login-hero__links a {
    font-size: 13px;
    line-height: 1.5;
  }

  .tjx-brand-strip__container {
    gap: 14px;
    padding: 12px 10px;
  }

  .tjx-brand-strip img {
    padding-right: 0;
  }
}

@media (max-width: 393px) {
  .tjx-login-hero {
    height: 800px;
  }
}

/* ==============================================================
    VIP SECTION
===============================================================*/

.tjx-vip-section {
  background: var(--color-background);
  padding: 30px 48px 30px;
}

.tjx-vip-section__container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.tjx-vip-section__heading {
  text-align: center;
  margin-bottom: 26px;
}

.tjx-vip-section__title-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
}

.tjx-vip-section__title-lockup {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 0;
}

.tjx-vip-section__shop {
  display: inline-block;
  font-family: "Rustelyn", cursive;
  font-size: 150px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-secondary);
  transform: rotate(-3deg);
  transform-origin: left center;
}

.tjx-vip-section__title-group {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.tjx-vip-section__title-top {
  margin-top: 4px;
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  color: var(--color-secondary);
  text-align: right;
}

.tjx-vip-section__title-bottom {
  margin-top: 4px;
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  color: var(--color-text);
}

.tjx-vip-panel {
  position: relative;
  display: flex;
  max-width: 1140px;
  margin: 0 auto;
  background: var(--color-white);
  border: 4px solid #d61a6d;
  border-radius: 16px;
  overflow: hidden;
}

.tjx-vip-panel__left {
  position: relative;
  width: 60%;
  background: #f7fbfc;
  padding: 40px 50px 55px 110px;
}

.tjx-vip-panel__earn {
  position: absolute;
  left: -153px;
  top: 47%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: "Rustelyn", cursive;
  font-size: 300px;
  line-height: 1;
  color: var(--colo-earn-text);
  pointer-events: none;
}

.tjx-vip-panel__content {
  position: relative;
  z-index: 1;
}

.tjx-vip-benefit {
  margin-bottom: 5px;
}

.tjx-vip-benefit__title {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.tjx-vip-benefit__percent {
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-secondary);
}

.tjx-vip-benefit__reward-group {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.tjx-vip-benefit__reward-top {
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.14em;
  line-height: 1;
  color: var(--color-secondary);
}

.tjx-vip-benefit__reward-bottom {
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 0.14em;
  line-height: 1;
  color: var(--color-secondary);
}

.tjx-vip-benefit__text {
  margin: 8px 0 0;
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

.tjx-vip-panel__mastercard-btn {
  display: inline-block;
  margin: 20px 0;
  padding: 12px 22px;
  background: var(--color-pink-bg);
  border-radius: 8px;
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  color: var(--color-white);
}

.tjx-vip-panel__divider {
  margin: 15px 0;
  border: 0;
  border-top: 4px solid var(--color-pink-bg);
}

.tjx-vip-panel__right {
  position: relative;
  width: 40%;
}

.tjx-vip-panel__image {
  background-image: url("/syc/img/tjx_vip_desktop.png");
  background-size: cover;
  background-position: 100% 200%;
  background-repeat: no-repeat;
  width: 41%;
}

.tjx-vip-panel__overlay {
  position: absolute;
  left: 45%;
  bottom: 70px;
  width: 68%;
  text-align: center;
}

.tjx-vip-panel__overlay-title {
  margin: 0 0 16px;
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--color-white);
}

.tjx-vip-panel__overlay-text {
  margin: 0;
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: var(--color-white);
}

.tjx-vip-panel__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-pink-bg);
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.14em;
  color: var(--color-white);
}

.tjx-vip-section__cta-wrapper {
  text-align: center;
  margin-top: 28px;
}

.tjx-vip-section__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 52px;
  padding: 14px 32px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.025em;
  transition: 0.3s;
}

.tjx-vip-section__cta:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  outline: 2px solid var(--color-primary);
}

.tjx-vip-section__cta:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

@media (hover: none) {
  .tjx-vip-section__cta:hover {
    background: var(--color-primary);
    color: var(--color-white);
  }
}

@media (max-width: 991px) {
  .tjx-vip-section {
    padding: 24px 16px 32px;
    background: var(--color-background);
  }

  .tjx-vip-section__title-row {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: flex-end;
    padding-left: 34px;
  }

  .tjx-vip-section__title-lockup {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .tjx-vip-section__shop {
    position: absolute;
    left: 0;
    top: -30px;
    font-size: 100px;
    margin-right: -6px;
    line-height: 1;
  }

  .tjx-vip-section__title-group {
    gap: 10px;
  }

  .tjx-vip-section__title-top {
    position: relative;
    font-size: 35px;
  }

  .tjx-vip-section__title-word {
    font-size: 30px;
    letter-spacing: 0.14em;
  }

  .tjx-vip-section__subtitle-line {
    font-size: 13px;
    letter-spacing: 0.14em;
  }

  .tjx-vip-panel {
    display: block;
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
  }

  .tjx-vip-panel__left {
    position: relative;
    width: 100%;
    padding: 32px 24px 24px 70px;
    background: var(--color-white);
  }

  .tjx-vip-panel__earn {
    position: absolute;
    left: -132px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    font-family: "Rustelyn", cursive;
    font-size: 250px;
    line-height: 1;
    color: var(--colo-earn-text);
  }

  .tjx-vip-benefit {
    margin-bottom: 22px;
  }

  .tjx-vip-benefit__title {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .tjx-vip-benefit__percent {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 900;
  }

  .tjx-vip-benefit__reward-group {
    display: flex;
    flex-direction: column;
  }

  .tjx-vip-benefit__reward-top {
    font-size: 17px;
    letter-spacing: 0.14em;
    line-height: 1;
  }

  .tjx-vip-benefit__reward-bottom {
    font-size: 25px;
    letter-spacing: 0.14em;
    line-height: 1;
    margin-top: 4px;
  }

  .tjx-vip-benefit__text {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: 0.1em;
    width: 100%;
  }

  .tjx-vip-panel__mastercard-btn {
    font-size: 13px;
    padding: 10px 16px;
    margin: 0 0 20px 0;
  }

  .tjx-vip-panel__divider {
    margin: 20px 0;
  }

  .tjx-vip-panel__image {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url("/syc/img/tjx_vip_mobile.png");
    background-size: cover;
    background-position: 100% 50%;
    background-repeat: no-repeat;
  }

  .tjx-vip-panel__overlay {
    position: absolute;
    top: 15%;
    text-align: center;
    width: 400px;
    left: 55%;
  }

  .tjx-vip-panel__overlay-title {
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
  }

  .tjx-vip-panel__overlay-text {
    line-height: 1;
    font-size: 32px;
    letter-spacing: 0;
  }

  .tjx-vip-panel__footer {
    font-size: 14px;
    letter-spacing: 0.11em;
    text-align: center;
  }

  .tjx-vip-section__cta {
    display: block;
    width: 100%;
    margin: 24px auto 0;
    font-weight: 500;
  }
}

@media (max-width: 767px) {
  .tjx-vip-panel__image {
    position: relative;
    width: 100%;
    height: 200px;
    background-image: url("/syc/img/tjx_vip_mobile.png");
    background-size: cover;
    background-position: 100% 60%;
    background-repeat: no-repeat;
  }

  .tjx-vip-panel__overlay {
    position: absolute;
    top: 22%;
    text-align: center;
    width: 200px;
    left: 45%;
  }

  .tjx-vip-panel__overlay-title {
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
  }

  .tjx-vip-panel__overlay-text {
    line-height: 1;
    font-size: 15px;
  }
}

/* ==============================================================
    FAQ SECTION
===============================================================*/

.faq {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.faq h2 {
  margin-top: 4px;
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-size: 35px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.11em;
  color: var(--color-secondary);
  font-weight: 900 !important;
}

.faq h3 {
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-weight: 500 !important;
  font-size: 22px !important;
  color: var(--color-text) !important;
}

details summary {
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-weight: 500 !important;
  font-size: 18px !important;
  color: var(--color-text);
}

.answer p,
.answer li {
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-weight: 500 !important;
  font-size: 16px !important;
  color: var(--color-text);
}

.footnotes {
  text-align: center;
}

.footnotes p {
  margin: 10px;
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: var(--color-text);
}

.footnotes a {
  font-family: "Avenir Next", Arial, Helvetica, sans-serif;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: var(--color-text);
  text-decoration: underline;
}

.footnotes a:hover {
  text-decoration: none;
}

sup,
.sup-style {
  vertical-align: super;
  font-size: 14px;
}

@media (max-width: 991px) and (orientation: landscape) {
  .tjx-login-hero {
    height: 1000px;
  }

  .tjx-login-hero__content {
    margin-top: -22px;
    padding-top: 0;
  }

  .tjx-vip-panel__image {
    height: 400px;
  }

  .tjx-vip-panel__overlay {
    position: absolute;
    top: 15%;
    text-align: center;
    width: 400px;
    left: 45%;
  }

  .tjx-vip-panel__overlay-title {
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
  }

  .tjx-vip-panel__overlay-text {
    line-height: 1;
    font-size: 28px;
    letter-spacing: 0;
  }
}

#login-button {
  color: #3b3d49 !important;
}
