* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

img,
video {
  width: 100%;
}

img,
a {
  display: block;
}

a {
  text-decoration: none;
}

body {
  font-family: "Inter", Helvetica, Arial, Lucida, sans-serif;
  font-size: 0.735vw;
  line-height: 1.339vw;
  position: relative;
}

h1,
h2,
h3,
h4 {
  line-height: 2.415vw;
}

h2 {
  font-size: 2.415vw;
  font-weight: 800;
  color: #0a0a0a;
}

body,
h1,
h2,
h3,
h4,
ul,
li,
a,
p {
  margin: 0;
}
.hidden {
  display: none!important;
}
.why-choose-us{
    background-image: url('../media/wh1.jpg');
    background-size: cover; /* Ensures the image covers the whole section */
    background-position: center center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    
}

.djt .blue-subtitle{
    margin-top: 100px !important;
    
}



@media (max-width: 400px) {
    
    .djt{
   
    min-height: 500px !important;
}

.djt .blue-subtitle{
    margin-top: 70px !important;
    
}

.why-choose-desc{
   line-height: 1.4 !important;
}
}


#discount-modal.hidden {
  display: none;
}

#product-caption-1.hidden {
  display: none;
}

#product-caption-2.hidden {
  display: none;
}

#product-caption-3.hidden {
  display: none;
}

#product-caption-4.hidden {
  display: none;
}


.before-footer {
  background-image: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%), url("../images/Rectangle.png");

}
#discount-popup-container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .1);
  display: flex;
  justify-content: center;
  align-items: center;
}

#discount-popup-container.hidden {
  display: none;
}
#discount-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .8);
  z-index: 999;
}

.close-btn {
  position: fixed;
  top: 14px;
  right: 14px;
  width: 40px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 9991;
}


.open-button-wheel-container {
  position: fixed;
  bottom: 0;
  /* Stick to bottom */
  left: 0;
  width: 100%;

  z-index: 999;
  display: flex;
  justify-content: right;
  padding: 10px 0;

  background: rgba(74, 105, 253, 0.8);
  height: 50px;
  margin-bottom: 20px;


  transform: translateY(200%);
  transition: transform 0.3s ease;
}

.open-button-wheel-container.visible {
  transform: translateY(0%);
}

.open-button-wheel-container.hidden {
  display: none;
}

.open-button-wheel-container .open-button-wheel {
  margin-top: -46px;
  padding: 0.7rem 2rem;
  font-weight: 800;
  font-size: 18px;
  color: white;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: 6px;
}
.open-button-wheel img {
    width: 100px;
          animation: spinWheel 10s infinite; /* 10s duration, infinite loop */
}
 @keyframes spinWheel {
            0% {
                transform: rotate(0deg);
            }
            70% { /* The main rotation happens up to this point */
                transform: rotate(-2160deg); /* 6 full rotations to the left (6 * -360 = -2160) */
                /* Use a cubic-bezier for a game-like spin: fast start, then decelerate */
                animation-timing-function: cubic-bezier(0.1, 0.7, 0.5, 1); /* Starts fast, then slows down */
            }
            100% { /* The wheel remains stopped for the last 30% of the animation (3 seconds) */
                transform: rotate(-2160deg);
            }
        }
.open-button-wheel-container .open-button-wheel.hidden {
  display: none;
}

.email-heading {
  color: #e0c472;


  line-height: 1.5;
}


.discount-modal-right .email-subheading {
  color: white;
  line-height: 1;
  font-weight: 500;
  margin: 1rem auto;
}

.email-subheading span {
  font-weight: 800;

}

.email-input {
  padding: .5rem 1rem;
  font-size: 21px;
}
.buzz-animation {
    animation: buzz 0.4s ease-in-out; /* 0.4 seconds duration, ease-in-out timing */
    border: 2px solid red !important; /* Optional: Make the border red during buzz */
}
@keyframes buzz {
    0% { transform: translateX(0); }
    20% { transform: translateX(-5px); }
    40% { transform: translateX(5px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

/* Class to apply the buzz animation */

.submitBtn {
  width: 260px;
  margin-top: .5rem;
  padding: .5rem 2rem;
  background: radial-gradient(circle at center,
      #fff3b0,
      #dcba60);
  color: black;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  font-weight: 800;
  font-size: 18px;
  border: none;
  cursor: pointer;
}

.submitBtn:hover {
  background: radial-gradient(circle at center, #d3c262, #897030);
  color: #ffffff;
  width: 280px;
  transition-duration: 300ms;
  animation: all;
}

.wheelSVG {
  position: relative;
  overflow: visible;

}

.wheelText {
  text-anchor: start;
  -webkit-user-select: none;
  user-select: none;
}

.wheelText tspan {
  text-anchor: middle;
  letter-spacing: 2px;
}



.discount-modal-container {
  display: flex;
  flex-direction: row;
  width: 60%;
  height: 100vh;
  align-items: center;
}

.discount-modal-left,
.discount-modal-right {
  width: 50%;
  box-sizing: border-box;
  padding: 20px;
  align-items: center;
}

.discount-modal-left {
  justify-content: center;
}

.discount-modal-right {
  justify-content: flex-start;
}

.discountPrice {
  background-color: #eea120;
  text-align: center;
  color: white;
  font-size: 20px;
  padding: 10px;
}

.wheel-info {
  width: 260px;
  margin-top: 12px;
  word-wrap: break-word;
  color: #afaca6;
  font-size: 10px;
  line-height: 1.2;
}

.table-container {
  max-width: 1200px;
  width: 90%;
  margin: 3rem auto;
  overflow-x: auto;
  /* Enables horizontal scrolling for small screens */
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.55);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
  /* Minimum width before horizontal scroll kicks in */
  overflow: hidden;
}

th,
td {
  border: 1px solid #dee2e6;
  padding: 12px 15px;
  text-align: left;
  vertical-align: top;
  /* Aligns content to the top of the cell */
}

thead {
  background-color: black;

}

th {
  font-weight: bold;
  color: white;
  text-transform: uppercase;
}

tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

tbody tr:hover {
  background-color: #e2e6ea;
}

.highlight {
  background-color: #4B69FF;
  /* A light green highlight */
  font-weight: normal;
}

.highlight td {

  color: white;
}

.highlight td:first-child {
  border-left: 2px solid white;
}

.highlight td {

  background: #4B69FF;
}


.check-mark {
  color: white;
  /* Green color for check marks */
  font-weight: bold;
  margin-right: 5px;
}

 .fixed-bottom-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            gap:1rem;
            width: 100%;
            background-color: #000;
            color: #fff;
            padding: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
            z-index: 998;
            border-top-left-radius: 0.5rem; /* Equivalent to rounded-t-lg */
            border-top-right-radius: 0.5rem; /* Equivalent to rounded-t-lg */
        }

        .text-content {
            display: flex;
            flex-direction: column;
            align-items: center; /* Equivalent to items-center */
            margin-right: 1rem; /* Equivalent to mr-4 (Tailwind's mr-4 is 1rem) */
        }

        .text-content .hurry-up-text {
            font-size: 1.125rem; /* Equivalent to text-lg */
            font-weight: 600; /* Equivalent to font-semibold */
        }

        .text-content .limited-offer-text {
            font-size: 1.3rem; /* Equivalent to text-sm */
        }

       
        .countdown-timer {
        font-size: 1.5rem;
        font-weight: bold;
        color: white;
        display: flex;
        justify-content: space-between;
        width: 100%;
}
        .countdown-timer span {
            color: #ff0000; 
            font-weight: 400;
        }

      .buy-now-button {
    background-color: #fff;
    color: #000;
    font-size: 1.5rem;
    padding: 0.75rem 3.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

        .buy-now-button:hover {
            background-color: #f0f0f0;
        }
.mobile-navbar {
  display: none;
  width: 0px !important;
}

.width-controller {
  width: 73.491%;
  margin: auto;
}

.scroll-bar {
  position: fixed;
  top: 80%;
  right: -10vw;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  width: 2.1vw;
  height: 2.1vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  transition: right 0.4s ease;
  z-index: 999;
  cursor: pointer;
}

.scroll-bar.show {
  right: 0;
}

/* Navbar */

nav {
  padding-top: 0.677vw;
  background-color: #f2f2f2;
  padding-bottom: 0.677vw;
}

nav .width-controller {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .width-controller div {
  width: 29.643%;
}

nav .width-controller img {
  width: 43.373%;
}

.nav-links {
  gap: 1.146vw;
  justify-content: center;
  padding-bottom: 10px;
  font-size: 18px;
  width: 500px !important;
}

nav .width-controller div:last-child,
.nav-links {
  display: flex;
}

nav .width-controller div:last-child {
  justify-content: flex-end;
}

.nav-links a {
  color: #000;
  font-weight: 600;
}

.menu-toggle {
  width: 4.167vw !important;
  margin: auto;
  height: 3.906vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 0.521vw;
  background: #333;
  border-radius: 0.26vw;
  transition: all 0.4s ease;
}

.menu.open .bar1 {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu.open .bar2 {
  opacity: 0;
}

.menu.open .bar3 {
  transform: rotate(-45deg) translate(8px, -8px);
}

.peg {
  fill: #DCBA60;
}


/* .wheelText :nth-child(1),
.wheelText :nth-child(2)
{
    fill: #FFFFFF !important;
}


.wheelText :nth-child(3)
{
    fill: #000000 !important;
} */


.sidebar {
  position: absolute;
  top: 9.375vw;
  width: 29.948% !important;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  border-top: 0.391vw solid #2ea3f2;
  padding: 1.499vw;
}

.sidebar.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sidebar a {
  display: block;
  padding: 1.302vw;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  transition: background 0.3s;
  font-weight: 600;
  line-height: 3.385vw;
}

.order-btn {
  background-color: #000;
  color: white;
  width: 40.723%;
  text-align: center;
  font-size: 1.042vw;
  border-radius: 0.208vw;
  height: 2.396vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

/* Header Section */
.header-section {
  background-color: #000;
  padding: 1.995vw 0;
}

.header-section .width-controller div {
  width: 90%;
  margin: auto;
  text-align: center;
  color: #fff;
}

.header-section h1 {
  margin-bottom: 1.575vw;
  font-size: 2.24vw;
  font-weight: 500;
}

/* Why choose us? */
.why-choose-us {
  padding-top: 4.219vw;
}

.robot-w-beforeafter .width-controller {
  display: flex;
  justify-content: space-between;
}

.why-choose-us .width-controller {
  align-items: center;
}

.why-choose-us .width-controller div:first-child {
  margin-top: 4.147vw;
}

.robot-w-beforeafter .width-controller div:first-child img {
  width: 31.921%;
}

.robot-w-beforeafter h2 {
  margin-bottom: 0.833vw;
}

.blue-subtitle {
    background-color: #4b69ff;
    width: 92%;
    text-align: center;
    color: white;
    padding: 0.313vw 0;
    margin-bottom: 0.885vw;
    font-size: 20px !important;
}

.robot-image img {
  width: 90%;
  margin: auto;
}

.why-choose-desc {
    font-size: 20px !important;
    font-weight: 500;
    line-height: 1.4;
}

.robot-w-beforeafter a {
  margin: 1.823vw 0 2.005vw 0;
}

.order-now-btn {
  background-color: #000;
  position: relative;
  transition: background 0.4s, color 0.4s;
  color: #fff;
  width: 35% !important;
  border-radius: 0.156vw;
  text-align: center;
  padding: 0.443vw 0;
  font-size: 1.042vw;
  font-weight: 300;
}

@media screen and (max-width: 480px) {
    .terahertz-device .order-now-btn {
        width: 50% !important;
    }
}

.order-now-btn::after {
  content: ">";
  display: inline-block;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s, transform 0.3s;
  font-size: 1.2em;
  /* Adjust as needed */
}

.order-now-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.robot-w-beforeafter .width-controller div {
  width: 47.214%;
}

/* Benefits of Using */
.benefits-using {
  padding-top: 2.24vw;
}

.benefits-header {
  text-align: center;
  width: 40%;
  margin: auto;
}

.benefits-header h2 {
  font-weight: 700;
  margin-top: 0.781vw;
  margin-bottom: 2.24vw;
}

.benefits-header h2 em {
  font-weight: 300;
}

.benefits-header p {
  font-weight: 600;
}

.benefits-container {
  display: flex;
  gap: 3%;
}

.benefits-content {
  background-color: #f2f2f2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.031vw 0;
  border-radius: 0.625vw;
  text-align: center;
}

.benefits-content img {
  width: 20%;
}

.benefits-content img,
.how-to-use-content img {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.benefits-content.visible img,
.how-to-use-content div.visible img {
  opacity: 1;
  transform: translateX(0);
}

.benefits-content h4 {
  margin: 1.563vw 0 0.521vw 0;
  font-size: 1.458vw;
  font-weight: 500;
}

.benefits-content p {
  color: #161616;
  font-weight: 300;
}

.sec-benefits-container {
  gap: 0.833vw;
  margin-top: 1.406vw;
}

.sec-benefits-container img {
  width: 11.696%;
}

/* What IonicCare Heals */
.what-ioncare-heals {
  padding: 2.813vw 0;
}

.what-ioncare-heals .width-controller {
  align-items: flex-end;
}

.heal-content {
  width: 100% !important;
  margin: 0.781vw 0;
}

.text-under-heal,
.heal-content {
  font-size: 0.781vw;
  font-weight: 500;
}

/* 30 Days Money Back Guarantee (black) */
.money-back-black {
  background-color: #000;
  padding: 4.115vw 0;
  display: flex;
  justify-content: center;
  gap: 4.01vw;
}

.money-back-black div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2.526vw;
  color: #fff;
  width: 48.136%;
}

.money-back-black h3 {
  font-size: 1.719vw;
}

.money-back-black p {
  font-weight: 500;
}

.money-back-black div:first-child {
  width: 21.785%;
  display: flex;
  justify-content: flex-end;
}

.money-back-black img {
  width: 46.024%;
}

/* Secure checkout - products */
.checkout-products {
  padding-top: 4.219vw;
}

.secure-checkout-img {
  display: flex;
  justify-content: center;
  margin-bottom: 2.083vw;
}

.secure-checkout-img img {
  width: 16.17%;
}

.products-links {
  display: flex;
  justify-content: center;
  gap: 11.875vw;
  margin-bottom: 6.667vw;
}

.products-links a {
  width: 19.5%;
}

.best-seller-img {
  width: 35.3%;
  margin: auto;
}

/* Feel the difference & Slider  */
.feel-the-difference {
  text-align: center;
  margin-top: 3.177vw;
  margin-bottom: 8.125vw;
}

.feel-the-difference h2 {
  width: 39%;
  margin: auto;
  font-weight: 700;
}

.feel-the-difference p {
  font-weight: 600;
  margin-bottom: 0.781vw;
}

/* Slider  */
.slider-wrapper {
  display: flex;
  gap: 4.01vw;
  justify-content: center;
  margin-top: 2.2vw;
}

.slider-wrapper-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.slider-container {
  position: relative;
  width: 21.615vw;
  height: 22.656vw;
  overflow: hidden;
  user-select: none;
}

.slider-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.img-after {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 4px;
  background: #fff;
  z-index: 3;
  cursor: ew-resize;
}

.handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 2px solid #333;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  z-index: 4;
}

.instruction {
  font-weight: 300 !important;
  text-align: center;
  color: #161616;
  margin-top: 0.781vw;
}

/* Product infos */
.product-infos {
  margin-bottom: 4.147vw;
}

.product-infos .width-controller {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.205vw;
  row-gap: 1.417vw;
}

.product-infos .width-controller div {
  width: 31.286%;
  text-align: center;
}

.product-infos .width-controller div p:first-child {
  font-size: 1.575vw;
  font-weight: 800;
  margin-bottom: 0.525vw;
}

/* Terahertz device w/video */
.terahertz-device .width-controller {
  display: flex;
  justify-content: space-between;
}

.terahertz-device .width-controller div {
  width: 47.214%;
}

.terahertz-device .width-controller div p,
.improve-health-w-benefits ul,
.who-can-benefit ul {
  font-size: 14px !important;
  color: #161616;
  font-weight: 500;
}

.terahertz-left-content p {
  margin-bottom: 1.365vw;
  margin-top: 1.365vw;
}

.terahertz-left-content {
    /* margin-top: 6vw; */

}

.terahertz-device-content {
  /*margin-top: 5.197vw;*/
}

.device-video {
  margin-top: 1.732vw;
  margin-bottom: 1.732vw;
}

.device-video video {
  height: 33.123vw;
  object-fit: cover;
}

/* HOW THE DEVICE IS IMPROVING HEALH */
.improve-health-w-benefits,
.who-can-benefit {
  background-color: #f2f2f2;
}

.improve-health-w-benefits {
  padding: 1.785vw 0 2.572vw 0;
}

.health-w-benefits-img img,
.doctor-img img {
  width: 83.056%;
  border-radius: 1.785vw;
}

.improve-health-w-benefits ul,
.who-can-benefit ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 2.02vw;
}

.improve-health-w-benefits ul li:not(:last-child),
.who-can-benefit ul li:not(:last-child) {
  margin-bottom: 0.787vw;
}

.terahertz-right-content p {
  margin: 1.365vw 0 1.207vw 0;
}

/* Is terahertz safe to use? */
.safe-to-use-w-doctor {
  padding: 1.837vw 0 2.257vw 0;
}

.who-can-benefit {
  padding: 1.995vw 0 1.627vw 0;
}

/* NEW SCIENTIFIC DISCOVERY */
.new-scientific-discovery {
  padding-top: 2.835vw;
  margin-bottom: 0.945vw;
}

.discovery-wrapper {
  background-color: #e2e2e2;
  width: 85.714%;
  margin: auto;
  padding-top: 2.835vw;
  padding-bottom: 2.205vw;
}

.discovery-content {
  width: 91.167%;
  margin: auto;
}

.discovery-black-date {
  font-size: 1.365vw;
  background-color: #000;
  width: 51.92%;
  text-align: center;
  color: #fff;
  padding: 0.42vw 0;
  font-weight: 500;
}

.discovery-text-w-references h2 {
  margin: 1.579vw 0 0.84vw 0;
}

.discovery-text-w-references p:last-child,
.discovery-content-w-image p {
  font-size: 1.26vw;
  color: #161616;
  line-height: 1.68vw;
  font-weight: 500;
}

/* DISCOVERY WITH IMAGE */
.discovery-content-w-image {
  display: flex;
  justify-content: space-between;
  margin: 2.31vw 0;
}

.discovery-content-w-image div {
  width: 47.166%;
  word-spacing: 5px;
}

.scientic-references {
  color: #606060;
  font-size: 0.577vw;
}

.scientic-references p {
  margin-bottom: 0.577vw;
}

.scientic-references ul {
  list-style-type: none;
  padding: 0;
}

/* REAL USERS WITH IMAGES */
.real-users {
  margin-top: 3.78vw;
  margin-bottom: 1.89vw;
}

.real-users .width-controller {
  background-color: #f2f2f2;
  padding-top: 2.047vw;
  padding-bottom: 1.417vw;
}

.real-users-head {
  text-align: center;
}

.real-users-head p {
  font-size: 1.155vw;
}

.real-users .width-controller h2 {
  font-weight: 800;
  margin-bottom: 0.525vw;
}

.real-users-head p {
  color: #161616;
}

.real-users-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 1.69vw;
  width: 83.643%;
  margin: auto;
  margin-top: 3.417vw;
  margin: 3.417vw auto 4.047vw auto;
}

.real-users-container div {
  width: 29.677%;
}

.real-users-container>div {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.real-users-container>div.show {
  opacity: 1;
  transform: translateY(0);
}

.real-users-names {
  font-size: 0.945vw;
  margin-bottom: 0.525vw;
  margin-top: 1.575vw;
  color: #0a0a0a;
  line-height: 0.945vw;
  font-weight: 500;
}

.real-users-container div p:last-child {
  color: #161616;
}

.real-users-with-button {
  width: 54%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.real-users-with-button .order-now-btn {
  width: 26.852% !important;
}

.real-users-with-button p {
  font-size: 1.155vw;
  color: #161616;
  margin-bottom: 0.892vw;
}

/* GET FREE EBOOKS */
.free-ebooks {
  text-align: center;
  background-color: #000;
  color: #fff;
  padding-top: 3.307vw;
  padding-bottom: 4.252vw;
}

.free-ebooks-header {
  font-size: 2.047vw;
  font-weight: 700;
  line-height: 2.352vw;
  margin-bottom: 2.31vw;
}

.free-ebooks-header span {
  text-decoration: underline;
}

.ebooks-container {
  display: flex;
  justify-content: space-between;
  width: 71.429%;
  margin: auto;
}

.ebooks-container div {
  width: 46.25%;
}

.ebooks-container img {
  border-radius: 0.945vw;
  border: 5px solid white;
  margin-bottom: 1.443vw;
}

.ebooks-container p {
  font-size: 0.945vw;
  line-height: 1.134vw;
  font-weight: 500;
}

/* HOW TO USE TERAHERTZ DEVICE */
.how-to-use-terahertz {
  padding: 4.252vw 0;
  background-color: #f2f2f2;
  text-align: center;
}

.how-to-use-header {
  width: 54%;
  margin: auto;
}

.how-to-use-content {
  display: flex;
  justify-content: space-between;
  margin-top: 3.885vw;
}

.how-to-use-content div {
  width: 31.286%;
}

.how-to-use-content img {
  width: 31.05%;
  margin: auto;
}

.how-to-use-content div p:nth-child(2) {
  margin-top: 1.575vw;
  margin-bottom: 0.525vw;
  line-height: 1.47vw;
  color: #0a0a0a;
  font-size: 1.47vw;
  font-weight: 500;
}

.how-to-use-content div p:last-child {
  color: #161616;
  font-weight: 300;
}

/* BEFORE FOOTER SECTION */
.before-footer {
  background-position: center bottom 26%;
  background-size: cover;
  text-align: center;
  padding-bottom: 23.622vw;
  padding-top: 4.252vw;
}

.before-footer-content {
  width: 54%;
  margin: auto;
}

.before-footer-content h2 {
  font-size: 1.68vw;
  line-height: 1.68vw;
}

.before-footer-content p {
  width: 70.37%;
  margin: auto;
  font-size: 0.787vw;
  font-weight: 500;
  line-height: 1.339vw;
  margin-top: 1.365vw;
}

/* FOOTER */
footer {
  background-color: #000;
  padding-top: 4.462vw;
  padding-bottom: 1.417vw;
}

.footer-logo-w-payments {
  width: 45.714%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.footer-logo-w-payments div {
  width: 47.188%;
}

.footer-logo-w-payments div:first-child img {
  width: 59.603%;
  margin: auto;
}

.footer-logo-w-payments div:last-child img {
  width: 79.801%;
  margin: auto;
}

.footer-links {
  width: 42.857%;
  display: flex;
  margin: auto;
  justify-content: space-between;
  margin-top: 2.362vw;
  margin-bottom: 1.417vw;
}

.footer-links a {
  width: 20.875%;
  text-align: center;
  color: white;
  font-weight: 500;
  line-height: 1.249vw;
}

.footer-content {
  width: 57.143%;
  margin: auto;
  color: #757575;
  font-weight: 300;
  line-height: 0.924vw;
  font-style: italic;
  font-size: 0.577vw;
  text-align: center;
  margin-bottom: 2.021vw;
}

.footer-copyright {
  color: #fff;
  line-height: 1.249vw;
  text-align: center;
  font-weight: 500;
}

/* CONTACT PAGE HERE */

/* STARTING CONTACT PAGE */

/* --------------------- */

/* CONTACT PAGE */
.contact {
  padding: 9.449vw 0;
  text-align: center;
}

.contact-header {
  margin-bottom: 3.885vw;
}

.email-support {
  width: 52.493%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f2f2f2;
  color: #0a0a0a;
  border-radius: 12px;
  padding: 1.575vw 0;
}

.email-support-content {
  width: 55%;
}

.email-support-content i {
  font-size: 5.039vw;
  margin-bottom: 1.575vw;
}

.email-support-content p:nth-child(3) {
  margin-top: 0.525vw;
  color: #6d6d6d;
  margin-bottom: 1.995vw;
}

.email-support-content p:nth-child(2) {
  font-size: 1.26vw;
  font-weight: 700;
}

.email-support-content p:nth-child(4) {
  font-size: 0.84vw;
  font-weight: 500;
}

.contact-header p {
  font-size: 0.84vw;
  margin-bottom: 0.525vw;
  line-height: 1.512vw;
  font-weight: 500;
}

.contact-header h1 {
  font-size: 3.15vw;
  line-height: 3.78vw;
  font-weight: 600;
}

/* PRIVACY POLICY HERE */

/* STARTING PRIVACY POLICY */

/* --------------------- */

/* PRIVACY POLICY */
.privacy-body {
  background-color: #f2f2f2;
}

.privacy-policy {
  width: 52.493%;
  margin: 4.252vw auto 4.252vw auto;
}

.privacy-policy,
.privacy-policy div {
  display: flex;
  flex-direction: column;
  gap: 0.735vw;
}

.privacy-policy div span {
  font-weight: 500;
}

.privacy-policy div p:first-child {
  font-weight: 700;
}

.privacy-policy div p {
  font-weight: 500;
}

.refunds-header {
  font-size: 26px;
  font-weight: 500 !important;
  line-height: 26px;
}

#coupon-timer {
  font-size: 20px;
  color: #FFF;
}


.discount-box {
    width;
    max-width: 90%;
    margin: 30px auto;
    background: linear-gradient(180deg, #D3AB54 0%, #EBDABE 100%);
  
    border-radius: 12px;
    padding: 30px 50px;
    text-align: center;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.discount-box h2 {
  color: black;
  font-size: 2rem;
}
.discount-box.discount-popup span {
    font-size: 2rem;
}
.discount-box p {
    text-transform: uppercase;
    font-size: 1.4rem;
    line-height: 1.2;
}
.discount-box .coupon-code {
    background: white;
    color: black;
    display: block;
    font-weight: bold;
    font-size: 18px;
    padding: 4px 20px;
    max-width: 70%;
    margin: 15px auto;
    border-radius: 6px;
    letter-spacing: 1px;
text-transform: uppercase;
}

.discount-box button {
  background: #000000;
    color: #fff;
    text-transform: uppercase;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    transition-duration: 300ms;
    transform: scale(1);
    animation: pulse 2s infinite;
}

.discount-box button:hover {
 padding: 10px 25px;
}


.feel-difference-images {
  padding-top: 4.219vw;
  padding-bottom: 4.219vw;
}

.feel-difference-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* adjust spacing between items */
  justify-content: center;
}

.feel-difference-img {
  flex: 1 1 calc(25% - 20px);
  /* 4 in a row */
  box-sizing: border-box;
}

.feel-difference-img img {
  width: 100%;
  height: auto;
  display: block;
}

.product-caption {
  text-align: center;
  font-weight: bold;
  margin-top: 8px;
  font-size: 1rem;
  color: #2e7d32;
  /* A nice green to grab attention */


}

.timeline-results-table-container {
  max-width: 1200px !important;
  margin: 20px auto;
  /* Added some top/bottom margin */
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;

}


.timeline-results-table-container h2 {
  background-color: #E23318;
  color: #ffffff;
  padding: 20px;
  margin: 0;
  text-align: center;
  font-size: 1.8em;
  font-weight: bold;
}

.timeline-results-table-container .table-wrapper {
  overflow-x: auto;
}

.timeline-results-table-container table {
  width: 100%;
  border-collapse: collapse;
}

.timeline-results-table-container thead tr {
  background-color: #4B69FF;
  color: #ffffff;
}

.timeline-results-table-container th {
  padding: 15px;
  text-align: center;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;


}

.timeline-results-table-container td {
  padding: 20px;
  vertical-align: top;
  /* General vertical alignment for cells */
  border: none;
}

.timeline-results-table-container tbody tr:last-child td {
  border-bottom: none;
}

.timeline-results-table-container .time-frame-cell {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  color: black;
  width: 20%;

  vertical-align: middle;
  /* Keep this centered vertically */
}

.table-header th {
  color: #ffffff;
}

.timeline-results-table-container .actions-cell {
  display: flex;
  align-items: center;
  /* Align items to the start of the cross axis (top for a row) */
  gap: 15px;


}

.actions-cell img {
  width: 50px;
}

.timeline-results-table-container .action-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;

  margin-top: 0;
  /* Ensure icon aligns with the very top of the text if text doesn't have specific top margin */
}

.timeline-results-table-container .actions-cell p {
  margin: 0;
  /* Remove default paragraph margins */
  font-size: 0.95em;
  line-height: 1.1;
  flex-grow: 1;
  /* Allow text to take available space */
}

.timeline-results-table-container .results-cell {
  width: 45%;
}

.timeline-results-table-container .results-cell ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.timeline-results-table-container .results-cell li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  font-size: 0.95em;
  line-height: 1.1;
}

.timeline-results-table-container .results-cell li:last-child {
  margin-bottom: 0;
}

.timeline-results-table-container .check-mark {
  color: #28a745;
  margin-right: 8px;
  font-weight: bold;
  font-size: 1.1em;
  line-height: 1;
  /* Adjust line-height for better alignment with text */
}

.comments-container {
  background-color: #ffffff;
  border-radius: 12px;
  /* Rounded corners for the main container */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 800px;
  margin: 3rem auto;
  padding: 20px;
  box-sizing: border-box;
}

.comment-input-area {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.profile-pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  border: 2px solid #e0e0e0;
  /* Subtle border for profile pics */
}

.profile-pic.smaller-pic {
  width: 50px;
  height: 50px;
}

.comment-image {
  display: block;
  margin-top: 8px;
  width: 180px;
  border-radius: 10px;
}

.comment-input-area input {
  flex-grow: 1;
  padding: 15px;
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  /* More rounded input field */
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease-in-out;
}

.comment-input-area input:focus {
  border-color: #007bff;
}

.comment-thread {
  display: flex;
  flex-direction: column;
}

.comment {
  display: flex;
  margin-bottom: 15px;
}

.comment-content {
  flex-grow: 1;
}

.comment-bubble {
  background-color: #f2f2f2;
  border-radius: 18px;
  /* More rounded comment bubbles */
  padding: 15px;
  margin-bottom: 10px;
}

.comment-author {
  font-weight: 600;
  color: #333;
  margin-bottom: 0px;
  display: block;
}

.comment-text {
  color: #202020;
  line-height: 1.2;
  font-size: 0.95rem;
  margin: 10px 0;
}

.comment-text span {
  font-weight: 600;

  color: black;
  /* Highlighted text */
}

.comment-actions {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: #65676b;
  margin-left: 10px;
  /* Indent actions slightly */
}

.action-link {
  color: #65676b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
  padding: 2px 0;
  /* Add some padding for easier clicking */
}

.action-link:hover {
  color: #333;
}

.action-link.liked {
  color: #007bff;
  /* Blue color for liked state */
}

.action-separator {
  margin: 0 8px;
  color: #ccc;
}

.timestamp {
  color: #999;
}

.reply-comment {
  margin-top: 5px;
  margin-left: 40px;
  /* Indent replies */
  border-left: 2px solid #e0e0e0;
  /* Visual cue for replies */
  padding-left: 15px;
}

.text-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.text-link:hover {
  text-decoration: underline;
}


/****************************************************PRODDUCT PLANS****************************************************

body {
  /* font-family: "Inter", sans-serif;
  background-color: #f3f4f6; 
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 1rem;
  box-sizing: border-box;
} */

.new-flip-clock-wrapper {
  /* position: absolute; */
  right: 1rem;
  top: 40%;
  margin: 0;
  display: none;
  /* Hidden by default */
}

.product-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 800px;

  margin: 5rem auto;
}

.product-card {
  background-color: #ffffff;
  border-radius: 2rem;
  /* This is correctly applying the border radius */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 1.05);
  padding: 1rem;
  text-align: center;
  position: relative;
  --border-size: 0.3rem;
  /* User specified */
  overflow: visible;
}

.product-card-3 {
  background: url("../images/product3bg.png") no-repeat center center;
  background-size: cover;
  border-radius: 1.5rem;
  /* 24px rounded corners */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 1.05);
  padding: 1rem;
  text-align: center;
  position: relative;
  --border-size: 0.3rem;
  /* User specified */
  overflow: visible;
}

.product-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(-1 * var(--border-size));
  bottom: calc(-1 * var(--border-size));
  left: calc(-1 * var(--border-size));
  right: calc(-1 * var(--border-size));


  border-radius: inherit;
  /* Inherits 4rem from .card-user-provided-logic */
}

.product-card-3::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(-1 * var(--border-size));
  bottom: calc(-1 * var(--border-size));
  left: calc(-1 * var(--border-size));
  right: calc(-1 * var(--border-size));

  border-radius: inherit;
  /* Inherits 4rem from .card-user-provided-logic */
}

.starter-pack-badge {
  background: url("../images/goldbg.png") no-repeat center center;
  background-size: cover;
  color: black;
  font-weight: 800;
  padding: 10px 10px;
  border-radius: 10px;
  /* 12px rounded corners */
  position: absolute;
  top: -1.5rem;
  /* -24px position above the card */
  left: 50%;
  word-wrap: nowrap;
  width: 50%;
  transform: translateX(-50%);
  z-index: 100;
  white-space: nowrap;
  /* Prevent text wrapping */
  font-size: 0.8rem;
  /* 14px text */
  letter-spacing: 0.2em;
  /* tracking-wide */
}

.starter-pack-badge-3 {
  background: black;
  color: white;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 10px;
  /* 12px rounded corners */
  position: absolute;
  top: -1.5rem;
  /* -24px position above the card */
  left: 50%;
  width: 50%;
  transform: translateX(-50%);
  z-index: 100;
  white-space: nowrap;
  /* Prevent text wrapping */
  font-size: 0.8rem;
  /* 14px text */
  letter-spacing: 0.2em;
  /* tracking-wide */
}

.product-header {
  margin-top: 0.5rem;
  /* 32px margin-top */
  text-align: center;
}

.product-header h2 {
  font-size: 1.5rem;
  /* 30px text */
  font-weight: 800;
  /* Extra bold */
  color: black;
  /* Gray-900 */
  margin: 0rem;
  /* 8px margin-bottom */
}

.product-header span {
  font-weight: 300;
  font-style: italic;
}

.free-shipping {
  color: black;
  /* Green-600 */
  font-weight: 600;
  /* Semi bold */
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.3rem;
  font-size: 0.8rem;
  /* 18px text */
}

.free-shipping-icon {
  width: 30px;
  /* 20px width */
  height: auto;
  /* 20px height */
  margin-right: 0.25rem;
  /* 4px margin-right */
  display: inline-block;
  object-fit: contain;
  vertical-align: middle;
}

.product-image-container {
  margin-top: 0.5rem;
  /* 24px margin-top */
  margin-bottom: 1.5rem;
  /* 24px margin-bottom */
}

.product-image-container img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  object-fit: contain;
  height: 100%;
  min-height: 25rem;
  ;
  max-height: 25rem;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes opacityChange {
  to {
    --opacity: 1;
  }
}

@keyframes rotate {
  to {
    --angle: 360deg;
  }
}

@keyframes product-rotate {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.save-price {
  color: #25c541;
  /* Green-600 */
  font-size: 1.5rem;
  /* 24px text */
  font-weight: 900;
  /* Bold */
  margin-bottom: 0.5rem;
  /* 8px margin-bottom */
  position: absolute;
  left: 10%;
  top: 18%;
  overflow: hidden;
  /* Hide overflowing text */
  width: 0;
  /* Start with zero width for typing effect */
  animation: typing 3s steps(10, end) infinite, blink-caret 1s step-end infinite;
  /* Typing and blinking caret */
  white-space: nowrap;
  /* Prevent text wrapping */
  border-right: 4px solid #25c541;
  /* Blinking caret */
}

@keyframes typing {
  0% {
    width: 0;
  }

  /* Typing completes at approximately 2 seconds into the 7-second cycle */
  50% {
    width: 35%;
  }

  /* (2s / 7s) * 100% = ~28.57% */
  90% {
    width: 35%;
  }

  0% {
    width: 0;
  }

  /* Start with zero width for typing effect */
  /* Hold at 100% width for the remaining 5 seconds */
}

@keyframes typing-3 {
  0% {
    width: 0;
  }

  /* Typing completes at approximately 2 seconds into the 7-second cycle */
  50% {
    width: 39.5%;
  }

  /* (2s / 7s) * 100% = ~28.57% */
  90% {
    width: 39.5%;
  }

  0% {
    width: 0;
  }

  /* Start with zero width for typing effect */
  /* Hold at 100% width for the remaining 5 seconds */
}

@keyframes blink-caret {

  from,
  to {
    border-right-color: transparent;
  }

  50% {
    border-right-color: #25c541;
  }

  /* Blinking caret color */
}

@keyframes blink-caret-3 {

  from,
  to {
    border-right-color: transparent;
  }

  50% {
    border-right-color: black;
  }

  /* Blinking caret color */
}

.save-price-3 {
  color: black;
  /* Green-600 */
  font-size: 1.5rem;
  /* 24px text */
  font-weight: 900;
  /* Bold */
  margin-bottom: 0.5rem;
  /* 8px margin-bottom */
  position: absolute;
  left: 10%;
  top: 18%;
  overflow: hidden;
  /* Hide overflowing text */
  width: 0;
  /* Start with zero width for typing effect */
  animation: typing-3 3s steps(10, end) infinite,
    blink-caret-3 1s step-end infinite;
  /* Typing and blinking caret */
  white-space: nowrap;
  /* Prevent text wrapping */
  border-right: 4px solid #25c541;
  /* Blinking caret */
}

.strikethrough {
  text-decoration: line-through;
  color: #e23318;
  /* Gray-500 */
  font-size: 1.3rem;
  /* 18px text */
  font-weight: 600;
  margin-top: -4rem;
  margin-bottom: 0.2rem;
}

.current-price {
  color: black;
  /* Make text transparent to show gradient */
  font-size: 5rem;
  /* 48px text */
  font-weight: 800;
  /* Extra bold */
  display: flex;
  gap: 0.5rem;
  /* 8px gap */
  line-height: 0.75;
  /* 1.2 line height */
  align-items: end;
  justify-content: center;
  margin: 0;
  position: relative;
  /* Needed for background-clip */
}

@keyframes wave {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.current-price p {
  font-size: 2rem;
  /* 24px text */
  font-weight: 800;
  /* Normal */
  color: black;
  /* Gray-700 */
  margin-left: 0.5rem;
  /* 8px margin-left */
  margin: 0;
}

.per-device {
  font-size: 0.8rem;
  /* 18px text */
  font-weight: 400;
  /* Normal */
  text-align: left;
  margin: 0;
  line-height: 1.2;
  /* 1.2 line height */
}

.add-to-cart-btn {
  background-color: #e23318;
  /* Red color */
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.8rem 3rem;
  /* 12px vertical, 32px horizontal padding */
  border-radius: 40rem;
  /* 12px rounded corners */
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3),
    0 2px 4px -1px rgba(239, 68, 68, 0.1);
  margin-bottom: 0.1rem;
  /* 24px margin-bottom */
  margin: 1rem auto;
  /* Center the button */
  border: none;
  /* Remove default button border */
  cursor: pointer;
  /* Indicate it's clickable */
}

.cart-active-btn {
  display: none;
  /* Hidden by default */
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background-color: #e23318;
  /* Red color */
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2px;
  padding: 0.5rem 1.5rem;
  /* 12px vertical, 32px horizontal padding */
  border-radius: 40rem;
  /* 12px rounded corners */
  transition: background-color 0.3s ease;
  /* Only background-color transition on base */
  border: none;
  /* Remove default button border */
  cursor: pointer;
  /* Indicate it's clickable */
  margin-bottom: 0.1rem;
  /* 24px margin-bottom */
  margin-top: -0.5rem;
  animation: border-animate 2s infinite linear;
  /* Continuous animation */
}

.cart-active-btn-3 {
  display: none;
  /* Hidden by default */
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background-color: black;
  /* Red color */
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2px;
  padding: 0.5rem 1.5rem;
  /* 12px vertical, 32px horizontal padding */
  border-radius: 40rem;
  /* 12px rounded corners */
  transition: background-color 0.3s ease;
  /* Only background-color transition on base */
  border: none;
  /* Remove default button border */
  cursor: pointer;
  /* Indicate it's clickable */
  margin-bottom: 0.1rem;
  /* 24px margin-bottom */
  margin-top: -0.5rem;
  animation: border-animate-3 2s infinite linear;
  /* Continuous animation */
}

.cart-active-btn:hover {
  background-color: black;
  /* Darker red on hover */
}

.cart-active-btn-3:hover {
  background-color: #e23318;
  /* Darker red on hover */
}

.cart-active-btn span {
  font-weight: 700;
  /* Bold text */
  color: #ffffff;
  /* White text */
  font-size: 1.4rem;
}

.cart-active-btn-3 span {
  font-weight: 700;
  /* Bold text */
  color: #ffffff;
  /* White text */
  font-size: 1.4rem;
}

#clock-arrow {
  /* Set the rotation origin to the center of the clock face */
  /* Based on the viewBox (0 0 118 138), the center x is 118/2 = 59 */
  /* The center y of the main circle is approximately 78.8442 */
  transform-origin: 59px 78.8442px;
  animation: rotateClockHand 5s linear infinite;
  /* Rotate every 5 seconds continuously */
}

/* Keyframes for the rotation animation */
@keyframes rotateClockHand {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Optional: Style the SVG itself for better visibility */
.cart-active-btn svg {
  width: 30px;
  /* Set a fixed width for the SVG */
  height: auto;
  /* Maintain aspect ratio */
}

@keyframes border-animate {
  0% {
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3),
      /* Existing red shadow */
      0 2px 4px -1px rgba(239, 68, 68, 0.1),
      /* Existing red shadow */
      0 0 0 0px #e23318;
    /* Start with no black border */
  }

  50% {
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3),
      0 2px 4px -1px rgba(239, 68, 68, 0.1), 0 0 0 4px #e23318;
    /* Black border appears */
  }

  100% {
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3),
      0 2px 4px -1px rgba(239, 68, 68, 0.1), 0 0 0 0px #e23318;
    /* Black border disappears */
  }
}

@keyframes border-animate-3 {
  0% {
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3),
      /* Existing red shadow */
      0 2px 4px -1px rgba(239, 68, 68, 0.1),
      /* Existing red shadow */
      0 0 0 0px black;
    /* Start with no black border */
  }

  50% {
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3),
      0 2px 4px -1px rgba(239, 68, 68, 0.1), 0 0 0 4px black;
    /* Black border appears */
  }

  100% {
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3),
      0 2px 4px -1px rgba(239, 68, 68, 0.1), 0 0 0 0px black;
    /* Black border disappears */
  }
}

.add-to-cart-btn:hover {
  background-color: black;
  /* Darker red on hover */
  /* Box-shadow is now controlled by the animation, so no hover shadow here */
}

.add-to-cart-btn-3:hover {
  background-color: #e23318;
  /* Darker red on hover */
  /* Box-shadow is now controlled by the animation, so no hover shadow here */
}

.add-to-cart-btn-3 {
  background-color: black;
  /* Red color */
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.8rem 3rem;
  /* 12px vertical, 32px horizontal padding */
  border-radius: 40rem;
  /* 12px rounded corners */
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3),
    0 2px 4px -1px rgba(239, 68, 68, 0.1);
  margin-bottom: 0.1rem;
  /* 24px margin-bottom */
  margin: 1rem auto;
  border: none;
  /* Remove default button border */
  cursor: pointer;
  /* Indicate it's clickable */
}

.add-to-cart-btn:hover {
  background-color: black;
  /* Darker red on hover */
}

.ratings-guarantee {
  font-size: 1rem;
  font-weight: 600;
  /* 14px text */
  color: black;
  /* Gray-700 */
  margin-bottom: 0.4rem;
  /* 16px margin-bottom */
}

.rating-text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.3rem 0;
}

.rating-star {
  color: #facc15;
  /* Yellow star color */
}

.risk-free-text {
  font-weight: 700;
  font-size: 0.7rem;
  margin: 0;
}

.risk-free-text span {
  font-weight: 400;
  /* Bold */
}

.cards {
  max-width: 40%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.flip-clock {
  text-align: center;
  perspective: 400px;
  margin: 15px auto;
}

.flip-clock *,
.flip-clock *:before {
  box-sizing: border-box;
}

.flip-clock__piece {
  display: inline-block;
  margin: 0 5px;
}

.flip-clock__slot {
  display: none;
  /* Hide the labels */
}

.card {
  display: block;
  position: relative;
  padding-bottom: 0.72em;
  font-size: 1.5rem;
  /* Smaller font size */
  line-height: 0.95;
  width: 3rem;
  /* Slightly smaller width to match the new font size */
}

.card__top,
.card__bottom,
.card__back::before,
.card__back::after {
  display: block;
  height: 0.72em;
  color: #ccc;
  background: #222;
  padding: 0.25em 0.25em;
  border-radius: 0.15em 0.15em 0 0;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  width: 100%;
  transform: translateZ(0);
  text-align: center;
}

.card__bottom {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: solid 1px #000;
  background: #393939;
  border-radius: 0 0 0.15em 0.15em;
  pointer-events: none;
  overflow: hidden;
}

.card__bottom::after {
  display: block;
  margin-top: -0.72em;
}

.card__back::before,
.card__bottom::after {
  content: attr(data-value);
}

.card__back {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
}

.card__back::before {
  position: relative;
  z-index: -1;
  overflow: hidden;
  width: 100%;
}

.flip .card__back::before {
  animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35);
  animation-fill-mode: both;
  transform-origin: center bottom;
}

.flip .card__back .card__bottom {
  transform-origin: center top;
  animation-fill-mode: both;
  animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
}

@keyframes flipTop {
  0% {
    transform: rotateX(0deg);
    z-index: 2;
  }

  0%,
  99% {
    opacity: 0.99;
  }

  100% {
    transform: rotateX(-90deg);
    opacity: 0;
  }
}

@keyframes flipBottom {

  0%,
  50% {
    z-index: -1;
    transform: rotateX(90deg);
    opacity: 0;
  }

  51% {
    opacity: 0.99;
  }

  100% {
    opacity: 0.99;
    transform: rotateX(0deg);
    z-index: 5;
  }
}
    

@media (max-width: 1080px) {
    .countdown-timer {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    display: flex;
    margin: 0 1rem;
    justify-content: space-evenly;
    width: 100%;
}
     .discount-modal-container {

    width: 100%;
  }
  .product-card-container {
    max-width: 90%;
    margin: auto;

    gap: 2rem;
  }

  .product-card,
  .product-card-3 {
    padding: 1rem;
  }

  .save-price,
  .save-price-3 {
    font-size: 1.2rem;
    top: 18%;
  }

  .product-image-container img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    object-fit: contain;
    height: 100%;
    min-height: auto;
    max-height: 25rem;
  }

  .starter-pack-badge,
  .starter-pack-badge-3 {
    font-size: 1rem;
    /* Smaller text on small screens */
    white-space: nowrap;
    /* Prevent text wrapping */
    padding: 8px 16px;
    top: -1rem;
    /* Adjust position */
  }

  .product-header h2 {
    font-size: 2rem;
    margin: 1rem auto .2rem auto;
  }

  .free-shipping {
    font-size: 1rem;
    /* Smaller shipping text */
  }

  .product-image-container {
    height: 18rem;
  }

  .current-price {
    font-size: 5.5rem;
    /* Smaller main price */
  }

  .per-device {
    font-size: 0.6rem;
    /* Smaller per device text */
  }

  .add-to-cart-btn,
  .add-to-cart-btn-3 {
    font-size: 1.2rem;
    padding: 1.2rem 3.4rem;
    /* Adjust padding for smaller screens */
  }

  .risk-free-text {
    font-size: 0.8rem;
    /* Smaller risk-free text */
  }

  @keyframes typing {
    0% {
      width: 0;
    }

    /* Typing completes at approximately 2 seconds into the 7-second cycle */
    50% {
      width: 25%;
    }

    90% {
      width: 25%;
    }

    0% {
      width: 0;
    }

}

  @keyframes typing-3 {
    0% {
      width: 0;
    }

    /* Typing completes at approximately 2 seconds into the 7-second cycle */
    50% {
      width: 28%;
    }

    90% {
      width: 28%;
    }

    0% {
      width: 0;
    }

    /* Start with zero width for typing effect */
    /* Hold at 100% width for the remaining 5 seconds */
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.5em;
    font-weight: 600;
  }

  td {
    padding: 10px 8px;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.2;
  }

  .table-container {
    margin-right: 0;
    width: 95%;
    border-radius: 16px 0 0 16px;
  }

  table {
    width: 100%;
    border-collapse: collapse;

    /*
       For very small screens, you might consider a card-based layout.
       The following is a more common approach to make tables scrollable.
       If you prefer stacking rows, it requires more complex CSS or JavaScript.
    */
  }
  
    .timeline-results-table-container {
    width: 95%;
    margin-right: 0;

  }

  .timeline-results-table-container h2 {
    font-size: 1.5em;
    padding: 15px;
  }

  .timeline-results-table-container th {
    font-size: 1em;
    padding: 12px;
  }

  .timeline-results-table-container td {
    padding: 15px;
  }

  .timeline-results-table-container .time-frame-cell {
    font-size: 1.2em;
  }

  .timeline-results-table-container .action-icon {
    width: 50px;
    height: 50px;
  }

  .timeline-results-table-container .actions-cell {
    flex-direction: column;
    align-items: center;
    /* Center items when stacked */
    text-align: center;
    gap: 10px;
  }

  .timeline-results-table-container .actions-cell p,
  .timeline-results-table-container .results-cell li {
    font-size: 0.9em;
  }
  .discount-modal-container {
    flex-direction: column;
    height: auto;
    width: 100%;
  }

  .discount-modal-left,
  .discount-modal-right {
    width: 100%;
    justify-content: center;
    padding: none;
    text-align: center;
  }

  .discount-modal-left {
    order: 1;
  }

  .discount-modal-right {
    order: 2;
  }

  .wheelSVG {
    position: relative;
    overflow: visible;
    height: 50vh;
  }

  .email-heading {
    font-size: 23px;
    line-height: 25px;
    font-weight: 700;
    color: #f0dd94;
    margin-bottom: 0;
  }

  .email-subheading {
        color: white;
    line-height: 1;
    font-size: 1rem;
    font-weight: 500;
    margin: 1rem auto;
  }

  .wheel-info {
    margin-inline: auto;
  }
}
@media (max-width: 640px) {
    .discount-box {
        width: 90%;
        
    }
    .discount-box h2 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    .discount-box p {
        font-size: 1rem;
    }
  .product-card-container {
    max-width: 90%;
    margin: auto;
    flex-direction: column;
    gap: 3rem;
  }

  .product-card {
    padding: 1rem;
  }

  .save-price,
  .save-price-3 {
    font-size: 1.4rem;
    top: 23%;
  }

  .starter-pack-badge,
  .starter-pack-badge-3 {
    font-size: 1rem;
    /* Smaller text on small screens */
    white-space: nowrap;
    /* Prevent text wrapping */
    padding: 8px 16px;
    top: -1rem;
    /* Adjust position */
  }

  .product-header h2 {
    font-size: 2.5rem;
    margin: 1.5rem auto .8rem auto;
  }

  .free-shipping {
    font-size: 1rem;
    /* Smaller shipping text */
  }

  .product-image-container {
    height: 18rem;
  }

  .current-price {
    font-size: 5.5rem;
    /* Smaller main price */
  }

  .per-device {
    font-size: 0.6rem;
    /* Smaller per device text */
  }

  .add-to-cart-btn {
    font-size: 1.4rem;
    padding: 1.2rem 3.4rem;
    /* Adjust padding for smaller screens */
  }

  .risk-free-text {
    font-size: 0.8rem;
    /* Smaller risk-free text */
  }
  .fixed-bottom-bar {
              justify-content: space-between;
                padding: 10px;
                gap:1rem;
            }
            .text-content .limited-offer-text {
                font-size: 1.1rem;
            }
 .countdown-timer {
                font-size: 1.2rem;
               margin: 0;
               display: flex;
               gap:0;
               justify-content: space-between;
               width:100%;
            }
            .limited-offer-text {
                font-size: 1.1rem;
            }
            .buy-now-button {
                width: 100%;
                text-align: center;
                padding: 0.75rem 1.5rem;
                font-size: 1.4rem;
               
            }
            .text-content {
                text-align: center;
              
                margin-right: 0; /* Remove right margin on small screens */
            }
            .text-content.sm-items-start { /* Equivalent to sm:items-start */
                align-items: flex-start;
                width: 100%;
            }

  @keyframes typing {
    0% {
      width: 0;
    }

    /* Typing completes at approximately 2 seconds into the 7-second cycle */
    50% {
      width: 33.5%;
    }

    90% {
      width: 33.5%;
    }

    0% {
      width: 0;
    }


  }

  @keyframes typing-3 {
    0% {
      width: 0;
    }

    /* Typing completes at approximately 2 seconds into the 7-second cycle */
    50% {
      width: 38%;
    }

    90% {
      width: 38%;
    }

    0% {
      width: 0;
    }

    /* Start with zero width for typing effect */
    /* Hold at 100% width for the remaining 5 seconds */
  }

}


.product-card.coupon-applied::after,
.product-card-3.coupon-applied::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(-1 * var(--border-size));
  bottom: calc(-1 * var(--border-size));
  left: calc(-1 * var(--border-size));
  right: calc(-1 * var(--border-size));
  background: conic-gradient(from var(--angle),
      red 0deg 90deg,
      white 90deg 120deg,
      red 180deg 270deg,
      red 233deg 360deg);
  animation: rotate 3s linear infinite;
  border-radius: inherit;
}



  .profile-pic {
    width: 55px;
    height: 55px;
  }

  .profile-pic.smaller-pic {
    width: 40px;
    height: 40px;
  }

  .comment-input-area input {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .comment-bubble {
    padding: 8px 12px;
  }

  .comment-text {
    font-size: 0.9rem;
  }

  .comment-actions {
    font-size: 0.8rem;
    margin-left: 5px;
  }

  .action-separator {
    margin: 0 5px;
  }

  .reply-comment {
    margin-left: 30px;
  }




/* Responsive adjustments */

@media (max-width: 480px) {
  .before-footer {
    padding-top: 30px; /* Adjust as needed */
    padding-bottom: 100px; /* Give it more fixed vertical space */
    min-height: 250px; /* Ensure a minimum height for the background */
    background-position: center; /* Adjust if 'bottom 26%' isn't working well on small screens */
  }

  .before-footer-content h2 {
    font-size: 20px; /* Use a fixed size for readability on small screens */
    line-height: 1.3;
  }

  .before-footer-content p {
    font-size: 14px; /* Use a fixed size for readability */
    line-height: 1.5;
    width: 90%; /* Allow content to take more width on small screens */
    margin: 15px auto; /* Center the paragraph */
  }
}

@media (max-width: 400px) {
     .countdown-timer {
                font-size: .8rem;
               margin: 0;
               display: flex;
               gap:0;
               justify-content: space-between;
               width:100%;
            }
            .text-content .limited-offer-text {
                font-size: .9rem;
            }
}

.open-button-wheel-back {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;

  transition: right 0.4s ease;
  z-index: 999;
  cursor: pointer;
}

.popup-coupon {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #25c541;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
  animation: popup-bounce 1s ease;
}

.popup-coupon:hover {
  background-color: #1ea535;
  transform: translateX(-50%) scale(1.05);
}


@keyframes popup-bounce {
  0% {
    transform: translateX(-50%) scale(0);
    opacity: 0;
  }

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

  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* FOR EXIT MODAL */
#exitModal {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    #exitModalContent {
      background: white;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
    }

    #exitModalContent button {
      margin-top: 15px;
      padding: 8px 16px;
    }
  
 /* END - FOR EXIT MODAL */