@charset "UTF-8";

@media (min-width: 1200px) {
  .container {
    max-width: 1260px !important;
  }

  body {
    background-color: #fafafa;
  }

}

#top-bar {
  width: 100% !important;
  position: relative !important;
}

.products {
  background-color: white;
  padding: 2%;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  border-radius: 2%;
  transition: all ease-in-out 0.2s;
}

.products:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);
  transition: all ease-in-out 0.2s;

}

h6 {
  font-size: 0.85em;
  color: grey;
}

#header {
  color: #07486A;
}

.button-container button {
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 12px;
  background-color: #07486A;
  color: white;
  cursor: pointer;
  border: 2px solid transparent;
  margin: 4px;
  /* Add transparent border */
}

.button-order {
  font-size: 1.2rem;
  /* padding: 8px 18px; */
  font-weight: bold;
  border-radius: 2px;
  background-color: #5cf3c2;
  color: white;
  cursor: pointer;
  border: 2px solid transparent;
  margin: 4px;
  /* Add transparent border */
}


.button-container button:hover,
.button-container button.active {
  background-color: white;
  color: #07486A;
  border: 2px solid #07486A;
  /* Add blue border */
}

@media (min-width: 100px) {
  .carousel {
    height: 35vh
  }
}

@media (min-width: 720px) {
  .carousel {
    height: 50vh
  }
}

html,
header,
.carousel {
  height: 60vh;
}


.card {
  box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0);
  /* background-color: white; */
  padding: 4%;
  border-style: solid;
  border: 1px 1px 1px 1px;
  transition: all ease-in-out 0.3s;

}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);
  transition: all ease-in-out 0.3s;

}

.special:hover {
  transition: 0.3s;
  color: #07486A;
}

.special {
  font-weight: 400;
  color: #212529;
}

.carousel {
  height: 100%
}

@media (min-width: 100px) {
  h5 {
    font-size: 1rem;
  }
}

@media (min-width: 720px) {
  h5 {
    font-size: 1.25rem;
  }
}

/*1rem = 16px*/

.front-card {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  background-color: #07486A;
  color: white;
  height: 15vh;
  padding: 7%;
  top: 10%;
  text-align: center;
  transition: all ease-in-out 0.3s;
}

.front-card:hover {
  background-color: #092331;
  transition: all ease-in-out 0.3s;
}

carousel h6 {
  font-size: 0.85em;
  color: grey;
}


@media (min-width: 900px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 1.2rem;
    font-size: .97rem !important;
  }
}

.vertical-line {
  width: 0.01rem;
  background-color: white;
  display: inline-block;
}

.p-footer {
  line-height: 2em;
  font-weight: 400;
  font-size: 0.9rem;
}


#footer-row {
  margin: 0%;
}


.subject {
  font-weight: normal;
  /* Semi-bold */
  color: #07486A;
  margin-bottom: 5%;
  margin-right: 5%;
}

.description {
  font-weight: normal;
  color: black;
  margin-right: 5%;
}

.brand-card {
  padding: 0;
}



.front-list {
  margin-top: 5%;
}

.front-list h2 {
  font-size: larger;
  font-weight: 500;
}

#product-list {
  opacity: 1;
  transition: opacity 1.5s ease-in-out;
  /* Smooth transition of opacity */
}

/* Class to fade out */
.fade-out {
  opacity: 0;
}

/* Class to fade in */
.fade-in {
  opacity: 1;
}

.search-container {
  width: 100%;
  text-align: center;
  margin: 20px 0;
  /* Add some spacing above and below */
}

/* Style the input field */
#product-search {
  width: 400px;
  /* Set a nice width */
  padding: 10px 15px;
  /* Add some padding inside the input */
  border: 1px solid #212529;
  /* Light gray border */
  border-radius: 30px;
  /* Rounded corners */
  font-size: 16px;
  /* Increase font size for readability */
  outline: none;
  /* Remove the default outline */
  transition: all 0.3s ease-in-out;
  /* Smooth transition effect */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Subtle shadow for depth */
}

/* On focus, change the border color and apply shadow */
#product-search:focus {
  border-color: #007BFF;
  /* Blue border on focus */
  box-shadow: 0 3px 7px rgba(0, 123, 255, 0.3);
  /* Add a deeper shadow */
}

/* Placeholder styling */
#product-search::placeholder {
  color: #37546D;
  /* Lighter color for the placeholder */
}



/* Container for the sorting dropdown */
.sort-container {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

/* Label styling */
.sort-container label {
  margin-right: 10px;
  font-size: 16px;
  color: #333;
}

/* Dropdown styling */
.sort-dropdown {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

/* Focus effect */
.sort-dropdown:focus {
  outline: none;
  border-color: #007BFF;
  /* Blue border on focus */
}

.sort-dropdown option {
  padding: 10px;
}