  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Playfair Display', 'Segoe UI', serif;
        }

        body {
            background-color: #f9f5f0;
            color: #5a4d42;
            line-height: 1.6;
            padding-top: 90px; /* Navbar için boşluk */
        }

        /* Modern Navigation Bar */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

        .logo-img {
            height: 50px;
        }

        .logo-text {
            font-size: 28px;
            font-weight: 300;
            color: #3c2f2f;
            letter-spacing: 2px;
        }

        .logo-text span {
            color: #d4af37;
            font-weight: 400;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-link {
            color: #5a4d42;
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 0.5px;
            position: relative;
            padding: 8px 0;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, #d4af37, #b8860b);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: #d4af37;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .cart-icon {
            position: relative;
            color: #5a4d42;
            font-size: 20px;
            text-decoration: none;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #d4af37;
            color: white;
            font-size: 12px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .product-detail {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(175, 147, 118, 0.1);
            margin-top: 30px;
        }

        .product-images {
            flex: 1;
            min-width: 300px;
        }

        .main-image {
            width: 100%;
            height: 400px;
            object-fit: contain;
            border-radius: 15px;
            background: linear-gradient(135deg, #fdf6f0 0%, #f8f0e6 100%);
            padding: 20px;
            margin-bottom: 20px;
            border: 1px solid #eee5d9;
        }

        .product-info {
            flex: 1;
            min-width: 300px;
            padding-top: 20px;
        }

        .category-badge {
            display: inline-block;
            background: linear-gradient(135deg, #e8d5c5 0%, #d4b8a1 100%);
            color: #7a6858;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }

        h1 {
            color: #3c2f2f;
            font-size: 32px;
            margin-bottom: 20px;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .price {
            font-size: 28px;
            color: #b8860b;
            font-weight: 600;
            margin: 25px 0;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0e6db;
        }

        .price span {
            font-size: 16px;
            color: #8a7b6d;
        }

        .description {
            color: #6d5d4f;
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 16px;
        }

        .product-form {
            background: #fdfaf6;
            padding: 30px;
            border-radius: 15px;
            border: 1px solid #eee5d9;
        }

        .form-group {
            margin-bottom: 25px;
        }

        label {
            display: block;
            margin-bottom: 10px;
            color: #5a4d42;
            font-weight: 500;
        }

        .quantity-input {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .qty-btn {
            width: 40px;
            height: 40px;
            border: none;
            background: #e8d5c5;
            color: #5a4d42;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .qty-btn:hover {
            background: #d4b8a1;
        }

        input[type="number"] {
            width: 80px;
            padding: 10px;
            text-align: center;
            border: 2px solid #e8d5c5;
            border-radius: 10px;
            font-size: 16px;
            background: white;
        }

        .add-to-cart-btn {
            background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
            color: white;
            border: none;
            padding: 18px 40px;
            font-size: 16px;
            border-radius: 10px;
            cursor: pointer;
            width: 100%;
            font-weight: 600;
            letter-spacing: 1px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .add-to-cart-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
        }

        .delivery-info {
            background: #f9f5f0;
            padding: 25px;
            border-radius: 10px;
            margin-top: 30px;
            border-left: 4px solid #d4af37;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            color: #6d5d4f;
        }

        .info-item:last-child {
            margin-bottom: 0;
        }

        .icon {
            font-size: 20px;
            color: #b8860b;
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 0 20px;
            }
            
            .nav-links {
                display: none;
            }
            
            .product-detail {
                flex-direction: column;
                padding: 20px;
            }
            
            h1 {
                font-size: 24px;
            }
            
            .price {
                font-size: 24px;
            }
            
            body {
                padding-top: 80px;
            }
        }

        /* Resim yoksa placeholder için */
        .image-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #fdf6f0 0%, #f8f0e6 100%);
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 1px solid #eee5d9;
            color: #d4b8a1;
        }

        .image-placeholder i {
            font-size: 60px;
            margin-bottom: 15px;
        }