body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1c24;
    overflow-x: hidden;
}

/* Tab geçiş animasyonları */
.tabs-container {
    position: relative;
    min-height: 300px; /* Minimum yükseklik */
}

.tab-content {
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative;
    width: 100%;
}

.tab-content.hidden {
    opacity: 0;
    transform: translateY(10px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: -1;
}

.tab-content:not(.hidden) {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

/* Ürün kartları için animasyon */
.product-card {
    animation: none;
}

.tab-content:not(.hidden) .product-card {
    animation: fadeInUp 0.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ürün kartları için sıralı animasyon */
.tab-content:not(.hidden) .product-card:nth-child(1) { animation-delay: 0.05s; }
.tab-content:not(.hidden) .product-card:nth-child(2) { animation-delay: 0.1s; }
.tab-content:not(.hidden) .product-card:nth-child(3) { animation-delay: 0.15s; }
.tab-content:not(.hidden) .product-card:nth-child(4) { animation-delay: 0.2s; }
.tab-content:not(.hidden) .product-card:nth-child(5) { animation-delay: 0.25s; }
.tab-content:not(.hidden) .product-card:nth-child(6) { animation-delay: 0.3s; }

.gradient-bg {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
}
.card-hover:hover {
    transform: translateY(-4px);
    transition: all 0.3s ease;
}
.bg-primary {
    background-color: #9333EA;
}
.bg-primary:hover {
    background-color: #7E22CE;
}
/* Scrollbar gizleme */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Ürün kartları stilleri */
.product-card {
    background: rgba(31, 41, 55, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px -3px rgba(0, 0, 0, 0.3);
    height: auto;
    min-height: 320px;
    position: relative;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

@media (max-width: 640px) {
    .product-card {
        height: auto;
        min-height: 280px;
    }
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05) 50%,
        transparent
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    transform: scale(0.5);
    pointer-events: none;
}

.product-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px -5px rgba(0, 0, 0, 0.3),
        0 0 20px 0 rgba(147, 51, 234, 0.2);
    background: rgba(31, 41, 55, 0.6);
}

/* Ürün resmi */
.product-card .product-image {
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

@media (max-width: 640px) {
    .product-card .product-image {
        height: 180px;
    }
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

/* Ürün bilgi bölümü */
.product-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Satıcı avatarı */
.seller-avatar {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.product-card:hover .seller-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.4);
}

/* Platform ikonları */
.platform-icon-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    height: 1.5rem;
    width: 1.5rem;
    background-color: #4A5568;
}

.platform-icon-bg-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.platform-icon-bg-tiktok {
    background: linear-gradient(45deg, #25F4EE 0%, #FE2C55 50%, #000000 100%);
}

.platform-icon-bg-telegram {
    background: #0088cc;
}

.platform-icon-bg-steam {
    background: #1b2838;
}

.product-card:hover .platform-icon-bg {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

/* Ürün başlığı */
.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #d1d5db;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: white;
}

/* Fiyat etiketi */
.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    margin-top: auto;
}

.product-card:hover .price-tag {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.product-price {
    font-weight: 600;
    color: white;
}

/* Satın Al butonu */
.buy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #a855f7, #7e22ce);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(126, 34, 206, 0.3);
    position: relative;
    overflow: hidden;
}

.buy-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.buy-button:hover::after {
    left: 100%;
}

.buy-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #c026d3, #a855f7);
    box-shadow: 0 8px 20px rgba(126, 34, 206, 0.4);
}

.buy-button i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.buy-button:hover i {
    transform: translateX(3px);
}

/* İndirim etiketi */
.popular-label {
    position: absolute;
    top: 1rem;
    left: -0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
    border-radius: 0 8px 8px 0;
    color: white;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .popular-label {
    transform: translateY(0);
    opacity: 1;
}

/* Oyun logoları için */
.game-logo {
    height: 24px;
    filter: grayscale(80%) brightness(1.5);
    opacity: 0.7;
    transition: filter 0.2s, opacity 0.2s;
}
.game-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Özellik kartları için stil */
.feature-card {
    background: rgba(30, 32, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px -15px rgba(0, 0, 0, 0.3),
        0 0 20px 0px rgba(147, 51, 234, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.vitrin-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.vitrin-card {
    background: rgba(31, 41, 55, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    isolation: isolate;
    z-index: 1;
}

.vitrin-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.06),
        transparent 40%
    );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.vitrin-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.05) 30%,
        transparent 50%
    );
    z-index: -2;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s;
}

.vitrin-card:hover::before {
    opacity: 1;
}

.vitrin-card:hover::after {
    opacity: 1;
}

.vitrin-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px -5px rgba(0, 0, 0, 0.3),
        0 0 20px 0 rgba(147, 51, 234, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    background: rgba(31, 41, 55, 0.6);
}

.vitrin-image {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    isolation: isolate;
}

.vitrin-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 70%,
        rgba(0, 0, 0, 0.5)
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s;
}

.vitrin-card:hover .vitrin-image::before {
    opacity: 1;
}

.vitrin-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.vitrin-card:hover .vitrin-image img {
    transform: scale(1.08);
}

.vitrin-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.vitrin-card:hover .vitrin-title {
    color: white;
}

.vitrin-price {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.vitrin-card:hover .vitrin-price {
    transform: scale(1.1);
    color: white;
}

.vitrin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #a855f7, #7e22ce);
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.vitrin-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.vitrin-card:hover .vitrin-button::before {
    left: 100%;
}

.vitrin-button:hover {
    background: linear-gradient(135deg, #c026d3, #a855f7);
    transform: translateY(-2px);
    box-shadow: 
        0 10px 20px -5px rgba(168, 85, 247, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.vitrin-button i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.vitrin-button:hover i {
    transform: translateX(4px);
}

.vitrin-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 3;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.vitrin-card:hover .vitrin-badge {
    transform: translateY(0);
    opacity: 1;
}

@keyframes shine {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Navigasyon stilleri */
.vitrin-container {
    background-color: #1e1e2d;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 640px) {
    .vitrin-container {
        flex-direction: row;
    }
}

/* Vitrin butonları için modern tasarım */
.nav-item {
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

/* Mobil cihazlar için vitrin butonları */
@media (max-width: 639px) {
    .nav-item {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
}

.nav-item:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
}

.vitrin-active {
    color: white;
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: transparent !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.vitrin-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: white;
    border-radius: 2px;
}

.mobile-nav-active-indicator {
    width: 30px;
    height: 3px;
    background: linear-gradient(to right, #a855f7, #7e22ce);
    border-radius: 0 0 3px 3px;
}

/* Sepet badge animasyonu */
.mobile-nav-badge {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Aktif menü öğesi için glow efekti */
.mobile-nav-item.active i {
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

/* Kategori paneli */
.mobile-category-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(18, 20, 24, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    max-height: 85vh;
    overflow-y: auto;
    height: auto;
    border-radius: 20px 20px 0 0;
}

.mobile-category-panel.active {
    transform: translateY(0);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

@media (min-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 640px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

.category-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 12px;
}

.category-item:hover {
    background: rgba(168, 85, 247, 0.15);
    transform: translateY(-3px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.3);
}

.category-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background-size: 200% 200%;
    background-position: 0% 0%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-item:hover .category-icon {
    background-position: 100% 100%;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.category-name {
    color: white;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-grow: 1;
}

.category-item:hover .category-name {
    transform: translateX(3px);
}

.category-item i {
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.category-item:hover i {
    transform: scale(1.2);
}

/* Chat Butonları İçin Stil */
.bot-button {
    display: inline-block;
    background-color: rgba(168, 85, 247, 0.2);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 6px;
    padding: 4px 8px;
    margin: 4px 4px 4px 0;
    font-size: 0.85em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bot-button:hover {
    background-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-2px);
}

/* Yazıyor göstergesi için stil */
.typing-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 40px;
    padding: 8px 0;
}

.typing-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(168, 85, 247, 0.6);
    animation: typing-animation 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing-animation {
    0%, 80%, 100% { 
        transform: scale(0.6);
        opacity: 0.4;
    }
    40% { 
        transform: scale(1);
        opacity: 1;
    }
}

/* Chat widget aktif düğme için ek stil */
.mobile-nav-item:has(i.ri-customer-service-2-fill).active {
    color: #a855f7 !important;
}

.mobile-nav-item:has(i.ri-customer-service-2-fill).active i {
    transform: translateY(-5px);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

