


body {
  margin: 0;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  font-family: "Helvetica", Arial, sans-serif;
}

.wrapper {
  width: 750px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.banner img {
  width: 100%;
  display: block;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background-color: #000;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.text-section {
  padding: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.footer-fixed-bar {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 750px;
  background-color: #E22072;
  /* box-shadow: 0 4px 15px rgba(0,0,0,0.3);  */
  z-index: 9999;
  /* border-radius: 12px;  */
  padding: 12px 0;
  /* border: 4px solid rgba(255, 255, 255, 0.3);  */
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
}

.footer-text {
  color: white;
  text-align: left;
}

.footer-text strong {
  display: block;
  font-size: 2.1rem;
}

.footer-buttons {
  display: flex;
  gap: 14px;
}

.action-btn {
  display: flex;
  align-items: center;
  background: white;
  color: #333;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  transition: background 0.2s;
}

.action-btn:hover {
  background: #f0f0f0;
}

.action-btn img {
  width: 100px;
  height: 100px;
  margin-right: 8px;
  border-radius: 20px;
}

@media (max-width: 600px) {
  .footer-fixed-bar {
    bottom: 0px;
    width: 100%;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-text strong {
    font-size: 1.5rem;
  }

  .action-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}



.modern-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modern-modal-content {
  background-image: url('./product-4.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 60px 40px;
  border-radius: 40px;
  text-align: center;
  width: 600px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  transform: scale(0.8) translateY(40px);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.modern-modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.65);
  /* backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); */
  z-index: 0;
}

.modern-modal-content>* {
  position: relative;
  z-index: 1;
}

.modern-modal-overlay.active .modern-modal-content {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #f5f5f7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  outline: none;
}

.modal-close-btn:hover {
  background: #e8e8ed;
  transform: rotate(90deg);
}

.modal-close-btn svg {
  width: 40px;
  height: 40px;
  stroke: #86868b;
}

.modal-icon-wrapper {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 35px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* transform: rotate(-10deg); */
}

.modern-modal-content p {
  font-size: 38px;
  color: #d32f2f;
  line-height: 1.2;
  margin-bottom: 32px;
  font-weight: 700;
}

.modern-btn {
  margin-top: 40px;
  background: linear-gradient(135deg, #42C633 0%, #3ABE2B 100%);
  color: #fff;
  border: none;
  padding: 24px 20px;
  font-size: 32px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: btnFastBreath 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;

  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  will-change: transform, box-shadow;
  transition: all 0.2s ease;
}

.modern-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(30deg);
  animation: shinySweep 3s infinite;
}

@keyframes shinySweep {
  0% {
    left: -60%;
  }

  20% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}

@keyframes btnFastBreath {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.5);
  }
}

.modern-btn:active {
  transform: scale(0.92);
  filter: brightness(0.9);
  animation-play-state: paused;
}

.footer-fixed-bar-new {
  position: fixed;
  bottom: 30px;
  left: 50%;
  width: 650px;
  transform: translateX(-50%) scale(1);
  z-index: 99999;
  background: transparent;
  border: none;
  line-height: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  animation: barFastBreath 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: transform;
  transition: opacity 0.3s ease;
}

@keyframes barFastBreath {
  0% {
    transform: translateX(-50%) scale(1);
  }

  50% {
    transform: translateX(-50%) scale(1.05);
  }

  100% {
    transform: translateX(-50%) scale(1);
  }
}

.footer-fixed-bar-new img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.footer-fixed-bar-new:active {
  transform: translateX(-50%) scale(0.94);
  transition: transform 0.1s ease;
}

body.lock-scroll .footer-fixed-bar-new {
  opacity: 0;
  pointer-events: none;
}