/* 
    All right reserved for SYDAER Sarl &copy; 2024
    Main styles
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
  }
  
  .header {
    background-color: #5b7643;
    padding: 20px;
    color: white !important;
  }
  
  .header-actions input {
    padding: 5px;
    margin-right: 10px;
  }
  
  /* .header-actions button {
    padding: 10px;
    background-color: #ff9800;
    border: none;
    margin-right: 10px;
    cursor: pointer;
  } */

  .nav-item .nav-link{
    color: white;
  }
  
  .search-filter {
    background-color: white;
    padding: 20px;
    display: flex;
    border: none;
    border-radius: 10px;
  }

  .navbar-brand{
    font-weight: bold;
    color: white;
    font-size: 1.5rem;
  }
  
  .filter-options, .filter-species {
    
  }
  
  .filter-options select, .filter-options input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  
  .filter-species ul {
    list-style: none;
  }
  
  .filter-species li {
    margin-bottom: 10px;
  }
  
  .listing-grid {
    padding: 15px;
  }
  
  .main .content {
      background: #ffffeb;
  }
  
  .listing-card {
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    flex-direction: column;
    transition: all 0.3s ease;
  }
  .listing-card:hover {
      background-color: #ccc;
  }
  
  .listing-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
  }
  
  .listing-info {
    margin-top: 10px;
  }
  
  .listing-info h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .listing-info p {
    margin-bottom: 5px;
  }
  
  .listing-info button {
    background-color: #4a7c2e;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }
  

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #6c8b4f;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
  }
  
  #footer .footer-top {
    background: #5b7643;
    padding: 60px 0 30px 0;
  }
  
  #footer .footer-top .footer-info {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-info h3 {
    font-size: 26px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 3px;
    color: #fff;
  }
  
  #footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff;
  }
  
  #footer .footer-top .social-links a {
    display: inline-block;
    background: #6c8b4f;
    color: #fff;
    line-height: 1;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  #footer .footer-top .social-links a i {
    line-height: 0;
    font-size: 16px;
  }
  
  #footer .footer-top .social-links a:hover {
    background: #6c8b4f;
    color: #fff;
    text-decoration: none;
  }
  
  #footer .footer-top h4 {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
  }
  
  #footer .footer-top h4::before,
  #footer .footer-top h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
  }
  
  #footer .footer-top h4::before {
    right: 0;
    background: #3c4133;
  }
  
  #footer .footer-top h4::after {
    background: #6c8b4f;
    width: 60px;
  }
  
  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 5px 0 0 0;
    margin: 0;
  }
  
  #footer .footer-top .footer-links ul li {
    padding: 0 0 15px 0;
  }
  
  #footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
  }
  
  #footer .footer-top .footer-links ul a:hover {
    color: #6c8b4f;
  }
  
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-contact p {
    line-height: 26px;
  }
  
  #footer .footer-top .footer-newsletter {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-newsletter input[type=email] {
    border: 0;
    padding: 6px 8px;
    width: 65%;
    border-radius: 4px 0 0 4px;
  }
  
  #footer .footer-top .footer-newsletter input[type=submit] {
    background: #6c8b4f;
    border: 0;
    border-radius: 0 4px 4px 0;
    width: 35%;
    padding: 6px 0;
    text-align: center;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
  }
  
  #footer .footer-top .footer-newsletter input[type=submit]:hover {
    background: #6c8b4f;
  }
  
  #footer .copyright {
    text-align: center;
    padding-top: 30px;
  }
  
  #footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
  }
  
.product.container {
    padding-right: 15%;
    padding-left: 15%;
}