/* Taiwan Excellence Badge - Luxury Style */
.taiwan-excellence-badge {
    text-decoration: none;
    display: inline-flex;
}

.te-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.te-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.te-badge:hover::before {
    left: 100%;
}

.te-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
}

.te-icon {
    width: 24px;
    height: 24px;
    color: #ffd700;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.te-icon svg {
    width: 100%;
    height: 100%;
}

.te-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.te-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffd700 0%, #ffec8b 50%, #ffd700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.te-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    opacity: 0.9;
}

/* Sticky header'da badge */
.sticky-menu .te-badge {
    padding: 6px 10px;
}

.sticky-menu .te-icon {
    width: 20px;
    height: 20px;
}

.sticky-menu .te-title {
    font-size: 9px;
}

.sticky-menu .te-subtitle {
    font-size: 10px;
}

/* Desktop - badge ile menü arasında boşluk */
.logo-wrapper .taiwan-excellence-badge {
    margin-right: 20px;
    flex-shrink: 0;
}

/* 1700px - Badge küçülsün */
@media (max-width: 1700px) {
    .logo-wrapper .te-badge {
        padding: 5px 8px;
        gap: 4px;
    }

    .logo-wrapper .te-icon {
        width: 18px;
        height: 18px;
    }

    .logo-wrapper .te-title {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .logo-wrapper .te-subtitle {
        font-size: 8px;
    }
}

/* 1500px - Sadece ikon göster */
@media (max-width: 1500px) {
    .logo-wrapper .te-text {
        display: none !important;
    }

    .logo-wrapper .te-badge {
        padding: 6px;
        border-radius: 50%;
    }

    .logo-wrapper .te-icon {
        width: 20px;
        height: 20px;
    }
}

/* 1400px - Badge tamamen gizle (Katalog butonu da gizleniyor) */
@media (max-width: 1400px) {
    .logo-wrapper .taiwan-excellence-badge {
        display: none !important;
    }
}

/* Mobile responsive - header ortasında göster */
@media (max-width: 991px) {
    .logo-wrapper {
        position: static !important;
    }

    .logo-wrapper .taiwan-excellence-badge {
        display: none;
    }

    /* Mobile header için ayrı badge - logo ve hamburger arasında */
    .mobile-te-badge {
        display: inline-flex !important;
        position: fixed;
        right: 80px;
        top: 18px;
        z-index: 9999;
    }

    /* Menü açıkken badge'i gizle */
    .mean-container .mobile-te-badge,
    body.mean-nav-open .mobile-te-badge {
        display: none !important;
    }

    .mobile-te-badge .te-badge {
        padding: 5px 10px;
        border-radius: 6px;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        gap: 5px;
    }

    .mobile-te-badge .te-icon {
        width: 16px;
        height: 16px;
    }

    .mobile-te-badge .te-text {
        display: flex !important;
        flex-direction: column;
        line-height: 1;
    }

    .mobile-te-badge .te-title {
        font-size: 7px;
        letter-spacing: 0.5px;
    }

    .mobile-te-badge .te-subtitle {
        font-size: 8px;
        letter-spacing: 0.3px;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 400px) {
    .mobile-te-badge {
        right: 70px;
    }

    .mobile-te-badge .te-badge {
        padding: 4px 8px;
        gap: 4px;
    }

    .mobile-te-badge .te-icon {
        width: 14px;
        height: 14px;
    }

    .mobile-te-badge .te-title {
        font-size: 6px;
    }

    .mobile-te-badge .te-subtitle {
        font-size: 7px;
    }
}

/* Desktop'ta mobile badge gizle */
@media (min-width: 992px) {
    .mobile-te-badge {
        display: none !important;
    }
}
