.qrise-product-grid-block {
    background-color: #ffffff;
    padding: 0px 20px;
    color: #333;
}

.qrise-product-grid-header {
    text-align: center;
    margin-bottom: 50px;
}

.qrise-product-grid-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.qrise-product-grid-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.qrise-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.qrise-product-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.qrise-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.qrise-product-image {
    margin-bottom: 20px;
}

.qrise-product-image img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
}

.qrise-product-info {
    color: #333;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.qrise-product-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.qrise-product-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #666;
    margin-bottom: 0;
    margin-top: auto;
}

.qrise-product-options-btn {
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.qrise-product-options-btn:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
}

.no-products {
    text-align: center;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .qrise-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .qrise-product-grid-title {
        font-size: 2rem;
    }
    
    .qrise-product-grid-subtitle {
        font-size: 1rem;
    }
}