/* 
* WooCommerce styles. 
* 
* Loads only on the WooCommerce pages.
*/

/* Table of content
-------------------------------------
1. Various
2. Form elements
3. Product list
4. Cart page
5. Product page
6. Checkout page
7. My account
*/





/* = 1. Various
------------------------------------- */

.woocommerce-page .lifestyle-single-header .post header h1 {
    padding-bottom: 0;
}

/* other lists without icons (page list, comments list etc.) */

.woocommerce-page .lifestyle-post-content ol > li:before,
.woocommerce-page .lifestyle-post-content ul > li:before
{
    all: unset;
}

/* for 768px or less */
@media screen and (max-width: 768px) {
    .woocommerce-page .lifestyle-single-content {
        margin-bottom: 0;
    }
}

.lifestyle-post-content .woocommerce {
    margin-bottom: 0;
}

body.woocommerce-page .lifestyle-single-flex-container .lifestyle-single-content {
    flex-basis: 100%;
}

/* h1 page headers */

.woocommerce-products-header .woocommerce-products-header__title.page-title, /* main page store header, archive-product.php */
.summary.entry-summary .product_title.entry-title { /* product page header, single-product.php */
    margin-bottom: 40px;
    
    font-family: "Rethink Sans", sans-serif;
    font-weight: 700;
    font-size: 62px;
    line-height: 66px;
}

/* for 1024px or less */
@media screen and (max-width: 1024px) {
    
    .woocommerce-products-header .woocommerce-products-header__title.page-title,
    .summary.entry-summary .product_title.entry-title {
        font-size: 44px;
        line-height: 56px;
    }

}

/* for 768px or less */
@media screen and (max-width: 768px) {
    
    .woocommerce-products-header .woocommerce-products-header__title.page-title,
    .summary.entry-summary .product_title.entry-title {
        margin-bottom: 24px;
        font-size: 36px;
        line-height: 44px;
    }
    
}

/* for 360px or less */
@media screen and (max-width: 360px) {
    
    .woocommerce-products-header .woocommerce-products-header__title.page-title,
    .summary.entry-summary .product_title.entry-title {
        font-size: 28px;
        line-height: 36px;
    }
    
}

/* secondary page headers */

.woocommerce-page .cart-collaterals .cart_totals > h2, /* cart totals */
.cart_totals.calculated_shipping > h2, /* cart summary header */
.woocommerce div.product .related.products > h2, /* related products header */
h3#order_review_heading { /* checkout summary */
    margin-bottom: 24px;
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 56px;
    text-transform: uppercase;

}

/* for 1024px or less */
@media screen and (max-width: 1024px) {
    .woocommerce-page .cart-collaterals .cart_totals > h2,
    .cart_totals.calculated_shipping > h2, 
    .woocommerce div.product .related.products > h2,
    h3#order_review_heading {
        font-size: 36px;
        line-height: 44px;
    }
}

/* for 600px or less */
@media screen and (max-width: 600px) {
    .woocommerce-account .addresses .title h3, 
    .woocommerce-page .cart-collaterals .cart_totals > h2,
    .cart_totals.calculated_shipping > h2, 
    .woocommerce div.product .related.products > h2,
    h3#order_review_heading {
        font-size: 28px;
        line-height: 36px;
    }
}

/* infos */

.woocommerce-account .addresses .title h3, /* my account secondary header */
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received, /* success info */
.woocommerce-order-details__title, /* success info - details */
.woocommerce-column--billing-address h2, /* success info - billing address */
.woocommerce-column--shipping-address h2 { /* success info - shipping address */
    margin-bottom: 25px;
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 36px;
    text-transform: uppercase;
}










/* = 2. Form elements
------------------------------------- */

/* select on checkout */
.select2-container--default .select2-selection--single,

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button
.woocommerce .quantity .qty {
    padding: 0 24px;
    font-size: 15px;
    height: 48px;
    
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    
    -webkit-appearance: none;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button {
    line-height: 48px;
}

/* woo select */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 11px;
    right: 16px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    padding: 0 24px;
    border: 2px #ccc solid;
}
.select2-container--open .select2-dropdown {
    border: 2px #ccc solid;
    border-top: none;
}
.select2-search--dropdown {
    padding: 16px;
}
.select2-results__option {
    padding: 8px 16px;
}
.select2-container--default .select2-results__option[aria-selected=true],
.select2-container--default .select2-results__option[data-selected=true] {
    background-color: #eee;
}
.select2-container--default .select2-results__option--highlighted[aria-selected], 
.select2-container--default .select2-results__option--highlighted[data-selected] {
    background-color: #222;
    color: #fff;
}

.select2-container--default .select2-selection--single {
    color: #222;    
    border: 2px #ccc solid;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
    color: #fff;
    font-weight: 700;

    cursor: pointer;
    
    background-color: #32373c;
    border: 2px #32373c solid;

	transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button {
    border: none; /* info btn */
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover {
    color: #fff;
    
    background-color: #555;
    border-color: #555;
}

/* product page add to cart btn */
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt {
    background-color: #222;
    border: 2px #222 solid;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover {
    background-color: #555;
    border-color: #555;
}













/* = 3. Product list
------------------------------------- */

.woocommerce-LoopProduct-link.woocommerce-loop-product__link {
    color: #222;
}

.lifestyle-post-content .content-area {
    margin-bottom: 0;
}

.woocommerce .woocommerce-result-count {
    margin: 0 0 60px 0;
    line-height: 48px;
}

/* for 600px or less */
@media screen and (max-width: 600px) {
    .woocommerce .woocommerce-result-count {
        margin: 0 0 16px 0;
    }
}

.woocommerce .woocommerce-ordering {
    margin: 0 0 60px 0;
}

.woocommerce-ordering .orderby {
    background: url('/wp-content/themes/lifestyle/inc/svg/filter-line.svg') no-repeat  90% 50% / 16px;
}

.woocommerce .products ul, 
.woocommerce ul.products {
    margin: 0;
    padding-left: 0;
    
    list-style: none;
}

.woocommerce ul.products li.product .woocommerce-placeholder {
    border: none;
}

.woocommerce ul.products li.product, 
.woocommerce-page ul.products li.product {
    margin-bottom: 50px;
    text-align: center;
}

.woocommerce ul.products li.first, .woocommerce-page ul.products li.first {
    clear: none;
}

.woocommerce .woocommerce-error .button, 
.woocommerce .woocommerce-info .button, 
.woocommerce .woocommerce-message .button, 
.woocommerce-page .woocommerce-error .button, 
.woocommerce-page .woocommerce-info .button, 
.woocommerce-page .woocommerce-message .button,

.woocommerce table.my_account_orders .button, /* my account orders view btn */
.woocommerce ul.products li.product a { /* product item add to cart btn */
    border: none;
}

.woocommerce ul.products li.product a h2 {
    display: inline-block;
}

.woocommerce ul.products li.product a:hover h2 { /* product item underline */
    text-decoration-line: underline;
    text-decoration-thickness: 3px;
    text-decoration-color: #222;
    text-underline-offset: 6px;
}

.woocommerce ul.products li.product a:hover .star-rating { /* rating stars */
    color: #222;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title, 
.woocommerce ul.products li.product .woocommerce-loop-product__title, 
.woocommerce ul.products li.product h3 {
    padding: 0;
    
    font-family: "Rethink Sans", sans-serif;
    font-weight: 700;
    
    font-size: 22px;
    line-height: 32px;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
    margin-bottom: 0;
    margin-top: 6px;
    
    font-size: 17px;
    line-height: 24px;
    color: #222;
}

.lifestyle-post-content ul.products li.product .button {
    margin-top: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 20px;
}

.woocommerce ul.products li.product a.added_to_cart { /* add to cart link */
    margin: 0 10px;
    color: #222;
    
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: #ddd;
    text-underline-offset: 6px;
}
.woocommerce ul.products li.product a.added_to_cart:hover {
    text-decoration-color: #222;
}

/* index product image */

.woocommerce ul.products li.product a img {
    margin: 0 0 24px 0;
}

/* sale */

.woocommerce ul.products li.product .onsale, /* promo badge on index page */
.woocommerce span.onsale /* promo badge on product page */
{
    padding: 0 12px;
    
    font-size: 14px;
    color: #222;
    line-height: unset;
    
    min-width: unset;
    min-height: unset;
    
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    background-color: #ffc300;
    
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    
    -moz-transform: rotate(-7deg);
    -webkit-transform: rotate(-7deg);
    -o-transform: rotate(-7deg);
    -ms-transform: rotate(-7deg);
    transform: rotate(-7deg);
}

.woocommerce ul.products li.product .onsale {
    top: 28px;
}

.woocommerce span.onsale {
    top: 1.5em;
}

/* rating */

/* cart*/
.product-name a,

/* product page */
.posted_in a,
.tagged_as a,
.woocommerce-review-link { /* <a> */
    color: #222;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: #ddd;
    text-underline-offset: 6px;
}

.product-name a:hover,

.posted_in a:hover,
.tagged_as a:hover,
.woocommerce-review-link:hover { 
    text-decoration-color: #222;
}

.woocommerce ul.products li.product .star-rating {
    margin: 0;
    font-size: 0.7em;
    
    position: absolute;
    top: 22px;
    left: 22px;
    
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    
    background: #fff;
    border-width: 6px 9px 9px 12px;
    border-style: solid;
    border-color: #fff;
}



/* pagination */

.woocommerce nav.woocommerce-pagination {
    margin-top: 30px;
}

.woocommerce nav.woocommerce-pagination ul {
    border: none;
    margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
    border-right: none;
    overflow: visible;
}

.woocommerce nav.woocommerce-pagination ul li a, 
.woocommerce nav.woocommerce-pagination ul li span {
    display: inline-block;
    margin: 0 7px 10px 7px;
    padding: 0 10px;
    min-width: 24px;
    font-size: 15px;
    color: #222;
    font-weight: bold;
    text-align: center;
    line-height: 44px;
    border: 2px #32373c solid;
    
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;

	transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    color: #222;
    background: unset;
    border-color: #ccc;
}

.woocommerce nav.woocommerce-pagination ul li a:focus, 
.woocommerce nav.woocommerce-pagination ul li a:hover {
    color: #222;
    background: unset;
    
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}












/* = 4. Cart page
------------------------------------- */

#add_payment_method .cart-collaterals .shipping-calculator-button, 
.woocommerce-cart .cart-collaterals .shipping-calculator-button, 
.woocommerce-checkout .cart-collaterals .shipping-calculator-button {
    color: #222;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: #ddd;
    text-underline-offset: 6px;
}

#add_payment_method .cart-collaterals .shipping-calculator-button:hover, 
.woocommerce-cart .cart-collaterals .shipping-calculator-button:hover, 
.woocommerce-checkout .cart-collaterals .shipping-calculator-button:hover {
    text-decoration-color: #222;
}

.woocommerce a.remove {
    line-height: 0.85;
}

/* table border */

.woocommerce table.shop_table {
    margin:  0;
    
    border-color: #ccc;

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.woocommerce table.shop_table td,

#add_payment_method .cart-collaterals .cart_totals tr td, 
#add_payment_method .cart-collaterals .cart_totals tr th, 
.woocommerce-cart .cart-collaterals .cart_totals tr td, 
.woocommerce-cart .cart-collaterals .cart_totals tr th, 
.woocommerce-checkout .cart-collaterals .cart_totals tr td, 
.woocommerce-checkout .cart-collaterals .cart_totals tr th,

.woocommerce table.shop_table tbody th, 
.woocommerce table.shop_table tfoot td, 
.woocommerce table.shop_table tfoot th {
    border-top: 1px solid #ccc;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 16px 20px;
}

/* product miniature */

#add_payment_method table.cart img, 
.woocommerce-cart table.cart img, 
.woocommerce-checkout table.cart img {
    width: 80px;
    box-shadow: none;
}

/* disabled btn */

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:disabled[disabled] {
    padding: 0 24px;
    color: #fff;
}

/* disabled btn hover */

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:disabled[disabled]:hover {
    border-color: #e9e6ed;
}

/* coupon code */

#add_payment_method table.cart td.actions .coupon .input-text, 
.woocommerce-cart table.cart td.actions .coupon .input-text, 
.woocommerce-checkout table.cart td.actions .coupon .input-text {
    padding: 12px 24px;
    margin: 0 8px 0 0;
    
    color: #222;    
    border: 2px #ccc solid;
}

.woocommerce #content table.cart td.actions .input-text, 
.woocommerce table.cart td.actions .input-text, 
.woocommerce-page #content table.cart td.actions .input-text, 
.woocommerce-page table.cart td.actions .input-text {
    width: auto; /* coupon code */
}

/* summary */

.woocommerce .cart-collaterals {
    margin-top: 80px;
}

/* for 768px or less */
@media screen and (max-width: 768px) {
    .woocommerce .cart-collaterals {
        margin-top: 60px;
    }
}

#add_payment_method .cart-collaterals .cart_totals table, 
.woocommerce-cart .cart-collaterals .cart_totals table, 
.woocommerce-checkout .cart-collaterals .cart_totals table {
    margin: 0;
}

/* huge btn */

#add_payment_method .wc-proceed-to-checkout, 
.woocommerce-cart .wc-proceed-to-checkout, 
.woocommerce-checkout .wc-proceed-to-checkout {
    padding: 24px 0 0 0;
}












/* = 5. Product page
------------------------------------- */

.woocommerce form.checkout_coupon, 
.woocommerce form.login, 
.woocommerce form.register,

.woocommerce-error, 
.woocommerce-info, 
.woocommerce-message {
    margin: 0 0 40px 0;
    padding: 24px 32px 24px 56px;
    color: #222;
    
    border: 1px #ccc solid;
    background-color: unset;
    
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.woocommerce form.checkout_coupon, 
.woocommerce form.login, 
.woocommerce form.register {
    padding: 24px 32px;
}

.woocommerce-error::before, 
.woocommerce-info::before, 
.woocommerce-message::before {
    top: 24px;
}

.woocommerce-error li {
    padding-bottom: 8px;
}
.woocommerce-error li:last-child {
    padding-bottom: 0;
}

/* breadcrumbs */

.woocommerce .woocommerce-breadcrumb {
    margin-bottom: 8px;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb {
    font-size: 15px;
    color: #999;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a {
    color: #999;
    border: none;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a:hover {
    border-bottom: 1px #ddd solid;
}

/* product image */

.flex-viewport {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.woocommerce div.product {
    margin-top: 16px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
    margin-bottom: 80px;
}

.woocommerce div.product div.summary {
    margin-top: 50px;
}

/* for 768px or less */
@media screen and (max-width: 768px) {

    .woocommerce div.product div.images {
        margin-bottom: 40px;
    }

    .woocommerce div.product div.summary {
        margin-top: 0;
        margin-bottom: 60px;
    }
   
}

/* gallery miniatures */

.woocommerce div.product div.images .flex-control-thumbs {
    margin: 4% -4% 0 0%;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    padding: 0 4% 0 0px;
    box-sizing: border-box;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image--placeholder {
    border: none;
}
    
/* price */

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, 
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    margin-bottom: 40px;
    color: #222;
}

/* for 768px or less */
@media screen and (max-width: 768px) {
    .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
        margin-bottom: 24px;
    }
}

.woocommerce-product-details__short-description {
    margin-bottom: 32px;
}

/* stepper */

.woocommerce div.product form.cart div.quantity {
    margin: 0 16px 0 0;
}

body.rtl.woocommerce div.product form.cart div.quantity { /* rtl */
    margin: 0 0 0 16px;
}

.woocommerce .quantity .qty {
    font-family: "Hanken Grotesk", sans-serif;
    padding: 0 18px;
    font-size: 15px;
    height: 44px;

    color: #222;    
    border: 2px #ccc solid;
    
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    
    -webkit-appearance: none;
}

/* meta product */

.product_meta > span {
    display: block;
}

/* tabs */

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 0 0 40px 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0 24px 0 0;
    
    border: none;
    background-color: unset;

    -webkit-border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    border-radius: 8px 8px 0 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 0;
    
    font-size: 22px;
    color: #999;
    
    text-transform: uppercase;
    border: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    padding-bottom: 8px;
    color: #222;
    border-bottom: 2px #222 solid;
}

.woocommerce table.shop_attributes th {
    padding: 16px 20px;
}

/* tabs - related */

.woocommerce div.product .woocommerce-tabs .panel {
    margin-bottom: 0;
}

.woocommerce div.product .related.products {
    margin-top: 80px;
}

/* for 600px or less */
@media screen and (max-width: 600px) {
    
    .woocommerce div.product .woocommerce-tabs ul.tabs {
        padding: 0;
    }
    
    .woocommerce div.product .related.products {
        margin-top: 60px;
    }

}

/* opinions */

.woocommerce-tabs h2, /* opinions, main opinion header */
.comment-reply-title { /* opinion reply header */
    display: block;
    margin-bottom: 24px;
    
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

/* for 1024px or less */
@media screen and (max-width: 1024px) {
    .woocommerce-tabs h2 {
        font-size: 36px;
        line-height: 44px;
    }
}

/* for 600px or less */
@media screen and (max-width: 600px) {
    .woocommerce-tabs h2 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .woocommerce div.product .woocommerce-tabs ul.tabs li {
        display: block;
        margin: 0 0 16px 0;
        padding: 0 24px 0 0;
    }
    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
        font-size: 18px;
    }
}

.woocommerce-noreviews { /* no reviews <p> */
    margin-bottom: 32px;
}

.comment-reply-title {
    font-size: 28px;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
    padding: 0;
    width: 40px;
    background: none;
    border: none;
    
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
    margin: 0 0 0 55px;
    padding: 0;
    border: none;
    
    -webkit-border-radius: unset;
    -moz-border-radius: unset;
    border-radius: unset;
}

body.rtl #reviews #comments ol.commentlist li .comment-text { /* rtl */
    margin: 0 55px 0 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
    font-size: 15px;
    line-height: 24px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong {
    color: #222;
    font-weight: 600;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta .woocommerce-review__dash {
    display: none;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta time {
    display: block;
    font-size: 13px;
    line-height: 20px;
    color: #999;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p {
    font-size: 15px;
    line-height: 26px;
}

.comment-form-rating label {
    font-weight: 600;
}

.woocommerce p.stars a {
    color: #222;
}

.woocommerce #review_form #respond textarea {
    min-height: 10em;
}














/* = 6. Checkout page
------------------------------------- */

.woocommerce-LostPassword.lost_password a,
.woocommerce-info a,
.woocommerce-privacy-policy-text a,
.woocommerce-terms-and-conditions-checkbox-text a {
    color: #222;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: #ddd;
    text-underline-offset: 6px;    
}

.woocommerce-LostPassword.lost_password a:hover,
.woocommerce-info a:hover,
.woocommerce-privacy-policy-text a:hover,
.woocommerce-terms-and-conditions-checkbox-text a:hover {
    text-decoration-color: #222;   
}

.checkout_coupon.woocommerce-form-coupon p {
    margin-bottom: 16px;
}

.woocommerce-edit-address .woocommerce form h3, /* addresses edit */
.woocommerce-account .woocommerce h2, /* my account login */
.woocommerce-billing-fields h3,
h3#ship-to-different-address {
    margin-bottom: 20px;
    
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
    text-transform: uppercase;
}

/* order notes */
.woocommerce form .form-row textarea {
    height: 8em;
}

.checkout.woocommerce-checkout { /* main container */
    margin-top: 40px;
}

.woocommerce-checkout-payment {
    margin-top: 40px;
}

/* checkout payment rows */

#add_payment_method #payment ul.payment_methods, 
.woocommerce-cart #payment ul.payment_methods, 
.woocommerce-checkout #payment ul.payment_methods,

#add_payment_method #payment div.form-row, 
.woocommerce-cart #payment div.form-row, 
.woocommerce-checkout #payment div.form-row {
    padding: 16px 20px;
}

.woocommerce form .form-row {
    margin: 0 0 16px 0;
    padding: 0;
}

/* input labels */
.woocommerce form .form-row label {
    font-weight: 600;
}

/* checkbox */
.woocommerce form .form-row label.checkbox, 
.woocommerce-page form .form-row label.checkbox {
    display: block;
    margin: 16px 0 20px 0;
    line-height: 28px;
}

.woocommerce form .form-row:last-child {
    margin: 0;
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button, 
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button, 
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
    margin-bottom: 0;
}

/* for 768px or less */
@media screen and (max-width: 768px) {
    .woocommerce .col2-set .col-2, 
    .woocommerce-page .col2-set .col-2 {
        margin-top: 28px;
    }
}

/* payment section */

#add_payment_method #payment, 
.woocommerce-cart #payment, 
.woocommerce-checkout #payment {
    background: #fff;
    border: 1px #ccc solid;
}

/* description cloud */
#add_payment_method #payment div.payment_box, 
.woocommerce-cart #payment div.payment_box, 
.woocommerce-checkout #payment div.payment_box {
    color: #222;

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    
    background-color: #eee;
}
#add_payment_method #payment div.payment_box::before, 
.woocommerce-cart #payment div.payment_box::before, 
.woocommerce-checkout #payment div.payment_box::before{
    border: 1em solid #eee;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
}

/* terms and conditions */
.woocommerce .woocommerce-terms-and-conditions, 
.woocommerce-page .woocommerce-terms-and-conditions {
    margin-bottom: 4px;
    padding: 16px 20px;
    margin-top: 20px;
    
    font-size: 15px;
    line-height: 26px;
    
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

/* place order btn */

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    height: auto;
    margin-bottom: 0.4em;
    padding: 1.53em 3em;
    font-size: 1.25em;
}









/* Final summary */


.woocommerce ul.order_details {
    margin: 0 0 1em 0;
    padding: 0;
}

.woocommerce ul.order_details li {
    margin-bottom: 2em;
}

.woocommerce .woocommerce-order-details,
.woocommerce .woocommerce-customer-details {
    margin-top: 80px;
    margin-bottom: 0;
}

.woocommerce .woocommerce-customer-details address {
    padding: 16px 20px;
    
    border-color: #ccc;
    border-bottom-width: 1px;
    border-right-width: 1px;

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

/* for 768px or less */
@media screen and (max-width: 768px) {

    .woocommerce .woocommerce-order-details,
    .woocommerce .woocommerce-customer-details {
        margin-top: 60px;
    }
    
    .woocommerce .col2-set .col-2, 
    .woocommerce-page .col2-set .col-2 {
        margin-top: 60px;
    }
    
}

#customer_details {
    margin-bottom: 80px;
}

/* for 768px or less */
@media screen and (max-width: 768px) {
    #customer_details {
        margin-bottom: 60px;
    }
}






 {
    
}



/* 7. My account */
/* ------------------------------------- */

.woocommerce-MyAccount-navigation ul li {
    padding-left: 0 !important;
}

.woocommerce-MyAccount-content a,
.woocommerce-MyAccount-navigation ul li a {
    color: #222;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: #ddd;
    text-underline-offset: 6px;
}

.woocommerce-MyAccount-content a:hover,
.woocommerce-MyAccount-navigation ul li a:hover {
    text-decoration-color: #222;
}

.woocommerce-Address address {
    border: 1px solid #ccc;
    
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.woocommerce table.my_account_orders {
    font-size: 17px;
    line-height: 28px;
}

.woocommerce-MyAccount-content .woocommerce-Addresses {
    margin-top: 80px;
}

.woocommerce-EditAccountForm.edit-account > fieldset legend {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    margin-bottom: 16px;
    padding-top: 24px;
    font-size: 28px;
    line-height: 36px;
    text-transform: uppercase;
}

.woocommerce-EditAccountForm.edit-account > p:last-child { /* save changes btn */
    margin-top: 24px;
}

.woocommerce-address-fields .woocommerce-address-fields__field-wrapper {
    margin-bottom: 24px;
}

.woocommerce-ResetPassword.lost_reset_password p:first-child {
    margin-bottom: 24px;
}

/* for 768px or less */
@media screen and (max-width: 768px) {
    .woocommerce-MyAccount-content .woocommerce-Addresses {
        margin-top: 60px;
    }
    .woocommerce-account .woocommerce-MyAccount-content, 
    .woocommerce-account .woocommerce-MyAccount-navigation {
        margin-bottom: 60px;
    }
    .woocommerce-account .woocommerce-MyAccount-content {
        margin-bottom: 0;
    }
}






