@keyframes slideRightLeft {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideLeftRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
a {
  text-decoration: none !important;
}

.d-none {
  display: none !important;
}

.heartbeat {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
  animation: heartbeat 1.5s ease-in-out infinite both;
}

#stickyCart {
  display: none !important;
}

#basketCartMobile {
  display: none !important;
}

@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(1.09);
    transform: scale(1.09);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(1.13);
    transform: scale(1.13);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(1.09);
    transform: scale(1.09);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(1.13);
    transform: scale(1.13);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes waveFlow {
  0% {
    transform: translateY(0) scaleX(-1);
  }
  50% {
    transform: translateY(-200px) scaleX(-1);
  }
  100% {
    transform: translateY(0) scaleX(-1);
  }
}
.basket {
  position: absolute;
  z-index: 1000;
  right: 40px;
  bottom: 50%;
  transform: translate(0, 50%);
}
@media (max-width: 900px) {
  .basket {
    bottom: -30px;
    right: 0;
  }
}
.basket__circle {
  width: 70px;
  height: 70px;
  transition: 0.3s;
  background: white;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.2588235294);
  cursor: pointer;
  border: 1px solid #3fe62d;
}
.basket__circle:hover + .basket__checkout > .basket__checkout-text {
  padding-right: 80px;
}
.basket__circle:hover + .basket__checkout > .basket__checkout-text svg {
  right: 50px;
}
@media (max-width: 900px) {
  .basket__circle {
    background: linear-gradient(to right, #efab00, #eb850f);
    border: none;
  }
}
.basket__checkout {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 40px;
  width: max-content;
}
@media (max-width: 900px) {
  .basket__checkout {
    display: none;
  }
}
.basket__message, .basket__checkout {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 35px;
  width: max-content;
  margin: 0;
  z-index: -1;
  font-weight: 600;
  transition: 0.3s;
  overflow: hidden;
  font-size: 16px;
}
.basket__message-text, .basket__checkout-text {
  background: white;
  border-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin: 0;
  padding: 10px;
  padding-left: 30px;
  padding-right: 55px;
  width: 100%;
  height: 68px;
  display: flex;
  transform: translateX(100%);
  transition: 0.23s ease-in-out;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #3fe62d;
}
@media (max-width: 900px) {
  .basket__message-text, .basket__checkout-text {
    background: linear-gradient(to right, #efab00, #eb850f);
  }
}
.basket__message-text:hover, .basket__checkout-text:hover {
  cursor: pointer;
  padding-right: 80px;
}
.basket__message-text:hover > svg, .basket__checkout-text:hover > svg {
  right: 50px;
}
.basket__message-text > svg, .basket__checkout-text > svg {
  position: absolute;
  width: 18px;
  right: 0;
  transition: 0.23s ease-in-out;
}
.basket__message-text > span, .basket__checkout-text > span {
  position: relative;
  z-index: 2;
}
.basket__message-text.show, .basket__checkout-text.show {
  transform: translateX(0);
}
.basket__wrap {
  position: relative;
  display: flex;
}
.basket__count {
  position: absolute;
  top: -12px;
  right: -6px;
  background: #eea801;
  color: white;
  border-radius: 50%;
  z-index: 3;
  font-size: 14px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
@media (max-width: 900px) {
  .basket__count {
    background: white;
    color: black;
  }
}
.basket__icon {
  width: 30px;
}

.event {
  display: flex;
  margin: 20px 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1450px) {
  .event {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .event {
    margin-top: 20px;
  }
}
@media (max-width: 450px) {
  .event {
    margin-top: 0;
  }
}
.event-container {
  padding: 20px;
  padding-top: 0;
}
@media (max-width: 450px) {
  .event-container {
    padding: 10px;
  }
}
.event__soon {
  position: relative;
  text-align: center;
  color: #82ceee;
}
@media (max-width: 1180px) {
  .event__soon {
    padding: 2rem 0;
  }
}
.event__soon-text {
  font-size: 10rem;
  line-height: 11rem;
  padding: 8rem 0;
  font-weight: 800;
  position: relative;
}
@media (max-width: 1750px) {
  .event__soon-text {
    font-size: 8rem;
  }
}
@media (max-width: 1450px) {
  .event__soon-text {
    font-size: 7rem;
    line-height: 4rem;
  }
}
@media (max-width: 1180px) {
  .event__soon-text {
    font-size: 7rem;
    line-height: 8rem;
    padding: 5rem 0;
  }
}
@media (max-width: 600px) {
  .event__soon-text {
    font-size: 4rem;
    line-height: 5rem;
    padding: 3rem 0;
  }
}
.event__soon-text::before, .event__soon-text::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 4px;
  background: linear-gradient(137deg, #b1e9fe 0%, #c0eaff 50%, #b1e9fe 100%);
  border-radius: 100%;
}
.event__soon-text::before {
  top: 0;
  left: 0;
  animation: slideRightLeft 7s linear infinite;
}
.event__soon-text::after {
  bottom: 0;
  right: 0;
  animation: slideLeftRight 7s linear infinite;
}
.event__soon-video {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}
.event__soon-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2901960784);
}
.event__soon-video:hover > .event__soon-video-play {
  transform: translate(-50%, -50%) scale(1.1);
}
.event__soon-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}
.event__soon-video-play svg {
  width: 35px;
  height: 35px;
  fill: #faa531;
  margin-left: 5px;
}
@media (max-width: 600px) {
  .event__soon-video-play {
    width: 60px;
    height: 60px;
  }
  .event__soon-video-play svg {
    width: 25px;
    height: 25px;
  }
}
.event__left {
  background: radial-gradient(circle at 14% 20%, #d6f2fd 0%, #def3ff 20%, #d0f1ff 100%);
  width: 50%;
  padding: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  border-radius: 50px 4px 4px 50px;
  position: relative;
}
.event__left::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: -143px;
  bottom: 0;
  background-color: #f8f8f8;
  border-radius: 100%;
  width: 214px;
  height: 105%;
}
@media (max-width: 1180px) {
  .event__left {
    width: 100%;
    border-radius: 50px 50px 0 0;
    text-align: center;
    align-items: center;
    padding: 80px;
    padding-bottom: 100px;
  }
  .event__left::before {
    transform: translate(0, 50%);
    top: initial;
    left: 0;
    bottom: 0;
    border-radius: 100%;
    width: 100%;
    height: 100px;
  }
}
@media (max-width: 580px) {
  .event__left {
    padding: 50px 20px 100px 20px;
  }
}
@media (max-width: 410px) {
  .event__left::before {
    width: 450px;
    left: 50%;
    transform: translate(-50%, 50%);
  }
}
.event__right {
  width: 50%;
  padding: 70px;
  background-color: #f8f8f8;
  border-radius: 0 50px 50px 0;
}
.event__right .dd__live {
  background: #b3d1e1;
  color: #315c72;
}
.event__right .circle-pulse::before, .event__right .circle-pulse::after {
  background-color: #315c72;
}
.event__right .youtube-container {
  position: relative;
}
.event__right > div {
  border-radius: 25px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: initial !important;
}
.event__right > div .youtube-container__wrapper {
  border-radius: 25px;
}
@media (max-width: 1450px) {
  .event__right {
    padding: 20px;
  }
}
@media (max-width: 1180px) {
  .event__right {
    width: 100%;
    border-radius: 0 0 50px 50px;
  }
}
@media (max-width: 450px) {
  .event__right {
    padding-top: 0;
  }
}
.event__live {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 99;
}
.event__live-text {
  margin-bottom: 0;
}
.event__title {
  font-size: 6rem;
  line-height: 5rem;
  font-weight: 500;
}
@media (max-width: 1450px) {
  .event__title {
    font-size: 4rem;
    line-height: 4rem;
  }
}
@media (max-width: 450px) {
  .event__title {
    font-size: 3rem;
    line-height: 3rem;
  }
}
.event__subtitle {
  font-size: 6rem;
  position: relative;
  max-width: 500px;
}
.event__subtitle::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, #efab00, #eb850f);
  border-radius: 50%;
}
@media (max-width: 1450px) {
  .event__subtitle {
    font-size: 4rem;
    max-width: 322px;
  }
}
@media (max-width: 450px) {
  .event__subtitle {
    font-size: 3rem;
    line-height: 3rem;
  }
}
.event__subtitle--after {
  font-size: 3rem;
  min-width: max-content;
}
@media (max-width: 650px) {
  .event__subtitle--after {
    font-size: 2rem;
  }
}
.event__subtitle--after-text {
  font-size: 2rem;
  font-weight: 800;
}
.event__description {
  margin-top: 2rem;
  font-size: 18px;
  line-height: 26px;
  max-width: 400px;
  font-weight: 500;
}
@media (max-width: 1180px) {
  .event__description {
    max-width: 447px;
  }
}
.event__button {
  position: relative;
  background: linear-gradient(90deg, #efab00, #eb850f);
  border-radius: 50px;
  border: none;
  outline: none;
  padding: 18px 30px;
  font-size: 18px;
  font-weight: 600;
  color: #0b133f;
  display: flex;
  line-height: 22px;
  gap: 20px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  z-index: 1;
  color: white;
}
.event__button--grey {
  background: #e9e9e9;
  color: #a0a0a0;
  cursor: initial;
  pointer-events: none;
  gap: 0;
}
.event__button--green {
  background: linear-gradient(90deg, #6de66f, #59c55f);
}
.event__button--green::before {
  background: linear-gradient(220deg, #6de66f, #59c55f) !important;
}
.event__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(220deg, #efab00, #eb850f);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}
.event__button:hover {
  cursor: pointer;
}
.event__button:hover::before {
  opacity: 1;
}
.event__button:hover svg {
  transform: translateX(3px);
}
.event__button > * {
  position: relative;
}
.event__button svg {
  width: 20px;
  transition: all 0.3s ease;
  fill: white;
}
.event__button-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 2rem;
}
@media (max-width: 450px) {
  .event__button-container {
    flex-direction: column;
    align-items: center;
  }
}
.event__button-save {
  display: flex;
  align-items: center;
  gap: 15px;
}
.event__button-save svg {
  width: 15px;
}
.event__button-save-percentage {
  margin: 0;
  font-weight: 800;
  font-size: 14px;
}
.event__video-container {
  width: 100%;
  height: 100%;
  max-height: 500px;
  position: relative;
}

.event-bar {
  border-radius: 5px;
  z-index: 10;
  width: 100%;
  position: relative;
}
.event-bar-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-bar.is-sticky {
  position: fixed;
  top: 20px;
  width: calc(100% - 40px);
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 992px) {
  .event-bar.is-sticky {
    top: 62px;
  }
}
@media (max-width: 450px) {
  .event-bar.is-sticky {
    width: calc(100% - 20px);
  }
}
.event-bar.is-sticky .event-bar__timer {
  border-color: black !important;
}
.event-bar--preview .event-bar__timer {
  background: white;
  width: max-content;
  margin: 10px auto;
  padding: 10px 25px;
  padding-left: 35px;
  border-color: white;
  transition: 0.22s;
}
.event-bar--preview .event-bar__timer .countdown-segment {
  width: 91px !important;
}
@media (max-width: 622px) {
  .event-bar--preview .event-bar__timer .countdown-segment {
    width: initial !important;
  }
}
.event-bar--preview .event-bar__timer label {
  margin-top: 0 !important;
}
.event-bar--preview .event-bar__timer .event-bar__reveal {
  display: none;
}
@media (max-width: 700px) {
  .event-bar--preview .event-bar__timer > p {
    font-size: 1.8rem;
  }
}
@media (max-width: 380px) {
  .event-bar--preview .event-bar__timer > p {
    font-size: 16px !important;
  }
}
@media (max-width: 700px) {
  .event-bar--preview .event-bar__timer .days, .event-bar--preview .event-bar__timer .hours, .event-bar--preview .event-bar__timer .minutes, .event-bar--preview .event-bar__timer .seconds {
    font-size: 1.8rem !important;
  }
}
@media (max-width: 380px) {
  .event-bar--preview .event-bar__timer .days, .event-bar--preview .event-bar__timer .hours, .event-bar--preview .event-bar__timer .minutes, .event-bar--preview .event-bar__timer .seconds {
    font-size: 14px !important;
  }
}
.event-bar__timer {
  text-align: center;
  background: linear-gradient(to right, #efab00, #eb850f);
  background: #eea801;
  border-radius: 150px;
  margin: 10px 0;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  border: 2px solid;
}
@media (max-width: 1200px) {
  .event-bar__timer {
    justify-content: flex-start;
    padding-left: 40px;
  }
}
@media (max-width: 900px) {
  .event-bar__timer {
    justify-content: center;
    padding-left: 0;
  }
}
.event-bar__timer::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  border-top: 1px solid black;
}
.event-bar__timer > p {
  font-size: 3rem;
  font-weight: 600;
  margin: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 1200px) {
  .event-bar__timer > p {
    font-size: 3rem;
  }
}
@media (max-width: 620px) {
  .event-bar__timer > p {
    font-size: 1.8rem;
  }
}
.event-bar__timer-text {
  padding: 10px 0;
}
@media (max-width: 900px) {
  .event-bar__timer-text {
    padding: 0;
  }
}
.event-bar__timer.locked {
  background: linear-gradient(45deg, #ececec, #f2f2f2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-bar__timer.locked > p {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.event-bar__timer.locked img {
  width: 150px;
}
.event-bar__reveal {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ffffff, #f2f2f2);
  z-index: 1;
  overflow: hidden;
}
.event-bar__reveal .wave {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.event-bar__reveal .wave svg {
  height: 300px;
  margin-left: -1px;
  fill: #eea801;
  transform: scaleX(-1);
  transform-origin: 50;
  animation: waveFlow 18s linear infinite;
}
.event-bar__countdown {
  display: flex;
  justify-content: center;
  z-index: 2;
}
@media (max-width: 450px) {
  .event-bar__countdown {
    gap: 4px;
  }
}
.event-bar__countdown .countdown-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(9, 34, 66, 0.231372549);
  width: 150px;
}
@media (max-width: 1000px) {
  .event-bar__countdown .countdown-segment {
    width: 100px;
  }
}
@media (max-width: 620px) {
  .event-bar__countdown .countdown-segment {
    width: 80px;
    flex-direction: row;
    gap: 4px;
    width: initial;
    border-right: none;
  }
}
.event-bar__countdown .countdown-segment:last-child {
  border-right: none;
  padding-right: 0;
}
.event-bar__countdown .countdown-segment span {
  display: block;
}
@media (max-width: 620px) {
  .event-bar__countdown .countdown-segment span {
    line-height: 20px;
  }
}
.event-bar__countdown .countdown-segment .days, .event-bar__countdown .countdown-segment .hours, .event-bar__countdown .countdown-segment .minutes, .event-bar__countdown .countdown-segment .seconds {
  font-size: 4rem;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .event-bar__countdown .countdown-segment .days, .event-bar__countdown .countdown-segment .hours, .event-bar__countdown .countdown-segment .minutes, .event-bar__countdown .countdown-segment .seconds {
    font-size: 3rem;
  }
}
@media (max-width: 620px) {
  .event-bar__countdown .countdown-segment .days, .event-bar__countdown .countdown-segment .hours, .event-bar__countdown .countdown-segment .minutes, .event-bar__countdown .countdown-segment .seconds {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 25px;
  }
}
.event-bar__countdown .countdown-segment .label {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.3215686275);
}
@media (max-width: 620px) {
  .event-bar__countdown .countdown-segment .label {
    color: rgba(0, 0, 0, 0.6117647059);
    display: none;
  }
}
.event-bar__countdown .countdown-segment .label-mobile {
  display: none;
  font-size: 2rem;
}
@media (max-width: 620px) {
  .event-bar__countdown .countdown-segment .label-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 1px;
    transform: translateY(-1px);
    font-size: 18px;
    margin-right: 4px;
  }
}
@media (max-width: 380px) {
  .event-bar__countdown .countdown-segment .label-mobile {
    font-size: 15px !important;
    margin-right: 0;
  }
}
.event-bar__get-plus > p {
  padding: 14px 25px;
  margin-bottom: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
  width: max-content;
  background: #eb850f !important;
}
@media (max-width: 900px) {
  .event-bar__get-plus > p {
    top: initial;
    transform: initial;
    bottom: -32px;
    right: 6%;
    border-radius: 22px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 10px 20px;
    border-top: 2px solid black;
  }
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
  padding: 8rem 10px;
  background: linear-gradient(45deg, #f9f6f3, #fbf8f8);
  border-radius: 50px;
}
@media (max-width: 1200px) {
  .product {
    padding: 8rem 4rem;
  }
}
@media (max-width: 900px) {
  .product {
    padding: 3rem;
  }
}
@media (max-width: 550px) {
  .product {
    padding: 2rem;
  }
}
@media (max-width: 450px) {
  .product {
    padding: 1rem;
  }
}
.product__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) {
  .product__title {
    flex-direction: column-reverse;
    gap: 0;
  }
}
.product__title > h2 {
  font-size: 4rem;
  line-height: 5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 1200px) {
  .product__title > h2 {
    text-align: left;
  }
}
@media (max-width: 900px) {
  .product__title > h2 {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .product__title > h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
}
@media (max-width: 450px) {
  .product__title > h2 {
    font-size: 2.2rem;
    line-height: 3rem;
  }
}
.product__title > img {
  max-width: 300px;
  transform: translateY(-20px);
}
@media (max-width: 450px) {
  .product__title > img {
    max-width: 250px;
    transform: translateY(0);
    align-self: flex-start;
  }
}
.product__title span {
  color: #faa531;
}
.product__title-total {
  color: #fc6565 !important;
  text-decoration: line-through;
  font-weight: 400;
}
.product__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  width: 85%;
  justify-content: center;
}
@media (max-width: 1200px) {
  .product__list {
    width: 100%;
    gap: 2rem;
  }
}
@media (max-width: 1000px) {
  .product__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 20px;
  border-radius: 15px;
  background: white;
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.0705882353);
  position: relative;
  overflow: hidden;
  margin: auto;
  height: 100%;
}
.product__item > img {
  border-radius: 10px;
  cursor: pointer;
}
.product__item-added {
  position: absolute;
  top: 40px;
  left: 0;
  background: linear-gradient(90deg, #6de66f, #59c55f);
  color: white;
  padding: 7px 12px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  transform: translateX(-105%);
  transition: all 0.3s ease-in-out;
}
.product__item-added.show {
  transform: translateX(0);
}
.product__item-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  flex: 1;
}
.product__item-info-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product__item-info-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
.product__item-height {
  display: flex;
  gap: 1rem;
}
.product__item-height svg {
  width: 15px;
}
.product__item-price {
  margin: 0;
  font-size: 3rem;
  font-weight: 600;
  text-align: right;
  line-height: 120%;
}
@media (max-width: 500px) {
  .product__item-price {
    font-size: 1.8rem;
  }
}
.product__item-price-original {
  color: #fc6565;
  text-decoration: line-through;
}
.product__item-status {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
  border-radius: 50px;
  padding: 3px 20px;
  height: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid;
  background-color: white;
  width: max-content;
  min-width: max-content;
  margin-right: auto;
}
@media (max-width: 500px) {
  .product__item-status {
    padding: 3px 10px;
    font-size: 1.3rem;
  }
}
.product__item-status svg {
  width: 15px;
}
.product__item-status.stock-0 {
  color: rgb(160, 160, 160);
  border-color: rgb(160, 160, 160);
}
.product__item-status.stock-50 {
  border-color: #f8861b;
  color: #f8861b;
  fill: #f8861b;
}
.product__item-status.stock-25 {
  color: #f23c3c;
  border-color: #f23c3c;
  fill: #f23c3c;
}
.product__item-status.stock-100 {
  color: #2ed12e;
  border-color: #2ed12e;
  fill: #2ed12e;
}
.product__item-button {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
.product__item-button a:only-child, .product__item-button button:only-child {
  flex: 1 1 100%;
}
.product__item-button a:not(:only-child), .product__item-button button:not(:only-child) {
  flex: 1 1 50%;
}
.product__item-button a[href], .product__item-button button[href] {
  text-decoration: none;
}
.product__item-button button {
  width: 100%;
}
.product__item-button button.preview {
  background: #e9e9e9;
  color: rgb(160, 160, 160);
  cursor: initial;
  pointer-events: none;
}
.product__item-button button.plus {
  background: linear-gradient(90deg, #efab00, #eb850f);
  color: white;
}
.product__item-button button.plus::before {
  background: linear-gradient(220deg, #efab00, #eb850f);
}
.product__item-button button.remove {
  background: linear-gradient(90deg, #e66d6d, #c55959);
}
.product__item-button button.remove::before {
  background: linear-gradient(220deg, #e66d6d, #c55959);
}
.product__item-button button:disabled {
  background: #e9e9e9;
  color: rgb(160, 160, 160);
  cursor: initial;
  pointer-events: none;
}
.product__item-name {
  margin: 0;
  font-size: 2rem;
  cursor: pointer;
}
@media (max-width: 400px) {
  .product__item-name {
    font-size: 1.6rem;
  }
}
.product__footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 6rem 0;
}
.product__footer button {
  font-size: 18px;
  padding: 20px 40px;
}
@media (max-width: 900px) {
  .product__footer {
    margin: 4rem 0;
  }
}
@media (max-width: 550px) {
  .product__footer {
    margin-bottom: 2rem;
  }
}

.dtf-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 800px;
  max-height: 75vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1005;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.dtf-popup::-webkit-scrollbar {
  display: none;
}
.dtf-popup.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -40%);
}
.dtf-popup:not(.hidden) {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}
.dtf-popup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
}
@media (max-width: 600px) {
  .dtf-popup__header {
    padding: 1rem;
  }
}
.dtf-popup__header-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}
.dtf-popup__header-close {
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dtf-popup__header-close:hover {
  background-color: #f5f5f5;
}
.dtf-popup__header-close svg {
  width: 20px;
  height: 20px;
  fill: #666;
}
.dtf-popup__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 600px) {
  .dtf-popup__body {
    padding: 1rem;
  }
}
.dtf-popup__body-main {
  width: 100%;
}
.dtf-popup__body-main img {
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0px 1px 1px 2px rgba(0, 0, 0, 0.1019607843);
  width: 100%;
}
.dtf-popup__body-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  width: 100%;
  position: relative;
  padding-bottom: 12px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background: #f1f1f1;
  border-radius: 8px;
  margin-top: 10px;
  padding: 10px;
}
@media (max-width: 900px) {
  .dtf-popup__body-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 600px) {
  .dtf-popup__body-gallery {
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 0;
  }
}
@media (max-width: 450px) {
  .dtf-popup__body-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.dtf-popup__body-gallery::-webkit-scrollbar {
  display: none;
}
.dtf-popup__body-gallery-container {
  height: 100%;
  overflow-y: auto;
  padding-right: 4px;
}
.dtf-popup__body-gallery-item {
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s;
  flex-shrink: 0;
  box-shadow: 0px 1px 1px 2px rgba(0, 0, 0, 0.1019607843);
}
.dtf-popup__body-gallery-item:hover {
  transform: scale(0.95);
}
.dtf-popup__body-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dtf-popup__body-info {
  margin-bottom: 10px;
}
.dtf-popup__body-info-title {
  margin-bottom: 10px;
}
.dtf-popup__body-info-description {
  margin: 0;
  line-height: 1.6;
  color: #444;
  font-size: 1.5rem;
}

.banner {
  display: flex;
  border-radius: 50px;
  margin: 10rem auto;
  background-color: white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  max-width: 84%;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .banner {
    max-width: 94%;
  }
}
@media (max-width: 1100px) {
  .banner {
    flex-direction: column;
  }
}
.banner__left {
  padding: 4rem 0 4rem 6rem;
}
@media (max-width: 1100px) {
  .banner__left {
    padding: 4rem 2rem;
    padding-bottom: 0;
    text-align: center;
  }
}
.banner__right {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 300px;
}
.banner__right > img {
  max-height: 450px;
}
.banner__logo {
  max-width: 260px;
  margin-bottom: 3rem;
}
@media (max-width: 650px) {
  .banner__logo {
    max-width: 200px;
  }
}
.banner__price-original {
  color: #898989;
  text-decoration: line-through;
}
.banner__price-sale {
  color: #27b1ee;
}
.banner__discount {
  font-size: 14px;
  text-transform: uppercase;
  color: white;
  background: black;
  padding: 5px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 2rem;
}
.banner__title {
  font-size: 3.2rem;
  margin: 0;
  line-height: 110%;
  color: black;
  font-weight: 700;
}
@media (max-width: 650px) {
  .banner__title {
    font-size: 3rem;
  }
}
@media (max-width: 450px) {
  .banner__title {
    font-size: 2.5rem;
  }
}
.banner__description {
  font-size: 1.6rem;
  color: #898989;
  margin: 3rem 0;
  line-height: 150%;
  max-width: 600px;
}
@media (max-width: 1100px) {
  .banner__description {
    margin: 3rem auto;
  }
}
.banner__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: left;
  margin-bottom: 3rem;
  width: 247px;
}
@media (max-width: 1100px) {
  .banner__list {
    margin: auto;
  }
}
@media (max-width: 650px) {
  .banner__list {
    flex-direction: column;
  }
}
.banner__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.banner__list-item svg {
  width: 18px;
}
.banner__list-item p {
  margin: 0;
  line-height: 21px;
}
.banner__link {
  display: flex;
  margin-top: 3rem;
}
@media (max-width: 1100px) {
  .banner__link {
    justify-content: center;
  }
}

.promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 6rem 0;
}
.promo > img {
  max-width: 120px;
  margin-bottom: 2rem;
}
.promo > h2 {
  font-size: 6rem;
  font-weight: 800;
  margin: 0;
  text-align: center;
}
@media (max-width: 1000px) {
  .promo > h2 {
    font-size: 4rem;
  }
}
@media (max-width: 600px) {
  .promo > h2 {
    font-size: 3rem;
  }
}
.promo > p {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 1000px) {
  .promo > p {
    font-size: 1.8rem;
  }
}
.promo > .dtf-btn {
  font-size: 1.8rem;
}

.dtf-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1002;
}
.dtf-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.dtf-btn {
  background: linear-gradient(90deg, #6de66f, #59c55f);
  border: none;
  outline: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  text-align: center;
  display: block;
  z-index: 1;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.dtf-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
  background: linear-gradient(220deg, #6de66f, #6de66f);
}
.dtf-btn--orange {
  background: linear-gradient(to right, #efab00, #eb850f);
  color: white !important;
}
.dtf-btn--orange::before {
  background: linear-gradient(220deg, #efab00, #eb850f);
}
.dtf-btn--orange:hover {
  color: white !important;
}
.dtf-btn--gray {
  background: linear-gradient(220deg, #f0f0f0, #ececec);
  color: gray;
}
.dtf-btn--gray::before {
  background: linear-gradient(220deg, #ececec, #ececec);
}
.dtf-btn:hover {
  cursor: pointer;
}
.dtf-btn:hover::before {
  opacity: 1;
}

.gallery {
  margin-bottom: -10px;
  position: relative;
  padding: 10px;
  padding-bottom: 0;
}
.gallery::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, #fafafa, rgba(255, 255, 255, 0));
  pointer-events: none;
}
.gallery__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 1rem;
  gap: 1rem;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .gallery__row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 500px) {
  .gallery__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery__row-item {
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .gallery__row-item:last-child {
    display: none;
  }
}
@media (max-width: 500px) {
  .gallery__row-item:last-child {
    display: initial;
  }
}
