:root{
    --brand-main-color: #71553F;
    --brand-secondary-color: #9C684A;
    --btn-color: #71553F;
    --btn-hover-color: #000000;
    --notice-bg: #f9fafb;
    --notice-border: #e5e7eb;
    --notice-text: #111827;
    --notice-success: #22c55e;
    --notice-info: #3b82f6;
    --notice-error: #ef4444;
}
.woocommerce * {
    box-sizing: border-box;
}
.woocommerce ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.woocommerce ul li{
    list-style-type: none;
        margin-bottom: 5px;
}
.woocommerce a {
    text-decoration: none;
    color: inherit;
}
.woocommerce img {
    max-width: 100%;
    height: auto;
    display: block;
}
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:12px;
    width: 100%;
    /* grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px; */
}
/* Product card */
.woocommerce ul.products li.product {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid #f5f5f5;
    width: 100%;
    min-width: 0;
}

/* Details wrapper becomes the flex column */
.woocommerce ul.products li.product .product-details-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
    background-color: #fff;
    position: relative;
}
.product-details-wrapper .button {
    margin-top: auto;
}
.product-details-wrapper::before {
    position: absolute;
    content: '';
    top: -130px;
    bottom: auto;
    left: 0;
    right: 0;
    margin: auto;
    border: 48px solid #fff;
    z-index: 1;
    width: 100%;
    border-radius: 182px 0 0 182px;
    -moz-border-radius: 182px 0 0 182px;
    -webkit-border-radius: 182px 0 0 182px;
    -khtml-border-radius: 182px 0 0 182px;
    height: 400px;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
}
.related .product-details-wrapper::before{
        top: -110px;
}
.product-image-wrapper{
    padding: 0;
}
.nxt-wishlist-button{
    justify-content: center;
}
/* Keep title & price normal */
.woocommerce ul.products li.product 
.product-details-wrapper 
.woocommerce-loop-product__link {
    display: block;
}

/* Push button to bottom */
.woocommerce ul.products li.product 
.product-details-wrapper 
.button {
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
}

.product-remove a.remove{
    background-color: var(--Mcolor);
    display: inline-block;
    padding: 2px 8px 3px 8px;
    line-height: 1;
    color: #fff;
    border-radius: 3px;
}
.woocommerce button.button, .woocommerce a.button, .nxt-wishlist-add-to-cart, .wc-block-cart__submit-button, .wc-block-components-checkout-place-order-button {
    background-color: var(--btn-color);
    color: #fff;
    padding: 12px 13px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    width: auto;
    align-self: flex-start;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid #71553F;
    border-radius: 30px;
    height: 46px;
    text-align: center;
}
.nxt-wishlist-button{
    justify-content: center;
}
.wc-block-cart__submit-button{
    width: 100%;
}
.woocommerce a.button.checkout-button, .woocommerce button[name="woocommerce_checkout_place_order"]{
    width: 100%;
}
.woocommerce-notices-wrapper{
        flex: 0 0 100%;
}
.woocommerce button.button:hover,
.woocommerce a.button:hover, .nxt-wishlist-add-to-cart:hover, .wc-block-cart__submit-button:hover, .wc-block-components-checkout-place-order-button:hover {
    background-color: var(--btn-hover-color);
    color: #fff;
}
.wc-block-components-checkout-place-order-button{
    width: 100%;
}
.add_to_cart_button::before {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 6px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" fill="white"><path d="M0 24C0 10.7 10.7 0 24 0L69.5 0c22 0 41.5 12.8 50.6 32l411 0c26.3 0 45.5 25 38.6 50.4l-41 152.3c-8.5 31.4-37 53.3-69.5 53.3l-288.5 0 5.4 28.5c2.2 11.3 12.1 19.5 23.6 19.5L488 336c13.3 0 24 10.7 24 24s-10.7 24-24 24l-288.3 0c-34.6 0-64.3-24.6-70.7-58.5L77.4 54.5c-.7-3.8-4-6.5-7.9-6.5L24 48C10.7 48 0 37.3 0 24z"/></svg>') no-repeat center;
    position: relative;
    top: 1px;
}

body .woocommerce-message, body .woocommerce-info{
    background: #fff8e6;
    border-left: 4px solid #ffb300;
    color: #663c00;
}
body .woocommerce-success {
    background: #e6ffed; 
    border-left: 4px solid #00a32a;
    color: #1a3f2e; 
    
}
body .woocommerce-error {
    background: #ffecec;
    border-left: 4px solid #d63638;
    color: #5a1a1b;
}
.woocommerce-notices-wrapper li{
    list-style: none;
}
body .woocommerce-message,
body .woocommerce-success,
body .woocommerce-info,
body .woocommerce-error {
    padding: 15px 20px;
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 6px;
    border-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
body .woocommerce-message a,
body .woocommerce-success a,
body .woocommerce-info a,
body .woocommerce-error a {
    color: #000 !important;
    text-decoration: underline;
    margin-left: 8px;
    padding: 0 !important;
    height: auto !important;
    background-color: transparent !important;
    border: 0 !important;
}
body .woocommerce-message a:hover,
body .woocommerce-success a:hover,
body .woocommerce-info a:hover,
body .woocommerce-error a:hover{
    color: var(--brand-main-color) !important;
}
.woocommerce-notices-wrapper .button{
    margin-left: auto !important;
}
.woocommerce-loop-product__title{
    font-size: 1.2rem;
    font-weight: 600;
    margin: 12px 0 -28px !important;
    text-align: center;
    top: -40px;
    line-height: 1.4rem;
}
span.price {
    font-size: 1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
        color: #a17d5c;
    text-align: center;
}
.woocommerce div.product.type-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.woocommerce div.product.type-product > .woocommerce-product-gallery {
    grid-column: 1;
}

.woocommerce div.product.type-product > .summary {
    grid-column: 2;
}
.woocommerce div.product.type-product > .woocommerce-tabs,
.woocommerce div.product.type-product > .related,
.woocommerce div.product.type-product > .upsells {
    grid-column: 1 / -1;
}
.woocommerce .quantity .qty {
    width: 40px !important;
    text-align: center;
    background-color: #fff0;
    border: 1px solid #000 !important;
    color: #000001;
    height: 41px;
    font-weight: 400;
}
input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{
    -webkit-appearance:none;
    margin:0
}
input[type=number]{
    -webkit-appearance:textfield;
            appearance:textfield;
    -moz-appearance:textfield
}
.woocommerce div.product .product_title {
    clear: none;
    padding: 0;
    line-height: 1.1;
    margin: 15px 0;
}
.woocommerce-product-gallery{
    background-color: rgb(252, 252, 252);
    padding: 20px 20px 0 20px;
}
.flex-control-nav img{
    max-width: 90%;
    margin: 0 auto !important;
    border: 1px solid #eee;
}
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
	background: inherit;
	font-weight: 700;
	display: inline-block
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
	opacity: .7;
	display: inline-block
}

.woocommerce div.product p.stock {
	font-size: .92em
}

.woocommerce div.product .woocommerce-product-rating {
	margin-bottom: 1.618em
}

.woocommerce div.product div.images {
	margin-bottom: 2em
}

.woocommerce div.product div.images img {
	display: block;
	width: 100%;
	height: auto;
	box-shadow: none
}

.woocommerce div.product div.images div.thumbnails {
	padding-top: 1em
}

.woocommerce div.product div.images.woocommerce-product-gallery {
	position: relative
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	transition: all cubic-bezier(.795, -.035, 0, 1) .5s;
	margin: 0;
	padding: 0
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg {
	background-color: #fff;
	opacity: 0
}

.woocommerce div.product div.images .woocommerce-product-gallery__image--placeholder {
	border: 1px solid #f2f2f2
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
	width: 25%;
	display: inline-block
}

.woocommerce div.product div.images .woocommerce-product-gallery__image a {
	display: block;
	outline-offset: -2px
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
	background: #fff;
	border: none;
	box-sizing: content-box;
	border-radius: 100%;
	cursor: pointer;
	font-size: 2em;
	height: 36px;
	padding: 0;
	position: absolute;
	right: .5em;
	text-indent: -9999px;
	top: .5em;
	width: 36px;
	z-index: 99
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before {
	border: 2px solid #000;
	border-radius: 100%;
	box-sizing: content-box;
	content: "";
	display: block;
	height: 10px;
	left: 9px;
	top: 9px;
	position: absolute;
	width: 10px
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after {
	background: #000;
	border-radius: 6px;
	box-sizing: content-box;
	content: "";
	display: block;
	height: 8px;
	left: 22px;
	position: absolute;
	top: 19px;
	transform: rotate(-45deg);
	width: 2px
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger span[aria-hidden=true] {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	left: 50%;
	margin: -1px;
	overflow: hidden;
	position: absolute;
	top: 50%;
	width: 1px
}

.woocommerce div.product div.images .flex-control-thumbs {
	overflow: hidden;
	zoom: 1;
	margin: 0;
	padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}

.woocommerce div.product div.images .flex-control-thumbs li {
    width: 100%;
    float: left;
    margin: 0;
    list-style: none;
    padding: 8px;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
	cursor: pointer;
	opacity: .5;
	margin: 0
}

.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs li img:hover {
	opacity: 1
}

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

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

.woocommerce div.product .woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
	clear: left
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
	list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 1.125rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border-bottom: 0;
    background-color: #fff;
    color: #515151;
    display: inline-block;
    position: relative;
    z-index: 0;
    border-radius: 0;
    margin: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: inline-block;
	padding: .5em 0;
	font-weight: 700;
	color: #515151;
	text-decoration: none;
    border-bottom: 2px solid transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
	text-decoration: none;
	color: #6b6b6b
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: #fff;
	color: #515151;
	z-index: 2;
	border-bottom-color: #fff
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: var(--brand-main-color);
    text-shadow: inherit;
    border-bottom: 2px solid var(--brand-main-color);
}
.woocommerce div.product .woocommerce-tabs .panel {
	margin: 2em 0;
	padding: 0
}
.woocommerce-Tabs-panel ol, .woocommerce-Tabs-panel ul {
    padding-left: 20px;
}
.woocommerce-Tabs-panel ul {
    margin-bottom: 1.43em;
}
.woocommerce-page div.product .woocommerce-tabs ul.tabs::before{
    position: absolute;
    content: " ";
    width: 100%;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #dddddd;
    z-index: 1;
}
.panel > h2:first-child {
    display: none;
}
.shop_attributes td, .shop_attributes th {
    border: none;
    position: relative;
}
.shop_attributes tr:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
}
.shop_attributes th:after {
    content: '';
    border-right: 1px solid #e5e5e5;
    position: absolute;
    right: 0;
    top: 2px;
    bottom: 2px;
}
/* 
Slick slider for product thumbnails
*/
.woocommerce-product-gallery {
    max-width: 100%;
    overflow: hidden;
}

.flex-control-thumbs,
.flex-control-thumbs .slick-list {
    overflow: hidden;
    max-width: 100%;
}

.flex-control-thumbs {
    list-style: none;
    padding: 0;
}
.flex-control-thumbs .slick-track {
    display: flex !important;
    flex-wrap: nowrap !important;
}

.flex-control-thumbs .slick-slide {
    height: auto !important;
}
/* 
Slick slider for product thumbnails
*/
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.loading::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.loading::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.loading::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.loading::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.loading::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.loading::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.loading::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.loading::after{
    content: "";
    vertical-align: top;
    width: 1em;
    height: 1em;
    font-weight: 400;
    position: relative;
    border: 3px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    top: 5px;
    margin-left: 5px;
}
@keyframes rotation {to{transform: rotate(1turn)}}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.added::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.added::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.added::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.added::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.added::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.added::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.added::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.added::after{
    content: "✓";
    color: #fff;
    margin-left: 5px;
    font-weight: bold;
}
.added_to_cart.wc-forward{
    color: var(--btn-color);
    text-decoration: underline;
    display: block;
    margin-top: 5px;
}
.single-product form.cart{
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}
.single-product form.cart > div:first-child{
    flex:1;
    width: 100%;
}
.single-product form.cart > div.quantity{
    flex:0;
    width: 100%;
}
.quantity{
    display: flex;
}
.theme-qty-btn.plus{
    margin-right: 10px;
}
.single-product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button{
    flex-direction: row;
}
.single-product form.cart .single_add_to_cart_button{
    width: 100%;
    align-self: flex-start;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}
.woocommerce-variation-add-to-cart-disabled {
    display: none !important;
}
.theme-buy-now{
    margin-left: 12px;
    width: calc(50% - 12px) !important;
}
.product{
    position: relative;
}
.onsale {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--btn-color);
    color: #fff;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}
.product .onsale{
    right: auto;
    left: 0;
}
.out-of-stock{
    color: #d63638;
}
.in-stock{
    color: #22c55e;
}
.sku_wrapper, .posted_in, .tagged_as {
    display: block;
    font-size: 0. ninerem;
    color: #6b6b6b;
    margin-top: 8px;
}
.posted_in a:hover, .tagged_as a:hover {
    text-decoration: underline;
    color: var(--brand-main-color);
}
.woocommerce button.aramexcalculator{
    background-color: var(--btn-hover-color);
}
.woocommerce button.aramexcalculator:hover{
    background-color: var(--btn-color);
}
.flex-control-thumbs .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 10;
}
.flex-control-thumbs .slick-arrow.slick-next{
    left: auto;
    right: -7px;
}
.woocommerce-cart .woocommerce {
    max-width: 1260px !important;
    width: 100%;
    margin: 0 auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}
@media (max-width: 768px) {
    .woocommerce div.product.type-product {
        display: block;
    }
}
/* Cart Page Styles */
.woocommerce-cart table.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2em;
}
.woocommerce-cart .woocommerce {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.woocommerce-cart .woocommerce-cart-form {
    width: 70%;
    padding-right: 20px;
}
.woocommerce-cart .woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
    width: 30%;
    background-color: #FBFAFB;
    padding: 20px;
}
.woocommerce-cart table.shop_table th {
    background-color: #f9fafb;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid #e5e7eb;
}

.woocommerce-cart table.shop_table td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.woocommerce-cart table.shop_table img {
    max-width: 80px;
    height: auto;
}

.woocommerce-cart .product-name a {
    color: var(--brand-main-color);
    text-decoration: none;
}

.woocommerce-cart .product-quantity input.qty {
    width: 60px;
}

.woocommerce-cart-totals {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 6px;
    margin-top: 2em;
}

.woocommerce-cart-totals table {
    width: 100%;
    margin-bottom: 1.5em;
}

.woocommerce-cart-totals th,
.woocommerce-cart-totals td {
    padding: 8px 0;
    border: none;
}

.woocommerce-cart-totals .order-total {
    font-weight: 700;
    font-size: 1.125rem;
}

/* Checkout Page Styles */
.woocommerce-checkout form.checkout {
    max-width: 1260px;
    margin: 0 auto;
}

.woocommerce-checkout-review-order {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 6px;
}

.woocommerce-checkout-review-order-table {
    width: 100%;
    margin-bottom: 1.5em;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 2em;
}

.woocommerce .form-row {
    margin-bottom: 1em;
}

.woocommerce .form-row input,
.woocommerce .form-row textarea,
.woocommerce .form-row select {
    padding: 10px;
    border: 1px solid #000;
    border-radius: 4px;
}
.woocommerce-billing-fields__field-wrapper label{
    display: block;
}
.woocommerce #payment {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 6px;
}

.woocommerce #payment ul.payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5em 0;
}

.woocommerce #payment ul.payment_methods li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}
.col2-set{
    display: flex;
    flex-wrap: wrap;
}
.woocommerce h2{
    margin-bottom: 20px;
}
.woocommerce form .form-row {
    padding: 3px;
    margin: 0 0 6px;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    display: inline-block;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
    float: left;
    margin-right: 1em;
}
.woocommerce form .form-row::after, .woocommerce-page form .form-row::after {
    clear: both;
}
.woocommerce form .form-row::after, .woocommerce form .form-row::before, .woocommerce-page form .form-row::after, .woocommerce-page form .form-row::before {
    content: " ";
    display: table;
}
.woocommerce-MyAccount-navigation ul li{
    list-style-type: none;
}
.coupon{
    float: left;
}
.actions input[type="text"]{
    width: auto;
    background-color: #fff;
    margin-right: 10px;
    padding: 15px;
}
.actions .button{
    float: right;
}
button:disabled{
    opacity: 0.7;
    cursor: not-allowed !important;
    pointer-events: none;
}
.shop-toolbar p{
    margin: 0;
}
.woocommerce-products-header__title.page-title{
    display: none;
}
.woocommerce-pagination ul.page-numbers{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}
.woocommerce-pagination .page-numbers li{
    margin-bottom: 0;
}
.woocommerce-pagination .page-numbers li a, .woocommerce-pagination .page-numbers li span{
    display: block;
    padding: 5px 10px;
    border: 1px solid #d8d8d8;
}
.woocommerce-pagination .page-numbers li .current, .woocommerce-pagination .page-numbers li a:hover{
    background-color: var(--brand-main-color);
    color: #fff;
    border-color: var(--brand-main-color);
}
.woocommerce-EditAccountForm fieldset {
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #ccc;
}
#account_display_name_description{
    font-size: 14px;
}
.headerCount span, .wishlistCount span {
    position: absolute;
    background-color: var(--brand-secondary-color);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    top: -3px;
    font-size: 12px;
    right: -10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.product-image-wrapper .secondary-image {
    transition: 0.5s ease,transform 2s cubic-bezier(0, 0, 0.44, 1.18);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.product-image-wrapper:hover .secondary-image {
    transform: scale(1.09);
    opacity: 1;
}
.quantity input[type=number]{
    padding: 0 !important;
    border-radius: 0 !important;
}
.my-card-wrapper{
    padding: 8px;
    border: 3px solid #ebe5da;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -khtml-border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.inLineColor{
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #FAF7F2;
        overflow: hidden;
}
.product-details-wrapper * {
    position: relative;
    z-index: 2;
}
.single-product .woocommerce-variation-add-to-cart{
    display: flex;
    align-items: center;
}
.single-product span.price, .single-product p.price{
    text-align: left;
    font-size: 1.4rem;
    color: #a17d5c;
    font-weight: 700;
}
.reset_variations{
    margin-left: 10px;
}
.woo-variation-swatches.wvs-show-label .variations td{
    display: flex !important;
    align-items: center;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item.selected:not(.no-stock) {
    background-color: var(--brand-secondary-color) !important;
    color: #fff !important;
    box-shadow: none !important;
    outline: 2px solid var(--brand-secondary-color);
}
.woo-variation-swatches.wvs-show-label .variations td, .woo-variation-swatches.wvs-show-label .variations th{
    padding: 0;
    border: 0;
}
.vertical-design .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
}
.vertical-design .inLineColor{
    display: flex;
    background-color:transparent;
    flex-direction: row;
}
.vertical-design .inLineColor > a{
    width: 50%;
    background-color: #FAF7F2;
}
.vertical-design .product-details-wrapper::before{
    display: none;
}
.vertical-design .woocommerce-loop-product__title{
    top:0;
    margin: 0 0 20px 0 !important;
    text-align: left;
}
.vertical-design span.price{
    text-align: left;
}
.product .onsale{
    display: none;
}
.wp-block-woocommerce-cart{
    padding: 20px;
}
@media (min-width: 768px) {
    .col2-set [class*=col-] {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .woocommerce-MyAccount-navigation{
        width: 30%;
        float: left;
    }
    .woocommerce-MyAccount-content{
        width: 70%;
        float: left;
    }
}
@media (max-width: 768px) {
    .woocommerce-cart .woocommerce-cart-form, .woocommerce-cart .woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals{
        width: 100%;
    }
    .woocommerce .woocommerce-cart-form table.shop_table_responsive tr {
        display: block;
    }
    .woocommerce .woocommerce-cart-form table.shop_table_responsive tr td{
        display: block;
        text-align: right;
    }
    .woocommerce .woocommerce-cart-form table.shop_table_responsive thead {
        display: none;
    }
    .woocommerce .woocommerce-cart-form table.shop_table_responsive tr td::before {
        content: attr(data-title) ": ";
        font-weight: 700;
        float: left;
        margin-right: 10px;
    }
    .product-remove::before, .actions::before{
        display: none !important;
    }
    .product-remove, .actions{
        border:0 !important
    }
    .woocommerce #content table.cart .product-thumbnail, .woocommerce table.cart .product-thumbnail, .woocommerce-page #content table.cart .product-thumbnail, .woocommerce-page table.cart .product-thumbnail{
        display: none !important;
    }
    td.product-quantity{
        display: flex !important;
        justify-content: space-between;
    }
    .actions{
        text-align: left !important;
    }
    .woocommerce table.shop_table_responsive tr td.coupon {
        float: none;
    }
    .actions button[name="update_cart"]{
        float: none;
        width: 100%;
        margin-top: 20px;
    }
    .woocommerce .woocommerce-cart-form table.shop_table_responsive tr:nth-child(2n) td {
        background-color: rgba(0, 0, 0, .025);
    }
    .woocommerce-loop-product__title {
        font-size: 1rem;
        margin: 12px 0 10px !important;
        text-align: center;
        top:0;
        line-height: 1.2rem;
    }
    .product-details-wrapper::before{
        display: none;
    }
     .woocommerce ul.products li.product .product-details-wrapper{
        padding: 20px 0px;
    }
    .shop-toolbar.row{
        flex-wrap: nowrap;
    }
    .woocommerce-product-gallery{
        padding: 0;
    }
    .woocommerce div.product div.images img{
        border-radius: 5px;
    }
    .vertical-design .inLineColor > a{
        width: 40%;
    }
    .vertical-design .woocommerce ul.products li.product .product-details-wrapper {
        padding: 20px 10px;
    }
    .vertical-design .nxt-wishlist-button{
        justify-content: flex-start;
    }
    .vertical-design .woocommerce ul.products li.product .product-details-wrapper .button{
        margin-left: 0;
    }
}
@media (max-width: 1100px){
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}