/* CSS for Shopify Apps Page */
.custom-product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.product-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    width: 48%;
    display: flex;
    flex-direction: column;
}

.product-header {
    display: flex;
    align-items: center;
    background-color: #DAFAE266;
}

.product-description {
    margin: 10px;
}

.product-image {
    width: 20%;
    margin: 10px 15px 10px 10px;
}

.product-image img {
    border-radius: 5px;

}

.product-name {
    font-size: 22px;
    margin: 0;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 10px 10px 10px;
}

.product-price {
    font-size: 14px;
}

.add-to-cart-button {
    font-weight: bold;
    background-color: #002347;
    border: none;
}

.add-to-cart-button:hover {
    background-color: #002347;
    border: none;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination a {
    margin: 0 5px;
    padding: 8px 12px;
    background: #f4f4f4;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #555;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
    background: #002347;
    color: #fff;
}
