:root {
    --bg: #1f2128;
    --bg-soft: #2a2d36;
    --bg-panel: #353844;
    --bg-panel-2: #2f323c;
    --text: #f3f3f5;
    --muted: #b6b7be;
    --line: rgba(255, 255, 255, 0.08);
    --accent: #d51b1b;
    --accent-dark: #a30f0f;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #242730 0%, #202228 45%, #17191d 100%);
    color: var(--text);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.page-shell {
    width: min(var(--max-width), calc(100% - 32px));
    margin: 0 auto;
}

/* =========================================================
   Header / Navigation
   Shared across pages
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 72px;
}

.brand-logo {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    object-fit: cover;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f2f2f2;
    transition: 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
    color: #ff2d2d;
}

.book-btn {
    background: linear-gradient(180deg, #e01f1f, #b81313);
    color: white;
    padding: 13px 22px;
    border-radius: 10px;
    font-weight: 800;
    letter-spacing: 0.2px;
    box-shadow: 0 8px 22px rgba(213, 27, 27, 0.28);
}

/* =========================================================
   Shared floating chat support
   ========================================================= */
.chatbot-fixed-wrap {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-pill {
    background: white;
    color: #121212;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.92rem;
    box-shadow: 0 10px 18px rgba(0,0,0,0.16);
    white-space: nowrap;
}

.chat-bot {
    width: 76px;
    height: 76px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: linear-gradient(180deg, #ff716d, #e34a4a);
    box-shadow: 0 12px 24px rgba(227, 74, 74, 0.28);
    display: grid;
    place-items: center;
    position: relative;
    padding: 9px;
}

.chat-support-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

.chat-face {
    display: none !important;
}

/* =========================================================
   Shared footer
   ========================================================= */
.site-footer {
    margin-top: 18px;
    background: #050505;
    padding: 54px 0 64px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    flex-wrap: wrap;
}

.footer-follow {
    min-width: 240px;
}

.footer-label {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.social-icon {
    font-size: 2.3rem;
    font-weight: 800;
    color: #f5f5f5;
    opacity: 0.92;
}

.footer-partners {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    flex-wrap: wrap;
    flex: 1;
}

.partner-logo {
    width: 170px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 14px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.partner-logo:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.055);
}

.partner-logo img {
    max-width: 100%;
    max-height: 82px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-logo img[src*="footer-ea"] {
    width: 100%;
    max-height: 72px;
}

.partner-fallback {
    border: 1px dashed rgba(255,255,255,0.2);
    color: #f3f3f4;
    font-weight: 800;
    font-size: 1.1rem;
    width: 170px;
    height: 100px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    padding: 14px 18px;
}

/* =========================================================
   Shared responsive rules
   ========================================================= */
@media (max-width: 768px) {
    .nav-wrap {
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .book-btn {
        margin-left: auto;
    }

    .footer-grid,
    .footer-partners {
        justify-content: center;
    }

    .footer-follow {
        text-align: center;
    }

    .social-row {
        justify-content: center;
    }

    .partner-logo,
    .partner-fallback {
        width: 150px;
        height: 92px;
    }

    .partner-logo img {
        max-height: 74px;
    }

    .chatbot-fixed-wrap {
        right: 16px;
        bottom: 16px;
        transform: scale(0.92);
        transform-origin: bottom right;
    }
}

@media (max-width: 480px) {
    .footer-partners {
        gap: 18px;
    }

    .partner-logo,
    .partner-fallback {
        width: 135px;
        height: 84px;
        padding: 10px 12px;
    }

    .partner-logo img {
        max-height: 66px;
    }

    .chat-pill {
        display: none;
    }
}

/* Live agent yellow button update */
.chat-bot {
    background: linear-gradient(180deg, #facc15 0%, #eab308 100%) !important;
    box-shadow: 0 14px 34px rgba(250, 204, 21, 0.42) !important;
}

.chat-bot:hover {
    box-shadow: 0 18px 38px rgba(250, 204, 21, 0.55) !important;
}


/* =========================================================
   E&A Frontend Chat Satisfaction Survey
   ========================================================= */
.chat-survey-box {
    margin: 10px 0 0;
    padding: 12px;
    border-radius: 14px;
    background: rgba(15, 23, 42, .92);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #ffffff;
}

.chat-survey-form {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.chat-survey-label {
    font-size: 13px;
    font-weight: 800;
    color: #f8fafc;
}

.chat-rating-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
}

.chat-rating-row label {
    cursor: pointer;
}

.chat-rating-row input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.chat-rating-row span {
    min-height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.chat-rating-row input:checked + span {
    background: #facc15;
    border-color: #facc15;
    color: #111827;
}

.chat-survey-form select,
.chat-survey-form textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(31, 41, 55, .96);
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    outline: none;
}

.chat-survey-form select {
    min-height: 40px;
    padding: 0 10px;
}

.chat-survey-form textarea {
    min-height: 78px;
    padding: 10px;
    resize: vertical;
}

.chat-survey-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.chat-survey-actions button {
    border: 0;
    min-height: 38px;
    border-radius: 10px;
    padding: 0 14px;
    font-weight: 900;
    cursor: pointer;
}

.chat-survey-actions button[type="submit"] {
    background: #dc2626;
    color: #ffffff;
}

.chat-survey-actions button[type="submit"]:disabled {
    opacity: .65;
    cursor: not-allowed;
}

.chat-survey-skip {
    background: rgba(255, 255, 255, .10);
    color: #ffffff;
}


/* =========================================================
   2026-06-18 Frontend polish update
   - white live chat button/logo holder
   - mobile-safe survey layout
   - larger footer partner logos
   - Join us header link
   ========================================================= */
.join-us-btn {
    min-height: 48px;
    padding: 0 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .24);
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.join-us-btn:hover {
    transform: translateY(-1px);
    background: rgba(239, 68, 68, .18);
    border-color: rgba(239, 68, 68, .5);
    color: #ffffff;
}
.chat-bot,
.chatbot-fixed-wrap .chat-bot {
    background: #ffffff !important;
    border: 2px solid rgba(239, 68, 68, .22) !important;
    box-shadow: 0 14px 34px rgba(255, 255, 255, .24), 0 0 0 6px rgba(255, 255, 255, .06) !important;
}
.chat-bot:hover,
.chatbot-fixed-wrap .chat-bot:hover {
    background: #ffffff !important;
    box-shadow: 0 18px 38px rgba(255, 255, 255, .30), 0 0 0 7px rgba(239, 68, 68, .10) !important;
}
.chat-support-logo {
    filter: none !important;
}
.footer-partners {
    gap: 36px !important;
}
.partner-logo {
    width: 205px !important;
    height: 118px !important;
    padding: 16px 20px !important;
}
.partner-logo img {
    max-height: 98px !important;
}
.partner-logo img[src*="footer-ea"] {
    max-height: 90px !important;
}
.chat-window {
    overflow: hidden !important;
}
.chat-window-body {
    min-height: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}
.chat-survey-box {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}
.chat-survey-form,
.chat-survey-form * {
    box-sizing: border-box !important;
}
.chat-survey-form textarea {
    max-height: 92px !important;
    min-height: 68px !important;
}
@media (max-width: 768px) {
    .nav-wrap {
        gap: 10px !important;
    }
    .book-btn,
    .join-us-btn {
        min-height: 42px !important;
        padding: 0 14px !important;
        font-size: .86rem !important;
        border-radius: 10px !important;
    }
    .chatbot-fixed-wrap {
        right: 10px !important;
        bottom: 10px !important;
        max-width: calc(100vw - 20px) !important;
    }
    .chat-window {
        right: 0 !important;
        bottom: 72px !important;
        width: min(390px, calc(100vw - 20px)) !important;
        height: min(620px, calc(100dvh - 92px)) !important;
        max-height: calc(100dvh - 92px) !important;
        border-radius: 16px !important;
    }
    .chat-window-body {
        padding: 9px !important;
        gap: 7px !important;
    }
    .chat-survey-box {
        padding: 10px !important;
        margin: 6px 0 0 !important;
    }
    .chat-rating-row {
        gap: 5px !important;
    }
    .chat-rating-row span {
        min-height: 30px !important;
        font-size: 13px !important;
    }
    .chat-survey-label {
        font-size: 12px !important;
        line-height: 1.25 !important;
    }
    .chat-survey-form {
        gap: 7px !important;
    }
    .chat-survey-form select {
        min-height: 36px !important;
        font-size: 12px !important;
    }
    .chat-survey-form textarea {
        min-height: 52px !important;
        max-height: 70px !important;
        font-size: 12px !important;
        resize: none !important;
    }
    .chat-survey-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 7px !important;
    }
    .chat-survey-actions button {
        width: 100% !important;
        min-height: 34px !important;
        padding: 0 10px !important;
        font-size: 12px !important;
    }
    .partner-logo {
        width: 180px !important;
        height: 105px !important;
    }
}
@media (max-width: 520px) {
    .nav-wrap {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .brand {
        order: 1;
    }
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    .book-btn {
        order: 2;
    }
    .join-us-btn {
        order: 2;
    }
    .chat-window {
        width: calc(100vw - 16px) !important;
        height: min(600px, calc(100dvh - 86px)) !important;
        max-height: calc(100dvh - 86px) !important;
    }
    .chat-pill {
        max-width: calc(100vw - 94px) !important;
    }
    .footer-partners {
        justify-content: center !important;
        gap: 18px !important;
    }
    .partner-logo {
        width: min(210px, 86vw) !important;
        height: 112px !important;
    }
}


/* =========================================================
   E&A Responsive UX + Security-Friendly Form Sizing
   ========================================================= */
img, iframe, video {
    max-width: 100%;
}

input, select, textarea, button {
    font-size: 16px;
}

textarea {
    max-height: 260px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-wrap {
    gap: 16px;
}

.join-us-btn {
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .page-shell,
    .booking-shell,
    .payment-shell,
    .schedule-shell,
    .contact-shell,
    .faq-shell,
    .find-shop-shell,
    .about-shell {
        width: min(100% - 24px, 980px) !important;
    }

    .nav-wrap {
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 12px;
    }

    .brand {
        margin-right: auto;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 4px;
        gap: 18px;
        scrollbar-width: thin;
    }

    .book-btn,
    .join-us-btn {
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 760px) {
    body {
        overflow-x: hidden;
    }

    .site-header {
        position: sticky;
    }

    .brand-logo {
        max-width: 58px;
        height: auto;
    }

    .nav-wrap {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 8px;
    }

    .book-btn {
        min-width: 104px;
        padding: 11px 15px;
        font-size: .92rem;
    }

    .join-us-btn {
        grid-column: 3;
        min-width: 88px;
        padding: 10px 12px;
        font-size: .88rem;
    }

    .nav-links {
        grid-column: 1 / -1;
        justify-content: flex-start;
        gap: 14px;
        font-size: .92rem;
        padding: 2px 0 6px;
    }

    .nav-links a {
        padding: 8px 2px;
    }

    .hero-card,
    .booking-panel,
    .payment-panel,
    .schedule-panel,
    .contact-panel,
    .faq-panel,
    .find-shop-panel,
    .about-panel {
        border-radius: 16px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .footer-brand-row img,
    .site-footer img {
        max-height: 58px !important;
    }
}

@media (max-width: 520px) {
    .nav-wrap {
        grid-template-columns: 54px 1fr;
    }

    .book-btn,
    .join-us-btn {
        width: 100%;
    }

    .book-btn {
        grid-column: 2;
        grid-row: 1;
    }

    .join-us-btn {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .nav-links {
        grid-row: 3;
        font-size: .86rem;
    }

    .chatbot-fixed-wrap,
    #eaChatWidget {
        right: 12px !important;
        bottom: 12px !important;
    }

    .chatbot-window,
    .chat-window,
    #eaChatWindow {
        width: min(94vw, 360px) !important;
        max-height: 72vh !important;
        right: 0 !important;
        bottom: 74px !important;
    }

    .chat-survey-form textarea,
    #eaChatSurveyForm textarea {
        min-height: 84px !important;
        max-height: 120px !important;
    }
}

/* Public footer social links - show only active E&A Facebook page */
.social-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}


/* =========================================================
   2026-06-26 footer partner alignment + chat option redesign
   ========================================================= */
.footer-partners {
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 22px !important;
}

.footer-partners .partner-logo,
.footer-partners .partner-fallback {
    flex: 0 0 178px !important;
    width: 178px !important;
    height: 104px !important;
    padding: 14px 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.footer-partners .partner-logo img {
    max-width: 100% !important;
    max-height: 86px !important;
    object-fit: contain !important;
}

.footer-partners .partner-logo img[src*="footer-ea"] {
    max-height: 76px !important;
}

.footer-partners .partner-logo img[src*="footer-igen"] {
    max-height: 76px !important;
}

.chat-inline-options {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin: 4px 0 8px !important;
    align-self: stretch !important;
}

.chat-inline-options .chat-option-btn {
    width: 100% !important;
    text-align: left !important;
    border-radius: 14px !important;
    padding: 10px 12px !important;
    background: #1f2937 !important;
    color: #f8fafc !important;
    border: 1px solid rgba(255,255,255,.12) !important;
}

.chat-inline-options .chat-option-btn.connect-agent {
    background: rgba(220, 38, 38, .16) !important;
    border-color: rgba(248, 113, 113, .48) !important;
    color: #fecaca !important;
    font-weight: 900 !important;
}

.chat-options {
    display: none !important;
    max-height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    border: 0 !important;
}

.chat-agent-box.is-visible {
    display: block !important;
}

@media (max-width: 1180px) {
    .footer-grid {
        justify-content: center !important;
    }

    .footer-partners {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
}

@media (min-width: 1181px) {
    .footer-partners {
        min-width: 778px !important;
    }
}

@media (max-width: 640px) {
    .footer-partners {
        flex-wrap: wrap !important;
        gap: 14px !important;
    }

    .footer-partners .partner-logo,
    .footer-partners .partner-fallback {
        flex-basis: min(180px, 42vw) !important;
        width: min(180px, 42vw) !important;
        height: 98px !important;
    }
}

/* =========================================================
   Shared redesigned footer
   ========================================================= */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-footer {
    margin-top: 34px;
    background:
        radial-gradient(circle at 14% 0%, rgba(213, 27, 27, 0.18), transparent 35%),
        linear-gradient(180deg, #080808 0%, #030303 100%) !important;
    padding: clamp(36px, 5vw, 60px) 0 !important;
}

.footer-grid.footer-grid-redesign {
    display: grid !important;
    grid-template-columns: minmax(260px, 1fr) minmax(150px, 0.45fr) minmax(320px, 0.95fr) !important;
    grid-template-areas:
        "brand links newsletter"
        "social partners partners";
    gap: 30px 36px !important;
    align-items: start !important;
}

.footer-brand-summary {
    grid-area: brand;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    min-width: 0;
}

.footer-main-logo {
    width: 62px;
    height: 62px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    overflow: hidden;
}

.footer-main-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand-copy {
    min-width: 0;
}

.footer-brand-summary h2,
.footer-link-column h3,
.footer-newsletter h3,
.footer-social h3 {
    margin: 0 0 12px !important;
    color: #ffffff !important;
    font-size: clamp(1.02rem, 1.65vw, 1.24rem) !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
}

.footer-brand-summary p,
.footer-newsletter p {
    margin: 0 !important;
    color: #d2d6df !important;
    font-size: 0.96rem !important;
    line-height: 1.65 !important;
    overflow-wrap: anywhere;
}

.footer-link-column {
    grid-area: links;
    display: grid;
    gap: 10px;
}

.footer-link-column a {
    color: #f2f4f8 !important;
    font-size: 0.96rem;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease;
}

.footer-link-column a:hover {
    color: #ff4d4d !important;
    transform: translateX(2px);
}

.footer-newsletter {
    grid-area: newsletter;
    min-width: 0;
}

.footer-newsletter-form {
    margin-top: 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    box-shadow: 0 16px 34px rgba(0,0,0,0.22);
}

.footer-newsletter-form input {
    min-width: 0;
    width: 100%;
    min-height: 48px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #ffffff;
    padding: 0 15px;
    font-family: inherit;
    font-size: 0.95rem;
}

.footer-newsletter-form input::placeholder {
    color: #aab0ba;
}

.footer-newsletter-form button {
    min-height: 48px;
    border: 0;
    background: linear-gradient(180deg, #ef2626, #b70f0f);
    color: #ffffff;
    padding: 0 18px;
    font-family: inherit;
    font-weight: 900;
    cursor: pointer;
}

.footer-social {
    grid-area: social;
}

.footer-social .social-row {
    justify-content: flex-start;
}

.footer-social .social-icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 999px !important;
    display: inline-grid !important;
    place-items: center !important;
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    font-size: 1.45rem !important;
}

.footer-grid-redesign .footer-partners {
    grid-area: partners;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(142px, 1fr)) !important;
    min-width: 0 !important;
    width: 100% !important;
    gap: 14px !important;
    justify-content: stretch !important;
    align-items: stretch !important;
}

.footer-grid-redesign .partner-logo,
.footer-grid-redesign .partner-fallback {
    width: auto !important;
    height: 122px !important;
    min-height: 122px !important;
    flex: initial !important;
    padding: 10px 14px !important;
    border-radius: 12px !important;
    background: linear-gradient(180deg, #ffffff, #f2f3f6) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04), 0 12px 24px rgba(0,0,0,0.18);
    display: grid !important;
    place-items: center !important;
}

.footer-grid-redesign .partner-logo a {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.footer-grid-redesign .partner-logo img {
    width: auto !important;
    height: auto !important;
    max-width: 96% !important;
    max-height: 102px !important;
    object-fit: contain !important;
}

@media (max-width: 1100px) {
    .footer-grid.footer-grid-redesign {
        grid-template-columns: 1fr 1fr !important;
        grid-template-areas:
            "brand newsletter"
            "links social"
            "partners partners";
    }
}

@media (max-width: 700px) {
    .site-footer {
        padding-bottom: 112px !important;
    }

    .chatbot-fixed-wrap .chat-pill {
        display: none !important;
    }

    .footer-grid.footer-grid-redesign {
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "brand"
            "newsletter"
            "links"
            "social"
            "partners";
        gap: 24px !important;
    }

    .footer-brand-summary {
        grid-template-columns: 1fr;
        justify-items: start;
        text-align: left;
    }

    .footer-newsletter-form {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }

    .footer-newsletter-form button {
        width: 100%;
    }

    .footer-grid-redesign .footer-partners {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .footer-grid-redesign .partner-logo,
    .footer-grid-redesign .partner-fallback {
        height: 108px !important;
        min-height: 108px !important;
        padding: 10px !important;
    }

    .footer-grid-redesign .partner-logo img {
        max-height: 86px !important;
    }
}
