html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.app-download-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #5013CE, #7E3FF2);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.app-download-section-2 {
    background: linear-gradient(135deg, #5013CE, #7E3FF2);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.download-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.download-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.store-badge {
    height: 60px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

    .store-badge:hover {
        transform: scale(1.05);
        filter: brightness(1.15);
    }




/* Bottom Menu Container */
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 1000;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.bottom-menu a {
    text-decoration: none;
    color: #555;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: color 0.2s ease;
}

    .bottom-menu a svg {
        width: 24px;
        height: 24px;
        margin-bottom: 4px;
        stroke-width: 1.5;
    }

    .bottom-menu a.active {
        color: #3366FF;
    }

        .bottom-menu a.active svg {
            stroke: #3366FF;
        }

    .bottom-menu a:hover {
        color: #3366FF;
    }

@media(min-width: 768px) {
    .bottom-menu {
        display: none; /* hide on larger screens */
    }
}


/* Always mobile-like bottom sheet */
.offcanvas-bottom {
    height: 100%; /* sheet height */
    max-width: 50px; /* optional max width for desktop */
    margin: 0 auto; /* center horizontally on desktop */
    margin-left: 10px;
    margin-right: 10px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.offcanvas-header {
    border-bottom: 1px solid #ddd;
    cursor: grab;
}

.offcanvas-title {
    font-weight: 600;
}

.bottom-sheet-handle {
    width: 50px;
    height: 5px;
    background: #ccc;
    border-radius: 3px;
    margin: 0 auto;
}

/* Always show the offcanvas as mobile style */
@media (max-width: 78px) {
    .offcanvas-bottom {
        position: fixed !important;
        bottom: 0;
    }
}

