@font-face {
    font-family: 'Noto Sans';
    src: url('../../assets/fonts/NotoSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* CSS Variables - Brand Colors */
:root {
    --jc-blue: #00539E;
    --jc-cyan: #00BBE3;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-gray: #333333;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overscroll-behavior: none;
}

body {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: var(--text-gray);
    background-color: var(--white);
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header with Gradient */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(90deg, var(--jc-blue) 0%, var(--jc-cyan) 100%);
}

.logo {
    height: 50px;
    width: auto;
}

/* Language Selector - White theme for gradient background */
.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .language-selector label {
        font-weight: 500;
        color: var(--white);
        font-size: 14px;
    }

    .language-selector select {
        font-family: 'Noto Sans', sans-serif;
        font-size: 14px;
        padding: 8px 12px;
        border: 2px solid var(--white);
        border-radius: 4px;
        background-color: transparent;
        color: var(--white);
        cursor: pointer;
        outline: none;
        transition: background-color 0.2s;
    }

        .language-selector select option {
            background-color: var(--jc-blue);
            color: var(--white);
        }

        .language-selector select:hover,
        .language-selector select:focus {
            background-color: rgba(255, 255, 255, 0.1);
        }

/* Brand Section - ShopperTrak Logo */
.brand-section {
    text-align: left;
    margin-bottom: 40px;
    width: 100%;
    max-width: 800px;
}

.shoppertrak-logo {
    max-width: 280px;
    height: auto;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: center;*/
    padding: 60px 40px;
}

/* Content Box - Left aligned text */
.content-box {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 800px;
    width: 100%;
}

      .content-box h1 {
        font-weight: 600;
        font-size: 30px;
        color: var(--jc-blue);
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .content-box p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--text-gray);
        margin-bottom: 16px;
    }

        .content-box p:last-of-type {
            margin-bottom: 0;
        }

/* Footer */
.footer {
    padding: 20px 40px;
    text-align: center;
    border-top: 1px solid var(--light-gray);
}

    .footer p {
        font-size: 0.85rem;
        color: #666;
    }


.brand-section h1 {
    font-size: 40px;
    color: var(--jc-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .logo {
        height: 40px;
    }

    .brand-section {
        margin-bottom: 30px;
    }

    .shoppertrak-logo {
        max-width: 220px;
    }

    .main-content {
        padding: 40px 20px;
    }

    .content-box h1 {
        font-size: 20px;
    }

    .content-box p {
        font-size: 1rem;
    }

    .footer {
        padding: 15px 20px;
    }

    .brand-section h1 {
    font-size: 30px;
    color: var(--jc-blue);
}
}

@media (max-width: 480px) {
    .header {
        padding: 12px 15px;
    }

    .logo {
        height: 35px;
    }

    .brand-section {
        margin-bottom: 20px;
    }

    .shoppertrak-logo {
        max-width: 180px;
    }

    .language-selector {
        gap: 5px;
    }

        .language-selector label {
            display: none;
        }

        .language-selector select {
            padding: 6px 10px;
            font-size: 13px;
        }

    .main-content {
        padding: 30px 15px;
    }

    .content-box h1 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .content-box p {
        font-size: 0.95rem;
    }

    .footer {
        padding: 15px;
    }

        .footer p {
            font-size: 0.8rem;
        }

        .brand-section h1 {
    font-size: 30px;
    color: var(--jc-blue);
}
}


/* Force LivePerson widget to full screen on mobile */

@media (max-width: 480px) {
    .lp_maximized.lpc_window {
        width: 100% !important;
        height: calc(100% - 60px) !important;
        top: 58px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        border-radius: 0 !important;
        border: unset !important;
        box-shadow: unset !important;
    }

    .lp_header {
        border-radius: 0 !important;
        border: unset !important;
    }

    .lpc_maximized-header__minimize-button {
        display: none;
    }
}

.loader {
    position: fixed;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: transparent;
    pointer-events: none;
    text-align: center;
}

    .loader.hidden {
        display: none;
    }


/* iOS 17+ floating keyboard suggestions workaround */
@supports (-webkit-touch-callout: none) {
    .lpc_composer.lpc_composer_maximized.lpc_mobile {
        margin-bottom: 50px !important;
    }
}