.Product-section {
    margin-top: 0;
    margin-bottom: 30px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}


.Product-section .product {
    color: var(--page_Text_color);
    padding: 6px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.Product-section .product .item {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 4px;
    text-align: center;
    overflow: hidden;
}

.Product-section .product .item img {
    max-width: 200px;
    max-height: 200px;
    border: 0;
    object-fit: cover;
}

.Product-section .product .item a {
    text-decoration: none;
    color: var(--page_Text_color);
}

.Product-section .product .item h3 {
    margin: 0;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.Product-section .PTitle {
    margin-bottom: 1px;
    background-color: var(--button-color);
    background: linear-gradient(to bottom right, var(--button-color), var(--header-bg-color));
    color: var(--page_Text_color);
    padding: 8px;
    font-family:'Segoe UI', Tahoma, Verdana, sans-serif;
    font-weight: bold;
}


/* Pagination Style */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0;
}

.pagination-link {
    display: inline-block;
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    text-decoration: none;
    color: #333;
}
  
.pagination-link.active {
    background-color: #333;
    color: #fff;
}

.pagination-button {
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    padding: 6px 12px;
}