.khqr-banner {
    background-color: var(--white-background-color);
    text-align: center;
    width: 100%;
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.khqr-text {
    font-size: var(--font-size-body);
    color: var(--text-body);
    font-family: inherit;
}

.khqr-logo {
    height: 28px;
    width: auto;
    object-fit: content;
    display: block;
}

.chamnar-footer-wrapper {
    background-color: var(--white-background-color);
    color: var(--text-body);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-top: 20px;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 30px 0 10px 0;
    border-top: 1px solid var(--border-color);
    font-family: 'Open Sans', sans-serif;
}

/* Inner Container */
.footer-inner {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

/* Columns */
.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center the links visually */
}

/* Right Align Last Column (Visit Us) */
.footer-col:last-child {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Headings */
.footer-heading {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 12px;
    font-weight: bold;
}

/* Text */
.footer-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 0;
}

.footer-text .chamnar-telephone,
.footer-text .chamnar-info {
    margin-right: 5px;
}

.footer-text.chamnar-order,
.footer-text.chamnar-opening {
    margin-top: 12px;
}

/* Links List (Middle Column) */
.footer-links a {
    display: block;
    color: var(--text-body);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 8px;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--brand-hover);
}

/* Browse Button */
.browse-btn {
    display: inline-block;
    background-color: var(--dark-background-color);
    color: var(--text-white) !important;
    padding: 8px 18px;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 15px;
    transition: 0.3s;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    transition: 0.3s;
}

.social-icon:hover svg {
    fill: var(--brand-color);
}

.social-icon[aria-label="Instagram"] svg {
    transform: scale(1.05);
}

.social-icon[aria-label="Telegram"] svg {
    transform: scale(1.15);
}

.social-icon[aria-label="TikTok"] svg {
    transform: scale(1.15);
}


/* Contact Links (Phone/Email) */
.contact-link {
    color: var(--link-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted var(--border-color);
}

/* Copyright */
.footer-bottom {
    text-align: center;
    margin: 20px 0;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-muted);
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 30px;
    }

    .footer-col {
        text-align: left;
    }

    .footer-col:nth-child(2),
    .footer-col:last-child {
        text-align: left;
        align-items: flex-start;
    }
}
