.products-wrapper {
    border: 1px solid #ccc;
    border-radius: 7px;
    max-width: 1200px;
    margin: 0 auto;
}


#login-btn:hover {
    background: #a00e26 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 18, 48, 0.4);
}

#add-to-cart-embroidery-btn:hover {
    background: #a00e26 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 18, 48, 0.4);
}
.products-wrapper.products-cards-view {
    border: 0px;
}
#checkout-btn:hover,
#proceed-to-summary-btn:hover {
    background: #1a252f !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.4);
}

hr.separator {
    width: 100%;
    border: none;
    border-top: 1px solid #c7c7c7;
}

/* Center align specific product table columns */
.products-table th:nth-child(3),
.products-table th:nth-child(4),
.products-table th:nth-child(5),
.products-table th:nth-child(6),
.products-table th:nth-child(7),
.products-table td:nth-child(3),
.products-table td:nth-child(4),
.products-table td:nth-child(5),
.products-table td:nth-child(6),
.products-table td:nth-child(7) {
    text-align: center;
}

/* Pagination styles */
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.pagination li {
    display: inline-block;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    background: white;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.pagination a:hover {
    background: #f5f5f5;
    border-color: #c41230;
    color: #c41230;
}

.pagination .active span {
    background: #c41230;
    color: white;
    border-color: #c41230;
    font-weight: 600;
}

.pagination .disabled span {
    color: #999;
    cursor: not-allowed;
    background: #f5f5f5;
    opacity: 0.6;
}