 .bangalorecafe-footer-wrapper {
            background-color: #3a1515;
            position: relative;
            overflow: hidden;
            font-family: 'Nunito', 'Segoe UI', sans-serif;
        }

        /* diagonal texture lines */
        .bangalorecafe-footer-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(
                -45deg,
                transparent,
                transparent 40px,
                rgba(0,0,0,0.06) 40px,
                rgba(0,0,0,0.06) 41px
            );
            pointer-events: none;
            z-index: 0;
        }

        /* top gold accent bar */
        .bangalorecafe-footer-topbar {
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, #f4b942, #d4891a, #f4b942, transparent);
        }

        .bangalorecafe-footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        /* ── MAIN GRID ── */
        .bangalorecafe-footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1.1fr 1.1fr;
            gap: 50px;
            padding: 60px 0 50px;
        }

        /* ── LOGO COLUMN ── */
        .bangalorecafe-footer-logo-section {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .bangalorecafe-footer-logo-placeholder {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 20px;
        }

        .bangalorecafe-footer-logo {
            width: 160px;
            height: auto;
            filter: drop-shadow(0 4px 12px rgba(244,185,66,0.3));
            transition: filter 0.3s;
        }

        .bangalorecafe-footer-logo:hover {
            filter: drop-shadow(0 4px 20px rgba(244,185,66,0.6));
        }

        .bangalorecafe-footer-description {
            font-size: 14px;
            line-height: 1.85;
            color: rgba(212,212,212,0.8);
            margin-bottom: 24px;
        }

        /* rating strip */
        .bangalorecafe-footer-rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 24px;
            padding: 10px 16px;
            background: rgba(244,185,66,0.07);
            border: 1px solid rgba(244,185,66,0.2);
            border-radius: 8px;
            width: fit-content;
        }

        .bangalorecafe-footer-rating-stars {
            display: flex;
            gap: 2px;
        }

        .bangalorecafe-footer-rating-stars i {
            color: #f4b942;
            font-size: 13px;
        }

        .bangalorecafe-footer-rating-text {
            font-size: 13px;
            font-weight: 700;
            color: #f4b942;
        }

        /* social icons */
        .bangalorecafe-footer-social {
            display: flex;
            gap: 12px;
            margin-top: 4px;
        }

        .bangalorecafe-footer-social-icon {
            width: 42px;
            height: 42px;
            background-color: rgba(42,20,20,0.8);
            border: 1.5px solid rgba(244,185,66,0.4);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f4b942;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .bangalorecafe-footer-social-icon::before {
            content: '';
            position: absolute;
            inset: 0;
            background: #f4b942;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            z-index: 0;
        }

        .bangalorecafe-footer-social-icon i {
            position: relative;
            z-index: 1;
            transition: color 0.3s;
        }

        .bangalorecafe-footer-social-icon:hover::before { transform: translateY(0); }
        .bangalorecafe-footer-social-icon:hover i       { color: #3a1515; }
        .bangalorecafe-footer-social-icon:hover         { border-color: #f4b942; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(244,185,66,0.3); }

        /* ── COLUMN TITLES ── */
        .bangalorecafe-footer-title {
            font-size: 16px;
            color: #f4b942;
            font-weight: 800;
            margin-bottom: 28px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            padding-bottom: 14px;
        }

        

        /* ── QUICK LINKS ── */
        .bangalorecafe-footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .bangalorecafe-footer-link-item { margin: 0; }

        .bangalorecafe-footer-link {
            color: rgba(212,212,212,0.8);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 8px;
            position: relative;
        }

        .bangalorecafe-footer-link::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(244,185,66,0.06);
            border-radius: 8px;
            opacity: 0;
            transition: opacity 0.25s;
        }

        .bangalorecafe-footer-link:hover::before { opacity: 1; }

        .bangalorecafe-footer-link i {
            color: #f4b942;
            font-size: 10px;
            transition: transform 0.25s;
            flex-shrink: 0;
        }

        .bangalorecafe-footer-link:hover {
            color: #f4b942;
            padding-left: 16px;
        }

        .bangalorecafe-footer-link:hover i { transform: translateX(3px); }

        /* ── CONTACT ── */
        .bangalorecafe-footer-contact-item {
            display: flex;
            gap: 14px;
            margin-bottom: 18px;
            align-items: flex-start;
        }

        .bangalorecafe-footer-contact-icon {
            width: 42px;
            height: 42px;
            background: rgba(42,20,20,0.8);
            border: 1.5px solid rgba(244,185,66,0.3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f4b942;
            font-size: 15px;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .bangalorecafe-footer-contact-item:hover .bangalorecafe-footer-contact-icon {
            background: #f4b942;
            color: #3a1515;
            border-color: #f4b942;
        }

        .bangalorecafe-footer-contact-label {
            font-size: 11px;
            color: #f4b942;
            font-weight: 800;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .bangalorecafe-footer-contact-info {
            font-size: 14px;
            color: rgba(212,212,212,0.85);
            line-height: 1.6;
            font-weight: 600;
        }

        .bangalorecafe-footer-contact-info a {
            color: rgba(212,212,212,0.85);
            text-decoration: none;
            transition: color 0.2s;
        }

        .bangalorecafe-footer-contact-info a:hover { color: #f4b942; }

        /* address block */
        .bangalorecafe-footer-address {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            margin-bottom: 18px;
        }

        /* ── HOURS ── */
        .bangalorecafe-footer-hours-table {
            width: 100%;
        }

        .bangalorecafe-footer-hours-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 14px;
            border-radius: 8px;
            margin-bottom: 6px;
            transition: background 0.2s;
        }

        .bangalorecafe-footer-hours-item:hover {
            background: rgba(244,185,66,0.07);
        }

        .bangalorecafe-footer-hours-item--today {
            background: rgba(244,185,66,0.1);
            border: 1px solid rgba(244,185,66,0.25);
        }

        .bangalorecafe-footer-hours-day {
            color: rgba(212,212,212,0.8);
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .bangalorecafe-footer-hours-day i { color: #f4b942; font-size: 12px; }

        .bangalorecafe-footer-hours-time {
            color: #f4b942;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 0.5px;
        }

        /* open now badge */
        .bangalorecafe-footer-open-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            background: rgba(76,175,80,0.12);
            border: 1px solid rgba(76,175,80,0.3);
            border-radius: 100px;
            font-size: 11px;
            font-weight: 800;
            color: #81c784;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .bangalorecafe-footer-open-dot {
            width: 7px; height: 7px;
            border-radius: 50%;
            background: #4caf50;
            box-shadow: 0 0 5px #4caf50;
            animation: bcmFooterPulse 1.5s ease-in-out infinite;
        }

        /* ── DIVIDER ── */
        .bangalorecafe-footer-divider {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(244,185,66,0.35), transparent);
            margin: 0;
        }

        /* ── BOTTOM BAR ── */
        .bangalorecafe-footer-bottom {
            background-color: #2a1414;
            padding: 0;
            position: relative;
            z-index: 1;
        }

        .bangalorecafe-footer-bottom-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .bangalorecafe-footer-copyright {
            font-size: 13px;
            color: rgba(212,212,212,0.6);
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        .bangalorecafe-footer-copyright i { color: #f4b942; font-size: 12px; }

        .bangalorecafe-footer-developer {
            color: #f4b942;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .bangalorecafe-footer-developer:hover {
            color: #ffffff;
            text-shadow: 0 0 10px rgba(244,185,66,0.5);
        }

        .bangalorecafe-footer-bottom-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .bangalorecafe-footer-bottom-link {
            font-size: 12px;
            color: rgba(212,212,212,0.5);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
        }

        .bangalorecafe-footer-bottom-link:hover { color: #f4b942; }

        /* ── ANIMATIONS ── */
        @keyframes bcmFooterPulse {
            0%,100% { opacity: 1; box-shadow: 0 0 5px #4caf50; }
            50%     { opacity: 0.5; box-shadow: 0 0 2px #4caf50; }
        }

        /* ── RESPONSIVE ── */
        @media screen and (max-width: 1100px) {
            .bangalorecafe-footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            .bangalorecafe-footer-logo-section {
                grid-column: 1 / -1;
                flex-direction: row;
                gap: 40px;
                align-items: flex-start;
            }
            .bangalorecafe-footer-logo-placeholder { flex-shrink: 0; }
        }

        @media screen and (max-width: 768px) {
            .bangalorecafe-footer-container { padding: 0 24px; }
            .bangalorecafe-footer-grid {
                grid-template-columns: 1fr;
                gap: 36px;
                padding: 44px 0 40px;
            }
            .bangalorecafe-footer-logo-section {
                flex-direction: column;
                align-items: center;
                text-align: center;
                grid-column: 1;
            }
            .bangalorecafe-footer-logo-placeholder { justify-content: center; }
            .bangalorecafe-footer-title::after { left: 50%; transform: translateX(-50%); }
            .bangalorecafe-footer-social  { justify-content: center; }
            .bangalorecafe-footer-rating  { margin: 0 auto 24px; }
            .bangalorecafe-footer-contact-item { justify-content: left; text-align: left; max-width: 280px; }
            .bangalorecafe-footer-hours-item { max-width: 300px; margin-left: auto; margin-right: auto; }
            .bangalorecafe-footer-links { align-items: left; }
            .bangalorecafe-footer-bottom-inner { flex-direction: column; text-align: left; padding: 18px 24px; }
            .bangalorecafe-footer-bottom-links { justify-content: left; }
            .bangalorecafe-footer-open-badge { margin: 0 auto 16px; }
        }

        @media screen and (max-width: 480px) {
            .bangalorecafe-footer-logo { width: 130px; }
        }