        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(120deg, #e0e7ff, #d1c4e9);
            margin: 0;
            overflow-x: hidden;
            color: #2d2d2d;
            line-height: 1.6;
        }

        header {
            background: linear-gradient(135deg, #ffffff, #f0f4ff);
            padding: 15px 0; /* Narrow header */
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            z-index: 100; /* Keeps it above other content, but not fixed */
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .logo img {
            max-height: 120px;
            width: auto;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .logo img:hover {
            transform: scale(1.15) rotate(5deg);
        }

        .nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 15px;
            gap: 15px;
        }

        .nav-item {
            margin: 0;
        }

        .btn-primary {
            background: linear-gradient(90deg, #6b48ff, #00ddeb);
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            color: #fff;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(107, 72, 255, 0.3);
        }

        .btn-primary:hover {
            background: linear-gradient(90deg, #5a3de6, #00b8d4);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(107, 72, 255, 0.5);
        }

        .social-icons {
            display: flex;
            justify-content: center;
            margin-top: 15px;
            gap: 12px;
        }

        .social-icons a {
            color: #fff;
            background: linear-gradient(45deg, #7a7a7a, #a0a0a0);
            font-size: 18px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.4s ease;
        }

        .social-icons a:hover {
            background: linear-gradient(45deg, #6b48ff, #00ddeb);
            transform: scale(1.25) rotate(360deg);
        }

        .navbar-toggler {
            display: none;
            background: #6b48ff;
            border: none;
            padding: 10px;
            border-radius: 50%;
            color: #fff;
            font-size: 20px;
            transition: all 0.4s ease;
        }

        .navbar-toggler:hover {
            background: #5a3de6;
            transform: scale(1.1);
        }

        #nav-menu {
            transition: all 0.5s ease;
        }

        #nav-menu.show {
            display: flex;
        }

        .card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.5s ease;
            position: relative;
            border: none;
        }

        .card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .card-img-top {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            border-bottom: 5px solid #6b48ff;
            transition: transform 0.5s ease;
        }

        .card:hover .card-img-top {
            transform: scale(1.1);
        }

        .card-body {
            padding: 20px;
            text-align: center;
        }

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #6b48ff;
    margin-bottom: 10px;
    max-width: 100%; /* Konteyner genişliğini aşmasın */
    white-space: nowrap; /* Tek satırda tut */
    overflow: hidden; /* Taşan kısmı gizle */
    text-overflow: ellipsis; /* "..." ekle */
}

.new-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff1744; /* Kırmızı renk */
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 5; /* Resmin üstünde kalsın */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.card:hover .new-label {
    transform: scale(1.1); /* Hover efekti */
}

        .product-price {
            font-size: 1.2rem;
            font-weight: 600;
            color: #00c853;
            background: rgba(255, 255, 255, 0.95);
            padding: 8px 15px;
            border-radius: 30px;
            position: absolute;
            bottom: 20px;
            right: 20px;
            box-shadow: 0 2px 10px rgba(0, 200, 83, 0.2);
        }

        .adult-container {
            position: relative;
        }

        .adult-content.blurred {
            filter: blur(20px);
            transition: filter 0.4s ease;
        }

        .adult-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9;
            transition: opacity 0.4s ease;
        }

        .adult-warning {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            text-align: center;
        }

        .adult-warning .btn-primary {
            background: linear-gradient(45deg, #ff1744, #ff616f);
            box-shadow: 0 5px 20px rgba(255, 23, 68, 0.4);
        }

        .adult-warning .btn-primary:hover {
            background: linear-gradient(45deg, #d81b60, #f06292);
            transform: scale(1.15);
        }

        .loader {
            font-size: 1.3rem;
            color: #6b48ff;
            font-weight: 500;
            text-align: center;
            margin: 20px 0;
        }

        .back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            background: linear-gradient(45deg, #6b48ff, #00ddeb);
            color: #fff;
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            border-radius: 50%;
            font-size: 22px;
            display: none;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(107, 72, 255, 0.4);
        }

        .back-to-top:hover {
            transform: scale(1.3);
            box-shadow: 0 8px 25px rgba(107, 72, 255, 0.6);
        }

        footer {
            background: linear-gradient(135deg, #ffffff, #f0f4ff);
            padding: 40px 0;
            box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
            margin-top: 60px;
        }

        footer p {
            margin: 5px 0;
            font-weight: 500;
            font-size: 1.1rem;
            color: #555;
        }

        @media (max-width: 767px) {
            .navbar-toggler {
                display: block;
            }
            #nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                padding: 20px 0;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            }
            .nav-item {
                margin: 10px 0;
            }
            .logo img {
                max-height: 80px;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        header, main, footer {
            animation: fadeInUp 1s ease-out;
        }

        .btn-primary {
            animation: pulse 2s infinite ease-in-out;
        }
        