/********** Template CSS **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.ff-secondary {
    font-family: 'Pacifico', cursive;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 20px;
    bottom: 100px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-size: 15px;
    color: var(--light) !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-dark .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }

    .navbar-dark .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: transparent !important;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--dark) !important;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-header img {
    animation: none;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Food Menu ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: calc(100% - 38px);
    transition: .5s;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item:hover {
    height: 100%;
}

.team-item .btn {
    border-radius: 38px 38px 0 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* Mobil İletişim Butonları */
.mobile-contact-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: #fff;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.contact-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    text-decoration: none;
    color: #6c757d;
    transition: all 0.3s ease;
    border-right: 1px solid #e9ecef;
}

.contact-btn:last-child {
    border-right: none;
}

.contact-btn:hover {
    color: #fff;
    text-decoration: none;
}

.contact-btn i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.contact-btn span {
    font-size: 0.8rem;
    font-weight: 500;
}

.whatsapp-btn:hover {
    background-color: #25d366;
}

.phone-btn:hover {
    background-color: #007bff;
}

/* Desktop'ta gizle */
@media (min-width: 768px) {
    .mobile-contact-buttons {
        display: none;
    }
}

/* Mobilde footer alt boşluğu */
@media (max-width: 767px) {
    .footer {
        padding-bottom: 100px !important;
    }
}

/* ===== MOBİL UYGULAMA OPTİMİZASYONLARI ===== */

/* Touch-friendly button sizes */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .btn-sm {
        min-height: 40px;
        min-width: 40px;
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .btn-lg {
        min-height: 50px;
        min-width: 50px;
        padding: 15px 25px;
        font-size: 18px;
    }
}

/* Mobil navigasyon iyileştirmeleri */
@media (max-width: 991.98px) {
    .navbar-toggler {
        border: none;
        padding: 8px;
        font-size: 1.2rem;
    }
    
    .navbar-collapse {
        background: rgba(15, 23, 43, 0.95);
        margin-top: 10px;
        border-radius: 8px;
        padding: 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}

/* Mobil menü kartları */
@media (max-width: 768px) {
    .col-lg-6 {
        margin-bottom: 20px;
    }
    
    .d-flex.align-items-center {
        flex-direction: column;
        text-align: center;
    }
    
    .d-flex.align-items-center img {
        width: 200px !important;
        height: 160px !important;
        margin-bottom: 15px !important;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .w-100.d-flex.flex-column.text-start.ps-4 {
        padding-left: 0 !important;
        text-align: center;
    }
    
    .w-100.d-flex.flex-column.text-start.ps-4 h5 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .w-100.d-flex.flex-column.text-start.ps-4 small {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
}

/* Mobil kategori navigasyonu */
@media (max-width: 768px) {
    .nav-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
        justify-content: center;
    }
    
    .nav-pills .nav-item {
        flex: 0 0 calc(50% - 4px);
        max-width: calc(50% - 4px);
    }
    
    .nav-pills .nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 12px 8px;
        border-radius: 12px;
        background: #f8f9fa;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        text-align: center;
        min-height: 75px;
        justify-content: center;
        width: 100%;
    }
    
    .nav-pills .nav-link.active {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(254, 161, 22, 0.3);
    }
    
    .nav-pills .nav-link:hover {
        background: var(--light);
        border-color: var(--primary);
        transform: translateY(-1px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-pills .nav-link i {
        font-size: 1.1rem;
        margin-bottom: 4px;
        margin-right: 0;
    }
    
    .nav-pills .nav-link h6 {
        margin: 0;
        font-size: 0.8rem;
        font-weight: 600;
        line-height: 1.2;
    }
    
    /* Çok küçük ekranlar için tek sütun */
    @media (max-width: 480px) {
        .nav-pills .nav-item {
            flex: 0 0 100%;
            max-width: 100%;
        }
        
        .nav-pills .nav-link {
            padding: 15px 12px;
            min-height: 70px;
        }
        
        .nav-pills .nav-link i {
            font-size: 1rem;
        }
        
        .nav-pills .nav-link h6 {
            font-size: 0.85rem;
        }
    }
}

/* Mobil sepet butonu iyileştirmeleri */
@media (max-width: 768px) {
    .floating-cart {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cart .btn {
        width: 70px;
        height: 70px;
        font-size: 1.4rem;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    }
    
    .floating-cart .badge {
        font-size: 0.8rem;
        min-width: 24px;
        height: 24px;
        font-weight: 600;
    }
}

/* Mobil form iyileştirmeleri */
@media (max-width: 768px) {
    .form-control {
        font-size: 16px; /* iOS zoom önleme */
        padding: 12px 15px;
        border-radius: 8px;
    }
    
    .form-label {
        font-weight: 600;
        margin-bottom: 8px;
        font-size: 14px;
    }
    
    .card {
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }
    
    .card-header {
        border-radius: 12px 12px 0 0;
        padding: 20px;
        background: linear-gradient(135deg, var(--primary), #ff8c00);
        color: white;
    }
    
    .card-body {
        padding: 25px;
    }
}

/* Mobil toast mesajları */
@media (max-width: 768px) {
    .toast-container {
        top: 20px !important;
        left: 20px !important;
        right: 20px !important;
        transform: none !important;
    }
    
    .toast {
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    
    .toast-body {
        padding: 15px 20px;
        font-size: 14px;
    }
}

/* Mobil loading animasyonları */
@media (max-width: 768px) {
    .spinner-border {
        width: 2rem;
        height: 2rem;
    }
    
    .btn .fa-spinner {
        font-size: 1.2rem;
    }
}

/* Mobil kategori başlıkları */
@media (max-width: 768px) {
    .category h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: center;
        color: var(--dark);
        position: relative;
        padding-bottom: 10px;
    }
    
    .category h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: var(--primary);
        border-radius: 2px;
    }
}

/* Mobil hero section */
@media (max-width: 768px) {
    .hero-header {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-header h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-header h5 {
        font-size: 1rem;
    }
}

/* Mobil container padding */
@media (max-width: 768px) {
    .container-xxl {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* Mobil scroll behavior */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }
    
    body {
        -webkit-overflow-scrolling: touch;
    }
}

/* Mobil safe area support */
@supports (padding: max(0px)) {
    @media (max-width: 768px) {
        .navbar {
            padding-left: max(15px, env(safe-area-inset-left));
            padding-right: max(15px, env(safe-area-inset-right));
        }
        
        .floating-cart {
            bottom: max(20px, env(safe-area-inset-bottom) + 10px);
        }
        
        .pwa-install-banner {
            padding-bottom: max(15px, env(safe-area-inset-bottom));
        }
    }
}

/* Mobil haptic feedback simulation */
@media (max-width: 768px) {
    .btn:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .nav-link:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* Mobil dark mode support */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
    .card {
        background-color: #2d3748;
        border-color: #4a5568;
        color: #e2e8f0;
    }
    
    .form-control {
        background-color: #4a5568;
        border-color: #718096;
        color: #e2e8f0;
    }
    
    .form-control:focus {
        background-color: #4a5568;
        border-color: var(--primary);
        color: #e2e8f0;
    }
    
    .nav-pills .nav-link {
        background-color: #4a5568;
        color: #e2e8f0;
    }
    
    .nav-pills .nav-link.active {
        background-color: var(--primary);
        color: white;
    }
}

/* ===== PERFORMANS OPTİMİZASYONLARI ===== */

/* Lazy loading için placeholder */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy.loaded {
    opacity: 1;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    will-change: transform;
}

/* Smooth scrolling optimization */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* GPU acceleration for animations */
.btn, .nav-link, .card, .floating-cart .btn {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Critical resource hints */
.preload {
    font-display: swap;
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
    /* Reduce repaints */
    .btn, .nav-link, .card {
        contain: layout style paint;
    }
    
    /* Optimize scrolling */
    .container-xxl {
        contain: layout;
    }
    
    /* Reduce layout shifts */
    .d-flex.align-items-center img {
        aspect-ratio: 175/140;
        object-fit: cover;
    }
    
    /* Optimize animations */
    .btn:active {
        transform: scale(0.98) translateZ(0);
    }
    
    /* Memory optimization */
    .category {
        contain: layout style;
    }
}

/* Network-aware loading */
@media (prefers-reduced-data: reduce) {
    .lazy {
        /* Skip lazy loading on slow connections */
        opacity: 1;
    }
    
    img[data-src] {
        /* Load images immediately on slow connections */
        src: attr(data-src);
    }
}

/* Battery optimization */
@media (prefers-reduced-motion: reduce) {
    .floating-cart .btn:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-pills .nav-link:hover {
        transform: none;
    }
}

/* Touch optimization */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .nav-link:hover {
        transform: none;
    }
    
    .card:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }
    
    .card {
        border: 2px solid #000;
    }
    
    .nav-pills .nav-link {
        border: 2px solid currentColor;
    }
}

/* Print optimization */
@media print {
    .floating-cart,
    .mobile-contact-buttons,
    .pwa-install-banner,
    .mobile-toast {
        display: none !important;
    }
    
    .container-xxl {
        max-width: none;
        padding: 0;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #000;
    }
}

/* ===== UYGULAMA İNDİRME SEKMESİ ===== */

#app-install-section {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-install-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    max-width: 400px;
    margin: 0 auto;
    transition: all 0.3s ease;
    animation: slideInUp 0.5s ease-out;
}

.app-install-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.app-install-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.app-install-icon {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.app-install-text {
    flex: 1;
    color: white;
}

.app-install-text h6 {
    color: white;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

.app-install-text small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.app-install-btn {
    background: var(--primary);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.app-install-btn:hover {
    background: #e8910f;
    color: white;
    transform: scale(1.05);
}

.app-install-btn:active {
    transform: scale(0.95);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil uygulama indirme sekmesi */
@media (max-width: 768px) {
    .app-install-card {
        margin: 0 20px;
        padding: 12px 16px;
    }
    
    .app-install-content {
        gap: 12px;
    }
    
    .app-install-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .app-install-text h6 {
        font-size: 0.95rem;
    }
    
    .app-install-text small {
        font-size: 0.8rem;
    }
    
    .app-install-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* Standalone mode'da gizle */
@media (display-mode: standalone) {
    .app-install-card {
        display: none !important;
    }
}

/* iOS Safari için özel stil */
@supports (-webkit-touch-callout: none) {
    .app-install-card {
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.25);
    }
}

/* Android Chrome için özel stil */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .app-install-card {
        backdrop-filter: blur(15px);
    }
}