
/*# sourceMappingURL=custom.min.css.map */
    /* Store badges */
.store-badges .store-btn {
display:inline-flex;
align-items:center;
gap:10px;
padding:12px 18px;
border-radius:999px;
text-decoration:none;
transition:transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
font-weight:600;
line-height:1;
box-shadow:0 4px 14px rgba(0,0,0,.15);
}

.store-badges .store-btn .store-icon {
display:inline-flex;
align-items:center;
justify-content:center;
width:24px;
height:24px;
font-size:20px; /* Remix Icon size */
}

.store-badges .store-btn .store-text {
font-size:16px;
}

.store-apple {
background:#d2d9e3; /* soft gray/blue like your example */
color:#0a0a0a;
}

.store-google {
background:#0e0e0e; /* dark button */
color:#ffffff;
}

.store-badges .store-btn:hover {
transform:translateY(-2px);
box-shadow:0 8px 24px rgba(0,0,0,.25);
}

@media (max-width: 575.98px) {
.store-badges {
width:100%;
justify-content:center;
}
.store-badges .store-btn {
padding:10px 16px;
}
.store-badges .store-btn .store-text {
font-size:15px;
}
}