h2 {
    margin-top: 45px;
    font-size: 22px;
    text-align: center;
}

/* Product Grid Layout */
.zhopy-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 50px;
    padding: 20px;
}

/* Card Design */
.zhopy-product-item {
    max-width: 100%;
    height: auto;
    border: 1px solid #e5e7eb;
    padding: 10px;
    text-align: center;
    border-radius: 12px;
    background: linear-gradient(to bottom right, #ffffff, #f9fafb);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.zhopy-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Product Image */
.zhopy-product-item img {
    width: 100px;
    height: 90px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 10px;
}

/* Quantity Input */
.zhopy-product-item input[type="number"] {
    width: 80px;
    height: 35px;
    padding: 6px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #cbd5e0;
    text-align: center;
    transition: border-color 0.3s ease;
}

.zhopy-product-item input[type="number"]:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

/* Buttons */
.add-to-cart, .place-order {
    padding: 6px 8px;
    margin: 6px 4px;
    font-size: 11px;
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease; /* Simplified transition */
}

/* Add to Cart Button */
.add-to-cart {
    background-color: #4CAF50; /* Standard green */
    box-shadow: none; /* Removed box-shadow */
}
.add-to-cart:hover {
    background-color: #45a049; /* Slightly darker green on hover */
    /* Removed transform */
}

/* Place Order Button */
.place-order {
    background-color: #008CBA; /* Standard blue */
    box-shadow: none; /* Removed box-shadow */
}
.place-order:hover {
    background-color: #007B9E; /* Slightly darker blue on hover */
    /* Removed transform */
}

/* Center Load More Button */
.load_more {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
    padding: 10px 20px;
    font-size: 14px;
    background: #f1f5f9;
    color: #2c2c2c;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.load_more:hover {
    background: #e2e8f0;
}

.pagination-controls {
    text-align: center;
    margin-top: 20px;
}

.pagination-controls button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.pagination-controls span {
    font-size: 16px;
    color: #1e293b;
    font-weight: 500;
}
