/* ========================================
   NovaProject - Ürünler Sayfası Stilleri
   Premium Kategori Bazlı Tasarım
   ======================================== */

/* Logo Image in Header */
.logo-image {
    height: 45px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Products Main */
.products-main {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    background: linear-gradient(180deg, #0a0a12 0%, #12121f 50%, #0a0a12 100%);
}

/* ========================================
   Category Selection Section
   ======================================== */
.category-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 60px;
    background: radial-gradient(ellipse at center, rgba(255, 68, 255, 0.05) 0%, transparent 70%);
}

.category-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.category-header {
    text-align: center;
    margin-bottom: 60px;
}

.category-logo {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.category-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    text-shadow: 0 0 30px rgba(255, 68, 255, 0.3);
}

.category-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Category Card */
.category-card {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 68, 255, 0.1);
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 68, 255, 0.5);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 68, 255, 0.2);
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.category-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.5) saturate(1.2);
}

.category-card:hover .category-bg img {
    transform: scale(1.1);
    filter: brightness(0.6) saturate(1.3);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(10, 10, 20, 0.3) 0%,
            rgba(10, 10, 20, 0.5) 50%,
            rgba(10, 10, 20, 0.9) 100%);
    transition: background 0.4s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(180deg,
            rgba(255, 68, 255, 0.1) 0%,
            rgba(10, 10, 20, 0.4) 50%,
            rgba(10, 10, 20, 0.85) 100%);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 10;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 68, 255, 0.15);
    border: 1px solid rgba(255, 68, 255, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.category-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary-pink);
}

.category-icon .valorant-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.category-card:hover .category-icon {
    background: rgba(255, 68, 255, 0.25);
    border-color: var(--primary-pink);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 68, 255, 0.4);
}

/* Apex Legends Icon - Kırmızı tema */
.category-icon.apex-icon {
    background: rgba(220, 53, 69, 0.15);
    border-color: rgba(220, 53, 69, 0.3);
}

.category-icon.apex-icon svg {
    color: #dc3545;
}

.category-card:hover .category-icon.apex-icon {
    background: rgba(220, 53, 69, 0.25);
    border-color: #dc3545;
    box-shadow: 0 0 30px rgba(220, 53, 69, 0.4);
}

.category-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.15em;
}

.category-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.category-count {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 68, 255, 0.2);
    border: 1px solid rgba(255, 68, 255, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-pink-light);
    font-weight: 600;
}

.category-arrow {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(255, 68, 255, 0.5);
}

.category-arrow svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   Products Section
   ======================================== */
.products-section {
    min-height: 100vh;
    padding: 100px 40px 60px;
    position: relative;
}

.products-section.hidden {
    display: none;
}

/* Products Background */
.products-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.products-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(1.2);
}

.products-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(10, 10, 20, 0.7) 0%,
            rgba(10, 10, 20, 0.5) 50%,
            rgba(10, 10, 20, 0.9) 100%);
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Products Header */
.products-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn svg {
    width: 20px;
    height: 20px;
}

.back-btn:hover {
    background: rgba(255, 68, 255, 0.1);
    border-color: rgba(255, 68, 255, 0.3);
    transform: translateX(-5px);
}

.products-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.products-grid.hidden {
    display: none;
}

/* Product Card */
.product-card {
    position: relative;
    background: rgba(15, 15, 30, 0.85);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 68, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.15s;
}

.product-card:nth-child(3) {
    animation-delay: 0.2s;
}

.product-card:nth-child(4) {
    animation-delay: 0.25s;
}

.product-card:nth-child(5) {
    animation-delay: 0.3s;
}

.product-card:nth-child(6) {
    animation-delay: 0.35s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 68, 255, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 68, 255, 0.15);
}

.product-card.featured-single {
    max-width: 500px;
    margin: 0 auto;
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center,
            rgba(255, 68, 255, 0.1) 0%,
            transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover .card-glow {
    opacity: 1;
}

/* Card Image */
.card-image {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 68, 255, 0.1) 0%, rgba(20, 20, 40, 0.5) 100%);
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.08);
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    background: rgba(255, 68, 255, 0.9);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 68, 255, 0.4);
}

.card-badge.premium {
    background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.card-badge.vip {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.card-badge.exclusive {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

/* Card Content */
.card-content {
    padding: 25px;
}

.card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.card-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Card Features */
.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    padding: 5px 12px;
    background: rgba(255, 68, 255, 0.15);
    border: 1px solid rgba(255, 68, 255, 0.2);
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--primary-pink-light);
    font-weight: 500;
}

/* Card Footer */
.card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Card Button */
.card-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-dark) 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 68, 255, 0.3);
}

.card-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 68, 255, 0.5);
}

.card-btn:hover svg {
    transform: translateX(4px);
}

.card-btn.premium-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ff9500 100%);
    color: #000;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.card-btn.premium-btn:hover {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

/* Payment Section */
.payment-section {
    margin-top: 60px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.9) 0%, rgba(25, 20, 45, 0.9) 100%);
    border: 1px solid rgba(255, 68, 255, 0.2);
    border-radius: 24px;
    padding: 45px;
    backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
}

.payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
    opacity: 0.5;
}

.payment-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 35px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

.payment-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-pink);
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-pink);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 68, 255, 0.02) 100%);
    border: 1px solid rgba(255, 68, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.payment-method:hover {
    background: linear-gradient(135deg, rgba(255, 68, 255, 0.1) 0%, rgba(255, 68, 255, 0.05) 100%);
    border-color: rgba(255, 68, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 68, 255, 0.1);
}

.payment-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(255, 68, 255, 0.2) 0%, rgba(255, 68, 255, 0.1) 100%);
    border: 1px solid rgba(255, 68, 255, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.payment-method:hover .payment-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 68, 255, 0.3);
}

.payment-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary-pink);
}

.payment-icon.crypto {
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.2) 0%, rgba(247, 147, 26, 0.1) 100%);
    border-color: rgba(247, 147, 26, 0.3);
}

.payment-method:hover .payment-icon.crypto {
    box-shadow: 0 0 20px rgba(247, 147, 26, 0.3);
}

.payment-icon.crypto svg {
    color: #f7931a;
}

.payment-icon.papara {
    background: rgba(130, 71, 230, 0.15);
    border-color: rgba(130, 71, 230, 0.3);
}

.papara-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #8247e6;
}

.payment-method span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-align: center;
}

/* Payment Banner (inside payment section) */
.payment-banner {
    display: block;
    max-width: 500px;
    margin: 35px auto 0;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 68, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.payment-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.payment-banner:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 68, 255, 0.5);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 68, 255, 0.15);
}

.payment-banner:hover img {
    filter: brightness(1.1);
}


/* Purchase Banner */
.purchase-banner {
    display: block;
    max-width: 600px;
    margin: 50px auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 68, 255, 0.2);
}

.purchase-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.purchase-banner:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 68, 255, 0.15);
    border-color: rgba(255, 68, 255, 0.5);
}

.purchase-banner:hover img {
    filter: brightness(1.1);
}

/* CTA Section */
.cta-section {
    padding: 60px 40px;
    background: rgba(10, 10, 20, 0.5);
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 50px;
    background: rgba(15, 15, 30, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(88, 101, 242, 0.3);
    backdrop-filter: blur(20px);
}

.cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.cta-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    background: #5865F2;
    border-radius: 12px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

.cta-btn .discord-icon {
    width: 24px;
    height: 24px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.6);
}

/* Products Footer */
.products-footer {
    position: relative;
    background: rgba(10, 10, 20, 0.95);
    border-top: 1px solid rgba(255, 68, 255, 0.1);
}

/* Active Nav Link */
.nav-link.active {
    color: var(--primary-pink);
}

.nav-link.active::after {
    width: 100%;
}

/* Hidden Utility */
.hidden {
    display: none !important;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-title {
        font-size: 2.5rem;
    }

    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-section {
        padding: 100px 20px 40px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card {
        height: 300px;
    }

    .category-title {
        font-size: 2rem;
    }

    .category-name {
        font-size: 1.8rem;
    }

    .products-section {
        padding: 80px 20px 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px;
    }

    .cta-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .category-logo {
        width: 80px;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .category-content {
        padding: 25px;
    }

    .category-name {
        font-size: 1.4rem;
    }

    .card-content {
        padding: 20px;
    }

    .card-title {
        font-size: 1rem;
    }

    .card-btn {
        width: 100%;
        justify-content: center;
    }
}