/* MOBILE STICKY BANNER */
.mobile-sticky-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  background: linear-gradient(135deg, #19a19f 0%, #15c9bc 100%);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 12px 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    z-index: 9999;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.mobile-sticky-banner .banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.mobile-sticky-banner .app-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.mobile-sticky-banner .app-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mobile-sticky-banner .app-text {
    flex: 1;
}

.mobile-sticky-banner .app-text .app-name {
    font-weight: 700;
    font-size: 15px;
    color: #1f2937;
    margin-bottom: 2px;
}

.mobile-sticky-banner .app-text .rating {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 1px;
}

.mobile-sticky-banner .app-text .downloads {
    font-size: 12px;
    color: #9ca3af;
}

.mobile-sticky-banner .download-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.mobile-sticky-banner .download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.mobile-sticky-banner .close-btn {
    position: absolute;
    top: -8px;
    right: 8px;
    background:  #ffffff;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    color:  linear-gradient(135deg, #19a19f 0%, #15c9bc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-sticky-banner .close-btn:hover {
    background: rgba(0,0,0,0.2);
    color: #1f2937;
}

/* DESKTOP APP DOWNLOAD CARD */
.app-download-card {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 350px;
    height: 120px;
    background: linear-gradient(135deg, #19a19f 0%, #15c9bc 100%);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(25, 161, 159, 0.3);
    padding: 16px 20px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: flex;
    align-items: center;
}

.app-download-card .card-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.app-download-card .card-flex {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
    height: 100%;
}

.app-download-card .qr-section {
    flex-shrink: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-download-card .qr-code {
    width: 85px;
    height: 85px;
    padding: 6px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.app-download-card .qr-code svg {
    width: 73px !important;
    height: 73px !important;
}

.app-download-card .qr-label {
    font-size: 11px;
    color: #ffffff;
    font-weight: 600;
}

.app-download-card .app-info-section {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.app-download-card .app-name {
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 2px;
    line-height: 1.2;
}

.app-download-card .rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1px;
}

.app-download-card .rating {
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
}

.app-download-card .reviews {
    font-size: 11px;
    color: #e0f7f5;
}

.app-download-card .downloads {
    font-size: 12px;
    color: #c7f0ed;
}

.app-download-card .app-links {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}

.app-download-card .app-links a {
    display: block;
    transition: transform 0.2s ease;
    line-height: 0;
}

.app-download-card .app-links a:hover {
    transform: translateX(4px);
}

.app-download-card .app-links img {
    width: 115px;
    height: auto;
    display: block;
}

.app-download-card .close-btn {
    position: absolute;
    top: -26px;
    right: -26px;
    background: #ffffff;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    color: #19a19f;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.app-download-card .close-btn:hover {
    background: #f5f5f5;
    transform: scale(1.1);
}

/* RESPONSIVE BEHAVIOR */
@media (max-width: 991px) {
    .mobile-sticky-banner {
        display: block;
    }
    .app-download-card {
        display: none;
    }
}

@media (min-width: 992px) {
    .mobile-sticky-banner {
        display: none;
    }
    .app-download-card {
        display: block;
    }
}

@media (max-width: 480px) {
    .mobile-sticky-banner .download-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .mobile-sticky-banner .app-icon {
        width: 42px;
        height: 42px;
    }
}
