/* ================================
   SEO & Accessibility Enhancements
   ================================ */

/* Skip Navigation Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #f69715;
  color: white;
  padding: 10px 15px;
  z-index: 10000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 0 0 5px 0;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid #333;
  outline-offset: 2px;
}

/* Visually Hidden (for screen readers only) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus visible for keyboard navigation */
:focus-visible {
  outline: 3px solid #f69715;
  outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn-content {
    border: 2px solid white;
  }
  
  .faq-question {
    border: 1px solid #333;
  }
}

/* Print styles for SEO (search engines consider print stylesheets) */
@media print {
  header,
  .hamburger-menu,
  .video-container,
  .btn-conteiner,
  .language-toggle {
    display: none !important;
  }
  
  main {
    margin-top: 0 !important;
  }
  
  .product-details {
    background: white !important;
    color: black !important;
  }
  
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }
}

/* Copyright footer styling */
.copyright {
  font-size: 0.85rem;
  color: #333;
  margin-top: 10px;
  opacity: 0.8;
}

/* ================================
   Original Styles Below
   ================================ */

header {
  position: fixed;
  margin: 0;
  top: -5px;
  left: 0;

  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  text-align: center;
  z-index: 1000;
  transition: all 0.5s ease;
  overflow: hidden; 
}

header::before {
  content: "";
  position: absolute;
  margin: 0;
  top: -5px;

  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/titleimage.jpg') no-repeat center center;
  background-size: cover;
  transition: all 0.5s ease;
  z-index: -1;
}

header.shrink::before {
  filter: blur(5px); 
}

header.shrink {
  height: 80px;
  justify-content: flex-start;
  padding-top: 10px;
}

header h1 {
  font-size: 5rem; 
  position: absolute;
  top: 46%;
  left: 50%;
  font-weight: bold;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
  z-index: 2; 
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

header.shrink h1 {
  font-size: 1.5rem; 
  transform: translateX(-50%);
  top: 22px;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

header nav {
  position: absolute;
  top: 22px;
  right: 10px;
  z-index: 2; /* Ensures nav stays above the blurred background */
}

header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
}
.hamburger-menu {
  display: none; /* Hidden by default on desktop */
  position: absolute;
  top: 22px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
  background: transparent;
  outline: none;
  border: none;
}

.hamburger-icon {
  width: 30px;
  height: 22px;
  position: relative;
  margin: 0;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  background: transparent;
  outline: none;
  border: none;
}

.hamburger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
  top: 0px;
}

.hamburger-icon span:nth-child(2) {
  top: 9px;
}

.hamburger-icon span:nth-child(3) {
  top: 18px;
}

.hamburger-icon.open span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}

.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.hamburger-icon.open span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}

/* Language Toggle */
.language-toggle {
  display: flex;
  align-items: center;
  position: absolute;
  top: 22px;
  left: 10px;
  z-index: 2; 
}

.lang-label {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 5px 10px;
    border-radius: 5px;
}

.switch {
  position: relative;
  display: inline-block;
}

.checkbox {
  display: none;
}

.slider {
  width: 60px;
  height: 30px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 4px solid transparent;
  transition: .3s;
  box-shadow: 0 0 10px 0 rgb(0, 0, 0, 0.25) inset;
  cursor: pointer;
}

.slider::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: translateX(-30px);
  border-radius: 20px;
  transition: .3s;
  box-shadow: 0 0 10px 0 rgb(0, 0, 0, 0.25);
}

.checkbox:checked ~ .slider::before {
  transform: translateX(30px);
  box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.25);
}

.checkbox:checked ~ .slider {
  background-color: var(--primary);
}

.checkbox:active ~ .slider::before {
  transform: translate(0);
}

.center-image {
  display: block;
  margin: 250px auto 0px auto; 
  width: 100%;
  max-width: 800px;
  height: auto;
}

.intro {
  padding: 20px;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
}

.intro-box {
  background-color: #f5f5f5;
  
  border-radius: 20px;
  
  max-width: 900px;
  width: 100%;
  line-height: 1.6;
  font-family: Verdana, sans-serif;
  box-shadow: 0 10px rgba(0, 0, 0, 0.05);
}

.product-details {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0; /* Remove padding on the x-axis */
  background-color: #f69715;
  gap: 20px;
  scroll-margin-bottom: 800px;
  width: 100vw;
  margin: 0; 
  box-sizing: border-box;
}

.image-slider {
  flex: 0 0 50%; /* Take up 70% of the width */
  max-width: 50%; /* Ensure it doesn't exceed 70% */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
}

.image-slider img {
  width: 100%; /* Make images take up the full width of the slider */
  height: auto; /* Maintain aspect ratio */
  position: absolute;
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Adjust for exact center */
  transition: opacity 1s ease-in-out; /* Smooth transition */
  opacity: 0; /* Hide all images by default */
}

.image-slider img.active {
  opacity: 1; /* Show the active image */
}

.product-info {
  flex: 0 0 25%; /* Take up 25% of the width (remaining space after 70%) */
  min-width: 300px;
  text-align: left; /* Align text to the left */
}

.product-info h2 {
  color: white;
  font-size: 2rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); 
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: bold;
}

.product-info h3 {
  color: white; 
  font-size: 1.5rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); 
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: bold;
}

.product-info ul {
  list-style-type: disc;
  padding-left: 20px;
  font-family: Verdana, sans-serif;
}
.product-info p, ul, li {
    font-family: Verdana, sans-serif;
    font-weight: 500;    
}
.product-info p2{
   font-family: Verdana, sans-serif;
   line-height: 5px;
   font-weight: 500; 
}



.video h2 {
    color: black;
    font-size: 2rem;
    text-align: center; 
    width: 100%; 
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;

}


.video-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px; 
  margin: 0 auto; 
  padding-bottom: 20px;

}
/* From Uiverse.io by Li-Deheng */ 
.btn-conteiner {
  display: flex;
  justify-content: center;
  --color-text: #ffffff;
  --color-background: #ff135a;
  --color-outline: #ff145b80;
  --color-shadow: #00000080;
}

.btn-content {
  display: block;
  align-items: center;
  padding: 5px 30px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: var(--color-text);
  background: var(--color-background);
  transition: 1s;
  border-radius: 100px;
  box-shadow: 0 0 0.2em 0 var(--color-background);
}

.btn-content:hover, .btn-content:focus {
  transition: 0.5s;
  -webkit-animation: btn-content 1s;
  animation: btn-content 1s;
  outline: 0.1em solid transparent;
  outline-offset: 0.2em;
  box-shadow: 0 0 0.4em 0 var(--color-background);
}

.btn-content .icon-arrow {
  transition: 0.5s;
  margin-right: 0px;
  transform: scale(0.6);
}

.btn-content:hover .icon-arrow {
  transition: 0.5s;
  margin-right: 25px;
}

.icon-arrow {
  width: 20px;
  position: relative;
  top: 6%;
  display: block;
  margin: 0 auto;
}
  
/* SVG */
#arrow-icon-one {
  transition: 0.4s;
  transform: translateX(-60%);
}

#arrow-icon-two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.btn-content:hover #arrow-icon-three {
  animation: color_anim 1s infinite 0.2s;
}

.btn-content:hover #arrow-icon-one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.btn-content:hover #arrow-icon-two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */
@keyframes color_anim {
  0% {
    fill: white;
  }

  50% {
    fill: var(--color-background);
  }

  100% {
    fill: white;
  }
}

/* Button animations */
@-webkit-keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}

@keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}
.video {
  width: 100%;
  max-width: 100%;
  height: auto;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  padding-bottom: 40px;
}


@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');
*{
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
.body {
  display: flex;
  flex-direction: column; /* Use 'row' if you want them side-by-side */
  align-items: center;
  justify-content: center;
  gap: 20px; /* Space between images */
  min-height: 100vh;
  background: linear-gradient(#f69715, white);
}
.body img {
  max-width: 40%;
}

.card-image {
  max-width: 90%; /* Makes sure images scale well */
  height: auto;
}



.contact-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f69715;
    width: 100%;
}


.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; 
    flex-wrap: nowrap; 
    width: 100%; 
    max-width: 600px; 
    margin: 0 auto; 
}


.contact-image {
  width: 100%;
  height: 150px; /* Ensures both images stay the same height */
  object-fit: contain; /* Ensures the whole image is visible without cropping */
  border-radius: 5px; 
}

.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 17px;
  color: #383838;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.faq-question:focus {  /* Removed space between : and focus */
  outline: none;
}

.icon {
  font-size: 1.5rem;
  color: #007bff;
  transition: transform 0.3s ease;
}

.faq-question.active .icon {
 /* Example rotation for plus/minus effect */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 10px;
  font-size: 17px;
  font-weight: bold;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;

}
.faq-answer p2{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 10px;
  font-size: 17px;
  font-weight: bold;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  line-height:5px;
}

/* Active state for expanded answers */
.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust based on your content */
  padding: 10px;
}

footer {
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 10px;
  background-color:#f69715; 
  flex-wrap: nowrap; 
  color: black;
  font-size: 0.9rem;
  position: relative;
  width: 100%;

}
.buy-section {
  text-align: center;
  font-size: 17px;
  
  width: 100%;

}

.buy-images {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap; 
}

.buy-images a {
  flex: 1;
  max-width: 200px;
}

.buy-images img {
  width: 100%;
  height: 150px; 
  object-fit: contain; 
  border-radius: 5px; 
  
}

footer h2{
  font-size: 18px;
  font-weight: bold;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}



@media (max-width: 1200px) {
  .language-toggle {
    gap: 6px; /* Moderate spacing */
    font-size: 0.9rem;
    z-index: 0;
    margin-top: 7px;
  }

  .lang-label {
    padding: 3px 6px;
    font-size: 0.95rem;
  }

  .switch {
    transform: scale(0.85); /* Slightly reduced */
  }

  .slider {
    width: 50px;
    height: 26px;
  }

  .slider::before {
    transform: translateX(-25px); /* Adjust for new width */
  }

  .checkbox:checked ~ .slider::before {
    transform: translateX(25px); /* Match new slider width */
  }


  header h1 {
    font-size: 3.5rem;
  }
  .body img {
    max-width: 100%;
  }
  .image-slider, 
  .product-info {
    flex: 0 0 100%; /* Take full width on mobile */
    max-width: 100%; /* Ensure full width */
  }
  
  .image-slider {
    order: 1; /* Make image slider appear first */
    height: 300px; /* Set a fixed height for the slider */
  }
  
  .product-info {
    order: 2; /* Make product info appear second */
    min-width: unset; /* Remove minimum width */
    text-align: left; /* Keep text left-aligned */
    padding: 0 15px; /* Add some horizontal padding */
  }
  
  .product-info h2 {
    font-size: 1.5rem; /* Slightly smaller heading on mobile */
  }
  
  .product-info h3 {
    font-size: 1.2rem; /* Slightly smaller subheading on mobile */
  }

    
     .nav-btn {
        width: 40px; /* Smaller width */
        height: 80px; /* Maintain rectangular shape */
        font-size: 20px; /* Slightly smaller icon */
        padding: 15px 5px; /* Adjust padding */
    }

    #prevBtn {
        left: -20px; /* Adjust positioning */
    }

    #nextBtn {
        right: -20px; /* Adjust positioning */
    }
  .buy-images {
    justify-content: space-between;
  }

  .buy-images a {
    max-width: 48%; /* Keeps images side by side on smaller screens */
  }
  .hamburger-menu {
    display: block; /* Show hamburger on mobile */
  }

  header nav {
    position: fixed;
    top: 80px; /* Match header.shrink height */
    right: -100%; /* Start off-screen */
    width: 100%;
    height: calc(100vh - 380px);
    background-color: #f69715;
    transition: right 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
  }

  header nav.open {
    right: 0; /* Slide in from right */
  }

  header nav ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
  }

  header nav ul li a {
    font-size: 1.5rem;
    padding: 10px 20px;
    display: block;
  }
  
  header.shrink nav {
    top: 80px;
  }
  
}