* {
  margin: 0;
  padding: 0;
  font-family: Poppins, Montserrat, Inter !important;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  margin: 0;
  padding: 0;
  font-family: Georgia, serif;
  min-height: 100vh;
  background-color: white;
  overflow-x: hidden !important;
  padding-right: 300px; /* reserve space for fixed sidebar */
  padding-left: 50px; /* reserve space for fixed sidebar */
  margin: 0;
}


img {
  cursor: pointer;
}

a {
  text-decoration: none;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.transition-fade {
   margin-top: 3rem !important; /* Adds space below the navbar */
   padding-right:200px;
   opacity: 1;
   transition: opacity 500ms ease-in-out; /* Smooth fade transition */
   min-height: calc(100vh - 4rem); /* Ensures main content is always visible */
}


html.is-animating .transition-fade {
  opacity: 0;
  transition: 900ms;
  animation-name: fade;
  animation-duration: 200s;
}

nav {
  padding: 1rem 3%;
  justify-content: space-between;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: white;
  position: fixed;
  width: 100%;
  max-width: 1600px;
  height: 3.5rem; /* This scales better than a fixed pixel height */
  top: 0;
  z-index: 9999;
  font-family: 'Montserrat', sans-serif;
}
#thank-you-message {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4CAF50;
    color: white;
    padding: 20px;
    border-radius: 5px;
    z-index: 1000;
    display: none;
    text-align: center;
    font-size: 1rem;  /* Default font size for larger screens */
}

#thank-you-message p {
    margin: 10px 0;
}

#thank-you-message .small-text {
    font-size: 0.9rem;  /* Slightly smaller text for the additional message */
}







/* Flex properties for aligning content */
.flex-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* FOOTER */
footer {
  background-color: white;
  color: black;
  padding: 3rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.logo-footer {
  display: flex;
  width: 50%;
}

.logo-footer img {
  height: 50px;
}

.logo-text-footer {
  max-width: 350px;
}

.logo-text-footer p {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.services,
.contact {
  text-align: left;
  width: 25%;
}

.services .contact h3 {
  color: #fff;
  font-size: 1.2em;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin-bottom: 10px;
}

.services ul {
  padding: 0;
  list-style: none;
}

.services li {
  margin-bottom: 5px;
}

.services a {
  text-decoration: none;
  color: #aaa;
  transition: color 0.3s ease;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.services a:hover {
  color: black;
}

.contact input,
.contact textarea,
.contact button {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.contact button {
  background-color: #fff;
  color: #333;
  cursor: pointer;
}





/* PAGE SCROLLER */
/* width */
::-webkit-scrollbar {
  width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #0e0e0e;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #353535;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #353434;
}

.nav-left img { 
  width: 8rem;
  position: relative;
  top: 0.2rem;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem; /* Consistent spacing without fixed values */
}
.nav-right a:hover {
  text-decoration: underline;
}

.nav-right a {
  color: #737373;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  position: relative;

  margin-right: 40px;
}

.nav-right img {
  width: 30px;
}

.index-main {
  padding-bottom: 3rem;
}

.first-image {
  background-color: rgb(16, 16, 16);
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  width: 100%;
  padding: 1.5rem 3rem;
}

.main-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
}

.first-image h1 {
  font-size: 48px;
  color: #e2e2e2;
  font-family: Cuprum;
}


.first-image .shop-now-box:hover {
  background-color: #83e67b;
  transition: 0.4s;
}

.first-image a .shop-now-box {
  font-size: 12px;
  color: rgb(232, 230, 230);
  padding: 1rem 1.5rem;
  text-decoration: none;
  font-family: Cuprum;
  background-color: #424242;
  border-radius: 7px;
}

/* Slideshow container */
.slideshow-container {
  width: 50%;
  position: relative;
}

.slideshow-container img {
  width: 100%;
  height: auto;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {
    opacity: .1
  }

  to {
    opacity: 1
  }
}


.question {
  background-color: #fcfcfc; /* Darker background for blending with #222 */
  margin-top: 3rem;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 8px;
  padding: 1rem;
}

.question h1 {
  font-size: 32px;
  color: black; /* Softer light gray */
  font-weight: 600;
  font-family: Georgia, serif;
  margin: 0;
  letter-spacing: 1px;
}

.question2 {
  background-color: #1a1a1a; /* Slightly lighter for subtle contrast */
  margin-top: 2.5rem; /* Slightly reduced margin */
  width: 100%;
  height: 50px; /* Reduced height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 6px; /* Slightly smaller radius for distinction */
  padding: 0.8rem; /* Reduced padding */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.6); /* Softer and lighter shadow */
}

.question2 h1 {
  font-size: 28px; /* Reduced font size */
  color: #d4d4d4; /* Slightly brighter gray for contrast */
  font-weight: 500; /* Reduced weight for lighter text */
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin: 0;
  letter-spacing: 0.8px; /* Slightly narrower spacing */
}


.sound-icon {
  background-color: #333; /* Very dark button color */
  color: #a0a0a0; /* Softer gray */
  border: none;
  border-radius: 50%;
  margin-left: 1rem;
  padding: 0.5rem 0.6rem;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.sound-icon:hover {
  background-color: #555; /* Slightly lighter on hover for contrast */
}


.questionCH {
  background-color: rgb(58, 58, 58);
  margin-top: 3rem;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.questionCH h1 {
  text-align: center;
  font-size: 40px;
  color: #c5c5c5;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.benefits {
  width: 33%;
}

.benefits img {
  width: 70%;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.benefits h1 {
  font-size: 20px;
}

.benefits .notwhite {
  width: 70%;
  display: block;
  margin: 0 auto;
  filter: brightness(1) invert(0);
}

.benefits2 {
  width: 33%;
}

.benefits2 img {
  width: 70%;
}

.benefits2 h1 {
  font-size: 20px;
}

.benefits2 .notwhite {
  width: 70%;
  display: block;
  margin: 0 auto;
  filter: brightness(1) invert(0);
}

.rev-section {
  margin: 9rem;
  margin-bottom: 100px;
  max-width: 1100px;
  text-align: center;
}

.rev-start {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.CTA {
  margin: 10px auto 50px auto; /* top margin to push down roughly half screen, auto sides centers horizontally */
  width: 400px;
  max-width: 90vw;
  text-align: center;
  padding: 20px 30px;
  background-color: white;
  color: black;
  border-radius: 12px;
  /* You can adjust the top margin to control vertical placement */
}

.rev-start-left {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.rev-start-left img{
  width:200px;
}
.rev-start h1 {
  font-size: 32px;
  color: black;
}

.rev-start small {
  font-size: 20px;
  width: 100%;
  text-align: left;
  color: black;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.rev-start i {
  color: rgb(253, 180, 42);
  font-size: 30px;
}

.rev-start button {
  width: 200px;
  height: 50px;
  background-color: #cacfca;
  border: white;
  color: black;
  cursor: pointer;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.CTA-button:hover {
  background-color: red;
  color: rgb(0, 0, 0);
  transition: 0.2s;
}

.title {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: rgb(34, 34, 34);
  margin-bottom: .5rem;
}

.note {
  font-style: italic;
  color: red;
  font-size: 12px;
}


.review {
  display: flex;           /* Make review a flex container */
  gap: 20px;               /* Space between text and photo */
  align-items: flex-start; /* Align items at top */
  width: 100%;
  margin-top: 30px;
  box-sizing: border-box;
}
.review-header {
  display: flex;
  flex-direction: column; /* stack vertically */
  align-items: flex-start; /* align everything to the left */
  gap: 5px; /* space between rows */
}

.review-header .images-row {
  display: flex;
  gap: 5px; /* space between the two images */
  align-items: center;
}

.review-meta {
  display: flex;
  gap: 10px;
  color: #888888 !important; /* Gray color for less relevance */
  font-size: 0.9rem;
  margin-top: 2rem;
}

.place-review, .date-review {
  margin: 0;
}





.head-review {
  margin: 1.75rem;
  width: 150px;
  height: 150px;
}

.body-review {
  background-color: white;
  flex: 1;
}
.body-review .imgInput {
  width: 30%;    
    
}
.customer-photo img {
  max-width: 150px;      /* Don't force exact size */
  max-height: 150px;
  width: auto;           /* Keep original aspect ratio */
  height: auto;      /* Crop image nicely */
  border-radius: 8px;      /* Rounded corners if you want */
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.celeb-photo {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.card-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.card-text {
  flex: 1;
}

.celeb-photo img {
  max-width: 120px;
  height: 120px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}


.name-review {
  font-size: 1.5rem;
  color: rgb(50, 50, 50);
  margin-bottom: 0.25rem;
}

.place-review {
  left: 100%;
}

.rating {
  color: rgb(253, 180, 42);
  margin: 1rem 0;
}

.desc-review {
  font-size: 25px;
  line-height: 1.5rem;
  letter-spacing: 0px;
  color: black;
  text-align:left;
}



/* Price Reveal */

.price-container {
    width: 100%;
    background: #f6f6f6;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.price-box {
    background: #ececec;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    width: 85%;
    max-width: 600px;
    height: 400px;  /* Fixed height */
    position: relative;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.price-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-old {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 4vw; /* Scales with viewport */
    max-font-size: 72px;
    color: #333;
    position: relative;
    font-weight: 600;
    margin: 0;
    z-index: 2; /* Ensure it's above the line */
    transition: opacity 1s ease; /* Slower fading out */
}

.cross-line {
    position: absolute;
    top: 48%;
    left: 33%;
    width: 0;
    height: 4px;
    background-color: gray; /* Gray line */
    z-index: 3; /* Ensure it is above the old price */
    transition: width 3s ease-in-out; /* Slower line drawing */
}

.price-new {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 4vw; /* Same as old price */
    max-font-size: 72px;
    color: red;
    position: absolute;
    top: 38%;
    left: 33%;
    font-weight: 700;
    opacity: 0;
    z-index: 4; /* Above everything */
    transition: opacity 1s ease; /* Faster fading in */
}

.discount-info {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5vw;
    max-font-size: 24px;
    color: #555;
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 2s ease; /* Faster fading in */
}

.teaser-container {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f7f7f7, #e7e7e7);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 85%;
    opacity: 0; /* Initially hidden */
    transition: opacity 2s ease; /* Faster fading in */
}

.teaser-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5vw;
    color: black;
    font-weight: 600;
    margin: 0;
    opacity: 0; /* Initially hidden */
    transition: opacity 1s ease-in-out; /* Adjust timing as needed */
}


/* Research Cards */
.card-container {
            display: flex;
            margin-top:100px;
            margin-bottom:100px;
            flex-wrap: wrap;
            gap: 20px;
            padding-left: 50px;
        }

        .card {
            background-color: #ffffff;
            width: 1000px;
            padding: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .card:hover {
            transform: translateY(-10px);
        }

        .card-title {
            font-size: 20px;
            font-weight: bold;
            color: #333333;
            margin-bottom: 10px;
        }

        .card-summary {
            font-size: 16px;
            color: #555555;
        }

        .card-hidden-content {
            display: none;
            font-size: 16px;
            color: #555555;
            margin-top: 10px;
        }
        .card-hidden-content-celeb {
            font-size: 16px;
            color: #555555;
            margin-top: 10px;
        }
        .card-source {
            font-size: 14px;
            color: #888888;
            margin-top: 10px;
        }

        .card a {
            text-decoration: none;
            color: black;
            font-weight: bold;
        }

        .card a:hover {
            text-decoration: underline;
        }

        .toggle-button {
            font-size: 14px;
            color: #888888;
            cursor: pointer;
            margin-top: 10px;
            display: block;
            font-weight: bold;
        }
        
        



/* Popup Review */
.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 400px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: relative;
  opacity: 0;
  /* Initially set to transparent */
  transition: opacity 0.3s ease;
  /* Add transition for smooth appearance */
}

.popup-content .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #888;
}

.popup-content h2 {
  color: #333;
}

.popup-content label {
  display: block;
  text-align: left;
  margin-top: 10px;
  font-weight: bold;
}

.popup-content input,
.popup-content textarea,
.popup-content select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 5px;
  resize: vertical;
}

.popup-content .rating {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  /* Adjusted spacing */
}

.popup-content .star {
  cursor: pointer;
  font-size: 30px;
  /* Adjusted size */
  color: #ddd;
  margin: 0 5px;
  line-height: 1;
  /* Added line-height to reduce vertical spacing */
}

.popup-content .star:hover,
.popup-content .star.selected {
  color: #ffc107;
}

.popup-content button {
  background-color: #4CAF50;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  /* Adjusted spacing */
}

.popup-content button:hover {
  background-color: #45a049;
}

.popup-container.show {
  display: flex;
}

.popup-container.show .popup-content {
  opacity: 1;
}
.lifes {
  padding: 1rem;
  margin-top: 1rem;
}

/* Default desktop/tablet style */
.lifes img {
  width: 2000px;
  display: block;
  margin: 0 auto 2rem auto;
}

.lifes video {
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.lifes video::-webkit-media-controls {
  display: none !important;
}

/* 📱 Mobile override: when screen width is below 500px */
@media screen and (max-width: 500px) {
  .lifes img {
    width: 100vw;         /* full screen width */
    max-width: 100vw;
    height: auto;         /* maintain aspect ratio */
    margin-bottom: 2rem;
  }
}



.before-after3 {
  background-color: rgb(17, 16, 16);
  margin-top: 3rem;
  width: 100%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.before-after3 img {
  width: 900px;
  display: block;
  margin: 0 auto;
}

.before-after2 {
  background-color: rgb(17, 16, 16);
  margin-top: 100px;
  margin-bottom: 200px;
  width: 102%;
  height: 600px;
  padding-left: 40px;
}

.before-after2 img {
  width: 500px;
  height: 600px;
}

.before-after {
  position: relative;

  background-color: white;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 100px;
  padding-top: 10px;
  transition: transform 0.5s ease, opacity 0.5s ease;
  overflow-x: hidden;
  box-sizing: border-box;
}


.before-after h2{
  font-size: 14px;
}
.mystory {
  width: 70%;
  opacity: 0.3;
}
.mystory:hover {
  opacity: 1;
  border: white;
  transform: scale(1.005);
  animation: 2s;
  transition-duration: 0.3s; 

}
.before-after .chadVsIncel {
  width: 50%;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
}

.firstInfo {
  background-color: white;
  width: 50%;
  padding: 1.5rem 1.5rem;
}

.firstInfo h1 {
  font-size: 30px;
  margin-bottom: 20px;
  color: black;
  word-spacing: normal;
}
.firstInfo h1 small {
  font-size: 25px;
  color: black;
  padding: 0;
}
.firstInfo h1 span {
  font-size: 32px;
}

.firstInfo p {
  color: #c7c7c7;
  font-size: 28px;
}

.firstInfo p a {
  color: #ffffff;
  font-size: 22px;
}

.secondInfo {
  background-color: rgb(17, 17, 17);
  width: 2000px;
  height: 500px;
  margin-top: 100px;
  padding-left: 50px;
}

.secondInfo img {
  width: 800px;
  height: 500px;
}


.message2 {
  background-color: rgb(17, 16, 16);
  margin-top: 3rem;
  width: 100%;
  padding: 3rem;
  display: flex;
  align-items: baseline;
}

.message2 h1 {
  padding-top: 1.5rem;
  font-size: 32px;
  text-align: center;
  color: rgb(206, 206, 206);
}

.message {
  background-color: white;
  width: 100%;
  height: auto;
  flex-direction: column;
  padding-right: 3rem;
  margin-bottom:30px;
}
.messageText{
  margin-top:30px;
}
.message h1 {
  font-size: 30px;
  color: black;
}
.message .messageImage {
  width: 100px;
}
.message h1 span {
  font-size: 60px;
}

.message h1 a {
  padding-top: 60px;
  font-size: 30px;
  color: rgb(75, 75, 75);
}

.message h1 .colorFont {
  font-size: 80px;
  color: rgb(59, 253, 0);
}

.message h1 .colorFont2 {
  font-size: 80px;
  color: rgb(236, 148, 148);
}

.hidden {
  opacity: 0;
  transform: scale(0.8); /* Start a bit smaller */
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

}

.show {
  opacity: 1;
  transform: scale(1); /* Zoom to full size */
}
.zoom-block {
  transform: scale(0.9);
  transition: transform 0.6s ease, opacity 0.6s ease;
  background: white;
}

.zoom-block.show {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}


.hidden .smallHidden {
  color: rgb(214, 214, 214);
  opacity: 1;
  transition: all 1s;
}




/* SHOPPING PAGE */

.product {
  background-color: #000;
  width: 50%;
  height: auto;
}

.product:hover {
  opacity: 0.4;
  transform: scale(1.005);
  animation: 2s;
  transition-duration: 0.3s;
  box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.5);
}

.product h2 {
  color: rgb(148, 147, 147);
  margin-left: 120px;
  margin-top: 150px;
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.product img {
  border-radius: 5px;
  width: 50%;
  display: block;
  margin: 0 auto;
}
.product .theoptions {
  width: 500px, cursive !important;
  height: 1000px, cursive !important;
}

.product .story-info {
  width: 100%;
  padding: 1rem;
  background-color: rgb(15, 15, 15);
}

.product .story-info h1 {
  color: rgb(219, 219, 219);
  font-size: 25px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.product .story-info small {
  color: rgb(255, 120, 120);
  font-size: 17px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.product .story-info small span {
  color: rgb(255, 255, 255);
  text-decoration-line: line-through;
  opacity: 0.4;
  font-size: 17px;
  padding-left: 1rem;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* BLOGS PAGE */

.document {
  background-color: #f7f7f7;
  color: #efefef;
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.document h1 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.document h2 {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 15px;
  color: #555;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.document p {
  font-size: 16px;
  color: black;
  line-height: 2;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.document img {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.story-container {
  background-color: rgb(12, 12, 12);
  width: 100%;
  margin-top: 3rem;
  padding: 3rem;
  display: flex;
  gap: 1.5rem;
}

.story-box {
  background-color: rgb(114, 114, 114);
  width: 50%;
  height: 350px;
  opacity: 0.5;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.story-box:hover {
  opacity: 1;
  transform: scale(1.005);
  animation: 2s;
  transition-duration: 0.3s;
  box-shadow: 0px 0px 10px 10px rgba(255, 255, 255, 0.5);
}

.story-box img {
  border-radius: 5px;
  width: 120%;
  position: absolute;
}

.story-box .story-info {
  position: absolute;
  top: 0;
  left: 0;
  padding-right: 1rem;
  margin-top: 3rem;
  padding-left: 3rem;
  background-color: rgba(18, 18, 18, 0.8);
}

.story-box .story-info h1 {
  color: rgb(255, 251, 251);
  font-size: 25px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/*-- PRODUCT PAGE --*/
.product-page {
  display: flex;
  flex-wrap: nowrap; /* ensure they stay in one row */
  background-color: #ffffff;
  width: 100%;
  align-items: flex-start; /* aligns tops */
  justify-content: space-between; /* optional */
}
.product-left {
  width: 60%;
  position: relative;
}
.product-left img {
  display: block;
  margin: 0 auto; /* centers the image horizontally */
  width: 100%; /* keep your width */
  height: auto;
}


.buy-now-button {
  background-color: #d62828; /* strong red */
  color: white;
  max-width: 800px;
  margin-top:20px;
  border-radius:2px;
  width: 100%; /* Match PayPal container width */
  font-size: 1.2rem;
  font-weight: bold;
  padding: 12px 24px; /* Similar vertical height to PayPal */
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.buy-now-button:hover {
  background-color: #b10000; /* super red */
}
#popupOverlay {
  display: none;
  position: fixed; 
  top: 0; left: 0; right: 0; bottom: 0;
  backdrop-filter: blur(5px);
  background: rgba(0,0,0,0.4);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#popupOverlay.active {
  display: flex !important;
}

#popup {
  background-color: #ffffff;
  width: 700px;              /* wider to fit two columns */
  max-width: 90%;
  max-height: 80vh;          /* limit max height to 80% of viewport height */
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: left;          /* left align text for readability */
  display: flex;
  flex-direction: column;
  overflow-y: auto;          /* enable vertical scroll if content overflows */
}


#popup h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 26px;
  color: #333333;
  text-align: center;
}
#popup h4 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 22px;
}
.section strong{
 margin-bottom:3px;
}
.section-fact {
 margin-top: 20px;
 padding: 5px;
 border-radius: 5px;
 text-align: left;
}
.section-fact p {
 font-size: 19px;
}
.popup-content {
  display: flex;
  gap: 30px;                 /* space between left & right */
  justify-content: space-between;
}

.reviews p {
  font-style: italic;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.4;
}

#closePopup {
  background: white;
  border: none;
  color: gray;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  line-height: 1;
  user-select: none;
  box-shadow: 0 0 3px rgba(0,0,0,0.1);
  transition: background-color 0.2s ease, color 0.2s ease;
}

#closePopup:hover {
  background-color: #eee;
  color: #666;
}


#paypal-button-container-1 {
  max-width: 800px; /* Set a maximum width */
  width: 100%; /* Ensure it takes full width */
  margin: 0 auto; /* Center it horizontally */
}


#paypal-button-container-2 {
  max-width: 500px;/* Set a maximum width */
  max-height: 200px;
  width: 100%; /* Ensure it takes full width */
  margin: 0 auto; /* Center it horizontally */
}



.highlight {
  background-color: yellow;
}
.sound-icon {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  margin-left: 10px;
  margin-bottom:5px;
  color: #007bff;
  vertical-align: middle;
}
.sound-icon:hover {
  background-color: #e0bc00;
}

.bottom-menu-bar {
   display:none; 
}
.product-purchase {
  position: fixed;
  top: 15px;
  right: 15px;
  width:;
  max-width: 320px;
  background: white;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth animation */
}



.product-right {
  width: 50%;
  padding: 0rem;
  margin-left:0px;
}


.product-right h1 {
  font-size: 30px;
  color: #222; /* Dark charcoal for modern look */
}

.product-right img {
  width: 100px;
}

.product-right small {
    font-size: 18px;
}
.reviewsDESC {
  display: flex;
  align-items: center;  /* vertically centers them */
  gap: 0.5rem;          /* space between image and text */
}

.reviewsDESC img {
  height: 70px;         /* adjust size as needed */
  width: auto;
}
.product-right small span {
  color: #666; /* Soft gray for old price */
  text-decoration-line: line-through;
  opacity: 0.6;
  font-size: 28px;
  margin-right: 10px;
}

.product-right li {
  font-size: 20px;
  color: #333; /* Balanced dark gray for body text */
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: bold;
}

.product-right form {
  display: flex;
  flex-direction: column; /* stack children vertically */
  gap: 15px; /* optional spacing between children */
}

.product-right form input[type="number"] {
  border: none;
  border-radius: 1px;
  background-color: #dfdfdf;
  width: 50px;
  height: 50px;
  padding-left: 20px;
  margin-right: 20px;
  font-size: 18px;
  position: relative;
}

.product-right form button {
  border: none;
  border-radius: 1px;
  color: rgb(235, 235, 235);
  background-color: rgb(104, 104, 104);
  flex-grow: 1;
  height: 50px;
  font-size: 20px;
}

.product-right button:hover {
  background-color: rgba(42, 42, 42, 0.898);
  transition: 0.2s;
  color: rgb(255, 254, 254);
  cursor: pointer;
}

.product-right p {
  font-size: 20px;
  margin-top: 10px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #313131;
  display: none;
}

.product-right p a {
  color: rgb(239, 239, 239);
  font-size: 15px;
}

.product-right a {
  margin-left: 1px;
  color: rgb(139, 139, 139);
  font-size: 15px;
}

.product-right p a:hover {
  text-decoration: underline;
}

.product-right a:hover {
  text-decoration: underline;
}
#size-selection {
  list-style: none;
  padding-left: 0;
}
#size-selection-container {
  background-color: white; /* light gray, modern and clean */
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}
#size-selection-container .refund{
  width:25px; 
  position: relative;
  margin-right:15px;
}
#size-selection-container .truck{
  width: 30px;
  position: relative;
  margin-right: 10px;
}
.extras ul {
  list-style: none; /* remove bullets */
  padding-left: 0;
  margin: 0;
}

.extras li {
  display: flex;
  align-items: center; /* vertically center */
  margin-bottom: 10px; /* spacing between items */
}

.extras img {
  width: 25px;
  margin-right: 10px;
}
#size-selection-container li{
  font-size: 20px;
  list-style-type: none;
  color: #333; /* Balanced dark gray for body text */
  margin-top: 2px;
  margin-bottom: 20px;
}
#size-selection-heading {
  color: black;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 10px;
}

#size-selection label {
  color: black;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 5px 8px;         /* Slightly less padding for tighter look */
  border-radius: 5px;
  margin-top: 10px;
  margin-left: 4px;         /* Less space between labels */
  font-size: 16px;          /* Optional: slightly reduce size if needed */
}


#size-selection input[type="radio"] {
  display: none;
}

#size-selection input[type="radio"]:checked + span {
  background-color: white;
  color: black;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 5px;
}

#size-selection label:hover span {
  background-color: #bababa; /* soft gray on hover */
  color: black;
}
#size-selection li {
  color: gray;
  transition: all 0.2s ease;
  padding: 0;
  margin: 0;
}

#size-selection input[type="radio"]:checked + span {
  background-color: #fff870;
  color: black;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 5px;
}


/* Softer color for the heading */
#size-selection-container + p,
#size-selection-heading {
  color: white; /* soft warm beige color */
  font-weight: bold;
  font-size: 18px;
  font-style: italic;
  margin-bottom: 1px;
}





.shine {
            display: inline-block; /* Ensure the effect only covers the text */
            position: relative; /* Needed for the shine effect positioning */
            font-size: 24px;
            font-weight: bold;
            color: #333;
            overflow: hidden; /* Clip the shine effect within the text */
        }

        .shine::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%; /* Start the shine from outside of the text */
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            transform: skewX(-20deg); /* Create the angled shine effect */
            animation: shine 2s infinite; /* Repeat the shine effect infinitely */
        }

        @keyframes shine {
            0% {
                left: -100%;
            }
            50% {
                left: 100%;
            }
            100% {
                left: 100%;
            }
        }

.estimated {
  width: 1900px;
  height: 300px;
  margin-left: 10px;
  padding-top: 900px;
}

.estimated img {
  width: 700px;
  height: 500px
}


.section-background-ps {
    color: #FFFFFF; /* White text for contrast */
    padding: 50px;
    text-align: center;
    font-family: Arial, sans-serif;
}
.section-background-be {
    color: #FFFFFF; /* White text for contrast */
    padding: 50px;
    text-align: center;
    font-family: Arial, sans-serif;
}
.section-background-hpw {
    color: #FFFFFF; /* White text for contrast */
    padding: 50px;
    text-align: center;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column; /* Stack child divs vertically */
    align-items: center; /* Center child divs horizontally */
    justify-content: center; /* Center child divs vertically */
}

.section-background-re {
    color: #FFFFFF; /* White text for contrast */
    padding: 50px;
    text-align: center;
    font-family: Arial, sans-serif;
}
.section-background-prod {
    color: #FFFFFF; /* White text for contrast */
    padding: 50px;
    text-align: center;
    font-family: Arial, sans-serif;
}


.faq-section {
    width: 80%;
    margin: 0 auto;
    margin-top: 75px;
    margin-bottom: 75px;
    padding: 20px;
    background-color: white; /* Dark grey background */
    color: black; /* Light text for contrast */
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: black; /* Yellow for headings */
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #555; /* Greyish border */
    padding-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background-color: white; /* Dark grey question box */
    color: #2c2c2c; /* Light text */
    padding: 15px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.faq-question:hover {
    background-color: #f7f7f7; /* Yellow hover */
    color: #2c2c2c; /* Dark grey text on hover */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 10px;
    background-color:white;
}

.faq-answer p {
    margin: 10px 0;
    font-size: 20px;
    color: black; /* Slightly lighter grey for answers */
}

.faq-item.active .faq-answer {
    background-color:white;
    max-height: 200px; /* Adjust based on content */
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        width: 95%;
        padding: 10px;
    }

    .faq-section h2 {
        font-size: 24px;
    }

    .faq-question {
        font-size: 16px;
        padding: 12px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        width: 100%;
        padding: 5px;
    }

    .faq-section h2 {
        font-size: 20px;
    }

    .faq-question {
        font-size: 14px;
        padding: 10px;
    }

    .faq-answer p {
        font-size: 12px;
    }
}



/* PRODUCT INFO PAGE */
.textbox {
  width: auto;
  height: auto;
  padding: 20px;
}

.textbox h1 {
  color: rgb(185, 185, 185);
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 50px;
}

.textmessage {
  width: 50%;
  padding: 1rem;
  margin-bottom: auto;
}

.textmessage h1 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 48px;
  color: rgb(185, 185, 185);
}


/* Hide the images by default */
.mySlides video {
  all: unset;
  display: block;
  width: 100%;
  height: auto;
}

.mySlides {
  display: none;
}
.mySlides img{
  width: 600px;
}
.mySlides p {
 color: white;
 font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
 font-size: 20px;
 opacity: 1;
}
.mySlides .behindText {
 background-color: white;
 bottom: 50px;
 position: relative;
 height: 50px;
 padding-top: 10px;
 padding-left: 5px;
 opacity: 0.9;
}
/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  visibility: hidden;
  width: auto;
  padding: 16px;
  font-weight: bold;
  font-size: 18px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: #CCCCCC;
}
.product-left:hover .prev,
.product-left:hover .next {
  visibility: visible;
}
/* Position the "next button" to the right */
.next {
  right: 1rem;
}

.prev {
  left: 0rem; /* add some space from the left edge */
  border-radius: 3px 0 0 3px; /* adjust border radius since it's shifted */
}


/* 
  info page css
*/
.message3 {
  background-color: rgb(17, 16, 16);
  color: rgb(185, 185, 185);
  padding: 1rem;
  text-align: center;
  font-size: 25px;
}

.info-textmessage h1 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 40px;
  color: rgb(185, 185, 185);
  padding: 1rem;
}






/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}


/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #333;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover,
.dot.active {
  background-color: #999;
}

/* SHOPPING CART PAGE */

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.wrapper h1 {
  padding: 20px 0;
  text-align: center;
  text-transform: uppercase;
}

.project {
  display: flex;
}

.shop {
  flex: 75%;
}

.box {
  display: flex;
  width: 100%;
  height: 200px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: rgb(15, 15, 15);
  transition: all .6s ease;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}



.box img {
  width: 300px;
  height: 200px;
  bottom: 50%;
}

.content {
  padding: 20px;
  width: 100%;
  position: relative;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.content a {
  color: rgb(255, 251, 251);
  color: #fff;
  text-decoration: none;
  display: block;
  text-align: center;
  height: 40px;
  line-height: 40px;
  font-weight: 900;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  width: 100px;
  position: relative;
  left: 150px;
  bottom: 35px;
}
.content p {
  color: rgb(255, 251, 251);
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.content a:hover {
  background-color: #808080;
  transition: background-color 0.3s ease;
}
.content h3 {
  margin-bottom: 30px;
  color: rgb(255, 251, 251);
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.content h4 {
  color: rgb(255, 251, 251);
  margin-bottom: 50px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.btn-area {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 10px 25px;
  background-color: #3a71a9;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

.btn-area:hover {
  background-color: #76bfb6;
  color: #fff;
  font-weight: 600;
}

.unit input {
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  width: 40px;
  padding: 5px;
  text-align: center;
}

.btn-area i {
  margin-right: 5px;
}

.right-bar {
  flex: 25%;
  margin-left: 20px;
  padding: 20px;
  height: 400px;
  border-radius: 5px;
  background-color: rgb(15, 15, 15);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.right-bar hr {
  margin-bottom: 25px;
}

.right-bar p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  font-size: 20px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.right-bar p span {
  color: rgb(255, 251, 251);
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.right-bar a {
  background-color: #FFD700;
  color: #fff;
  text-decoration: none;
  display: block;
  text-align: center;
  height: 40px;
  line-height: 40px;
  font-weight: 900;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  transition: background-color 0.3s ease;
}

.right-bar i {
  margin-right: 15px;
}

.right-bar a:hover {
  background-color: #FEDC56;
}


/* Check Out Page */

.row {
  display: -ms-flexbox;
  /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap;
  /* IE10 */
  flex-wrap: wrap;
  margin: 0 -16px;
}

.col-25 {
  -ms-flex: 25%;
  /* IE10 */
  flex: 25%;
}

.col-50 {
  -ms-flex: 50%;
  /* IE10 */
  flex: 50%;
}

.col-75 {
  -ms-flex: 75%;
  /* IE10 */
  flex: 75%;
}

.col-25,
.col-50,
.col-75 {
  padding: 0 16px;
}

.container {
  background-color: #f2f2f2;
  padding: 5px 20px 15px 20px;
  border: 1px solid lightgrey;
  border-radius: 3px;
}

input[type=text] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

label {
  margin-bottom: 10px;
  display: block;
}

.icon-container {
  margin-bottom: 20px;
  padding: 7px 0;
  font-size: 24px;
}

.btn {
  background-color: #04AA6D;
  color: white;
  padding: 12px;
  margin: 10px 0;
  border: none;
  width: 100%;
  border-radius: 3px;
  cursor: pointer;
  font-size: 17px;
}

.btn:hover {
  background-color: #45a049;
}

span.price {
  float: right;
  color: grey;
}






/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

