/* Mobile Header Customization */
@media (max-width: 991px) {

    /* 1. Flexbox Container for Reordering */
    .app-nav-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        padding-left: 15px;
        /* Ensure spacing */
        padding-right: 15px;
    }

    /* 2. Logo - Move to Left (1st) & Increase Size */
    .app-nav-header .logo {
        order: 1;
        flex-grow: 1;
        text-align: left;
        margin-left: 0;
        padding-left: 0;
        display: flex;
        align-items: center;
    }

    .app-nav-header .logo img {
        height: 100px !important;
        /* Larger logo - Increased to 100px */
        max-height: 105px !important;
        width: auto !important;
        margin-left: 0 !important;
    }

    /* 3. Top Nav (Cart) - Move to Right (2nd) */
    .app-nav-header .top-nav {
        order: 2;
        display: flex !important;
        margin-left: auto;
        margin-right: 10px;
        padding: 0;
    }

    /* 4. Hamburger Menu - Move to Right (3rd/Last) */
    .app-nav-header .navbar-toggle {
        order: 3;
        margin-left: 0;
        float: none !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* 5. Hide Clutter (Currency, Dark Mode) */
    /* Target via specific classes if available, otherwise attribute selectors */
    .nav-item-currency,
    .nav-item-brightness {
        display: none !important;
    }

    /* Fallback selectors based on inspection */
    .top-nav li.dropdown[data-currency-select] {
        display: none !important;
    }

    /* Hide specific clutter items in Top Nav on mobile */
    .top-nav li:has(a[aria-label*="Currencies"]) {
        display: none !important;
    }
}

/* =========================================================================
   Premium Pricing Features List & Wrapper Fix
   ========================================================================= */

/* Sırrı çözen kısım: İç katmanların dar kalmasını engelliyoruz */
.package .package-content,
.package .package-body {
    width: 100% !important;
    max-width: 100% !important;
}

.package-features-group {
    text-align: left;
    margin-top: 25px;
    margin-left: 0px !important;
    /* Ana kutunun dışına doğru esnetir */
    margin-right: 0px !important;
    padding: 40px !important;
    /* Rahat bir iç boşluk */
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.package-features-group .features-title {
    font-weight: 600;
    font-size: 15px !important;
    /* Belirgin başlık boyutu */
    color: #8892a0;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.premium-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-feature-list li {
    padding: 14px 0 !important;
    /* Rahat satır aralığı */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    color: #aeb9c5;
    font-size: 16px !important;
    /* Büyük font */
}

.premium-feature-list li:last-child {
    border-bottom: none;
}

.premium-feature-list li::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e64b3b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.premium-feature-list li strong {
    color: #ffffff;
    font-weight: 600;
    margin-right: 5px;
}