/* CSS */

.wc_statusbar {display:none !important;}

footer {
background-color: #ededed;
padding: 100px 0px 100px 0px;
}


.btn {
  background-color: transparent; 
  color: #3b3d33;
  border: none;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: "Montserrat", sans-serif; 
  border-radius: 0px !important;
}

/* Hover effect */
.btn:hover {
  background-color: #3b3d33;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Outline button */
.btn-outline {
  background: transparent;
  border: 1px solid #3b3d33;
  color: #3b3d33;
  padding: 14px 36px;
}

.btn-outline:hover {
  background: #3b3d33;
  color: white;
}
     