.footer {
    background: #333;
    color: #fff;
    padding: 30px 20px;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 10px;
}

.footer-links, .footer-socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links, .footer-socials {
        margin-top: 15px;
    }
}
.image-logo{
    width: 50px;
    height: 50px;
    border-radius: 100px;
        transition: 0.5s;
}
.image-logo:hover{
    transform: scale(1.08);
    transition: 0.5s;
}
    #cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #f4e3c1;
      padding: 15px;
      text-align: center;
      font-family: sans-serif;
      box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
      z-index: 9999;
    }
    .qty-btn, .remove-btn, .checkout-btn {
    padding: 6px 10px;
    background: #f5c661;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.qty-btn:hover, .remove-btn:hover, .checkout-btn:hover {
    background: #e0a900;
}
@media (max-width: 768px) {
    body{
        overflow:scroll;
    }
}