 .hero-slider,
  .hero-slider .carousel-item {
    height: 40vh; /* Full screen height */
  }

  .hero-slider .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 60vh;
  }
  .hero-slider {
    margin-bottom: 130px;
  }

  .carousel-caption {
    background: rgba(0, 0, 0, 0.4); /* Optional overlay for text */
    padding: 10px 20px;
    border-radius: 10px;
  }
.logo{
  color: #009cde;
}
.links a{
  transition: 0.2s all;
}
.links a:hover{
  background-color: #009cde !important;
  color: white !important;

}
.line{
  border-bottom: 2px solid #009cde;
  padding-right: 2px;
}
.product-image{
      width: 100%;
    height: 250px; /* Adjust height as needed */
    overflow: hidden;
  position: relative;
}
.product-deal{
 position: absolute;
  top: 1px;
  right: 1px;
  background-color: #009cde;
  color: white;
  padding: 2px 16px 0px 16px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 0px;
  border-top-right-radius: 20px;
  font-size: 14px;
}
.product-wrapper{
  margin-bottom: 75px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.product-wrapper:hover {
  transform: scale(1.03);
  border-color: #009cde;
}
.category-wrapper{
  margin: 30px;
}
.category-image{
  margin: 3px;
}
.category-image img {
  transition: transform 0.3s ease;
}
.category-image:hover img {
  transform: scale(1.1);
}
.category a{
  text-decoration: none;
  color: black;
  text-align: center;
}
.category-image img{
  border-radius: 50%;
  margin-bottom: 7px;
}
.category-img{
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: grey;
  transition: 0.2s all;
}
.category-img:hover{
  border: solid #009cde;
}
.essential-name{
  font-size: 12px;
}
footer {
  background-color: #009cde;
}
.essential-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: block;
}
.essential-img{
  box-sizing: border-box;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 12px;
  background-color: grey;
  transition: 0.2s all;
}
.essential-img:hover{
  border: 2px solid #009cde;
  box-shadow: 0 0 10px #009cde;
}
.btn-custom {
  color: #009cde;                /* Text color */
  border: 2px solid #009cde;     /* Optional border for visibility */
  background-color: transparent; /* Default background */
  padding: 10px 20px;            /* Comfortable padding */
  border-radius: 5px;            /* Rounded corners */
  transition: all 0.3s ease;     /* Smooth hover animation */
  text-decoration: none;         /* Remove underline */
  display: inline-block;
  font-weight: 500;
}

.btn-custom:hover {
  background-color: #009cde;     /* Background becomes blue */
  color: #fff;                   /* Text turns white */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Light shadow */
  transform: scale(1.05);        /* Slightly increase size */
}
