/* Mobile App Banner Styles */
.mobile-app-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background-color: #6F9BBC;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.mobile-app-banner__content {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 6px;
}

.mobile-app-banner__icon {
    flex-shrink: 0;
}

.mobile-app-banner__icon img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.mobile-app-banner__text {
    flex: 1;
    color: white;
    min-width: 0;
}

.mobile-app-banner__title {
    color: white;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px 0;
    line-height: normal;
}

.mobile-app-banner__description {
    color: white;
    font-size: 13px;
    margin: 0;
    line-height: normal;
    opacity: 0.95;
}

.mobile-app-banner__store-link {
    flex-shrink: 0;
    display: none;
    margin-left: 10px;
}

.mobile-app-banner__store-link img {
    height: 30px;
    width: auto;
    display: block;
    margin-top: 20px;
}

.mobile-app-banner__close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.mobile-app-banner__close:hover {
    opacity: 1;
}

/* Responsive adjustments */
/* @media (max-width: 400px) {
    .mobile-app-banner {
        padding: 10px;
    }

    .mobile-app-banner__icon img {
        width: 50px;
        height: 50px;
    }

    .mobile-app-banner__title {
        font-size: 13px;
    }

    .mobile-app-banner__description {
        font-size: 10px;
    }

    .mobile-app-banner__store-link img {
        height: 30px;
    }
} */

/* Add bottom padding to body when banner is shown */
body.has-mobile-banner {
    padding-bottom: 90px;
}

