.cart-container {
    position: relative;
    display: inline-block;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff4d4d;
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
}

/* Greeting */
.desktop-greeting {
    font-weight: 600;
    font-size: 15px;
    color: #362F1C;
    cursor: pointer;
}

.mobile-greeting {
    display: none;
}

/* Footer Section */
.footer {
    background: #3A321E;
    color: #FDFCF8;
    padding: 50px 40px 30px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.footer-brand h2 {
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.footer-desc {
    font-size: 13px;
    color: #ccc;
    line-height: 1.6;
    max-width: 300px;
}

.footer-contact-social h3 {
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-contact-social ul {
    list-style: none;
}

.footer-contact-social li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact-social a {
    color: #EAEAEA;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    font-size: 18px;
    color: white;
}

.map-placeholder {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #bbb;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}



/* Responsive Mobile */
@media (max-width: 768px) {
    .desktop-greeting { display: none !important; }
    
    .mobile-greeting {
        display: block;
        padding: 12px 16px;
        border-bottom: 1px solid #eee;
        font-weight: bold;
        color: #362F1C;
        background: #fcfcfc;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}