@charset "UTF-8";

html,
body * {
}

html {
}

body {
  background-color: #d4ebd5;
  font-family: "Public Sans", sans-serif;


}

img {
}

li{
    list-style-type: none;
    margin-bottom: 0px; 

}
/* GLOBAL CLASSES ######################################### */


.header {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-family: "Bebas Neue", sans-serif;
  margin-top: 2vh;
}

.header2{
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-family: "Bebas Neue", sans-serif;

}

.subheader{
  font-size: clamp(.5rem, 1vw, 1rem);
  font-family: "Archivo", sans-serif;
}





.cursor {
    cursor: pointer;
}

.category-card {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    margin: 10px;
}

.product-card {
    text-align: center;
    padding: 20px;
}
.product-image {
    background: #cfcfcf; /* Placeholder color */
    height: 150px; /* Placeholder height */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px; /* Placeholder font size */
    color: black; /* Placeholder text color */
}

.store-info {
    padding: 2rem;
}

.map-placeholder {
    height: 300px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9e9e9e;
    margin-top: 1rem;
}

.map-placeholder span {
    font-size: 1.5rem;
    font-weight: bold;
}

@media screen and (max-width: 992px) {
    .map-placeholder {
        height: 200px;
    }
}
.footer-bottom {
    background-color: #1565c0; /* Slightly darker blue than the main footer */
    padding: 10px 0;
  }
  
  .social-icon {
    padding-left: 15px;
  }
  
  .social-icon i {
    font-size: 24px; /* Adjust icon size as needed */
  }
  
  /* Ensure Font Awesome is included for social icons */
  @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css');
  

  .cart-container {
    margin-top: 50px;
}

.cart-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.cart-header {
    font-size: 1.5rem;
    text-align: center;
    padding: 20px 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
}

.quantity-selector input {
    width: 30px;
    margin: 0 10px;
    text-align: center;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.total-line strong {
    font-weight: bold;
}

.checkout-btn {
    width: 100%;
    margin-top: 20px;
}



/* NAV #################################################################################################### */




ul#nav-mobile.right.hide-on-med-and-down{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Assuming 'light-green' is the primary color and 'dark-green' is the accent color */
.nav-wrapper {
  background-color: #C8E6C9; /* A light green similar to the UI example; adjust the hex as needed */
}

/* Logo and link colors */
.nav-wrapper .brand-logo, .nav-wrapper a {
  color: #ffffff; 
}


/* Mobile sidenav styling */
.sidenav {
  background-color: #C8E6C9; /* Same as the nav-wrapper */
}

.sidenav a {
  color: #ffffff; /* White text for contrast */
}

.sidenav a:hover {
  background-color: #96c199; /* A darker green for hover states; adjust the hex as needed */
}

/* Custom styles for search and cart icons to match the theme */
.nav-wrapper .material-icons {
  color: #ffffff; /* Darker green for icons */
}

.nav-wrapper .material-icons:hover {
    color: #c9ffcd; /* Darker green for icons */
  }

  @media only screen and (max-width: 992px) {
    .nav-wrapper .brand-logo {
      left: 0;
      transform: none;
      position: relative; /* Adjust as needed for your layout */
    }
    .sidenav-trigger {
      margin-left: auto; /* Push the menu icon to the right */
    }
  }
  
  .department-list-container {
    position: absolute;
    background-color: #6cb000;
    color: #fff;
    padding: 1.5rem;
    width: 15.0rem;
    display: none;
}


.cart-link .badge {
  position: absolute;
  top: -5px; /* adjust these values as needed */
  right: 10px;
}
.cart-link {
  position: relative;
}


  /* Homepage #######################################################################3 */


  .carousel-item {
    background-size: cover;
    background-position: center;
  }

  .carousel-indicators .indicator-item {
    background-color: #1565c0; /* Color of the indicator */
  }

  .category-card {
    background-size: cover;
    background-position: center;
    color: #fff; /* Adjust text color for better visibility if needed */
    border-radius: 15px;
  }


/* Department page ############################################################################################################################## */

  .quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
  }
  
  .quantity-input {
    width: 50px;
    text-align: center;
    margin: 0 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
  }
  
  .equal-height-card {
    display: flex;
    flex-direction: column;
    min-height: 400px; /* adjust the min-height as needed */
  }
  
  .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .card-action {
    margin-top: auto;
  }
  


  /* Cart page ############################################################################################################################## */


  .header-col {
    font-weight: bold;
    color: #333; 
}


  