/* ======================================================
   ALL NAIJA MARKET — ANDROID APP DOWNLOAD BUTTON
   Header version
====================================================== */

.anm-download-app-btn {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 1 auto;

    min-width: 190px;
    height: 32px;

    margin: 0;
    padding: 3px 8px;
    gap: 6px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;

    background: linear-gradient(
        135deg,
        #075e45 0%,
        #087f5b 55%,
        #0a9b68 100%
    );

    color: #ffffff;
    text-decoration: none;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}


/* ======================================================
   ICON
====================================================== */

.anm-download-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    font-size: 17px;
    line-height: 1;
}


/* ======================================================
   TEXT
====================================================== */

.anm-download-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;

    line-height: 1.05;
    white-space: nowrap;

    color: #ffffff;
    text-shadow: none;
}

.anm-download-text strong {
    display: block;

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;
    line-height: 1.05;

    letter-spacing: 0;
}

.anm-download-text small {
    display: block;

    margin-top: 2px;

    color: rgba(255, 255, 255, 0.90);

    font-size: 8px;
    font-weight: 600;
    line-height: 1;

    letter-spacing: 0;
}


/* ======================================================
   NEW BADGE
====================================================== */

.anm-download-badge {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    margin-left: 2px;
    padding: 3px 5px;

    border-radius: 999px;

    background: #ffffff;
    color: #075e45;

    font-size: 7px;
    font-weight: 900;
    line-height: 1;

    letter-spacing: 0.3px;

    box-shadow: none;
    text-shadow: none;
}


/* ======================================================
   HOVER / ACTIVE
====================================================== */

.anm-download-app-btn:hover {
    color: #ffffff;

    filter: brightness(1.05);

    transform: translateY(-1px);

    box-shadow:
        0 5px 12px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.anm-download-app-btn:active {
    transform: scale(0.98);
}


/* ======================================================
   SUBTLE SHINE
====================================================== */

.anm-download-app-btn::before {
    content: "";

    position: absolute;

    top: -100%;
    left: -40%;

    width: 22%;
    height: 300%;

    pointer-events: none;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    );

    transform: rotate(25deg);

    animation: anmDownloadShine 5s infinite;
}

@keyframes anmDownloadShine {

    0% {
        left: -40%;
    }

    30% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}


/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 640px) {

    .anm-download-app-btn {
        min-width: 170px;
        height: 32px;

        padding: 3px 6px;
        gap: 4px;
    }

    .anm-download-icon {
        font-size: 15px;
    }

    .anm-download-text strong {
        font-size: 10px;
    }

    .anm-download-text small {
        font-size: 7px;
    }

    .anm-download-badge {
        padding: 3px 4px;
        font-size: 6px;
    }
}


/* ======================================================
   VERY SMALL SCREENS
====================================================== */

@media (max-width: 380px) {

    .anm-download-app-btn {
        min-width: 150px;

        padding-left: 5px;
        padding-right: 5px;
        gap: 3px;
    }

    .anm-download-icon {
        font-size: 14px;
    }

    .anm-download-text strong {
        font-size: 9px;
    }

    .anm-download-text small {
        font-size: 6.5px;
    }

    .anm-download-badge {
        display: none;
    }
}


/* ======================================================
   REDUCED MOTION
====================================================== */

@media (prefers-reduced-motion: reduce) {

    .anm-download-app-btn {
        transition: none;
    }

    .anm-download-app-btn::before {
        animation: none;
    }
}