.dtlf-app-button-wrap {
    display: flex;
    justify-content: flex-start;
    margin: 1rem 0 0;
}

.dtlf-app-button-wrap.is-align-center {
    justify-content: center;
}

.dtlf-app-button-wrap.is-align-right {
    justify-content: flex-end;
}

.dtlf-app-button-wrap.is-full-width,
.dtlf-app-button-wrap.is-full-width .dtlf-app-button {
    width: 100%;
}

.dtlf-app-button {
    --dtlf-pink: #ed008c;
    --dtlf-blue: #255cff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 48px;
    padding: 0.75rem 1.25rem;
    box-sizing: border-box;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(110deg, var(--dtlf-pink), var(--dtlf-blue));
    color: #ffffff !important;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    box-shadow: 0 8px 22px rgba(37, 92, 255, 0.18);
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.dtlf-app-button:hover {
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 11px 28px rgba(37, 92, 255, 0.25);
    filter: saturate(1.05);
}

.dtlf-app-button:focus-visible {
    outline: 3px solid #0b57d0;
    outline-offset: 3px;
}

.dtlf-app-button-arrow {
    font-size: 1.1em;
    transition: transform 160ms ease;
}

.dtlf-app-button:hover .dtlf-app-button-arrow {
    transform: translateX(2px);
}

.dtlf-app-button-error {
    display: inline-block;
    padding: 0.6rem 0.8rem;
    border: 1px solid #d63638;
    border-radius: 6px;
    background: #fff2f2;
    color: #8a2424;
    font-size: 0.9rem;
}

.dtlf-app-button-wrap.uses-app-store-badge .dtlf-app-button,
.dtlf-app-button-wrap.uses-app-store-badge .dtlf-app-button:hover,
.dtlf-app-button-wrap.uses-app-store-badge .dtlf-app-button:focus {
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    filter: none;
    transform: none;
    transition: none;
}

.dtlf-app-store-badge {
    display: block;
    width: auto;
    height: 48px;
    max-width: 100%;
}

.dtlf-app-button-wrap.is-full-width.uses-app-store-badge .dtlf-app-button {
    justify-content: flex-start;
}
