/* =========================================================
   TipMan Mobile Banner Block
   ========================================================= */

.tipman-mobile-banner {
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpolygon points='60,10 110,35 110,85 60,110 10,85 10,35' fill='none' stroke='%234caf4f22' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 140px 140px;
    padding: 80px 40px;
}

.tipman-mobile-banner--has-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tipman-mobile-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---- Content (left) ---- */
.tipman-mobile-banner__content {
    flex: 1 1 45%;
    max-width: 560px;
}

.tipman-mobile-banner__heading {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    color: #111111;
    margin: 0 0 20px;
}

.tipman-mobile-banner__text {
    font-size: 1rem;
    line-height: 1.65;
    color: #444444;
    margin: 0 0 36px;
    max-width: 420px;
}

/* ---- Buttons ---- */
.tipman-mobile-banner__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tipman-mobile-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

.tipman-mobile-banner__btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.tipman-mobile-banner__btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: currentColor;
}

/* Green – Android / Playstore */
.tipman-mobile-banner__btn--android {
    background-color: #4caf4f;
    color: #ffffff;
}

/* Dark – iOS / App Store */
.tipman-mobile-banner__btn--ios {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* ---- Media (right) ---- */
.tipman-mobile-banner__media {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.tipman-mobile-banner__image {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .tipman-mobile-banner {
        padding: 60px 24px;
    }

    .tipman-mobile-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .tipman-mobile-banner__content {
        max-width: 100%;
    }

    .tipman-mobile-banner__text {
        max-width: 100%;
    }

    .tipman-mobile-banner__buttons {
        justify-content: center;
    }

    .tipman-mobile-banner__media {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .tipman-mobile-banner__btn {
        width: 100%;
        justify-content: center;
    }
}
