/*
Theme Name: Dhali Woo-Commerce

WooCommerce styles override
*/
/**
 * Shop Breadcrumbs
 */
form.woocommerce-ordering {
    margin-top: 20px;
    margin-bottom: 20px;
}

/**
 * Shop tables
 */
table.shop_table_responsive thead {
    display: none;
}

table.shop_table_responsive tbody th {
    display: none;
}

table.shop_table_responsive tr td {
    display: block;
    text-align: right;
    clear: both;
}

table.shop_table_responsive tr td::before {
    content: attr(data-title) ": ";
    float: left;
}

table.shop_table_responsive tr td.product-remove a {
    text-align: left;
}

table.shop_table_responsive tr td.product-remove::before {
    display: none;
}

table.shop_table_responsive tr td.actions::before,
table.shop_table_responsive tr td.download-actions::before {
    display: none;
}

table.shop_table_responsive tr td.download-actions .button {
    display: block;
    text-align: center;
}

@media screen and (min-width: 48em) {
    table.shop_table_responsive thead {
        display: table-header-group;
    }

    table.shop_table_responsive tbody th {
        display: table-cell;
    }

    table.shop_table_responsive tr th,
    table.shop_table_responsive tr td {
        text-align: left;
    }

    table.shop_table_responsive tr td {
        display: table-cell;
    }

    table.shop_table_responsive tr td::before {
        display: none;
    }
}

/**
 * Products
 */
ul.products.columns-1 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 30px;
    row-gap: 30px;
}

ul.products.columns-2 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
}

ul.products.columns-3 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
}

ul.products.columns-4 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
}

.added_to_cart {
    color: #fff;
    transition: all 300ms ease;
}

.added_to_cart:hover {
    transform: scale(1.1);
    color: #fff;
}

@media screen and (max-width: 1199.98px) {
    ul.products.columns-4 {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 30px;
        row-gap: 30px;
    }
}

@media screen and (max-width: 991.98px) {
    ul.products.columns-4 {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
        row-gap: 30px;
    }
    ul.products.columns-3 {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
        row-gap: 30px;
    }
    ul.products.columns-2 {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 30px;
        row-gap: 30px;
    }
}

@media screen and (max-width: 575.98px) {
    ul.products.columns-4 {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 30px;
        row-gap: 30px;
    }
    ul.products.columns-3 {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 30px;
        row-gap: 30px;
    }
}
ul.products li.product {
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    border-radius: 4px;
}

li.product .button {
    font-size: 13px;
    padding: 10px 25px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 3px;
}
li.product .woocommerce-LoopProduct-link {
    color: #fff;
    text-decoration: none;
    text-align: center;
    width: 100%;
    position: relative;
    padding-top: calc(50% - 58px);
}
li.product h2 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--wp--preset--font-family--dh-opensans);
    text-decoration: none;
}
li.product p.featured-ingredients {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
li.product span.onsale {
    font-size: 13px;
    position: absolute;
    right: 20px;
    top: 20px;
    text-transform: uppercase;
    font-weight: 700;
}
li.product span.onsale::before {
    content: "\f164";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    margin-right: 8px;
}
li.product span.price {
    font-family: "Courgette";
    font-size: 24px;
}

/**
 * Single product
 */
.single-product div.product {
    position: relative;
}

.single-product div.product .woocommerce-product-gallery {
    position: relative;
    float: left;
}

.single-product
    div.product
    .woocommerce-product-gallery
    .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 2em;
    right: 1em;
    display: block;
    z-index: 99;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport {
    margin-bottom: 1em;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
    margin: 0;
    padding: 0;
}

.single-product
    div.product
    .woocommerce-product-gallery
    .flex-control-thumbs
    li {
    list-style: none;
    cursor: pointer;
    float: left;
}

.single-product
    div.product
    .woocommerce-product-gallery
    .flex-control-thumbs
    li
    img {
    opacity: 0.5;
}

.single-product
    div.product
    .woocommerce-product-gallery
    .flex-control-thumbs
    li
    img.flex-active {
    opacity: 1;
}

.single-product
    div.product
    .woocommerce-product-gallery
    .flex-control-thumbs
    li:hover
    img {
    opacity: 1;
}

.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-2
    .flex-control-thumbs
    li {
    width: 48.1%;
}

.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-2
    .flex-control-thumbs
    li:nth-child(2n) {
    margin-right: 0;
}

.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-2
    .flex-control-thumbs
    li:nth-child(2n + 1) {
    clear: both;
}

.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-3
    .flex-control-thumbs
    li {
    width: 30.79667%;
}

.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-3
    .flex-control-thumbs
    li:nth-child(3n) {
    margin-right: 0;
}

.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-3
    .flex-control-thumbs
    li:nth-child(3n + 1) {
    clear: both;
}

.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-4
    .flex-control-thumbs
    li {
    width: 22.15%;
}

.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-4
    .flex-control-thumbs
    li:nth-child(4n) {
    margin-right: 0;
}

.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-4
    .flex-control-thumbs
    li:nth-child(4n + 1) {
    clear: both;
}

.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-5
    .flex-control-thumbs
    li {
    width: 16.96%;
}

.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-5
    .flex-control-thumbs
    li:nth-child(5n) {
    margin-right: 0;
}

.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-5
    .flex-control-thumbs
    li:nth-child(5n + 1) {
    clear: both;
}

.stock:empty::before {
    display: none;
}

.stock.in-stock {
    color: #0f834d;
}

.stock.out-of-stock {
    color: #e2401c;
}

/**
 * Checkout
 */
@media screen and (min-width: 768px) {
    .col2-set .form-row-first {
        float: left;
        margin-right: 3.8%;
    }

    .col2-set .form-row-last {
        float: right;
        margin-right: 0;
    }

    .col2-set .form-row-first,
    .col2-set .form-row-last {
        width: 48.1%;
    }
}

/**
 * General WooCommerce components
 */

/**
 * Header cart
 */
.site-header-cart {
    position: relative;
    margin: 0;
    padding: 0;
}

.site-header-cart .cart-contents {
    text-decoration: none;
}

.site-header-cart .widget_shopping_cart {
    display: none;
}

.site-header-cart .product_list_widget {
    margin: 0;
    padding: 0;
}

/**
 * Star rating
 */
.star-rating {
    overflow: hidden;
    position: relative;
    height: 1.618em;
    line-height: 1.618;
    width: 5.3em;
    font-family: star;
    font-weight: 400;
}

.star-rating::before {
    content: "\53\53\53\53\53";
    opacity: 0.25;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}

.star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}

.star-rating span::before {
    content: "\53\53\53\53\53";
    top: 0;
    position: absolute;
    left: 0;
    color: #4169e1;
}

p.stars a {
    position: relative;
    height: 1em;
    width: 1em;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none;
    margin-right: 1px;
    font-weight: 400;
}

p.stars a::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-family: star;
    content: "\53";
    color: #404040;
    text-indent: 0;
    opacity: 0.25;
}

p.stars a:hover ~ a::before {
    content: "\53";
    color: #404040;
    opacity: 0.25;
}

p.stars:hover a::before {
    content: "\53";
    color: #4169e1;
    opacity: 1;
}

p.stars.selected a.active::before {
    content: "\53";
    color: #4169e1;
    opacity: 1;
}

p.stars.selected a.active ~ a::before {
    content: "\53";
    color: #404040;
    opacity: 0.25;
}

p.stars.selected a:not(.active)::before {
    content: "\53";
    color: #4169e1;
    opacity: 1;
}

/**
 * Tabs
 */
.woocommerce-tabs ul.tabs {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.woocommerce-tabs ul.tabs li {
    display: block;
    margin: 0;
    position: relative;
}

.woocommerce-tabs ul.tabs li a {
    padding: 1em 15px;
    display: block;
}

.woocommerce-tabs .panel h2:first-of-type {
    margin-bottom: 1em;
}

/**
 * Password strength meter
 */
.woocommerce-password-strength {
    text-align: right;
}

.woocommerce-password-strength.strong {
    color: #0f834d;
}

.woocommerce-password-strength.short {
    color: #e2401c;
}

.woocommerce-password-strength.bad {
    color: #e2401c;
}

.woocommerce-password-strength.good {
    color: #3d9cd2;
}

/**
 * Forms
 */
.form-row.woocommerce-validated input.input-text {
    box-shadow: inset 2px 0 0 #0f834d;
}

.form-row.woocommerce-invalid input.input-text {
    box-shadow: inset 2px 0 0 #e2401c;
}

.required {
    color: #f00;
}

/**
 * Notices
 */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
    background-color: #f4f4f4;
    clear: both;
    padding: 15px;
    border: 1px solid #6f906f;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 1px 1px 1px #6f906f80;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
    background-color: #3d9cd2;
}

.woocommerce-error {
    background-color: #e2401c;
}

.demo_store {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0;
    padding: 1em;
    background-color: #3d9cd2;
    z-index: 9999;
}

@media screen and (min-width: 48em) {
    /**
	 * Header cart
	 */
    .site-header-cart .widget_shopping_cart {
        position: absolute;
        top: 100%;
        width: 100%;
        z-index: 999999;
        left: -999em;
        display: block;
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    }

    .site-header-cart:hover .widget_shopping_cart,
    .site-header-cart.focus .widget_shopping_cart {
        left: 0;
        display: block;
    }
}

/**
 * WooCommerce widgets
 */

/**
 * WooCommerce Price Filter
 */
.widget_price_filter .price_slider {
    margin-bottom: 1.5em;
}

.widget_price_filter .price_slider_amount {
    text-align: right;
    line-height: 2.4;
}

.widget_price_filter .price_slider_amount .button {
    float: left;
}

.widget_price_filter .ui-slider {
    position: relative;
    text-align: left;
}

.widget_price_filter .ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1em;
    height: 1em;
    cursor: ew-resize;
    outline: none;
    background: #4169e1;
    box-sizing: border-box;
    margin-top: -0.25em;
    opacity: 1;
}

.widget_price_filter .ui-slider .ui-slider-handle:last-child {
    margin-left: -1em;
}

.widget_price_filter .ui-slider .ui-slider-handle:hover,
.widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {
    box-shadow: 0 0 0 0.25em rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    display: block;
    border: 0;
    background: #4169e1;
}

.widget_price_filter .price_slider_wrapper .ui-widget-content {
    background: rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider-horizontal {
    height: 0.5em;
}

.widget_price_filter .ui-slider-horizontal .ui-slider-range {
    height: 100%;
}
/* MY ACCOUNT */
.u-column1,
.u-column2 {
    width: calc(50% - 30px);
    display: inline-block;
    vertical-align: top;
    padding: 30px;
    border: 2px solid #6f906f;
}

.u-column1 {
    margin-right: 30px;
}

.woocommerce input:not(.input-checkbox):not(.woocommerce-form__input) {
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 2px solid black;
    border-radius: 0;
    box-shadow: none;
    display: block;
    width: 100%;
}

.woocommerce label {
    display: block;
    color: #000;
}

.woocommerce-form-login__rememberme {
    margin-bottom: 1rem;
}

.woocommerce button {
    border-radius: 3px;
    color: #fff;
    padding-top: 15px;
    padding-right: 25px;
    padding-bottom: 15px;
    padding-left: 25px;
    background: #6f906f;
    font-family: "Courgette";
    font-size: 18px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 0px 0px -12px inset,
        rgba(0, 0, 0, 0) 0px 0px 0px 0px inset;
    transition: all ease 200ms;
}

.woocommerce button:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
        rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

@media screen and (max-width: 991.98px) {
    .u-column1 {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .u-column1,
    .u-column2 {
        width: 100%;
    }
}
/**
 * My Account
 */
nav.woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
}

nav.woocommerce-MyAccount-navigation {
    width: 200px;
    float: left;
}

.woocommerce-MyAccount-content {
    width: calc(100% - 230px);
    margin-left: 30px;
    display: inline-block;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    padding: 0;
    border-top: 1px solid #eee;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    list-style: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 0;
}

.woocommerce-account
    .woocommerce-MyAccount-navigation
    ul
    li.is-active
    a:before {
    opacity: 1;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    padding: 10px 5px;
    display: block;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:before {
    margin-right: 20px;
    opacity: 0.25;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover:before {
    opacity: 1;
}

.woocommerce-account
    .woocommerce-MyAccount-navigation
    ul
    li.woocommerce-MyAccount-navigation-link--dashboard
    a:before {
    font-family: "FontAwesome";
    content: "\f0e4";
}

.woocommerce-account
    .woocommerce-MyAccount-navigation
    ul
    li.woocommerce-MyAccount-navigation-link--orders
    a:before {
    font-family: "FontAwesome";
    content: "\f291";
}

.woocommerce-account
    .woocommerce-MyAccount-navigation
    ul
    li.woocommerce-MyAccount-navigation-link--subscriptions
    a:before {
    font-family: "Font Awesome 6 Pro";
    content: "\e0d2";
}

.woocommerce-account
    .woocommerce-MyAccount-navigation
    ul
    li.woocommerce-MyAccount-navigation-link--downloads
    a:before {
    font-family: "FontAwesome";
    content: "\f1c6";
}

.woocommerce-account
    .woocommerce-MyAccount-navigation
    ul
    li.woocommerce-MyAccount-navigation-link--edit-address
    a:before {
    font-family: "FontAwesome";
    content: "\f015";
}

.woocommerce-account
    .woocommerce-MyAccount-navigation
    ul
    li.woocommerce-MyAccount-navigation-link--payment-methods
    a:before {
    font-family: "FontAwesome";
    content: "\f09d";
}

.woocommerce-account
    .woocommerce-MyAccount-navigation
    ul
    li.woocommerce-MyAccount-navigation-link--edit-account
    a:before {
    font-family: "FontAwesome";
    content: "\f007";
}

.woocommerce-account
    .woocommerce-MyAccount-navigation
    ul
    li.woocommerce-MyAccount-navigation-link--customer-logout
    a:before {
    font-family: "FontAwesome";
    content: "\f08b";
}

.woocommerce-account .woocommerce-MyAccount-content h2 {
    font-size: 25px;
    text-align: center;
    font-weight: 600;
}

.woocommerce-account p.order-again {
    text-align: right;
}

.woocommerce-account .woocommerce-EditAccountForm input[type="submit"] {
    margin-top: 50px;
    float: right;
}

@media screen and (max-width: 991.98px) {
    nav.woocommerce-MyAccount-navigation ul {
        text-align: center;
    }

    nav.woocommerce-MyAccount-navigation ul li {
        display: inline-block;
    }

    nav.woocommerce-MyAccount-navigation {
        width: 100%;
        float: unset;
    }

    .woocommerce-MyAccount-content {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }
}

/*
 * Woocommerce Pagination
 */
nav.woocommerce-pagination {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    overflow: visible !important;
}
nav.woocommerce-pagination ul {
    list-style: none;
    text-align: center;
    text-decoration: none;
    margin: 2rem auto;
}
nav.woocommerce-pagination li span.current,
nav.woocommerce-pagination li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
}
nav.woocommerce-pagination li {
    box-shadow: 0 3px 20px -0.2px rgba(0, 0, 0, 0.1);
    transition: all 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    color: #000;
    background: #fff;
    float: left;
}
nav.woocommerce-pagination ul > li:first-child {
    border-radius: 3px 0 0 3px;
}
nav.woocommerce-pagination ul > li:last-child {
    border-radius: 0 3px 3px 0;
}
nav.woocommerce-pagination li a {
    color: #000;
    text-decoration: none;
}
nav.woocommerce-pagination li span.current,
nav.woocommerce-pagination li:hover {
    background: -webkit-linear-gradient(35deg, #8ba58b, #426742);
    background: linear-gradient(35deg, #8ba58b, #426742);
}
nav.woocommerce-pagination li span.current {
    color: #fff;
}
nav.woocommerce-pagination li a.next {
    width: auto !important;
    padding: 0 2rem 0 0.8rem !important;
    position: relative;
}
nav.woocommerce-pagination li a.prev {
    width: auto !important;
    padding: 0 0.8rem 0 2rem !important;
    position: relative;
}
.next:after,
.prev:before {
    content: "";
    position: absolute;
    font-family: FontAwesome;
    font-weight: 400;
}
.prev:before {
    left: 0.5rem;
}
.next:after {
    right: 0.5rem;
}
.prev:before {
    vertical-align: middle;
    content: "\f060";
}
.next:after {
    vertical-align: middle;
    content: "\f061";
}

/*
 * Single Product
 */
nav.woocommerce-breadcrumb {
    border-bottom: 0;
    margin: 0 0 1em;
    padding: 0;
    font-size: 0.92em;
}

div.product > span.onsale {
    text-shadow: none;
    box-shadow: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    padding: 5px;
    font-weight: 700;
    line-height: 40px;
    border-radius: 25px;
    width: 50px;
    height: 50px;
    margin-top: 12px;
    margin-left: 12px;
    z-index: 9;
    top: -0.5em;
    left: -0.5em;
    color: #fff;
    background: #6f906f;
    position: absolute;
    text-align: center;
}
.single-product .images {
    width: 48%;
    float: left;
}
.woocommerce-product-gallery__image {
    text-align: center;
}
.product.type-product .woocommerce-product-gallery img {
    max-height: 600px;
    width: auto;
}
.single-product .summary {
    background: #e9e9e9;
    padding: 14px 30px;
    width: 48%;
    float: right;
    position: relative;
}
.single-product .summary::before, .single-product .summary::after {
    background: -webkit-linear-gradient(transparent 0, transparent 0), -webkit-linear-gradient(135deg, #e9e9e9 33.33%, transparent 33.33%), -webkit-linear-gradient(45deg, #e9e9e9 33.33%, transparent 33.33%);
    content: "";
    display: block;
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    height: 16px;
    background-size: 0 100%, 16px 16px, 16px 16px;
}

.single-product .summary::after {
    top: auto;
    bottom: -16px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
@media (max-width: 767.98px) {
    .single-product .images {
        width: 100%;
        float: left;
    }
    .single-product .summary {
        width: 100%;
        float: right;
        margin-top: 30px;
    }
}
.single-product .woocommerce_tabs,
.single-product .woocommerce-tabs {
	padding-top: 30px;
    padding-bottom: 30px;
    clear: both;
}
.single-product .related {
    clear: both;
}
.single-product .sale .summary h1 {
    width: 80%;
}
.woocommerce_tabs ul.tabs,
.woocommerce-tabs ul.tabs,
.ui-tabs ul.tabs,
.woocommerce_tabs .ui-tabs-nav,
.woocommerce-tabs .ui-tabs-nav,
.ui-tabs .ui-tabs-nav {
    margin-bottom: 0;
    margin-left: 2.618em;
}
.woocommerce_tabs ul.tabs li,
.woocommerce-tabs ul.tabs li,
.ui-tabs ul.tabs li,
.woocommerce_tabs .ui-tabs-nav li,
.woocommerce-tabs .ui-tabs-nav li,
.ui-tabs .ui-tabs-nav li {
    width: auto;
    float: left;
    clear: none;
    margin-bottom: 0;
}
.woocommerce_tabs ul.tabs li:nth-child(2n),
.woocommerce-tabs ul.tabs li:nth-child(2n),
.ui-tabs ul.tabs li:nth-child(2n),
.woocommerce_tabs .ui-tabs-nav li:nth-child(2n),
.woocommerce-tabs .ui-tabs-nav li:nth-child(2n),
.ui-tabs .ui-tabs-nav li:nth-child(2n) {
    float: left;
    clear: none;
}
.woocommerce_tabs ul.tabs li a,
.woocommerce-tabs ul.tabs li a,
.ui-tabs ul.tabs li a,
.woocommerce_tabs .ui-tabs-nav li a,
.woocommerce-tabs .ui-tabs-nav li a,
.ui-tabs .ui-tabs-nav li a {
    border-bottom: 0;
    background: rgba(232, 228, 227, 0.5);
    color: #6c6360;
}
.woocommerce_tabs ul.tabs li a:hover,
.woocommerce-tabs ul.tabs li a:hover,
.ui-tabs ul.tabs li a:hover,
.woocommerce_tabs .ui-tabs-nav li a:hover,
.woocommerce-tabs .ui-tabs-nav li a:hover,
.ui-tabs .ui-tabs-nav li a:hover {
    color: #6f906f;
}
.woocommerce_tabs ul.tabs li.active,
.woocommerce-tabs ul.tabs li.active,
.ui-tabs ul.tabs li.active,
.woocommerce_tabs .ui-tabs-nav li.active,
.woocommerce-tabs .ui-tabs-nav li.active,
.ui-tabs .ui-tabs-nav li.active,
.woocommerce_tabs ul.tabs li.ui-state-active,
.woocommerce-tabs ul.tabs li.ui-state-active,
.ui-tabs ul.tabs li.ui-state-active,
.woocommerce_tabs .ui-tabs-nav li.ui-state-active,
.woocommerce-tabs .ui-tabs-nav li.ui-state-active,
.ui-tabs .ui-tabs-nav li.ui-state-active {
    position: relative;
}
.woocommerce_tabs ul.tabs li.active:before,
.woocommerce-tabs ul.tabs li.active:before,
.ui-tabs ul.tabs li.active:before,
.woocommerce_tabs .ui-tabs-nav li.active:before,
.woocommerce-tabs .ui-tabs-nav li.active:before,
.ui-tabs .ui-tabs-nav li.active:before,
.woocommerce_tabs ul.tabs li.ui-state-active:before,
.woocommerce-tabs ul.tabs li.ui-state-active:before,
.ui-tabs ul.tabs li.ui-state-active:before,
.woocommerce_tabs .ui-tabs-nav li.ui-state-active:before,
.woocommerce-tabs .ui-tabs-nav li.ui-state-active:before,
.ui-tabs .ui-tabs-nav li.ui-state-active:before {
    content: "";
    display: block;
    position: absolute;
    top: -0.236em;
    left: 0;
    right: 0;
    height: 0.236em;
    background: #6f906f;
    border-top: 1px solid #587658;
    -webkit-border-top-left-radius: 2px;
    -webkit-border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.woocommerce_tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li.active a,
.ui-tabs ul.tabs li.active a,
.woocommerce_tabs .ui-tabs-nav li.active a,
.woocommerce-tabs .ui-tabs-nav li.active a,
.ui-tabs .ui-tabs-nav li.active a,
.woocommerce_tabs ul.tabs li.ui-state-active a,
.woocommerce-tabs ul.tabs li.ui-state-active a,
.ui-tabs ul.tabs li.ui-state-active a,
.woocommerce_tabs .ui-tabs-nav li.ui-state-active a,
.woocommerce-tabs .ui-tabs-nav li.ui-state-active a,
.ui-tabs .ui-tabs-nav li.ui-state-active a {
    position: relative;
    background: #fff;
    box-shadow: 0 1px 2px 0 #e8e4e3;
    -webkit-box-shadow: 0 1px 2px 0 #e8e4e3;
    color: #6f906f;
    border-top-color: #6f906f;
}
.woocommerce_tabs ul.tabs li.active a:after,
.woocommerce-tabs ul.tabs li.active a:after,
.ui-tabs ul.tabs li.active a:after,
.woocommerce_tabs .ui-tabs-nav li.active a:after,
.woocommerce-tabs .ui-tabs-nav li.active a:after,
.ui-tabs .ui-tabs-nav li.active a:after,
.woocommerce_tabs ul.tabs li.ui-state-active a:after,
.woocommerce-tabs ul.tabs li.ui-state-active a:after,
.ui-tabs ul.tabs li.ui-state-active a:after,
.woocommerce_tabs .ui-tabs-nav li.ui-state-active a:after,
.woocommerce-tabs .ui-tabs-nav li.ui-state-active a:after,
.ui-tabs .ui-tabs-nav li.ui-state-active a:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: #fff;
}
.woocommerce_tabs .panel,
.woocommerce-tabs .panel,
.ui-tabs .panel {
    background: #fff;
    padding: 70px 30px 30px 30px;
    border: 1px solid #e8e4e3;
	border-radius: 3px;
}
.woocommerce_tabs table.shop_attributes p,
.woocommerce-tabs table.shop_attributes p,
.ui-tabs table.shop_attributes p {
    margin-bottom: 0;
}
table.variations select {
    box-shadow: 0 0.625rem 0.625rem rgba(0,0,0,.05);
    padding: 8px 19px;
    width: 100%;
    border-radius: 3px;
    font-weight: 500;
    position: relative;
    background-color: #fff !important;
    cursor: pointer;
}
table.variations select::-ms-expand {
    display: none !important;
}
table.variations select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    text-indent: 1px !important;
    text-overflow: '' !important;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23333" width="18px" height="18px"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 12px center;
}
/* 7.3 Cart */
table.cart {
    margin-bottom: 2.618em;
}
table.cart .product-remove,
table.cart .product-thumbnail,
table.cart .product-price {
    position: static;
}
table.cart td.actions {
    text-align: right;
}
table.cart td.actions .coupon {
    width: 50%;
    float: left;
}
table.cart td.actions .input-text,
table.cart td.actions .button,
table.cart td.actions .checkout-button {
    width: auto !important;
    display: inline-block;
    margin-bottom: 0 !important;
}
table.cart td.actions .button {
    margin-left: 0.618em;
    float: none !important;
}
.cart-collaterals:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
    clear: both;
}
.cart-collaterals .cross-sells,
.cart-collaterals .cart_totals,
.cart-collaterals .shipping_calculator {
    width: 48%;
    font-size: 0.857em;
    float: left;
}
.cart-collaterals .cart_totals {
    float: right;
}
.cart-collaterals .shipping_calculator {
    float: right;
    clear: right;
}
.cart-collaterals .cross-sells ul.products li.product {
    width: 48%;
}
form.cart {
    display: flex;
    align-items: flex-end;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 0px;
}
.woocommerce-variation-add-to-cart.variations_button {
    display: flex;
    column-gap: 10px;
    row-gap: 0;
    flex-wrap: wrap;
}
form.cart input.qty {
    border: 2px solid black !important;
    height: 59px;
    border-radius: 3px !important;
    width: 60px;
}

.quantity {
    height: 100%;
}
p.price {
    font-family: 'Courgette';
    font-size: 30px;
    color: #6f906f;
}
.sale p.price ins bdi {
    color: #fff;
}
/* 7.4 Checkout */
.checkout #order_review {
    padding: 1.618em;
}
.checkout #shiptobilling {
    float: right;
    margin: 0;
    text-align: right;
    width: 48%;
}
.checkout #shiptobilling label {
    white-space: nowrap;
}
.checkout #shiptobilling input[type="checkbox"] {
    float: right;
    margin-left: 1em;
    margin-right: 0;
}

/*
 * Woo-Commerce Blocks
 */
ul.product-categories {
    list-style: none;
    margin-left: 0;
    position: relative;
    border-color: #e5e5e5;
}

#secondary ul.wc-block-product-categories-list {
    list-style: none;
    margin-left: 0;
    position: relative;
    border-color: #e5e5e5;
    padding: 0;
}

#secondary li.wc-block-product-categories-list-item {
    margin-bottom: 12px;
    padding-left: 27px;
    line-height: 20px;
    padding-bottom: 12px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #e5e5e5;
    position: relative;
    color: #808080;
}

#secondary li.wc-block-product-categories-list-item::before {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    text-align: center;
    position: absolute;
    left: 0;
    display: block;
    height: 20px;
    width: 20px;
    border-style: solid;
    border-width: 1px;
    margin-top: 1px;
    border-radius: 11px;
    font-weight: 300;
    line-height: 18px;
}

#secondary li.wc-block-product-categories-list-item a {
    color: #3f3f3f;
    text-decoration: none;
    font-size: 13px;
}

.quantity {
    margin-bottom: 15px;
}

button.single_add_to_cart_button.button.alt {
    margin-bottom: 15px;
}

/*
 * Order Recieved Page
 */
 .woocommerce-notice--success {
    background: #e6f7e4;
    border-radius: 3px;
    margin-top: 10px;
    padding: 15px;
    color: #39b44a;
    font-weight: bold;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.7);
}
.woocommerce-order-overview {
    background: #e9e9e9;
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
}
.woocommerce-order-overview:before, .woocommerce-order-overview:after {
    background: -webkit-linear-gradient(transparent 0, transparent 0), -webkit-linear-gradient(135deg, #e9e9e9 33.33%, transparent 33.33%), -webkit-linear-gradient(45deg, #e9e9e9 33.33%, transparent 33.33%);
    content: "";
    display: block;
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    height: 16px;
    background-size: 0 100%, 16px 16px, 16px 16px;
}
.woocommerce-order-overview:after {
    top: auto;
    bottom: -16px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.woocommerce-order-overview li {
    padding: 1em 1.618em;
    font-size: 0.8em;
    width: 25%;
    text-transform: uppercase;
    border-right: 1px dotted #e3e3e3;
    text-align: center;
}
.woocommerce-order-overview li:last-child {
    border-right: none;
}
.woocommerce-table--customer-details {
    border: none;
}
.woocommerce-table--customer-details tbody th {
    background: #e9e9e9;
    padding-left: 25px;
}
.woocommerce-table--customer-details tbody td {
    background: #fdfdfd;
    padding-left: 25px;
    text-align: left !important;
}
/* TABLE ORDER DETAIL */
.shop_table {
    width: 100%;
    margin-bottom: 2rem;
    max-width: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-collapse: collapse;
    border-spacing: 0;
    box-shadow: 0 0 5px rgba(57, 180, 74, 0.1);
}
ul.wc-item-meta {
    margin: 0;
}
.shop_table thead {
    background: #0f0f0f;
    color: #fff;
}
.shop_table thead th {
    border-bottom: none;
    font-weight: normal;
    font-size: 0.9rem;
    padding: 0.7rem;
}
.shop_table thead th:last-child {
    text-align: right;
}
.shop_table thead th.product-name {
    text-align: left;
}
.shop_table tbody td {
    padding: 0.7rem;
    border-bottom: 1px solid #f0f2f7;
}
.shop_table tbody td:last-child {
    text-align: right;
}
.shop_table tfoot {
    background-color: #fafafa;
}
.shop_table tfoot th {
    padding: 0.7rem;
    text-align: right;
}
.shop_table tfoot td {
    padding: 0.7rem;
    text-align: right;
    width: 10%;
}
.prod-cats {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.prod-cats a {
    background: linear-gradient(35deg, #8ba58b, #426742);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Dancing Script';
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.prod-cats.v2 a {
    background: unset;
    color: #426742;
    text-decoration: underline;
    padding: 0;
    border-radius: 3px;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Dancing Script';
    letter-spacing: 2px;
    position: relative;
    overflow: unset;
}
.prod-cats.v3 {
    gap: 0;
    border-bottom: 2px solid #426742;
}

.prod-cats.v3 a {
    background: unset;
    color: #426742;
    text-decoration: none;
    padding: 10px;
    border-radius: 0;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Dancing Script';
    letter-spacing: 2px;
    position: relative;
    overflow: unset;
    border-right: 2px solid #426742;
}

.prod-cats a:hover {
    box-shadow: 0 3px 20px -0.2px rgba(0, 0, 0, 0.3);
}

.prod-cats.v2 a:hover {
    box-shadow: unset;
}


@media (max-width: 991.98px) {
  .woocommerce-order-overview {
    display: block;
  }
  .woocommerce-order-overview li {
    width: auto;
    text-align: left;
    padding: 10px 0;
    margin: 0 15px;
    border-right: none;
    border-bottom: 1px dotted #e3e3e3;
  }
  .woocommerce-order-overview li:last-child {
    border-bottom: none;
  }
}
table.shop_table tbody td
table.woocommerce-orders-table thead {
    background: #0f0f0f;
    color: #fff;
}
table.shop_table thead th {
    border-bottom: none;
    font-weight: normal;
    font-size: 0.9rem;
    padding: 0.7rem;
}
table.shop_table thead th:last-child {
    text-align: right;
}
table.shop_table thead th.product-name {
    text-align: left;
}
table.shop_table tbody td, table.subscription_details tbody td {
    padding: 0.7rem;
    border-bottom: 1px solid #f0f2f7;
}
table.shop_table tbody td:last-child {
    text-align: right;
}
table.shop_table tfoot {
    background-color: #fafafa;
}
table.shop_table tfoot th {
    padding: 0.7rem;
    text-align: right;
}
table.shop_table tfoot td {
    padding: 0.7rem;
    text-align: right;
    width: 10%;
}
.subscription_details a.cancel,
.subscription_details a.change_payment_method,
.subscription_details a.subscription_renewal_early {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border-radius: 0.375rem;
    caption-side: bottom;
    border-collapse: collapse;
    border-spacing: 0;
    box-sizing: border-box;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.subscription_details a.cancel {
    background-color: #dc3545;
    border: 1px solid #dc3545;
}
.subscription_details a.change_payment_method {
    color: #0f0f0f;
    background-color: #ffc107;
    border: 1px solid #ffc107;
}
.subscription_details a.subscription_renewal_early {
    background-color: #198754;
    border: 1px solid #198754;
}



.subscription_details a.cancel:hover {
    background-color: #bb2d3b;
    border: 1px solid #bb2d3b;
}
.subscription_details a.change_payment_method:hover {
    background-color: #ffca2c;
    border: 1px solid #ffca2c;
}
.subscription_details a.subscription_renewal_early:hover {
    background-color: #157347;
    border: 1px solid #157347;
}