/* Theme */
:root {
  --primary-100: #bd1046;
  --primary-200: #fdfdfd;
  --bg-100: #ffffff;
  --bg-200: #f5f5f5;
  --text-100: #333333;
  --text-200: #fdfdfd;
  --text-300: #000000;
  --accent-100: #008000;
}

/* general styles */
.hn-main-container {
  width: 100%;
  max-width: 1920px;
}

.xwrapped-body {
  color: var(--text-100);
  font-family: "Arial", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1920px;
}

/*----------------------------*/

/* Header Banner */
.xwrapped-header {
  font-size: 2em;
  font-weight: bold;
  height: auto;
}

.xwrapped-banner {
  width: 100%;
  height: 100%;
}
.xwrapped-banner-img,
.xwrapped-banner .desktop {
  width: 1920px;
  height: 320px;
  object-fit: cover;
  object-position: center;
}
.xwrapped-banner .desktop {
  display: none;
}

.xwrapped-banner-img,
.xwrapped-banner .mobile {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.xwrapped-banner .mobile {
  display: block;
}

/*----------------------------*/

/* Main content */
.xwrapped-content-wrapper {
  padding: 20px 24px;
}
.xwrapped-content {
  display: flex;
  max-width: 1260px !important;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: fit-content;
  gap: 32px 16px;
}

/* Countdown */
.xwrapped-countdown {
  align-self: stretch;
  height: fit-content;
  flex-basis: unset;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  opacity: 1;
  margin: 20px 0;
}
.ctdwn-title-txt {
  width: fit-content;
  flex-basis: unset;
  height: fit-content;
  font-family: "Cormorant Unicase", serif;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 700;
}
.ctdwn-clock {
  display: flex;
  flex-direction: row;
  font-size: 30px;
  line-height: 1em;
  padding: 8px 32px;
  border-radius: 16px;
  border-style: none;
}
.ctdwn-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ctdwn-num-txt {
  line-height: 1em;
  padding: 16px;
  margin: 8px;
  color: #af9b59;
  font-size: 28px;
  font-weight: 700;
  border-radius: 8px;
  border-style: none;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
}
.ctdwn-num-subtxt {
  font-size: 20px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  color: var(--primary-100);
  line-height: 1em;
}

/* Banner rows */
.xmasbanner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.xmasbanner-row, .xmasbanner-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}
.xmasbanner-item {
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.xmasbanner-item:hover {
  transform: scale(1.02);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  filter: brightness(1.05);
}
.xmasbanner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
/*----------------------------*/

/* Promostrip */
.xmas-promostrip-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 32px 0;
}
.xmas-promostrip-content {
  width: 100%;
}
.xmas-promostrip-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}
.xmas-promostrip-content .desktop {
  display: none;
}
/*----------------------------*/

/* Perfect Gift */
.xmas-perfectgft-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.xmas-perfectgft-title {
  font-family: "Cormorant Unicase", serif;
  font-size: 32px;
  font-weight: 700;
  padding: 16px 0;
  margin: 32px 0;
  text-align: center;
}
.xmas-perfectgft-txt {
  width: 100%;
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 24px;
  text-align: center;
  margin-bottom: 32px;
}

.xmas-perfectgft {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  gap: 16px;
}
.xmas-perfectgft-item {
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.xmas-perfectgft-item:hover {
  transform: scale(1.02);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  filter: brightness(1.05);
}
.xmas-perfectgft-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

/* Medium Screens */
@media (min-width: 768px) {
  /* Header Banner */
  .xwrapped-banner .desktop {
    display: block;
  }
  .xwrapped-banner .mobile {
    display: none;
  }
  /*----------------------------*/

  /* Countdown */
  .xwrapped-countdown {
    flex-basis: 0px;
  }
  .ctdwn-title-txt {
    font-size: 36px;
  }
  .ctdwn-num-txt {
    font-size: 44px;
    font-weight: 400;
  }
  .ctdwn-num-subtxt {
    font-size: 32px;
  }
  /*----------------------------*/

  /* Banner rows */
  .xmasbanner-row {
    grid-template-columns: 1fr 1fr;
  }

  .xmas-promostrip-content .mobile {
    display: none;
  }
  .xmas-promostrip-content .desktop {
    display: block;
  }
  /*----------------------------*/

  /* Perfect Gift */
  .xmas-perfectgft {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  .xmas-perfectgft-title {
    font-size: 36px;
  }
  .xmas-perfectgft-txt {
    width: 940px;
  }
}

/* Large Screens */
@media (min-width: 1024px) {
  /* Banner rows */
  .xmasbanner-row, .xmasbanner-row-2 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
