
    /* Monkey Paradise Styles */
    .monkey-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);
    }
    
    .monkey-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;
    }
    
    .monkey-breed-header::before {
        content: "";
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        background: url("https://images.unsplash.com/photo-1540573133985-87b6da6d54a9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1476&q=80") center/cover;
        filter: blur(5px) brightness(0.7);
        z-index: -1;
    }
    
    .monkey-breed-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
        color: #FFD700;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        position: relative;
    }
    
    .monkey-breed-description {
        max-width: 800px;
        margin: 0 auto 25px;
        font-size: 1.2rem;
        line-height: 1.7;
        position: relative;
    }
    
    .monkey-scroll-btn-container {
        margin: 30px 0;
    }
    
    .monkey-scroll-btn {
        display: inline-block;
        padding: 15px 30px;
        background: #e67e22;
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    }
    
    .monkey-scroll-btn:hover {
        background: #d35400;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
    }
    
    .monkey-values {
        display: flex;
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
        margin-top: 30px;
    }
    
    .monkey-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);
    }
    
    .monkey-company-info {
        display: flex;
        justify-content: space-around;
        gap: 20px;
        margin: 40px 0;
        flex-wrap: wrap;
    }
    
    .monkey-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;
    }
    
    .monkey-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    
    .monkey-info-card i {
        font-size: 2.5rem;
        color: #2c7744;
        margin-bottom: 15px;
    }
    
    .monkey-info-card h3 {
        color: #2c7744;
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .monkey-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;
    }
    
    .monkey-details {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .monkey-characteristics {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }
    
    .monkey-characteristics h2 {
        color: #2c7744;
        margin-top: 0;
        padding-bottom: 15px;
        border-bottom: 2px solid #e67e22;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .monkey-characteristics ul {
        list-style: none;
        padding: 0;
    }
    
    .monkey-characteristics li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .monkey-characteristics li:last-child {
        border-bottom: none;
    }
    
    .monkey-characteristics li strong {
        color: #2c7744;
        min-width: 140px;
        display: inline-block;
    }
    
    .monkey-care {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }
    
    .monkey-care h2 {
        color: #2c7744;
        margin-top: 0;
        padding-bottom: 15px;
        border-bottom: 2px solid #e67e22;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .care-tips {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 25px;
    }
    
    .care-tip {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }
    
    .care-tip:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }
    
    .care-tip i {
        font-size: 2rem;
        color: #e67e22;
        margin-bottom: 15px;
    }
    
    .care-tip h3 {
        color: #2c7744;
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    /* Products Section */
    .monkey-products-section {
        margin: 60px 0;
    }
    
    .monkey-products-title {
        text-align: center;
        color: #2c7744;
        margin-bottom: 40px;
        font-size: 2.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    
    .monkey-products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .monkey-product-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        transition: all 0.4s ease;
        position: relative;
    }
    
    .monkey-product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    
    .new-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #e74c3c;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.9rem;
        z-index: 2;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    .monkey-product-image {
        height: 220px;
        overflow: hidden;
    }
    
    .monkey-product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .monkey-product-card:hover .monkey-product-image img {
        transform: scale(1.1);
    }
    
    .monkey-product-name {
        padding: 20px 20px 10px;
        text-align: center;
        font-size: 1.3rem;
        color: #2c3e50;
        margin: 0;
    }
    
    .monkey-product-price {
        text-align: center;
        font-size: 1.4rem;
        font-weight: 700;
        color: #2c7744;
        padding: 5px 0;
    }
    
    .monkey-product-stock {
        text-align: center;
        padding: 8px;
        font-weight: 600;
        margin: 0 20px;
        border-radius: 5px;
    }
    
    .in-stock {
        background: #e8f5e9;
        color: #27ae60;
    }
    
    .out-of-stock {
        background: #ffebee;
        color: #e74c3c;
    }
    
    .backorder {
        background: #fff3e0;
        color: #f39c12;
    }
    
    .monkey-product-actions {
        display: flex;
        gap: 10px;
        padding: 20px;
    }
    
    .monkey-product-btn {
        flex: 1;
        padding: 12px 10px;
        text-align: center;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .monkey-product-btn {
        background: #3498db;
        color: white;
    }
    
    .buy-btn {
        background: #2c7744;
        color: white;
    }
    
    .monkey-product-btn:hover {
        opacity: 0.9;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .no-products {
        text-align: center;
        grid-column: 1 / -1;
        padding: 40px;
        font-size: 1.2rem;
        color: #7f8c8d;
    }
    
    .monkey-prayer {
        background: rgba(230, 126, 34, 0.08);
        padding: 30px;
        border-radius: 12px;
        margin: 50px 0 20px;
        border-left: 5px solid #e67e22;
    }
    
    .monkey-prayer h3 {
        color: #e67e22;
        margin-top: 0;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1.5rem;
    }
    
    .monkey-breed-footer {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
        padding-top: 40px;
        border-top: 1px solid #eee;
    }
    
    .monkey-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;
    }
    
    .monkey-footer-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }
    
    .monkey-footer-section h3 {
        color: #2c7744;
        margin-top: 0;
        padding-bottom: 15px;
        border-bottom: 2px solid #e67e22;
        font-size: 1.4rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .monkey-footer-link {
        display: inline-block;
        margin-top: 20px;
        padding: 12px 25px;
        background: #3498db;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .monkey-footer-link:hover {
        background: #2c7744;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(44, 119, 68, 0.3);
    }
    
    /* Mobile Responsiveness */
    @media (max-width: 992px) {
        .monkey-breed-header {
            padding: 30px 20px;
        }
        
        .monkey-breed-title {
            font-size: 2.3rem;
        }
        
        .monkey-breed-description {
            font-size: 1.1rem;
        }
        
        .monkey-products-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        }
    }
    
    @media (max-width: 768px) {
        .monkey-breed-header {
            padding: 25px 15px;
        }
        
        .monkey-breed-title {
            font-size: 2rem;
        }
        
        .monkey-values {
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        
        .monkey-details {
            grid-template-columns: 1fr;
        }
        
        .monkey-company-info {
            flex-direction: column;
        }
        
        .monkey-info-card {
            min-width: 100%;
        }
        
        .monkey-product-actions {
            flex-direction: column;
        }
    }
    
    @media (max-width: 480px) {
        .monkey-breed-title {
            font-size: 1.8rem;
        }
        
        .monkey-breed-description {
            font-size: 1rem;
        }
        
        .monkey-breed-footer {
            grid-template-columns: 1fr;
        }
        
        .monkey-products-title {
            font-size: 1.8rem;
        }
    }
    