
/* Footer */
.footer {
    background-color: #f7f7f7;
    /* background-image: linear-gradient(to bottom, #fffe, #fffe), url("../images/bg/2451587_14206.jpg");
    background-size: cover; */
    padding: 50px 0 20px;
  }
  
  footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-section {
    flex: 1;
    margin-bottom: 30px;
    /* min-width: 150px; */
  }

  .footer-section p{
    font-size:14px;
    line-height: 1.8em;
    letter-spacing: 0.2px;
    padding-right:10%;
    min-width:30vw;
  }
  
  footer .logo {
    font-size: 24px;
    margin-bottom: 10px;
    /* color:var(--primary-orange); */
  }
  
  .payment-methods img {
    height: 20px;
    margin-right: 10px;
  }
  
  footer h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  footer ul {
    list-style-type: none;
    padding: 0;
  }
  
  footer ul li {
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  footer a {
    color: #333;
    text-decoration: none;
  }
  
  footer form {
    display: flex;
    margin-bottom: 15px;
  }
  
  footer input[type="email"] {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 1em 0 0 1em;
  }
  
  footer button {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 0 1em 1em 0;
  }
  
  footer .social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #333;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
  }

  
@media (max-width:600px){
    footer .footer-content{
        flex-direction: column;
    }
}
