/* App Only Content Frontend Styles */
.app-only-message {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 32px auto 32px 0;
    max-width: 800px;
}

.app-only-message header {
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    font-family: 'Perfectly Nineties Italic';
    font-weight: 400;
    font-size: 32px;
    font-style: normal;
    background-color: #f3f2ef;
    color: #b57873;
}

.apponly-message-icon {
    background-color: #b57873;
    border-radius: 100%;
    padding: 10px 10px 12px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.app-only-message img {
    height: auto;
    width: 100%;
}

.content-app-only-message {
    background: #b57873;
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.app-only-message .content-app-only-message h3.lead {
    font-size: 32px;
    text-align: center;
    color: #fff;
}

.app-only-message .content-app-only-message p.lead {
    font-size: 58px;
    font-family: 'Brother Regular';
    letter-spacing: -4px;
    line-height: 1.1;
}

.app-only-message .content-app-only-message h3.lead {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    color: #fff;
}

.content-app-only-message p {
}

.apponly-app-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    background-color: #ca9a94;
    padding: 40px 20px;
    border-radius: 0 0 8px 8px;
}

.apponly-app-buttons a {
    color: #493d35 !important;
    text-decoration: none !important;
}

.apponly-app-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #f5e4df;
    gap: 8px;
    text-transform: uppercase;
    color: #493d35;
    text-decoration: none;
    border-radius: 100px;
    font-family: 'Neue Haas Grotesk Bold';
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid #e9cec5;
    font-size: 14px;
}

.apponly-app-button span {
    transform: translateY(1px);
}

.apponly-app-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.apponly-app-button:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
    color: white;
    text-decoration: none;
}

/* Responsive design */

.display-on-mobile-only {
    display: none;
}

.display-on-desktop-only {
    display: block;
}

@media (max-width: 767.98px) {
    .display-on-mobile-only {
        display: block;
    }

    .display-on-desktop-only {
        display: none;
    }

    .app-only-message header {
        font-size: 23px;
    }

    .apponly-message-icon {
        width: 18px;
        height: 18px;
        padding: 6px 6px 8px;
    }

    .app-only-message .content-app-only-message p.lead {
        font-size: 50px;
    }

    .apponly-app-buttons {
        gap: 24px;
    }

    .apponly-app-button {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .app-only-message .content-app-only-message p {
        max-width: 562px;
        margin-inline: auto;
    }

    .app-only-message .content-app-only-message p.lead {
        max-width: 620px;
    }
}
