
    /* Animal Adoption Paradise Styles */
    .ppaa-breed-container {
        max-width: 1200px;
        margin: 2rem auto;
        padding: 20px;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    }
    
    .ppaa-breed-header {
        background: linear-gradient(135deg, #2c7744, #5aaf6f);
        color: white;
        padding: 40px 30px;
        border-radius: 12px;
        margin-bottom: 30px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .ppaa-breed-header::before {
        content: "";
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        background: url("https://images.unsplash.com/photo-1552728089-57bdde30beb3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1925&q=80") center/cover;
        filter: blur(5px) brightness(0.7);
        z-index: -1;
    }
    
    .ppaa-breed-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
        color: #FFD700;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        position: relative;
    }
    
    .ppaa-breed-description {
        max-width: 800px;
        margin: 0 auto 25px;
        font-size: 1.2rem;
        line-height: 1.7;
        position: relative;
    }
    
    .ppaa-values {
        display: flex;
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
        margin-top: 30px;
    }
    
    .ppaa-value {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(255,255,255,0.25);
        backdrop-filter: blur(5px);
        padding: 12px 25px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        border: 1px solid rgba(255,255,255,0.3);
    }
    
    .ppaa-company-info {
        display: flex;
        justify-content: space-around;
        gap: 20px;
        margin: 40px 0;
        flex-wrap: wrap;
    }
    
    .ppaa-info-card {
        flex: 1;
        min-width: 250px;
        background: #f8f9fa;
        padding: 25px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border-left: 4px solid #5aaf6f;
    }
    
    .ppaa-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    
    .ppaa-info-card i {
        font-size: 2.5rem;
        color: #2c7744;
        margin-bottom: 15px;
    }
    
    .ppaa-info-card h3 {
        color: #2c7744;
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .ppaa-bible-verse {
        font-style: italic;
        text-align: center;
        padding: 25px;
        background: rgba(92, 175, 111, 0.1);
        border-radius: 10px;
        margin: 40px 0;
        font-size: 1.2rem;
        border-left: 5px solid #2c7744;
    }
    
    .ppaa-products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .ppaa-product-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        transition: all 0.4s ease;
        border: 1px solid #eee;
    }
    
    .ppaa-product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }
    
    .ppaa-product-image {
        height: 220px;
        overflow: hidden;
        background: #f5f7fa;
    }
    
    .ppaa-product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .ppaa-product-card:hover .ppaa-product-image img {
        transform: scale(1.08);
    }
    
    .ppaa-product-title {
        padding: 20px 20px 10px;
        font-size: 1.4rem;
        color: #2c3e50;
        margin: 0;
        min-height: 70px;
    }
    
    .ppaa-product-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px 15px;
    }
    
    .ppaa-product-price {
        font-weight: 700;
        color: #27ae60;
        font-size: 1.3rem;
    }
    
    .ppaa-stock {
        font-size: 0.95rem;
        padding: 5px 12px;
        border-radius: 20px;
        font-weight: 600;
    }
    
    .in-stock {
        background: #e8f5e9;
        color: #2e7d32;
    }
    
    .out-of-stock {
        background: #ffebee;
        color: #c62828;
    }
    
    .ppaa-product-actions {
        display: flex;
        gap: 12px;
        padding: 0 20px 25px;
    }
    
    .ppaa-button {
        display: inline-block;
        padding: 12px 20px;
        background: #3498db;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        text-align: center;
        flex: 1;
        transition: all 0.3s ease;
        font-weight: 600;
        font-size: 0.95rem;
    }
    
    .ppaa-button-primary {
        background: #e67e22;
    }
    
    .ppaa-button:hover {
        opacity: 0.92;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .ppaa-load-more-container {
        text-align: center;
        margin: 40px 0;
    }
    
    .ppaa-load-more {
        background: #2c7744;
        color: white;
        border: none;
        padding: 15px 40px;
        border-radius: 50px;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(44, 119, 68, 0.3);
        font-weight: 600;
    }
    
    .ppaa-load-more:hover {
        background: #235c36;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(44, 119, 68, 0.4);
    }
    
    .ppaa-load-more:disabled {
        background: #95a5a6;
        cursor: not-allowed;
    }
    
    .ppaa-no-more-products {
        text-align: center;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 8px;
        font-style: italic;
        color: #7f8c8d;
    }
    
    .ppaa-breed-footer {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 35px;
        margin-top: 50px;
        padding-top: 40px;
        border-top: 1px solid #eee;
    }
    
    .ppaa-footer-section {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }
    
    .ppaa-footer-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }
    
    .ppaa-footer-section h3 {
        color: #2c7744;
        margin-top: 0;
        padding-bottom: 15px;
        border-bottom: 2px solid #e67e22;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .ppaa-footer-link {
        display: inline-block;
        margin-top: 20px;
        color: #3498db;
        font-weight: 600;
        text-decoration: none;
        font-size: 1.05rem;
    }
    
    .ppaa-footer-link:hover {
        text-decoration: underline;
    }
    
    .ppaa-prayer {
        background: rgba(230, 126, 34, 0.08);
        padding: 30px;
        border-radius: 12px;
        margin: 50px 0 20px;
        border-left: 5px solid #e67e22;
    }
    
    .ppaa-prayer h3 {
        color: #e67e22;
        margin-top: 0;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1.5rem;
    }
    
    /* Mobile Responsiveness */
    @media (max-width: 992px) {
        .ppaa-breed-header {
            padding: 30px 20px;
        }
        
        .ppaa-breed-title {
            font-size: 2.3rem;
        }
        
        .ppaa-breed-description {
            font-size: 1.1rem;
        }
    }
    
    @media (max-width: 768px) {
        .ppaa-breed-header {
            padding: 25px 15px;
        }
        
        .ppaa-breed-title {
            font-size: 2rem;
        }
        
        .ppaa-values {
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        
        .ppaa-product-actions {
            flex-direction: column;
            gap: 12px;
        }
        
        .ppaa-button {
            width: 100%;
        }
        
        .ppaa-breed-footer {
            gap: 25px;
        }
    }
    
    @media (max-width: 480px) {
        .ppaa-breed-title {
            font-size: 1.8rem;
        }
        
        .ppaa-breed-description {
            font-size: 1rem;
        }
        
        .ppaa-products-grid {
            grid-template-columns: 1fr;
        }
        
        .ppaa-company-info {
            flex-direction: column;
        }
        
        .ppaa-info-card {
            min-width: 100%;
        }
        
        .ppaa-load-more {
            padding: 12px 25px;
            font-size: 1rem;
        }
    }
    