@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Global Styles */

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

body {
  width: 100%;
}
/* Home Page */
#header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 80px;
  background: #FFFF;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar li {
  list-style: none;
  padding: 0 30px;
  position: relative;
}
#mobile {
    display: none;
    align-items: center;
}
#close {
    display: none;
}
#navbar li a {
  text-decoration: none;
  font-size: 30px;
  font-weight: 550;
  color: #1a1a1a;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #088178;
}
#product1 .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
  transition: 0.3s ease;
}
#product1 .pro .des h5:hover {
  padding-top: 7px;
  color: #088178;
  font-size: 14px;
}
#navbar li a.active::after {
  content: "";
  width: 30%;
  height: 5px;
  background: #088178;
  position: absolute;
  bottom: -4px;
  left: 33px;
}

.logo {
  width: 215px;
  height: auto;
  padding: 0 20px;
}

#intro {
  text-align: center;
  padding: 40px 20px;
}

#intro h1 {
  font-size: 35px;
  margin-bottom: 10px;
}

#intro p {
  font-size: 20px;
  color: #465b52;
}

#slider {
    position: relative;
    width: 100%; /* Full width of the parent container */
    max-width: 100vw; /* Limit width to the viewport width */
    height: 42vh; /* Automatically adjust height based on image aspect ratio */
    aspect-ratio: 16 / 9; /* Maintain a 16:9 aspect ratio, adjust as needed */
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
  }
  
  .slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 500%; /* Ensure it fits all 5 images */
    height: 100%; /* Full height of the slider */
  }
  .slider-two {
    position: relative;
    width: 100%; /* Full width of the parent container */
    max-width: 100vw; /* Limit width to the viewport width */
    height: 42vh; /* Adjust height based on image aspect ratio */
    aspect-ratio: 16 / 9; /* Maintain a 16:9 aspect ratio, adjust as needed */
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

/* Container for the slides */
.slider-container-two {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 200%; /* Adjusted for 2 images */
    height: 100%; /* Full height of the slider */
}

/* Individual slide */
.slide-two {
    flex: 0 0 50%; /* Each slide takes up 50% of the container width */
    height: 100%;
}

.slide-two img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire slide space */
}

/* Navigation buttons */
.prev-two, .next-two {
  cursor: pointer;
  position: absolute;
  top: 50%; /* Center the buttons vertically */
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 3px; /* Rounded corners on all sides */
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  transform: translateY(-50%); /* Correct vertical centering */
}

/* Position the left button */
.prev-two {
  left: 10px; /* Adjust as needed for spacing from the edge */
  border-radius: 3px 0 0 3px; /* Rounded corners on the left side */
}

/* Position the right button */
.next-two {
  right: 10px; /* Adjust as needed for spacing from the edge */
  border-radius: 0 3px 3px 0; /* Rounded corners on the right side */
}

/* Button hover effect */
.prev-two:hover, .next-two:hover {
  background-color: rgba(0, 0, 0, 0.8); /* Darker background on hover */
}
  .slide {
    flex: 0 0 20%; /* Each slide takes up 20% of the container width */
    height: 100%;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the slide area */
    display: block;
  }

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%; /* Make the buttons circular */
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}
.box-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between boxes */
    margin-top: 40px;
  }
  .button-section {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.buy-now-button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 26px;
  background-color: #088178;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
.buy-now-button:hover {
  background-color: #066c61;
  }
  .join-us-box, .shop-box {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 10010px; /* Adjust width as needed */
    text-align: center;
  }
  
  .join-us-box h2, .shop-box h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .join-us-box p, .shop-box p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .shop-box a button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #088178;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .shop-box a button:hover {
    background-color: #066c61;
  }

/* Footer Styles */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  margin-top: auto; /* Pushes the footer to the bottom of the page */
}
.approved-page .shop-box {
    width: 90%;
    margin-top: 15%;
    order: 1; /* This moves the shop-box to the top within the flex container */
}
.approved-page .intro-content p {
  margin-top: 9%;
}
.approved-page .join-us-box {
  width: 90%;
  margin-top: 15%;
    order: 2; /* This moves the join-us-box below the shop-box */
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px; /* Space between the links */
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  margin: 10px 0;
}

.footer-social a:hover {
  color: #ccc;
}
body, html {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1; /* Allows the main content to grow and push the footer down */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-copyright p {
  font-size: 14px;
  margin-top: 0px;
  color: #bbb;
}
/* Shop Page*/
#product1{
    text-align: center;
}
#product1 .pro-container{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}

#product1 .pro{
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #ebebeb;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0,0,0,0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}
#product1 .pro:hover{
    box-shadow: 20px 20px 30px rgba(0,0,0,0.06);
}
#product1 .pro img{
    width: 100%;
    border-radius: 20px;
}
#product1 .pro .des{
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .des span{
    color: #606063;
    font-size: 12px;
}

#product1 .pro .des h5 {
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
}

#product1 .pro .des h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #088178;
}
#product1 .pro .cart{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: #e8f6ea;
    font-weight: 500;
    color: #088178;
    border: 1px solid #cce7d0;
    position: absolute;
    bottom: 20px;
    right: 10px;
}
#page-header {
    background-image: url("images/image6.jpg");
    width: 100%;
    height: 40vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}
#page-header h2,
#page-header p{
    color: #030305;
}
#cart {
  overflow-x: auto;
  width: 100%;
}
#cart table{
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  white-space: nowrap;
}
#cart table img {
  width: 70px;
}
#cart table td:nth-child(1){
  width: 100px;
  text-align: center;
}
#cart table td:nth-child(2){
  width: 150px;
  text-align: center;
}
#cart table td:nth-child(3){
  width: 400px;
  text-align: center;
}
#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6){
  width: 150px;
  text-align: center;
}
#cart table td:nth-child(5) input{
  width: 70px;
  padding: 10px 5px 10px 15px;
}
#cart table tbody tr td {
  padding-top: 15px;
}
#cart table thead{
  border: 1px solid #e2e9e1;
  border-left: none;
  border-right: none;
}
#cart table thead td{
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  padding: 18px 0;
}
/* Commissions */

.prev-two, .next-two {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(0,0,0,0.5);
color: white;
border: none;
padding: 10px;
cursor: pointer;
font-size: 18px;
border-radius: 50%; /* Make the buttons circular */
}
.guidelines-box {
  background-color: #f9f9f9; /* Light background color */
  padding: 20px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px; /* Narrower width for the box */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}
.guidelines-box h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333; /* Dark text color for headings */
}
#select-container {
  display: flex;
  align-items: center; /* Align items vertically centered */
  gap: 10px; /* Space between select elements */
}

/* Basic styling for the select elements */
select {
  margin-right: 10px;
  padding: 8px 12px; /* Space inside the select box */
  border: 1px solid #ccc; /* Border color and thickness */
  border-radius: 4px; /* Rounded corners */
  font-size: 16px; /* Font size */
  font-family: Arial, sans-serif; /* Font family */
  background-color: #fff; /* Background color */
  color: #333; /* Text color */
  outline: none; /* Remove default focus outline */
  transition: border-color 0.3s ease; /* Smooth border color transition */
}
#checkout-container {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* Space between total price and PayPal button */
  width: 100%; /* Full width of its parent container */
  max-width: 300px; /* Adjust the max width as needed */
  margin-left: auto; /* Pushes the container to the right */
  margin-right: 20px;
  padding: 20px; /* Padding around the container */
  box-sizing: border-box;
  background-color: #f9f9f9; /* Light background color */
  border: 1px solid #ddd; /* Light border color */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

#cart-total {
  font-size: 1.15em; /* Adjust the font size as needed */ /* Space below the total price */
}

#paypal-button-container {
  width: 100%; /* Ensure it uses the full width of the container */
  max-width: 300px; /* Adjust max width as needed */
  padding: 10px; /* Padding around the button container */
  box-sizing: border-box;
}

.paypal-button {
  width: 100% !important; /* Full width of its container */
  max-width: 250px; /* Adjust max width as needed */
  margin-top: 10px; /* Space above the button */
}
/* Styling for when the select element is focused */
select:focus {
  border-color: #007bff; /* Border color on focus */
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Box shadow on focus */
}

/* Hide typeSelect initially, will be shown when needed */
#typeSelect {
  display: none; /* Hide by default */
}
.guidelines-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #555; /* Medium-dark text color for body */
  margin-bottom: 15px;
}

.guidelines-box p strong {
  color: #333; /* Darker color for emphasized text */
}
/* Single Product */
#select-container {
  display: flex;
  align-items: center; /* Align items vertically centered */
  gap: 10px; /* Adjust the space between the selects as needed */
}

#typeSelect {
  display: none; /* Initially hide the typeSelect */
}
#prodetails{
    display: flex;
    margin-top: 20px;
    
}
#prodetails .single-pro-image{
    width: 33%;
    margin-right: 50px;
}

.small-img-group{
    display: flex;
    justify-content: space-between;
}

.small-img-col{
    flex-basis: 24%;
    cursor: pointer;
}
button.normal{
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #000;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}
#prodetails .single-pro-details{
    width: 50%;
    padding-top: 30px;
}
#prodetails .single-pro-details h4{
    padding: 40px 0 20px 0;
}
#prodetails .single-pro-details h2{
    font-size: 26px;
}
#prodetails .single-pro-details input:focus{
    outline: none;
}
#prodetails .single-pro-details span{
    line-height: 25px;
    max-width: 100%;
    display: inline-block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
#prodetails .single-pro-details button {
    background: #088178;
    color: #fff;
}
#checkout-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* Space between the cart-total and PayPal button container */
}

#cart-total {
  text-align: center; /* Center-align the text */
}
#cart-total h6 {
  margin: 10px 0;
}
#cart-total h5 {
  font-size: 25px;
  margin-top: 5px; /* Vertical spacing between each h5 element */
}

#paypal-button-container {
  width: 100%; /* Ensure it uses the full width of the container */
  max-width: 300px; /* Adjust max width as needed */
  padding: 10px; /* Padding around the PayPal button */
  box-sizing: border-box;
}
#prodetails .single-pro-details button:hover{
  background-color: #066c61;
}
#prodetails .single-pro-details input{
    width: 50px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
}
  @media (max-width:1024px) {
    #header {
        justify-content: space-between;
    }
    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: #E3E6F3;
        box-shadow: 0 40px 60px rgb(0,0,0,0.1);
        padding: 80px 0 0 10;
        transition: 0.3s;
    }
    #prodetails .single-pro-details{
      width: 80%;
    }
    button.normal{
      margin-left: 20px;
      font-size: 14px;
      font-weight: 600;
      padding: 15px 30px;
      color: #000;
      background-color: #fff;
      border-radius: 4px;
      cursor: pointer;
      border: none;
      outline: none;
      transition: 0.2s;
  }
    #navbar.active{
        right: 0px;
    }
    #navbar li{
        top: 80px;
        margin-bottom: 25px;
    }
    #mobile {
        display: flex;
        align-items: center;
    }
    #mobile i{
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
    }
    #close {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 24px;
    }
    #lg-bag {
        display: none;
    }
    #slider {
        position: relative;
        width: 100%; /* Full width of the parent container */
        max-width: 100vw; /* Limit width to the viewport width */
        height: 32vh; /* Automatically adjust height based on image aspect ratio */
        aspect-ratio: 16 / 9; /* Maintain a 16:9 aspect ratio, adjust as needed */
        overflow: hidden;
        border-radius: 0;
        box-shadow: none;
    }
    
    .box-container {
        display: flex;
        flex-direction: column-reverse; /* Stack boxes vertically with shop-box on top */
        align-items: center; /* Center the boxes horizontally */
        gap: 30px; /* Space between boxes */
        margin-top: 2vh;
      }
      
      .join-us-box, .shop-box {
        background-color: #f7f7f7;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        width: 100%; /* Adjust width as needed */
        text-align: center;
      }
    
    .join-us-box h2, .shop-box h2 {
    font-size: 28px;
    margin-bottom: 15px;
    }
    #checkout-container {
      padding: 50px;
      max-width: 50%; /* Reduce max-width to fit smaller screens */
      margin-left: auto;
      margin-right: 0; /* Center the container on smaller screens */
    }
  
    #cart-total {
      font-size: 1em; /* Adjust font size for smaller screens */
    }
  
    #paypal-button-container {
      margin-right: auto;
      max-width: 60%; /* Adjust max-width to fit smaller screens */
    }
    .join-us-box p, .shop-box p {
    font-size: 18px;
    margin-bottom: 15px;
    }
    
    .shop-box a button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #088178;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    }
    
    .shop-box a button:hover {
    background-color: #066c61;
    }
  }
@media (max-width: 477px) {
    #header {
        padding: 10px 30px;
    }
    #checkout-container {
      max-width: 100%; /* Allow the container to use full width */
      padding: 10px; /* Reduce padding for very small screens */
      box-sizing: border-box; /* Include padding in width calculation */
  }
  
  #cart-total {
      font-size: 0.9em; /* Further reduce font size for very small screens */
  }
  
  #paypal-button-container {
      width: 100%; /* Ensure it uses the full width of the parent container */
      max-width: 100%; /* Prevent it from exceeding the container’s width */
      padding: 0; /* Remove padding if it causes overflow */
      box-sizing: border-box; /* Include padding in width calculation */
  }
  
  .paypal-button {
      width: 100% !important; /* Full width of its container */
      max-width: 100%; /* Prevent it from exceeding the container’s width */
      box-sizing: border-box; /* Include padding and border in width calculation */
  }
    #slider {
        position: relative;
        width: 100%; /* Full width of the parent container */
        max-width: 100vw; /* Limit width to the viewport width */
        height: 22vh; /* Automatically adjust height based on image aspect ratio */
        aspect-ratio: 16 / 9; /* Maintain a 16:9 aspect ratio, adjust as needed */
        overflow: hidden;
        border-radius: 0;
        box-shadow: none;
    }
    .slider-two {
      position: relative;
      width: 100%; /* Full width of the parent container */
      max-width: 100vw; /* Limit width to the viewport width */
      height: 20vh; /* Adjust height based on image aspect ratio */
      aspect-ratio: 16 / 9; /* Maintain a 16:9 aspect ratio, adjust as needed */
      overflow: hidden;
      border-radius: 0;
      box-shadow: none;
  }

  /*Single Product*/
  #prodetails{
    display: flex;
    flex-direction: column;
  }
  #prodetails .single-pro-image{
    width: 100%;
    margin-right: 0px;
  }
  #prodetails .single-pro-details{
    width: 100%;
  }
}
@media (max-width: 375px) {
  #paypal-button-container {
    width: 80%; /* Ensure it uses the full width of the parent container */
    max-width: 100%; /* Prevent it from exceeding the container’s width */
    padding: 0; /* Remove padding if it causes overflow */
    box-sizing: border-box; /* Include padding in width calculation */
  }
  #typeSelect {
    display: block; /* Display below formatSelect */
    margin-top: 10px;
    margin-left: 70px; /* Optional: space between formatSelect and typeSelect */
  }
  .section-p1 {
    padding: 40px 60px;
  } 
  .paypal-button {
      width: 100% !important; /* Full width of its container */
      max-width: 100%; /* Prevent it from exceeding the container’s width */
      box-sizing: border-box; /* Include padding and border in width calculation */
  }
  #prodetails .single-pro-details button {
    width: 60%;
    height: 10%;
    padding: 0;
  }
}

  
