/* Add custom CSS styles below */ 
/* Change header background color /
.header-wrapper {
  background-color: #008000;
}

/ Change footer background color */
.footer-wrapper {
  background-color: #008000;
}
/* Change primary button background color /
.s-button-primary,
.s-button-primary:hover,
.s-btn-primary {
  background-color: #008000;
  border-color: #008000;
}

/ Change button text color to white for contrast */
.s-button-primary span,
.s-btn-primary span {
  color: #FFFFFF;
}
/* Change the color of the shopping cart icon */
.sicon-cart {
  color: #008000;
}
/* Add a green border to product cards */
.product-card-body {
  border: 2px solid #008000;
}
/* Change the color of the sale badge */
.badge-sale {
  background-color: #008000;
  color: #FFFFFF;
}
/* Change the color of headings on the homepage */
.s-h1, .s-h2, .s-h3, .s-h4, .s-h5, .s-h6 {
  color: #008000;
}