/*
Theme Name:   Bricks Child Theme
Theme URI:    https://bricksbuilder.io/
Description:  Use this child theme to extend Bricks.
Author:       Bricks
Author URI:   https://bricksbuilder.io/
Template:     bricks
Version:      1.1
Text Domain:  bricks
*/

/*
*	GLOBAL
*/

/* Color */
:root {

	--site-text: var(--text, #212121);
	--site-dark: var(--text, #262626);
	--site-highlight: var(--highlight, #FF6668);
	--site-light: var(--light, #FFD2D2);
	--site-accent: var(--accent, #FF2929);
	--site-primary: var(--primary, #472382);
}

/* Font */
html {
	font-size: 62.5%; /* = 10px */
}

body {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--site-text);
}

:where(h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5) {
	font-weight: 700;
	line-height: 1.2;
	color: #000;
}

h1,
.h1 {
	font-size: 4.2rem;
}

h2,
.h2 {
	font-size: 2.4rem;
}

h3,
.h3 {
	font-size: 2rem;
}

h4,
.h4 {
	font-size: 1.8rem;
}

h5,
.h5 {
	font-size: 1.6rem;
}
h6,
.h6 {
	font-size: 1.4rem;
}

.brxe-post-content h1,
.brxe-post-content h2,
.brxe-post-content h3,
.brxe-post-content h4,
.brxe-post-content h6 {
  margin-block: 1em;
}

.brxe-heading:not([class*=" bricks-color-"]):not([class^="bricks-color-"]):not([class*="bricks-type-"]) {
	color: #000;
}

.brxe-heading.bricks-type-lead {
	font-size: 20px;
	font-weight: 700;
	padding: 8px 20px;
	border-radius: 6px;
	background-color: var(--site-light);
	color: var(--site-accent);
}

.text-lg {
	font-size: 1.8rem;
}

.text-sm {
	font-size: 1.4rem;
}

.hidden {
	display: none !important;
}

/* Layout */
.brx-sticky.scrolling {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 16px 32px rgba(0, 0, 0, 0.04);
}

.brx-sticky > .brxe-section:first-child {
	transition: all .3s ease-in-out;
}

.brx-sticky.scrolling > .brxe-section:first-child {
	margin-top: -41px;
}

.brxe-section {
	padding-inline: clamp(45px, 5vw, 144px);
}
@media(max-width: 767px) {
	.brxe-section {
		padding-inline: 20px;
	}
}

.brxe-container {
	width: 1180px;
}

/* Button */
:where(.brxe-button, .bricks-button, 
form:not(.bricks-search-form) [type="button"],
form:not(.bricks-search-form) [type="submit"], 
li.product .button, 
.button, 
.wc-block-components-button):not(.show-password-input) {
	cursor: pointer;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;

	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.87500;
	text-align: center;

	color: #fff;
	background-color: #491d87;
	padding: 0.5rem 1rem;
	border: 1px solid #491d87;
	box-shadow: none;
	border-radius: 5px;
	outline: none !important;
	overflow: hidden;
	transition: 0.4s ease-out;
	z-index: 1;
}

:where(.brxe-button, .bricks-button).lg {
	font-size: 1.8rem;
	line-height: 2rem;
	padding: 1rem 3rem;
}
:where(.brxe-button, .bricks-button).bricks-background-primary {
	color: #fff;
	background-color: #491d87;
	border-color: #491d87;
}

:where(.brxe-button, .bricks-button).outline, 
:where(.brxe-button, .bricks-button).bricks-background-primary.outline {
	color: #000;
	background-color: #fff;
	border-color: #000;
}

:where(.brxe-button, .bricks-button):hover,
:where(.brxe-button, .bricks-button).bricks-background-primary:hover,
:where(.brxe-button, .bricks-button).bricks-background-secondary:hover,
form:not(.bricks-search-form) [type="button"]:not(.show-password-input):hover, 
form:not(.bricks-search-form) [type="submit"]:hover, 
li.product .button:hover,
.button:hover,
.wc-block-components-button:hover  {
	border-color: rgba(38, 38, 38, 0.5);
	background-color: rgba(38, 38, 38, 0.5);
}

:where(.brxe-button, .bricks-button) svg path {
	stroke: currentColor;
}

/* 
* Gravity Form 
*/

.gform_wrapper {
	--gf-field-color: #000;
	--gf-field-border-color: rgba(0,0,0,0.5);
	--gf-field-bg-color: #fff;
	--gf-button-color: #fff;
	--gf-button-bg-color: #491d87;
	--gf-button-border-color: #491d87;
	--gf-button-hover-color: #fff;
	--gf-button-hover-bg-color: rgba(38, 38, 38, 0.5);
	--gf-button-hover-border-color: rgba(38, 38, 38, 0.5);
	--gf-error-color: #c02b0a;
}
.gform_wrapper .gform_confirmation_message {
	padding: 15px;
	text-align: center;
	color: var(--bricks-text-success);
	background-color: var(--bricks-bg-success);
}
.gform_wrapper form {
	position: relative;
}
/* gfield gap */
.gform_wrapper .gform_body .gform_fields {
	grid-row-gap: 10px;
	grid-column-gap: 24px;
}
.gform_wrapper .gfield_label {
	font-size: 1.6rem;
	font-weight: 600;
	color: #000000;
}
.gform_wrapper .gform-field-label {
	font-size: 1.4rem;
	font-weight: 600;
	color: #000;
}
/* gfield */
.gform_wrapper .gform_body .gform_fields .gfield input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="file"]),
.gform_wrapper .gform_body .gform_fields .gfield select,
.gform_wrapper .gform_body .gform_fields .gfield textarea {
	font-size: 1.4rem!important;
	line-height: 1.5em!important;
	font-weight: 400!important;
	color: var(--gf-field-color)!important;

	padding: 12px 24px!important;
	border: 1px solid var(--gf-field-border-color)!important;
	border-radius: 0!important;
	outline: none!important;
	box-shadow: none!important;
	background: var(--gf-field-bg-color);
}
.gform_wrapper .gform_body .gform_fields .gfield input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="file"])::placeholder,
.gform_wrapper .gform_body .gform_fields .gfield textarea::placeholder {
	color: inherit;
	opacity: 0.4;
}
.gform_wrapper .gform_body .gform_fields .gfield input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="file"]):focus,
.gform_wrapper .gform_body .gform_fields .gfield textarea:focus {
	border-color: #000;
}
.gform_wrapper .gform_body .gform_fields .gfield input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="file"]),
.gform_wrapper .gform_body .gform_fields .gfield select {
	height: auto;
}
.gform_wrapper .gform_body .gform_fields .gfield textarea,
.gform_wrapper .gform_body .gform_fields .gfield textarea.large,
.gform_wrapper .gform_body .gform_fields .gfield textarea.medium {
	height: 152px;
	min-height: 0;
}

/* button */
.gform_wrapper .gform_footer {
	position: relative;
	margin-top: 10px;
}
.gform_wrapper input[type="button"],
.gform_wrapper .button {
	width: 100%!important;
	font-size: 1.4rem!important;
	font-weight: 600!important;
	line-height: 1.7rem!important;
	letter-spacing: 0!important;
	text-transform: capitalize!important;
	color: var(--gf-button-color)!important;

	padding: 0.5rem!important;
	border: 1px solid var(--gf-button-border-color)!important;
	border-radius: 3px!important;
	background: var(--gf-button-bg-color)!important;
	outline: none!important;
	box-shadow: none!important;
}
.gform_wrapper input[type="button"]:hover,
.gform_wrapper .button:hover {
	color: var(--gf-button-hover-color)!important;
	background: var(--gf-button-hover-bg-color)!important;
	border-color: var(--gf-button-hover-border-color)!important;
}

.gform_wrapper .gform-loader{
	position: absolute!important;
	/* top: 16px!important; */
	left: -30px!important;
	right: auto!important;
	margin: 0!important;
	z-index: 2;
}

/* Remove */
.gform_wrapper .gform_heading,
.gform_wrapper .gform_validation_errors,
.gform_wrapper .gfield_validation_message {
	display: none!important
}

/* Error */
.gform_wrapper .gform_body .gform_fields .gfield.gfield_error  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="file"]),
.gform_wrapper .gform_body .gform_fields .gfield.gfield_error  select,
.gform_wrapper .gform_body .gform_fields .gfield.gfield_error  textarea {
	border-color: var(--gf-error-color)!important;
}
.gform_wrapper .gform_body .gform_fields .gfield.gfield_error  input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="file"])::placeholder,
.gform_wrapper .gform_body .gform_fields .gfield.gfield_error textarea::placeholder {
	color: var(--gf-error-color)!important;
}

.gform_confirmation_message {
	border: 1px solid #2E7D32;
	background: #E8F5E9;
	color: #1B5E20;

	padding: 12px 16px;
	border-radius: 10px;
	text-align: center;
}


/* form #1 */
#field_1_1, #field_1_3, #field_1_4, #field_1_8 {
	display: flex;
	flex-direction: row;
	align-items: stretch;
}
#gform_wrapper_1 :where(#field_1_1, #field_1_3, #field_1_4, #field_1_8) .gfield_label {
	padding: 12px 17px;;
	background: #491d87;
	color: #fff!important;
	flex-shrink: 0;
	width: max-content;
	height: 100%;
	margin: 0!important;
	font-size: 16px!important;
}
#gform_wrapper_1 :where(#field_1_1, #field_1_3, #field_1_4, #field_1_8) .ginput_container {
	flex-grow: 1;
}

#gform_wrapper_1 #field_1_7 .gfield_checkbox {
	width: max-content;
	max-width: 100%;
}
#gform_wrapper_1 #field_1_7 .gchoice {
	display: flex;
}
#gform_wrapper_1 #field_1_7 input {
	display: none;
} 
#gform_wrapper_1 #field_1_7 label {
	position: relative;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%!important;
	justify-content: space-between;
}

#gform_wrapper_1 #field_1_7 label::after {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	-webkit-mask-image: url('/wp-content/uploads/2026/06/tick-circle-outline.svg'); /* For Safari/Older browsers */
	mask-image: url('/wp-content/uploads/2026/06/tick-circle-outline.svg');

	/* Standard background-like properties also apply to masks */
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	background: #491d87;
	cursor: pointer
}
#gform_wrapper_1 #field_1_7 .gchoice:has(input:checked) label::after {
	-webkit-mask-image: url('/wp-content/uploads/2026/06/tick-circle-is-active.svg'); /* For Safari/Older browsers */
	mask-image: url('/wp-content/uploads/2026/06/tick-circle-is-active.svg');
}
#gform_wrapper_1 .gform-footer {
	position: absolute;
	margin: 0;
	right: 20px;
	bottom: 20px;
}
#gform_wrapper_1 .gform-footer [type="submit"] {
	padding-right: 28px!important;
	background-image: url('/wp-content/uploads/2026/06/submit.svg')!important;
	background-repeat: no-repeat!important;
	background-size: 16px auto!important;
	background-position: calc(100% - 6px) 50%!important;
}
@media(min-width: 680px) {
	#field_1_1, #field_1_3, #field_1_4, #field_1_8 {
		grid-column: span 6;
	}
	#gform_wrapper_1 #field_1_7 {
		grid-column: 7/12;
		grid-row: 1/4
	}
}
@media(max-width: 679px) {
	#gform_wrapper_1 #field_1_7 {
		margin-block: 10px
	}
}

/* 
*   Woo Loop
*/
.splide.products .splide__track {
	padding-top: 10px;
}

.splide__list{
	align-items: stretch;
}

.splide__list li.product{
	height: 100%;
}

ul.columns-4 {
	gap: 30px;
	grid-template-columns: repeat(4, 1fr);
}
li.product {
	position: relative;
	display: flex;
	width: 100%;
	flex-grow: 1;
	column-gap: 0;
	flex-wrap: nowrap;
	flex-direction: column;
}
li.product .product-thumb {
	position: relative;
}
li.product .product-link {
	position: relative;
	display: block;
}
li.product .product-image-variation {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 1 / 1;
}
li.product .attachment-woocommerce_thumbnail {
	opacity: 1;
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 1 / 1;
	transition: opacity .5s ease-in-out;
}
li.product:has(.product-image-hover):hover .attachment-woocommerce_thumbnail {
	opacity: 0;
}
li.product .product-image-hover {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	transition: opacity .5s ease-in-out;
}
li.product:has(.product-image-hover):hover .product-image-hover {
	opacity: 1;
}
li.product .product-tags {
	position: absolute;
	top: -7px;
	left: 0;
	z-index: 2;
}
li.product .product-tags img {
	width: auto;
    height: 28px;
}
li.product .product-content {
	margin-top: 32px;
	position: relative;
	display: flex;
	flex-grow: 1;
	flex-direction: column;
}
li.product .product-title {
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.5;
	color: #000;
	transition: .2s ease-in-out;
	
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;

    height: calc(1.5em * 3);
}
li.product .product-title:hover {
	color: rgba(0,0,0,0.5);
}
li.product .product-price {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
li.product .price {
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 2rem;
	color: var(--site-highlight);
}
li.product .price > del {
	order: 2;
	font-size: 1.6rem;
	font-weight: 300;
	color: #000;
	margin-left: 15px;
}
li.product .price > ins {
	text-decoration: none;
}
li.product .product-cta .button {
	margin: 0;
	padding: 0;
	position: absolute;
	top: -90px;
	right: 10px;
	min-width: 0;
	column-gap: 0;
	width: 48px;
	height: 48px;
	font-size: 0;
	line-height: 0;
	border-radius: 100px;
	border-color: var(--site-primary);
	background-color: var(--site-primary);
}
li.product .product-cta .button:hover {
	border-color: rgba(38, 38, 38, 0.5);
	background-color: rgba(38, 38, 38, 0.5);
}
li.product .product-cta .button:after {
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url(/wp-content/uploads/2026/06/shopping.svg);
}
li.product .added_to_cart {
	display: none!important;
}
li.product .variations_form table,
li.product .variations_form tbody,
li.product .variations_form tr,
li.product .variations_form th,
li.product .variations_form td {
	display: block;
}
li.product .variations_form .variations {
	margin-top: 10px;
	margin-bottom: 0;
}
li.product .variations_form .label {
	display: none !important;
}
li.product .variations_form .value {
	margin-bottom: 0 !important;
	padding: 0;
	width: 100%;
}
li.product .variations_form .sps-swatches {
	margin: 0;
    padding: 0;
    gap: 6px;
    display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	max-height: 40px;
}
li.product .variations_form .sps-swatches .superSwatch {
	margin: 0;
    padding: 0;
	flex-shrink: 0;
    width: 36px !important;
    height: 36px !important;
}
li.product .variations_form .sps-swatches .superSwatch.selected {
    border-color: var(--site-primary);
}
li.product .variations_form .sps-swatches .superSwatch .textureImage {
    width: 36px !important;
    height: 36px !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
li.product .variations_form .woocommerce-variation {
	margin-bottom: 0;
}
li.product .variations_form .woocommerce-variation .woocommerce-variation-price {
	margin: 0;
}
li.product .variations_form .stock.in-stock {
	color: var(--bricks-text-success);
}
li.product .variations_form .stock.out-of-stock {
    color: var(--bricks-text-danger);
}
li.product .variations_form .woocommerce-variation-add-to-cart .quantity {
	display: none !important;
}
@media (max-width: 1024px) {
	ul.columns-4 {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media(max-width: 767px) {
	ul.columns-4 {
		gap: 15px;
		grid-template-columns: repeat(2, 1fr);
	}
	li.product .product-title {
		font-size: 1.4rem;
		line-height: 1.3;
		height: calc(1.3em * 3);
	}
	li.product .price {
		font-size: 1.6rem;
	}
	li.product .price > del {
		font-size: 1.3rem;
		margin-left: 5px;
	}

}

/* Shop - Archive */
.bricks-archive-title-wrapper .title {
	margin-bottom: 10px;
	font-size: 3.2rem;
	text-transform: uppercase;
}
.archive-content {
	padding-block: 50px;
}
.archive-content .bricks-archive-title-wrapper {
	margin-block: 0 50px;
}
section.brxe-section.woo-breadcrumb {
	padding-block: 15px;
	background: #472382;
}
section.brxe-section.woo-breadcrumb .woocommerce-breadcrumb {
	margin: 0;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	max-width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-transform: uppercase;
}
section.brxe-section.woo-breadcrumb .woocommerce-breadcrumb a {
	color: rgba(255,255,255,0.8);
	transition: 0.3s ease-in;
	font-weight: 400;
}
section.brxe-section.woo-breadcrumb .woocommerce-breadcrumb a:hover {
	color: #fff;
}
section.shop-banner .swiper-slide .brxe-section {
	padding-block: 20px;
}
section.shop-banner .bg-purple {
	background-color: rgba(71, 35, 130, 0.1);
}
section.shop-banner .bg-blue {
	background-color: #E5EFFF;
}
section.shop-banner .bg-yellow {
	background-color: #FFFAE5;
}
section.shop-banner .swiper-slide .brxe-section img {
	aspect-ratio: 1176/400;
	object-fit: contain;
	width: 100%;
}
section.shop-banner .swiper-button {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-content: enter;
	align-items: center;
}
section.shop-banner .swiper-button.bricks-swiper-button-prev {
	left: 70px;
}
section.shop-banner .swiper-button.bricks-swiper-button-next {
	right: 70px;
}
/* .archive .archive-categories {
	margin-bottom: 24px;
} */
.archive .category-list {
	margin: 0;
	padding: 0;
	list-style: none;

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.archive .category-list li {
	padding: 6px 12px;
}
.archive .category-list li a {
	padding-bottom: 2px;
	font-size: 1.4rem;
	line-height: 1.5;
	color: #000000;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
	transition: all .2s ease-in-out;
}

.archive .category-list li a.current,
.archive .category-list li:hover a {
	color: rgba(0, 0, 0, 0.5);
	border-color: rgba(0, 0, 0, 0.5);
}
.archive .tag-filter {
	margin-bottom: 24px;
	display: flex;
    gap: 10px;
	flex-wrap: wrap;
    align-items: center;
}
.archive .tag-filter-heading {
	font-weight: 700;
    text-transform: uppercase;
}
.archive .tag-filter-list {
	margin: 0;
	padding: 0;
	list-style: none;

	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}
.archive .tag-filter-link {
	padding: 5px 10px;
    font-weight: 600;
	font-size: 1.6rem;
	line-height: 1.87500;
    text-align: center;
    color: var(--site-dark);
	border-radius: 5px;
	border: 1px solid var(--site-dark);
    background-color: #fff;
	transition: 0.4s ease-out;
}
.archive .tag-filter-link:hover,
.archive .tag-filter-link.current {
	color: #491d87;
    border-color: #491d87;
	background-color: #dfceff;
}
.archive .bricks-before-shop-loop {
	gap: 10px;
	flex-wrap: wrap;
}
.archive .bricks-before-shop-loop .woocommerce-ordering select {
	font-weight: 500;
    color: var(--site-dark);
    border-radius: 5px;
    border: 1px solid var(--site-dark);
    background-color: #fff;
}
.archive .woocommerce-pagination {
	justify-content: center;
}
.archive .woocommerce-load-more {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.archive button.woocommerce-load-more-btn {
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.87500;
    text-align: center;
	color: #491d87;
    border-radius: 5px;
    border: 1px solid #491d87;
	background-color: #dfceff;
    transition: 0.4s ease-out;
}

.archive button.woocommerce-load-more-btn:hover {
	color: var(--site-dark);
    border-color: var(--site-dark);
    background-color: #ffffff;
}
@media(max-width: 767px) {
	.cross-sells .products, .related.products .products, .upsells.products .products {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 10px;
	}
	section.shop-banner .swiper-button {
		width: 30px;
		height: 30px;
	}
	section.shop-banner .swiper-button svg {
		width: 20px;
		height: 20px;
		object-fit: contain;
	}
	section.shop-banner .swiper-button.bricks-swiper-button-prev {
		left: 25px;
	}
	section.shop-banner .swiper-button.bricks-swiper-button-next {
		right: 25px;
	}
}

/* Single Product */
.single-product #main {
	width: 100%;
}

.single-product .product-main {
	padding-block: 30px;
}
.single-product .content-area .product {
	position: relative;
	width: 100%;
	max-width: 100%;
	column-gap: 20px;
}
.single-product .flex-viewport {
	width: 100%;
}
.single-product .flex-viewport img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
}
.single-product .woocommerce-product-gallery .flex-control-thumbs {
	padding-bottom: 6px;
	display: flex;
	gap: 10px;
	width: 100%;
	flex-shrink: 0;
	overflow: auto;
	flex-direction: row;
}
.single-product .woocommerce-product-gallery .flex-control-thumbs li {
	min-width: calc(100% / 5 - 10px);
}
.single-product .woo-thumbs-wrapper {
	position: relative;
	display: block;
	width: 100%;
	padding-inline: 42px;
}
.single-product .woo-thumbs-wrapper .swiper-button {
	position: absolute;
	width: 32px;
	top: 0;
	transform: none;
	height: 100%;
	border: 1px solid #BCBCBC;
	flex-shrink: 0;
} 
.single-product .woo-thumbs-wrapper .swiper-button.bricks-swiper-button-prev {
	left: 0;
}
.single-product .woo-thumbs-wrapper .swiper-button.bricks-swiper-button-next {
	right: 0;
}
.single-product .woo-thumbs-wrapper .swiper-button.bricks-swiper-button-next svg {
	transform: scaleX(-1);
}

.single-product .woo-thumbs-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.single-product .flex-control-thumbs.swiper-wrapper {
	box-sizing: content-box;
	display: grid;
	grid-auto-flow: column;
	gap: 0;
	height: 100%;
	max-height: inherit;
	min-height: inherit;
	position: relative;
	transition-property: transform;
	width: 100%;
	z-index: 1;
}

.single-product .flex-control-thumbs img {
	width: 100%;
	display: block;
	cursor: pointer;
}

.single-product .flex-control-thumbs .swiper-slide {
	position: relative;
	transition-property: transform;
	float: none !important;
	width: 100%;
	flex-shrink: 0;
	margin: 0;
}
.single-product .product-tags {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 15px;
}
.single-product .product-tags img {
    width: auto;
    height: 28px;
}
/* .single-product .product-tags a {
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	color: #fff;
	background: #FF0000;
	padding: 5px 10px;
} */
.single-product .summary .product_title  {
	color: #000;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 30px;
}
.single-product .summary .sku_wrapper {
	font-size: 18px;
	font-weight: 500;
	color: #000;
}
.single-product .summary .sku_wrapper .sku {
	font-weight: 300
}
.single-product .summary .product_price {
	margin-block: 16px;
	gap: 20px;
	display: flex;
	align-items: center;
}
.single-product .summary .badge {
	padding: 0 10px;
	position: static;
	font-size: 1.4rem;
	line-height: 1.5;
	height: fit-content;
	color: #fff;
	border-radius: 0;
	pointer-events: none;
	background-color: var(--site-primary);
}
.single-product .summary .price  {
	margin: 0;
	font-weight: 600;
	font-size: 2.2rem;
	color: var(--site-highlight);
}
.single-product .summary .price > del {
	font-size: 1.8rem;
	font-weight: 300;
	color: #000;
}
.single-product .sps-swatches {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.single-product .sps-swatches .superSwatch {
	margin: 0;
	padding: 0;
	width: 40px !important;
	height: 40px !important;
}
.single-product .sps-swatches .superSwatch.selected {
	border-color: var(--site-primary);
}
.single-product .sps-swatches .superSwatch .textureImage {
	width: 40px !important;
	height: 40px !important;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.single-product .added_to_cart {
	display: none!important;
}
.single-product .coupons {
	height: 100%;
	width: calc(23% - 20px);
}
.single-product .woocommerce-tabs {
	border: none;
}
.single-product .woocommerce-tabs .wc-tabs {
	justify-content:center;
	margin-bottom: 20px;
	border: 0;
}
.single-product .woocommerce-tabs .wc-tabs li {
	padding: 0 20px;
}
.single-product .woocommerce-tabs .wc-tabs li:not(:last-child) {
	border-right: 2px solid rgba(0,0,0,0.5);
}
.single-product .woocommerce-tabs .wc-tabs li a {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	color: rgba(0,0,0,0.5);
	transition: all .2s ease-in-out;
}
.single-product .woocommerce-tabs .wc-tabs li:hover a,
.single-product .woocommerce-tabs .wc-tabs li.active a {
	color: #000000;
}

.single-product form.cart table.variations tr{
	display: flex;
	flex-direction: column;
}

.single-product form.cart table.variations td{
	width: 100%;
}

.woocommerce-tabs .panel {
	padding: 0;
}
.single-product .woocommerce-Tabs-panel--description .load-more-btn {
	margin-top: 20px;
}
.single-product .woocommerce-Tabs-panel--description .load-more-btn a {
	display: flex;
	column-gap: 2px;
	align-items: center;
	justify-content: center;
	text-decoration: underline;
	color: #000000;
}
.single-product .woocommerce-Tabs-panel--description .load-more-btn a.expanded::before {
	content: "";
	display: inline-block;
	background-image: url(/wp-content/uploads/2026/05/chevrons-left.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto;
	width: 16px;
	height: 16px;
}
.single-product .woocommerce-Tabs-panel--description .load-more-btn a:not(.expanded)::after {
	content: "";
	display: inline-block;
	background-image: url(/wp-content/uploads/2026/05/chevrons-right.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto;
	width: 16px;
	height: 16px;
}
.related.products {
	padding-top: 30px;
	padding-bottom: 50px;
	border-top: 1px solid rgba(0,0,0,0.2);
}
.related.products > h2:first-of-type {
	text-align: center;
	margin-bottom: 45px;
}

form.cart table.variations th:has(label[for="pa_color"]) {
	display: none;
}
form.cart .quantity, 
form.woocommerce-cart-form .quantity {
	width: 90px;
	border: 1px solid rgba(0, 0, 0, 0.4);
}

form.cart .quantity .action, 
form.cart .quantity input, 
form.woocommerce-cart-form .quantity .action,
form.woocommerce-cart-form .quantity input {
	border: 0;
}
.woocommerce-variation-add-to-cart,
.single-product .summary form.cart:not(.variations_form) {
	display: flex;
	gap: 12px;
}

form.cart .quantity+button, 
form.woocommerce-cart-form .quantity+button {
	margin-top: 0;
}

@media (min-width: 992px) {
	.single-product .woocommerce-product-gallery {
		width: calc(40% - 20px);
	}
	.single-product .woocommerce-product-gallery:has(.flex-control-thumbs) {
		padding-left: 80px;
		position: relative;
		gap: 0;
		height: 100%;
		width: calc(40% - 20px);
		flex-direction: row-reverse;
	}
	.single-product .woocommerce-product-gallery .flex-control-thumbs {
		padding-right: 2px;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		display: flex;
		gap: 10px;
		width: 70px;
		flex-shrink: 0;
		overflow: auto;
		flex-direction: column;
	}
	.single-product .woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar {
		width: 4px;
	}
	.single-product .woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar-track {
		background: #f1f1f1; 
	}
	.single-product .woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar-thumb {
		background: #ccc; 
		border-radius: 4px;
	}
}

@media (max-width: 991px) {
	.single-product .summary {
		margin-top: 30px;
	}
	.single-product .coupons {
		margin-top: 30px;
		width: 100%;
	}
}

@media(max-width: 767px) {
	.single-product .woocommerce-product-gallery .flex-control-thumbs li {
		min-width: calc(100% / 4 - 10px);
	}
	.single-product .woocommerce-tabs .wc-tabs li {
		width: 100%;
		padding: 10px 0;
		text-align: center;
	}
	.single-product .woocommerce-tabs .wc-tabs li:not(:last-child) {
		border-bottom: 2px solid rgba(0,0,0,0.5);
		border-right: 0;
	}
}

/* Cart */
.woocommerce-info {
	color: #491d87;
	background-color: #dfceff;
}

.woocommerce-cart .return-to-shop {
	margin-top: 16px;
	text-align: center;
}

/* Checkout */
.woocommerce-checkout .woocommerce-checkout h3 {
	margin-bottom: 16px;
}

.woocommerce-checkout .alignwide {
	margin-left: 0;
	padding-top: 0;
    width: 100%;
    max-width: 100%;
}

.woocommerce-checkout .wc-block-components-sidebar-layout {
	margin: 0;
}

.woocommerce-checkout .wc-block-checkout__sidebar {
	top: calc(var(--wp-admin--admin-bar--height) + 104px);
}

.woocommerce-checkout .wc-block-checkout .wc-block-components-button {
	border-color: #491d87;
	background-color: #491d87;
}

.woocommerce-checkout .wc-block-components-radio-control-accordion-content::after {
    content: "";
    display: block;
    width: 145px;
    height: 40px;
    background-image: url(/wp-content/uploads/2026/06/payments-scaled.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.wc-block-components-address-form .wc-block-components-country-input {
	display: none;
}

.wc-block-components-address-form .wc-block-components-checkbox {
	margin-top: 16px;
}

.wc-block-components-radio-control .wc-block-components-radio-control__input,
.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox] {
	padding: 0;
}

.wc-block-components-address-form .wc-block-components-address-form__thwcfe-block-order_vn_ten,
.wc-block-components-address-form .wc-block-components-address-form__thwcfe-block-order_vn_mst,
.wc-block-components-address-form .wc-block-components-address-form__thwcfe-block-order_vn_dia_chi,
.wc-block-components-address-form .wc-block-components-select-input-thwcfe-block-order_vn_vat_type {
	display: none;
}

.wc-block-components-address-form:has(#billing-thwcfe-block-order_vn_vat:checked) .wc-block-components-address-form__thwcfe-block-order_vn_ten,
.wc-block-components-address-form:has(#billing-thwcfe-block-order_vn_vat:checked) .wc-block-components-address-form__thwcfe-block-order_vn_mst,
.wc-block-components-address-form:has(#billing-thwcfe-block-order_vn_vat:checked) .wc-block-components-address-form__thwcfe-block-order_vn_dia_chi,
.wc-block-components-address-form:has(#billing-thwcfe-block-order_vn_vat:checked) .wc-block-components-select-input-thwcfe-block-order_vn_vat_type {
	display: block;
}

.woocommerce-order-received .woocommerce-sepay-bank-details {
	max-width: 900px
}

.woocommerce-order-received .woocommerce-order-overview.order_details {
	margin-bottom: 30px;
}

.woocommerce-column__title,
.woocommerce-order-details__title {
	margin-bottom: 12px;
}

.woocommerce-customer-details--phone,
.woocommerce-customer-details--email {
	margin: 0;
}

.wc-block-order-confirmation-additional-fields-wrapper {
	margin-top: 30px;
}

.wc-block-order-confirmation-additional-fields-wrapper dt {
	font-weight: 700;
}

.wc-block-order-confirmation-additional-fields-wrapper dd {
	margin-inline-start: 0;
	margin-bottom: 6px;
}

@media (min-width: 768px) {
	.woocommerce-order-received .sepay-pay-info .qr-box {
		width: 265px;
	}
}

@media (max-width: 479px) {
	.woocommerce-order-received .bank-info-cell {
		text-align: end;
	}

	.woocommerce-order-received .bank-info-value {
		justify-content: end;
	}
}

/* Custom VAT */
@media screen and (min-width: 440px) {
    .wc-block-components-address-form .wc-block-components-address-form__first_name,
    .wc-block-components-address-form .wc-block-components-address-form__last_name {
        margin-top: 0;
    }

    .wc-block-components-form .wc-block-components-checkout-step #order {
        display: flex;
        gap: 0 12px;
        flex-wrap: wrap;
        justify-content: space-between;
	}

    .wc-block-components-form .wc-block-components-checkout-step #order .wc-block-components-address-form__my_invoice-want_invoice {
        margin-top: 0;
    }

    div[class*="my_invoice-ca_nhan_"],
    div[class*="my_invoice-cong_ty_"] {
        display: inline-block;
        width: calc(50% - 6px);
        vertical-align: top;
    }

    div[class*="my_invoice-want_invoice"],
    div[class*="my_invoice-invoice_type"] {
        width: 100%;
    }
}

/* Mini cart */
.brx-popup .alignwide{
	margin: 0;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	max-width: 100%;
}

.brx-popup .wp-block-woocommerce-empty-cart-block {
	margin-block: auto;
}

.brx-popup .wc-block-components-sidebar-layout {
	margin: 0;
	height: 100%;
	flex-wrap: nowrap;
}

.brx-popup .wc-block-components-main {
	max-height: calc(100vh - 490px);

	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #ccc transparent;
}

.brx-popup .wc-block-components-main::-webkit-scrollbar {
	width: 3px;
}

.brx-popup .wc-block-components-main::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 10px;
}

.brx-popup .wc-block-components-main::-webkit-scrollbar-track {
	background: transparent;
}

.brx-popup .wc-block-cart-item__total {
	display: none;
}

.brx-popup .wc-block-cart__submit,
.brx-popup .wc-block-components-sidebar,
.brx-popup .wc-block-components-sidebar-layout.wc-block-cart{
	margin-bottom: 0;
}

.brx-popup .wc-block-components-sidebar .wp-block-image {
	margin: 0 !important;
	width: calc(100% + 30px);
	max-width: calc(100% + 30px);
	margin-left: -20px !important;
}

.brx-popup .wc-block-components-sidebar .wp-block-image img {
	width: 100%;
	height: 100%;
	max-height: 160px;
	object-fit: cover;
	object-position: top center;
}

.brx-popup .wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block {
	margin-top: auto;
}

.brx-popup .wc-block-components-button {
    border-color: #491d87;
    background-color: #491d87;
}

/* My account */
body.woocommerce-account:not(.logged-in) h1 {
	display: none;
} 

body.woocommerce-account .woocommerce-form-login {
	margin-top: 0;
}
body.woocommerce-account .woocommerce-form-login__rememberme {
	margin-block: 20px
}
body.woocommerce-account .show-password-input {
	color: inherit;
}
body.woocommerce-account .woocommerce-form-login__submit {
	width: 100%;
}

/* Popup Flash Sale */
.brxe-popup-3893 {
	align-items: start;
	justify-content: end;
}










