
        :root {
            --primary: #4a86e8;
            --secondary: #6aa84f;
            --accent: #e67e22;
            --light: #f8f9fa;
            --dark: #343a40;
            --success: #28a745;
            --error: #dc3545;
            --text: #333;
            --light-bg: #fffcf5;
            --border-radius: 12px;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        
        .dog-breed-page {
            font-family: "Nunito", "Segoe UI", sans-serif;
            background-color: var(--light-bg);
            color: var(--text);
            line-height: 1.6;
            padding: 0;
            margin: 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Hero Section */
        .breed-hero {
            background: linear-gradient(135deg, rgba(74, 134, 232, 0.9) 0%, rgba(106, 168, 79, 0.85) 100%), #f5f5f5;
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
        }
        
        .breed-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .breed-hero p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            background: #d35400;
        }
        
        /* Breed Info Section */
        .breed-info-section {
            padding: 60px 0;
            background: white;
        }
        
        .breed-info-content h2 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 2rem;
        }
        
        .breed-info-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .breed-characteristics {
            background: var(--light);
            border-radius: var(--border-radius);
            padding: 25px;
            margin-top: 30px;
            box-shadow: var(--shadow);
        }
        
        .breed-characteristics h3 {
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .breed-characteristics ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .breed-characteristics li {
            margin-bottom: 8px;
            padding-left: 25px;
            position: relative;
        }
        
        .breed-characteristics li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }
        
        /* Available Puppies */
        .available-puppies {
            padding: 60px 0;
            background: var(--light);
        }
        
        .available-puppies h2 {
            text-align: center;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .available-puppies p {
            text-align: center;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .puppies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .puppy-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .puppy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .puppy-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }
        
        .puppy-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .puppy-card:hover .puppy-image img {
            transform: scale(1.05);
        }
        
        .stamp {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 80px;
            height: 80px;
            background: url("http://welpen-kaufe.de/wp-content/uploads/2025/07/welpen-kaufe.de_.png") center/contain no-repeat;
            z-index: 2;
        }
        
        .availability {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 5px 10px;
            border-radius: 4px;
            font-weight: bold;
            z-index: 2;
        }
        
        .available {
            background: var(--success);
            color: white;
        }
        
        .not-available {
            background: var(--error);
            color: white;
        }
        
        .puppy-info {
            padding: 20px;
        }
        
        .puppy-info h3 {
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .price {
            font-size: 1.25rem;
            font-weight: bold;
            color: var(--accent);
            margin-bottom: 15px;
        }
        
        .puppy-actions {
            display: flex;
            gap: 10px;
        }
        
        .puppy-actions .btn {
            flex: 1;
            text-align: center;
            padding: 10px;
            font-size: 0.9rem;
        }
        
        .puppy-actions .primary {
            background: var(--primary);
        }
        
        .puppy-actions .primary:hover {
            background: #3a6bc8;
        }
        
        .no-puppies {
            text-align: center;
            grid-column: 1/-1;
            padding: 40px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        
        /* Breeder Info */
        .breeder-info {
            padding: 60px 0;
            background: white;
        }
        
        .breeder-info h2 {
            text-align: center;
            color: var(--primary);
            margin-bottom: 30px;
        }
        
        .breeder-details {
            background: var(--light);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
        }
        
        .breeder-details h3 {
            color: var(--dark);
            margin-bottom: 15px;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 10px;
        }
        
        .breeder-details h4 {
            margin: 20px 0 10px;
            color: var(--dark);
        }
        
        .breeder-details ul {
            padding-left: 20px;
        }
        
        .breeder-details li {
            margin-bottom: 8px;
        }
        
        /* Trust Section */
        .trust-section {
            padding: 60px 0;
            background: var(--light);
        }
        
        .trust-section h2 {
            text-align: center;
            color: var(--primary);
            margin-bottom: 30px;
        }
        
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .trust-badge {
            background: white;
            border-radius: var(--border-radius);
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: var(--shadow);
            font-weight: 600;
            min-width: 250px;
        }
        
        .trust-badge i {
            color: var(--success);
            font-size: 1.5rem;
        }
        
        /* Additional Links */
        .additional-links {
            padding: 60px 0;
            background: white;
        }
        
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .link-card {
            display: block;
            background: var(--light);
            border-radius: var(--border-radius);
            padding: 25px;
            text-decoration: none;
            color: var(--text);
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .link-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            background: var(--primary);
            color: white;
        }
        
        .link-card h3 {
            margin-bottom: 10px;
            color: inherit;
        }
        
        .link-card p {
            color: inherit;
            opacity: 0.8;
            margin: 0;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .breed-hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .puppies-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .trust-badges {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 480px) {
            .breed-hero {
                padding: 70px 0;
            }
            
            .breed-hero h1 {
                font-size: 2rem;
            }
            
            .puppy-actions {
                flex-direction: column;
            }
        }
        