.products {
    display: flex;
    justify-content: center;
}

.products li.product {
    flex-basis: calc(33.33% - 10px);
    /* Adjust the width to your preference */
    margin-bottom: 20px;
}

.single-product .product {
    display: flex;
}

.single-product .product .images {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
}

.single-product .product .images .woocommerce-product-gallery {
    order: 2;
}

.single-product .product .summary {
    flex-basis: 50%;
    padding-left: 20px;
}



/* Custom styles for WooCommerce Account page */

/* Adjust the page layout */
.woocommerce-MyAccount {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f7f7f7;
    border-radius: 6px;
}

/* Update the form style */
.woocommerce-MyAccount form.login {
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Style the form fields */
.woocommerce-MyAccount form.login p.form-row input.input-text {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Style the form labels */
.woocommerce-MyAccount form.login p.form-row label {
    font-weight: bold;
}

/* Style the login button */
.woocommerce-MyAccount form.login .button {
    background-color: #ff6600;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

/* Add some spacing between form fields */
.woocommerce-MyAccount form.login p.form-row:not(:last-child) {
    margin-bottom: 30px;
}

/* Style the account navigation menu */
.woocommerce-MyAccount-navigation {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
}

.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 10px;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 10px;
    color: #333;
    text-decoration: none;
    margin-right: 5px;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    color: #65B530;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a::before {
    content: "\f3fd";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a::before {
    content: "\f15c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
}


.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a::before {
    content: "\f019";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a::before {
    content: "\f2bb";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a::before {
    content: "\f007";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a::before {
    content: "\f2f5";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--test-item a::before {
    content: "\f00a";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination .page-numbers {
    padding: 5px 10px;
    margin: 0 5px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
}

.pagination .page-numbers.current {
    background-color: #555;
    color: #fff;
}