* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  
  color: #333;
  
  /*padding: 20px;*/
}


body {
    /*background-color: #62ccff;*/
   background-color: #0093E9;
background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);

}

header {
  background-color: #333;
  color: #fff;
  padding: 10px 0;
  text-align: center;
}

.container {
    max-width: 1100px;
  margin: auto;
}

section {
  margin: 20px 0;
}

p {
    font-size: 18px;
}

form {
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #333;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

button:hover {
  background-color: #555;
}

.slider-wrapper {
  margin: 0;
  position: relative;
  overflow: hidden;
  max-height: 300px;
  border-bottom-left-radius: 10px;  
  border-bottom-right-radius: 10px;  
}
.slides-container {
  /*height: calc(100vh - 2rem);*/
  width: 100%;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: scroll;
  scroll-behavior: smooth;
  /*scrollbar-width: none;  Firefox */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
/* WebKit */
/*.slides-container::-webkit-scrollbar { 
    width: 0;
    height: 0;
}*/

.slide {
  width: 100%;
  height:100%;
  flex: 1 0 100%;
}

.slide-arrow {
  position: absolute;
  display: flex;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 4rem;
  background-color: white;
  border: none;
  width: 2rem;
  font-size: 3rem;
  padding: 0;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 100ms;
}
.slide-arrow:hover,
.slide-arrow:focus {
  opacity: 1;
}
#slide-arrow-prev {
  left: 0;
  padding-left: 0.25rem;
  border-radius: 0 2rem 2rem 0;
}
#slide-arrow-next {
  right: 0;
  padding-left: 0.75rem;
  border-radius: 2rem 0 0 2rem;
}

.width100 {
    width: 100%;
}

.card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-right: 3px;
  margin-left: 3px;
  
  
}

.card h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: #333;
  color: green;
}


.swipe-container {
  display: block;
  white-space: nowrap;
  overflow-x: auto; /* Enable horizontal scrolling */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on mobile */
  padding: 10px 0;
}
/* Hide scrollbars for a cleaner look */
/*.swipe-container:-webkit-scrollbar {
  display: none;
}

.swipe-container {
  -ms-overflow-style: none;   IE and Edge 
  scrollbar-width: none;   Firefox 
}*/


/* Custom scrollbar styling */
.swipe-container::-webkit-scrollbar {
  width: 12px;
}

.swipe-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.swipe-container::-webkit-scrollbar-thumb {
  background-color: #4caf50;
  border-radius: 10px;
  border: 3px solid #f1f1f1;
}

.swipe-container::-webkit-scrollbar-thumb:hover {
  background-color: #45a049;
}


.gallery-image {
  display: inline-block;
  max-height: 300px;
  cursor: pointer;
  margin-right: 10px;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.gallery-image:hover {
  transform: scale(1.05);
}


.rotate:hover {
  transform: rotate(360deg);
  transition: transform 0.5s ease;
}



@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-50px);
  }
  75% {
    transform: translateX(50px);
  }
}

.shake:hover {
  animation: shake 0.2s ease;
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.swing:hover {
  animation: swing 1s ease;
}



/* Countdown container styling */
.countdown {
  display: flex;
  gap: 20px;
  justify-content: center; /* Center the countdown horizontally */
}

.countdown-item {
  background-color: #ff1919;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.countdown-item span {
  font-size: 2em;
  color: white;
  display: block;
}

.countdown-item p {
  font-size: 1em;
  margin-top: 5px;
  color: white;
}



/*GALERY WITH COLUMNS AND VERTICAL SCROLLING*/

/* Gallery styling */
.gallery {
    display: grid;
    gap: 10px;
    max-width: 100%;
    overflow-y: auto;
    max-height: 600px;
}

/* Three columns on desktop */
@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}



.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  max-width: 250px;
}

.gallery-item:hover {
  transform: scale(1.05); /* Slight zoom on hover */
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Two columns on mobile */
@media (max-width: 767px) {
  .gallery {
    grid-template-columns: repeat(1, 1fr);
  }
  .gallery-item img {    
    max-width: 100%;
  }
}


/* Modal styling */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); /* Semi-transparent black background */
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  margin-top: 10px;
}

#caption {
  margin: auto;
  text-align: center;
  color: #ccc;
  padding: 10px;
  font-size: 18px;
}

.close {
  position: absolute;
  top: 0px;
  right: 0px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

         
                 
                  
                 
                 
.btn-grad {
   /*background-image: linear-gradient(to right, #CB356B 0%, #BD3F32  51%, #CB356B  100%);*/
   text-decoration: none;
   padding: 15px 45px;
   text-align: center;
   text-transform: uppercase;
   transition: 0.5s;
   background-size: 200% auto;
   color: white;            
   box-shadow: 0 0 20px #eee;
   border-radius: 10px;
   display: block;
   font-size:20px;
   background: #4caf50;
 }

 .btn-grad:hover {
   background-position: right center; /* change the direction of the change here */
   color: #fff;
   text-decoration: none;
 }
         
         
 
 
 .center {
     text-align: center;
 }
         
         
 
 
.gallery-title {
  font-size: 2em;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}

.gallery-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #4caf50;
  margin: 10px auto;
}

/* Product gallery layout */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1000px;
}

.product-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s;
}

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

.product-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 10px;
}

.product-name {
  font-size: 1.2em;
  color: #333;
  margin: 10px 0;
}

.product-rating {
  font-size: 1em;
  color: #ff9800;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.1em;
  color: #333;
  margin: 10px 0;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

.add-to-cart {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s;
}

.add-to-cart:hover {
  background-color: #45a049;
}
         
label input[type="checkbox"] {
  vertical-align: middle;
  margin-right: 5px; /* Optional: add some spacing between checkbox and text */
}


/* Adjust the font size for screens narrower than 768px (tablets and mobile) */
@media (max-width: 768px) {
  .card h2 {
    font-size: 1.5rem; /* Slightly smaller on smaller screens */
  }
  
  /* Product gallery layout */
    .product-gallery {
     
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 10px;
      
    }
}

/* Further adjust for mobile screens narrower than 480px */
@media (max-width: 480px) {
  .card h2 {
    font-size: 1.5rem; /* Smaller font size for mobile */
  }
  
  p {
    font-size: 16px;
}
}