/* App download store buttons — light icon + label cards (home "Download the App" section) */
.tpl-store-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

.tpl-store-card {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 150px;
    padding: 7px 14px 7px 11px;
    background: #ffffff;
    border: 1px solid #e4e9f2;
    border-radius: 11px;
    text-decoration: none;
    color: #0f1d3a;
    box-shadow: 0 4px 12px rgba(7,30,87,0.08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.tpl-store-card:hover {
    transform: translateY(-2px);
    border-color: #cfe0f6;
    box-shadow: 0 8px 18px rgba(7,30,87,0.14);
    color: #0f1d3a;
    text-decoration: none;
}

.tpl-store-ico {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 21px;
    line-height: 1;
}
.tpl-store-ico--play  { color: #1bbf8a; }
.tpl-store-ico--apple { color: #111827; }
.tpl-store-ico--win   { color: #20a8ff; }

.tpl-store-txt { display: flex; flex-direction: column; line-height: 1.12; text-align: left; }
.tpl-store-small {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #8a93a6;
}
.tpl-store-name {
    font-size: 14px;
    font-weight: 700;
    color: #0f1d3a;
    margin-top: 1px;
    letter-spacing: -0.2px;
}

/* Footer — icon-only compact buttons (no text) */
.footer-part .tpl-store-card { min-width: 0; padding: 0; gap: 0; width: 46px; height: 46px; justify-content: center; border-radius: 12px; }
.footer-part .tpl-store-card .tpl-store-txt { display: none; }
.footer-part .tpl-store-ico { width: 100%; height: 100%; font-size: 23px; }

/* Responsive */
@media (max-width: 991px) {
    .tpl-store-grid { justify-content: center; }
}
@media (max-width: 480px) {
    .tpl-store-grid { gap: 8px; }
    /* grow:0 so the lone third button (Windows) doesn't stretch full-width */
    .tpl-store-card { min-width: 0; flex: 0 1 44%; padding: 7px 11px; gap: 8px; }
    .tpl-store-ico { width: 28px; height: 28px; font-size: 19px; }
    .tpl-store-name { font-size: 13px; }
}
