/**
 * Product Summary Component Stylesheet
 *
 * Styles the Temiz Wear WooCommerce single-product summary section.
 *
 * @package TemizWear
 * @since   1.0.0
 */

/* ==========================================================================
   Summary and Product Intro
   ========================================================================== */

.tw-single-product__summary {
	position: relative;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 14px;
	box-sizing: border-box;
	background: transparent;
	color: var(--tw-color-text, #1c1c1a);
	border: 0;
	border-radius: 0;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	overflow: visible;
}

.tw-single-product__summary::before {
	display: none;
	content: none;
}

.tw-single-product__summary > * {
	position: relative;
	z-index: 1;
}

.tw-single-product__summary *,
.tw-single-product__summary *::before,
.tw-single-product__summary *::after {
	box-sizing: border-box;
}

.tw-product-intro,
.tw-product-intro__main,
.tw-product-intro__content {
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
}

.tw-product-intro__main {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}

.tw-product-intro__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 5px;
	overflow-wrap: anywhere;
}

.tw-product-intro__title {
	min-width: 0;
	margin: 0;
}

.tw-single-product__summary .product_title,
.tw-single-product__summary .entry-title {
	margin: 0;
	padding: 0;
	color: var(--tw-color-text, #1c1c1a);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.026em;
	overflow-wrap: anywhere;
}

.tw-product-intro__price {
	margin: 0;
}

.tw-single-product__summary .price {
	display: block;
	margin: 0;
	color: var(--tw-color-text, #1c1c1a);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.026em;
}

.tw-single-product__summary .price ins {
	color: inherit;
	font-weight: 700;
	text-decoration: none;
}

.tw-single-product__summary .price del {
	margin-right: 8px;
	font-size: 0.76em;
	font-weight: 400;
	opacity: 0.55;
	text-decoration: line-through;
}

.tw-single-product__summary .woocommerce-Price-amount {
	white-space: nowrap;
}

.tw-product-intro__rating {
	margin: 0;
}

.tw-single-product__summary .woocommerce-product-rating {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 2px 0 0;
	flex-wrap: wrap;
}

.tw-single-product__summary .star-rating {
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 13px;
	line-height: 1;
}

.tw-single-product__summary .star-rating span::before {
	color: var(--tw-color-accent, #a8823d);
	font-size: 13px;
}

.tw-single-product__summary .woocommerce-review-link {
	padding: 0;
	color: var(--tw-color-text, #1c1c1a);
	font-size: 12px;
	text-decoration: none;
	opacity: 0.72;
	transition: color 150ms ease, opacity 150ms ease;
}

.tw-product-intro__share {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: flex-start;
	justify-content: center;
	margin: 0;
	padding: 0;
}

/* ==========================================================================
   Share
   ========================================================================== */

.tw-product-share {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	align-items: flex-start;
	justify-content: center;
	min-width: 0;
	margin: 0;
	padding: 0;
}

.tw-product-share__button,
.tw-product-share__close {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	color: var(--tw-color-text, #1c1c1a);
	background-color: transparent;
	border: 0;
	cursor: pointer;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	transition:
		color 150ms ease,
		background-color 150ms ease,
		border-color 150ms ease;
}

.tw-product-share__button {
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	border-radius: 50%;
}

.tw-product-share__close {
	width: 36px;
	height: 36px;
	min-width: 36px;
	min-height: 36px;
	border-radius: 50%;
}

.tw-product-share__button:focus-visible,
.tw-product-share__close:focus-visible {
	outline: 2px solid var(--tw-color-accent, #a8823d);
	outline-offset: 2px;
}

.tw-product-share__icon,
.tw-product-share__option-icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
}

.tw-product-share__icon {
	width: 18px;
	height: 18px;
}

.tw-product-share__icon svg,
.tw-product-share__option-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.tw-product-share__close svg {
	display: block;
	width: 16px;
	height: 16px;
}

.tw-product-share__panel[hidden] {
	display: none;
}

.tw-product-share__panel {
	position: absolute;
	inset-block-start: calc(100% + 4px);
	inset-inline-end: 0;
	z-index: 100;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: max-content;
	max-width: calc(100vw - 28px);
	padding: 4px 0;
	color: var(--tw-color-text, #1c1c1a);
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	animation: tw-share-panel-in 160ms ease both;
}

.tw-product-share__panel-header {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	white-space: nowrap;
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
}

.tw-product-share__panel-title {
	min-width: 0;
	margin: 0;
	color: var(--tw-color-text, #1c1c1a);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.tw-product-share__list {
	display: grid;
	grid-template-columns: repeat(5, 40px);
	gap: 3px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tw-product-share__item {
	min-width: 0;
	margin: 0;
	padding: 0;
}

.tw-product-share__option {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: 40px;
	height: 40px;
	min-height: 40px;
	margin: 0;
	padding: 0;
	color: var(--tw-color-text, #1c1c1a);
	font: inherit;
	font-size: 13px;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	background: transparent;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	transition:
		color 150ms ease,
		background-color 150ms ease,
		border-color 150ms ease;
}

.tw-product-share__option:focus-visible {
	outline: 2px solid var(--tw-color-accent, #a8823d);
	outline-offset: 1px;
}

.tw-product-share__option-icon {
	width: 20px;
	height: 20px;
	color: currentcolor;
}

.tw-product-share__option-label {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	white-space: nowrap;
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
}

.tw-product-share__feedback {
	margin: 10px 0 0;
	color: var(--tw-color-text, #1c1c1a);
	font-size: 12px;
	line-height: 1.45;
	text-align: center;
}

.tw-product-share__feedback:empty {
	display: none;
}

.tw-product-share__feedback[data-state="success"],
.tw-product-share__feedback[data-feedback-state="success"] {
	color: var(--tw-color-success, #287a4b);
}

.tw-product-share__feedback[data-state="error"],
.tw-product-share__feedback[data-feedback-state="error"] {
	color: var(--tw-color-error, #b42318);
}

html.tw-product-share-open {
	overscroll-behavior: contain;
}

/* ==========================================================================
   Color Options
   ========================================================================== */

.tw-product-options,
.tw-product-options--color {
	width: 100%;
	min-width: 0;
	margin: 12px 0;
}

.tw-product-options__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 7px;
}

.tw-product-options__label {
	color: var(--tw-color-text, #1c1c1a);
	font-size: 12px;
	font-weight: 650;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.tw-product-options__selected-value {
	min-width: 0;
	color: var(--tw-color-text, #1c1c1a);
	font-size: 12px;
	font-weight: 500;
	text-align: right;
	opacity: 0.72;
	overflow-wrap: anywhere;
}

.tw-product-options.is-option-required,
.tw-product-options[data-validation-state="error"],
.tw-product-size.is-option-required,
.tw-product-size[data-validation-state="error"] {
	padding: 8px;
	border: 1px solid rgba(180, 35, 24, 0.46);
	border-radius: 5px;
}

.tw-product-options.is-option-required .tw-product-options__label,
.tw-product-options[data-validation-state="error"] .tw-product-options__label,
.tw-product-size.is-option-required .tw-product-size__label,
.tw-product-size[data-validation-state="error"] .tw-product-size__label {
	color: var(--tw-color-error, #b42318);
}

.tw-product-color-options {
	display: flex;
	gap: 8px;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 3px 4px 7px;
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-inline: contain;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.tw-product-color-options::-webkit-scrollbar {
	display: none;
}

.tw-product-color-option {
	display: inline-block;
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
}

.tw-product-color-option__button {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: auto;
	margin: 0;
	padding: 0;
	color: var(--tw-color-text, #1c1c1a);
	font: inherit;
	text-decoration: none;
	background: transparent;
	border: 0;
	cursor: pointer;
	transition: opacity 150ms ease;
}

.tw-product-color-option__button:focus-visible {
	border-radius: 2px;
	outline: 2px solid var(--tw-color-accent, #a8823d);
	outline-offset: 3px;
}

.tw-product-color-option__image {
	position: relative;
	display: block;
	flex: 0 0 auto;
	width: 64px;
	height: auto;
	margin: 0 0 1px;
	overflow: hidden;
	background: transparent;
	border: 1px solid rgba(222, 214, 202, 0.92);
	border-radius: 4px;
	box-shadow: none;
	transition:
		border-color 150ms ease,
		box-shadow 150ms ease;
}

.tw-product-color-option__button[aria-pressed="true"] .tw-product-color-option__image,
.tw-product-color-option__button.is-selected .tw-product-color-option__image {
	border: 1px solid var(--tw-color-primary, #2e1a24);
	box-shadow:
		0 0 0 2px rgba(255, 255, 255, 0.96),
		0 0 0 3px var(--tw-color-primary, #2e1a24),
		0 8px 20px rgba(46, 26, 36, 0.09);
}

.tw-product-color-option__button[aria-pressed="true"] .tw-product-color-option__image::after,
.tw-product-color-option__button.is-selected .tw-product-color-option__image::after {
	position: absolute;
	right: 4px;
	bottom: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	color: var(--tw-color-white, #ffffff);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	content: "\2713";
	background: var(--tw-color-primary, #2e1a24);
	border-radius: 50%;
}

.tw-product-color-option__image--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 4 / 5;
	color: var(--tw-color-text, #1c1c1a);
	font-size: 12px;
	background-color: #f8f4ed;
	opacity: 0.55;
}

.tw-product-color-option__img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	object-fit: contain;
	object-position: center top;
}

.tw-product-color-option__name {
	display: block;
	max-width: 64px;
	color: var(--tw-color-text, #1c1c1a);
	font-size: 11px;
	font-weight: 500;
	line-height: 1.3;
	margin-top: 1px;
	text-align: center;
	overflow-wrap: anywhere;
}

.tw-product-color-option__button:disabled,
.tw-product-color-option__button[aria-disabled="true"],
.tw-product-color-option__button.is-disabled,
.tw-product-color-option__button.is-unavailable {
	cursor: not-allowed;
	opacity: 0.42;
}

.tw-product-color-option__button:disabled .tw-product-color-option__image::before,
.tw-product-color-option__button[aria-disabled="true"] .tw-product-color-option__image::before,
.tw-product-color-option__button.is-disabled .tw-product-color-option__image::before,
.tw-product-color-option__button.is-unavailable .tw-product-color-option__image::before {
	position: absolute;
	inset: 50% -10px auto;
	z-index: 1;
	height: 1px;
	content: "";
	background: var(--tw-color-error, #b42318);
	transform: rotate(-52deg);
}

/* ==========================================================================
   Size Options
   ========================================================================== */

.tw-product-size {
	width: 100%;
	min-width: 0;
	margin: 12px 0;
}

.tw-product-size__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 7px;
}

.tw-product-size__label {
	color: var(--tw-color-text, #1c1c1a);
	font-size: 12px;
	font-weight: 650;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.tw-product-size__guide {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-height: 32px;
	margin: 0;
	padding: 3px 0;
	color: var(--tw-color-accent, #a8823d);
	font: inherit;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
	background: none;
	border: 0;
	cursor: pointer;
	transition: color 150ms ease, opacity 150ms ease;
}

.tw-product-size__guide:focus-visible {
	border-radius: 2px;
	outline: 2px solid var(--tw-color-accent, #a8823d);
	outline-offset: 2px;
}

.tw-product-size__guide-icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
}

.tw-product-size__guide-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.tw-product-size__guide-label {
	display: inline-block;
}

.tw-product-size__options {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	width: 100%;
	min-width: 0;
}

.tw-product-size__option {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

.tw-product-size__button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-width: 0;
	height: 44px;
	min-height: 44px;
	margin: 0;
	padding: 5px;
	overflow: visible;
	color: var(--tw-color-text, #1c1c1a);
	font: inherit;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.025em;
	text-transform: uppercase;
	white-space: nowrap;
	background-color: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(222, 214, 202, 0.95);
	border-radius: 4px;
	cursor: pointer;
	transition:
		color 150ms ease,
		background-color 150ms ease,
		border-color 150ms ease;
}

.tw-product-size__button:focus-visible {
	outline: 2px solid var(--tw-color-accent, #a8823d);
	outline-offset: 2px;
}

.tw-product-size__button[aria-pressed="true"],
.tw-product-size__button.is-selected {
	color: var(--tw-color-white, #ffffff);
	background-color: var(--tw-color-primary, #2e1a24);
	border-color: var(--tw-color-primary, #2e1a24);
	box-shadow: 0 8px 20px rgba(46, 26, 36, 0.14);
}

.tw-product-size__button:disabled,
.tw-product-size__button[aria-disabled="true"],
.tw-product-size__button.is-disabled,
.tw-product-size__button.is-unavailable {
	color: var(--tw-color-text, #1c1c1a);
	background-color: rgba(255, 255, 255, 0.72);
	cursor: not-allowed;
	opacity: 0.45;
}

.tw-product-size__button:disabled::after,
.tw-product-size__button[aria-disabled="true"]::after,
.tw-product-size__button.is-disabled::after,
.tw-product-size__button.is-unavailable::after {
	position: absolute;
	inset: 50% -8px auto;
	height: 1px;
	content: "";
	background: var(--tw-color-error, #b42318);
	transform: rotate(-45deg);
}

/* ==========================================================================
   Native WooCommerce Variation Form
   ========================================================================== */

.tw-single-product__summary .variations_form {
	width: 100%;
	min-width: 0;
	margin: 8px 0 0;
}

.tw-single-product__summary.is-variation-ui-ready .variations,
.tw-single-product__summary[data-variation-ui-ready="true"] .variations {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	white-space: nowrap;
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
}

.tw-single-product__summary .variations {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	background: none;
	border: 0;
	border-collapse: separate;
}

.tw-single-product__summary .variations tbody,
.tw-single-product__summary .variations tr,
.tw-single-product__summary .variations th,
.tw-single-product__summary .variations td {
	display: block;
	width: 100%;
}

.tw-single-product__summary .variations tr {
	margin: 0 0 16px;
}

.tw-single-product__summary .variations tr:last-child {
	margin-bottom: 0;
}

.tw-single-product__summary .variations th,
.tw-single-product__summary .variations td {
	background: none;
	border: 0;
}

.tw-single-product__summary .variations th {
	padding: 0 0 8px;
	text-align: left;
}

.tw-single-product__summary .variations td {
	padding: 0;
}

.tw-single-product__summary .variations label {
	display: block;
	margin: 0;
	color: var(--tw-color-text, #1c1c1a);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.tw-single-product__summary .variations select {
	width: 100%;
	min-height: 48px;
	padding: 10px 40px 10px 12px;
	color: var(--tw-color-text, #1c1c1a);
	font: inherit;
	font-size: 14px;
	line-height: 1.5;
	background-color: var(--tw-color-white, #ffffff);
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c1c1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 20px;
	border: 1px solid var(--tw-color-border, #ded6ca);
	border-radius: 2px;
	appearance: none;
	transition: border-color 150ms ease;
}

.tw-single-product__summary .variations select:focus-visible {
	border-color: var(--tw-color-primary, #2e1a24);
	outline: 2px solid var(--tw-color-accent, #a8823d);
	outline-offset: 2px;
}

.tw-single-product__summary .variations select:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.tw-single-product__summary .reset_variations {
	display: inline-flex;
	margin-top: 8px;
	color: var(--tw-color-accent, #a8823d);
	font-size: 12px;
}

.tw-single-product__summary.is-variation-ui-ready .reset_variations,
.tw-single-product__summary[data-variation-ui-ready="true"] .reset_variations {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	white-space: nowrap;
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
}

.tw-single-product__summary .woocommerce-variation {
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
}

.tw-single-product__summary .woocommerce-variation:empty,
.tw-single-product__summary .woocommerce-variation-price:empty,
.tw-single-product__summary .woocommerce-variation-availability:empty {
	display: none;
}

.tw-single-product__summary .woocommerce-variation-price {
	margin: 0 0 4px;
	color: var(--tw-color-text, #1c1c1a);
	font-size: 16px;
	font-weight: 600;
}

.tw-single-product__summary .woocommerce-variation-availability {
	color: var(--tw-color-text, #1c1c1a);
	font-size: 13px;
	margin: 0;
	opacity: 0.72;
}

.tw-single-product__summary .woocommerce-variation-availability.in-stock {
	color: var(--tw-color-success, #287a4b);
	opacity: 1;
}

.tw-single-product__summary .woocommerce-variation-availability.out-of-stock {
	color: var(--tw-color-error, #b42318);
	opacity: 1;
}

/* ==========================================================================
   Purchase Region: Native Wrapper
   ========================================================================== */

.tw-product-purchase {
	display: block;
	width: 100%;
	min-width: 0;
	margin: 10px 0 0;
	padding: 0;
}

.tw-product-purchase__native {
	display: block;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
}

.tw-product-purchase__native form.cart,
.tw-product-purchase__native form.variations_form {
	display: block;
	float: none;
	clear: none;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	height: auto;
	margin: 0;
	padding: 0;
}

.tw-product-purchase__native .single_variation_wrap,
.tw-product-purchase__native .woocommerce-variation-add-to-cart {
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	height: auto;
	margin: 0;
	padding: 0;
}

.tw-product-purchase__native .single_variation_wrap {
	margin: 6px 0 0;
}

/* ==========================================================================
   Quantity Region and Stepper
   ========================================================================== */

.tw-product-purchase__quantity-region {
	display: block;
	width: 100%;
	min-width: 0;
	margin: 8px 0 10px;
	padding: 0;
}

.tw-product-quantity {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
}

.tw-product-quantity__label {
	font-size: 12px;
	font-weight: 650;
	line-height: 1.3;
	letter-spacing: 0.055em;
	text-transform: uppercase;
	color: var(--tw-color-text, #1c1c1a);
}

.tw-product-quantity__control {
	display: inline-grid;
	grid-template-columns: 44px 64px 44px;
	align-items: stretch;
	width: fit-content;
	min-height: 46px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(222, 214, 202, 0.95);
	border-radius: 6px;
	box-shadow: 0 7px 20px rgba(46, 26, 36, 0.06);
	transition: border-color 150ms ease, box-shadow 150ms ease;
}

.tw-product-quantity__control .quantity {
	display: block;
	width: 64px;
	height: 46px;
	margin: 0;
	padding: 0;
	float: none;
}

.tw-product-quantity__control .qty {
	display: block;
	width: 64px;
	height: 46px;
	min-height: 46px;
	margin: 0;
	padding: 0 4px;
	border: 0;
	border-inline: 1px solid rgba(222, 214, 202, 0.95);
	border-radius: 0;
	background: transparent;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	box-shadow: none;
	transition: border-color 150ms ease, color 150ms ease;
}

.tw-product-quantity__control .qty::-webkit-outer-spin-button,
.tw-product-quantity__control .qty::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.tw-product-quantity__control .qty[type="number"] {
	-moz-appearance: textfield;
}

.tw-product-quantity__control .qty:focus-visible {
	outline: 2px solid var(--tw-color-accent, #a8823d);
	outline-offset: -2px;
}

.tw-product-quantity__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 46px;
	min-width: 44px;
	min-height: 46px;
	margin: 0;
	padding: 0;
	color: var(--tw-color-text, #1c1c1a);
	background: transparent;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	font: inherit;
	transition:
		background-color 150ms ease,
		color 150ms ease,
		opacity 150ms ease;
}

.tw-product-quantity__button:focus-visible {
	outline: 2px solid var(--tw-color-accent, #a8823d);
	outline-offset: -2px;
}

.tw-product-quantity__button:disabled,
.tw-product-quantity__button[aria-disabled="true"] {
	opacity: 0.32;
	cursor: not-allowed;
}

.tw-product-quantity__button-icon {
	font-size: 21px;
	font-weight: 400;
	line-height: 1;
	pointer-events: none;
}

.tw-product-quantity.is-invalid .tw-product-quantity__control {
	border-color: var(--tw-color-error, #b42318);
	box-shadow:
		0 0 0 1px rgba(180, 35, 24, 0.12),
		0 7px 20px rgba(46, 26, 36, 0.06);
}

.tw-product-quantity.is-invalid .qty {
	color: var(--tw-color-error, #b42318);
}

/* ==========================================================================
   Primary Action Row
   ========================================================================== */

.tw-product-purchase__primary-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: 8px;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
	height: auto;
}

.tw-product-purchase__primary-row > * {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin: 0;
}

.tw-product-purchase__cart,
.tw-product-purchase__buy-now {
	display: flex;
	align-items: stretch;
	width: 100%;
	min-width: 0;
	height: auto;
	min-height: 0;
	margin: 0;
	padding: 0;
}

.tw-product-purchase__whatsapp {
	display: block;
	width: 100%;
	min-width: 0;
	margin: 8px 0 0;
	padding: 0;
}

/* ==========================================================================
   Add to Cart and Custom Action Buttons
   ========================================================================== */

.tw-single-product__summary .single_add_to_cart_button,
.tw-product-actions__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-width: 0;
	height: 50px;
	min-height: 50px;
	margin: 0;
	padding: 10px 8px;
	font: inherit;
	font-size: 11.5px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.035em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border-radius: 5px;
	box-shadow: none;
	cursor: pointer;
	align-self: stretch;
	transition:
		opacity 150ms ease,
		color 150ms ease,
		background-color 150ms ease,
		border-color 150ms ease;
}

.tw-product-purchase__cart > .single_add_to_cart_button,
.tw-product-purchase__buy-now > .tw-product-actions__button {
	width: 100%;
	height: 50px;
	min-height: 50px;
	align-self: stretch;
}

.tw-product-purchase__cart .single_add_to_cart_button,
.tw-product-purchase__cart button.single_add_to_cart_button,
.tw-product-purchase__cart .button.single_add_to_cart_button,
.tw-single-product__summary .tw-product-purchase__cart .single_add_to_cart_button,
.tw-single-product__summary form.cart button.single_add_to_cart_button,
.tw-single-product__summary form.cart .button.single_add_to_cart_button,
.woocommerce div.product .tw-single-product__summary form.cart button.single_add_to_cart_button.button.alt {
	float: none;
	color: #ffffff;
	background: #111111 !important;
	background-color: #111111 !important;
	background-image: none !important;
	border: 1px solid #111111 !important;
	border-radius: 5px;
	text-shadow: none;
	box-shadow: none;
	opacity: 1;
}

.tw-single-product__summary .single_add_to_cart_button:active {
	opacity: 0.84;
}

.tw-single-product__summary .single_add_to_cart_button:focus-visible,
.tw-product-actions__button:focus-visible {
	outline: 2px solid var(--tw-color-accent, #a8823d);
	outline-offset: 2px;
}

.tw-product-purchase__cart .single_add_to_cart_button:disabled,
.tw-product-purchase__cart .single_add_to_cart_button[aria-disabled="true"],
.tw-single-product__summary form.cart .single_add_to_cart_button:disabled,
.tw-single-product__summary form.cart .single_add_to_cart_button[aria-disabled="true"] {
	color: #ffffff;
	background: #111111 !important;
	background-color: #111111 !important;
	background-image: none !important;
	border-color: #111111 !important;
	opacity: 0.46;
	cursor: not-allowed;
}

.tw-product-purchase__cart .single_add_to_cart_button.loading,
.tw-product-purchase__cart .single_add_to_cart_button.is-loading,
.tw-product-purchase__cart .single_add_to_cart_button[aria-busy="true"],
.tw-single-product__summary form.cart .single_add_to_cart_button.loading,
.tw-single-product__summary form.cart .single_add_to_cart_button.is-loading,
.tw-single-product__summary form.cart .single_add_to_cart_button[aria-busy="true"] {
	background: #111111 !important;
	background-color: #111111 !important;
	opacity: 0.74;
	cursor: wait;
}

.tw-single-product__custom-actions:empty {
	display: none;
}

.tw-product-actions,
.tw-product-actions__primary-row,
.tw-product-actions__secondary-row {
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
}

.tw-product-actions__button:active {
	opacity: 0.84;
}

.tw-product-actions__button:disabled,
.tw-product-actions__button.is-disabled,
.tw-product-actions__button.is-action-disabled,
.tw-product-actions__button[data-action-state="disabled"] {
	cursor: not-allowed;
	opacity: 0.5;
}

.tw-product-actions__button.loading,
.tw-product-actions__button.is-loading,
.tw-product-actions__button[aria-busy="true"] {
	cursor: wait;
	opacity: 0.76;
}

/* Buy Now: base and truthful action states */

.tw-product-actions__button--buy-now {
	color: var(--tw-color-primary, #2e1a24);
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid var(--tw-color-primary, #2e1a24);
	box-shadow: 0 6px 18px rgba(46, 26, 36, 0.045);
}

.tw-product-actions__button--buy-now[data-action-state="ready"],
.tw-product-actions__button--buy-now.is-action-ready {
	opacity: 1;
	cursor: pointer;
}

.tw-product-actions__button--buy-now[data-action-state="selection-required"],
.tw-product-actions__button--buy-now.is-selection-required {
	color: var(--tw-color-primary, #2e1a24);
	background: transparent;
	border-color: var(--tw-color-primary, #2e1a24);
	opacity: 1;
	cursor: pointer;
}

.tw-product-actions__button--buy-now[data-action-state="unavailable"],
.tw-product-actions__button--buy-now.is-unavailable {
	color: rgba(28, 28, 26, 0.58);
	background: rgba(245, 239, 227, 0.68);
	border-color: rgba(139, 94, 82, 0.48);
	opacity: 0.72;
	cursor: not-allowed;
}

.tw-product-actions__button--buy-now[data-action-state="disabled"],
.tw-product-actions__button--buy-now.is-action-disabled {
	opacity: 0.48;
	cursor: not-allowed;
}

/* WhatsApp: base and truthful action states */

.tw-product-actions__button--whatsapp {
	color: #ffffff;
	background: #25d366;
	background-color: #25d366;
	border: 1px solid #25d366;
	box-shadow: 0 9px 22px rgba(37, 211, 102, 0.15);
}

.tw-product-actions__button--whatsapp[data-action-state="ready"],
.tw-product-actions__button--whatsapp.is-action-ready {
	opacity: 1;
	cursor: pointer;
}

.tw-product-actions__button--whatsapp[data-action-state="selection-required"],
.tw-product-actions__button--whatsapp.is-selection-required {
	opacity: 1;
	cursor: pointer;
}

.tw-product-actions__button--whatsapp[data-action-state="unavailable"],
.tw-product-actions__button--whatsapp.is-unavailable {
	opacity: 0.88;
	cursor: pointer;
	background: #239b52;
	background-color: #239b52;
	border-color: #239b52;
}

.tw-product-actions__button--whatsapp[data-action-state="disabled"],
.tw-product-actions__button--whatsapp.is-action-disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.tw-product-actions__icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	margin-inline-end: 7px;
}

.tw-product-actions__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.tw-product-actions__label {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tw-product-actions__button--whatsapp .tw-product-actions__label {
	overflow: visible;
	text-overflow: clip;
	white-space: normal;
	overflow-wrap: anywhere;
}

.tw-product-purchase__feedback,
.tw-product-actions__feedback {
	display: block;
	width: 100%;
	margin: 7px 0 0;
	color: var(--tw-color-text, #1c1c1a);
	font-size: 11px;
	line-height: 1.45;
	text-align: center;
}

.tw-product-purchase__feedback:empty,
.tw-product-actions__feedback:empty {
	display: none;
}

.tw-product-purchase__feedback[data-state="success"],
.tw-product-actions__feedback[data-state="success"],
.tw-product-purchase__feedback[data-feedback-state="success"],
.tw-product-actions__feedback[data-feedback-state="success"] {
	color: var(--tw-color-success, #287a4b);
}

.tw-product-purchase__feedback[data-state="error"],
.tw-product-actions__feedback[data-state="error"],
.tw-product-purchase__feedback[data-feedback-state="error"],
.tw-product-actions__feedback[data-feedback-state="error"] {
	color: var(--tw-color-error, #b42318);
}

.tw-product-purchase__feedback[data-state="info"],
.tw-product-actions__feedback[data-state="info"],
.tw-product-purchase__feedback[data-feedback-state="info"],
.tw-product-actions__feedback[data-feedback-state="info"] {
	color: var(--tw-color-text, #1c1c1a);
}

/* Button equality: Add to Cart and Buy Now match in every state */

.tw-product-purchase__primary-row .single_add_to_cart_button,
.tw-product-purchase__primary-row .tw-product-actions__button {
	display: inline-flex;
	flex: 1 1 100%;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	height: 50px;
	min-height: 50px;
	margin: 0;
}

/* ==========================================================================
   Product Content and Meta
   ========================================================================== */

.tw-single-product__summary .woocommerce-product-details__short-description {
	margin: 10px 0;
	color: var(--tw-color-text, #1c1c1a);
	font-size: 13px;
	line-height: 1.6;
}

.tw-single-product__summary .woocommerce-product-details__short-description:empty {
	display: none;
}

.tw-single-product__summary .woocommerce-product-details__short-description p {
	margin: 0 0 8px;
}

.tw-single-product__summary .woocommerce-product-details__short-description p:last-child {
	margin-bottom: 0;
}

.tw-single-product__summary .woocommerce-product-details__short-description ul,
.tw-single-product__summary .woocommerce-product-details__short-description ol {
	margin: 8px 0;
	padding-left: 20px;
}

.tw-single-product__summary .woocommerce-product-details__short-description li {
	margin-bottom: 4px;
}

.tw-single-product__summary .woocommerce-product-details__short-description a {
	color: var(--tw-color-accent, #a8823d);
	text-decoration: underline;
	transition: opacity 150ms ease;
}

.tw-single-product__summary .woocommerce-product-details__short-description a:focus-visible {
	border-radius: 2px;
	outline: 2px solid var(--tw-color-accent, #a8823d);
	outline-offset: 2px;
}

.tw-product-meta-fallback {
	width: 100%;
}

.tw-single-product__summary .product_meta {
	margin: 10px 0 0;
	padding: 10px 0 0;
	color: var(--tw-color-text, #1c1c1a);
	font-size: 13px;
	border-top: 1px solid var(--tw-color-border, #ded6ca);
	opacity: 0.72;
}

.tw-single-product__summary .product_meta:empty {
	display: none;
}

.tw-single-product__summary .sku_wrapper,
.tw-single-product__summary .posted_in,
.tw-single-product__summary .tagged_as {
	display: block;
	margin: 0 0 6px;
	line-height: 1.5;
}

.tw-single-product__summary .sku_wrapper:last-child,
.tw-single-product__summary .posted_in:last-child,
.tw-single-product__summary .tagged_as:last-child {
	margin-bottom: 0;
}

.tw-single-product__summary .product_meta a {
	color: inherit;
	text-decoration: none;
	transition: color 150ms ease;
}

.tw-single-product__summary .product_meta a:focus-visible {
	border-radius: 2px;
	outline: 2px solid var(--tw-color-accent, #a8823d);
	outline-offset: 2px;
}

/* ==========================================================================
   Product Accordions
   ========================================================================== */

.tw-product-accordions {
	width: 100%;
	min-width: 0;
	margin: 12px 0 0;
}

/* ==========================================================================
   Size Guide: Shared
   ========================================================================== */

.tw-size-guide {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	width: 100%;
	height: 100%;
	padding: 0;
	animation: tw-size-guide-overlay-in 220ms ease both;
}

.tw-size-guide.is-open,
.tw-size-guide[data-open="true"],
.tw-size-guide:has(.tw-size-guide__dialog.is-open),
.tw-size-guide:has(.tw-size-guide__dialog[data-open="true"]),
.tw-size-guide:has(.tw-size-guide__dialog[open]) {
	display: flex;
}

.tw-size-guide[hidden]:not(.is-open):not([data-open="true"]):not(:has(.tw-size-guide__dialog.is-open)):not(:has(.tw-size-guide__dialog[data-open="true"])):not(:has(.tw-size-guide__dialog[open])) {
	display: none;
}

.tw-size-guide__overlay {
	position: absolute;
	inset: 0;
	background: rgba(28, 28, 26, 0.58);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

.tw-size-guide__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 100%;
	overflow-y: auto;
	overscroll-behavior: contain;
	color: var(--tw-color-text, #1c1c1a);
	background: #fbf8f3;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
}

.tw-size-guide__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 14px;
	padding: 0 0 14px;
	border-bottom: 1px solid var(--tw-color-border, #ded6ca);
}

.tw-size-guide__title {
	margin: 0;
	color: var(--tw-color-text, #1c1c1a);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.tw-size-guide__close {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	margin: 0;
	padding: 0;
	color: var(--tw-color-text, #1c1c1a);
	background-color: transparent;
	border: 1px solid var(--tw-color-border, #ded6ca);
	border-radius: 50%;
	cursor: pointer;
	transition:
		color 150ms ease,
		background-color 150ms ease,
		border-color 150ms ease;
}

.tw-size-guide__close:focus-visible {
	outline: 2px solid var(--tw-color-accent, #a8823d);
	outline-offset: 2px;
}

.tw-size-guide__close-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
}

.tw-size-guide__close-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.tw-size-guide__description {
	margin: 0 0 12px;
	color: var(--tw-color-text, #1c1c1a);
	font-size: 13px;
	line-height: 1.65;
	opacity: 0.78;
}

.tw-size-guide__unit-note {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	margin: 0 0 16px;
	padding: 5px 9px;
	color: var(--tw-color-primary, #2e1a24);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: var(--tw-color-base, #f5efe3);
	border: 1px solid var(--tw-color-border, #ded6ca);
	border-radius: 2px;
}

.tw-size-guide__table-wrap {
	width: 100%;
	max-width: 100%;
	margin: 0 0 16px;
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-inline: contain;
	background: var(--tw-color-white, #ffffff);
	border: 1px solid var(--tw-color-border, #ded6ca);
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}

.tw-size-guide__table-wrap:focus-visible {
	outline: 2px solid var(--tw-color-accent, #a8823d);
	outline-offset: 2px;
}

.tw-size-guide__table {
	width: 100%;
	min-width: 620px;
	color: var(--tw-color-text, #1c1c1a);
	font-size: 12px;
	line-height: 1.4;
	border-collapse: collapse;
	border-spacing: 0;
}

.tw-size-guide__table thead th {
	position: sticky;
	top: 0;
	z-index: 2;
	padding: 12px 10px;
	color: var(--tw-color-white, #ffffff);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	background: var(--tw-color-primary, #2e1a24);
	border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.tw-size-guide__table thead th:last-child {
	border-right: 0;
}

.tw-size-guide__table tbody th,
.tw-size-guide__table tbody td {
	padding: 12px 10px;
	text-align: center;
	white-space: nowrap;
	background: var(--tw-color-white, #ffffff);
	border-right: 1px solid var(--tw-color-border, #ded6ca);
	border-bottom: 1px solid var(--tw-color-border, #ded6ca);
}

.tw-size-guide__table tbody tr td:last-child,
.tw-size-guide__table tbody tr th:last-child {
	border-right: 0;
}

.tw-size-guide__table tbody tr:last-child td,
.tw-size-guide__table tbody tr:last-child th {
	border-bottom: 0;
}

.tw-size-guide__table tbody th[scope="row"] {
	position: sticky;
	left: 0;
	z-index: 1;
	color: var(--tw-color-primary, #2e1a24);
	font-weight: 700;
	background: var(--tw-color-base, #f5efe3);
	box-shadow: 1px 0 0 var(--tw-color-border, #ded6ca);
}

.tw-size-guide__table tbody tr:nth-child(even) td {
	background: rgba(245, 239, 227, 0.42);
}

.tw-size-guide__footer {
	margin: 4px 0 0;
	padding: 14px 0 0;
	color: var(--tw-color-text, #1c1c1a);
	font-size: 12px;
	line-height: 1.6;
	border-top: 1px solid var(--tw-color-border, #ded6ca);
	opacity: 0.72;
}

body.has-size-guide-open {
	overflow: hidden;
	overscroll-behavior: none;
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 479px) {

	.tw-product-size__options {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

}

@media (max-width: 359px) {

	.tw-single-product__summary .single_add_to_cart_button,
	.tw-product-actions__button {
		padding-inline: 4px;
		font-size: 10px;
		letter-spacing: 0.01em;
	}

	.tw-product-actions__icon {
		margin-inline-end: 4px;
	}

}

@media (max-width: 767px) {

	.tw-single-product__summary {
		padding: 14px;
		border-radius: 0;
	}

	.tw-single-product__summary .product_title,
	.tw-single-product__summary .entry-title {
		font-size: 22px;
	}

	.tw-single-product__summary .price {
		font-size: 28px;
	}

	.tw-product-share__panel {
		position: absolute;
		inset-inline: auto 0;
		inset-block: calc(100% + 4px) auto;
		width: max-content;
		max-width: calc(100vw - 28px);
		max-height: none;
		overflow: visible;
		padding: 4px 0;
		border-radius: 0;
		z-index: 100;
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.tw-product-share__list {
		grid-template-columns: repeat(5, 40px);
		gap: 3px;
	}

	.tw-product-share__item:last-child:nth-child(odd) {
		grid-column: auto;
	}

	.tw-product-share__option {
		width: 40px;
		height: 40px;
		min-height: 40px;
		padding: 0;
		background: transparent;
		border: 0;
	}

	.tw-product-size__options {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.tw-size-guide {
		align-items: flex-end;
		justify-content: center;
	}

	.tw-size-guide__dialog {
		max-height: min(88vh, 760px);
		padding: 20px 16px calc(24px + env(safe-area-inset-bottom));
		border-radius: 12px 12px 0 0;
		box-shadow: 0 -8px 28px rgba(28, 28, 26, 0.12);
		animation: tw-size-guide-dialog-in 220ms ease both;
	}

	.tw-size-guide__dialog::before {
		display: block;
		width: 40px;
		height: 4px;
		margin: 0 auto 16px;
		content: "";
		background: var(--tw-color-border, #ded6ca);
		border-radius: 999px;
	}

}

/* ==========================================================================
   Tablet and Desktop
   ========================================================================== */

@media (min-width: 480px) {

	.tw-product-size__options {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

}

@media (min-width: 768px) {

	.tw-single-product__summary {
		padding: 20px;
		border-radius: 0;
	}

	.tw-single-product__summary .product_title,
	.tw-single-product__summary .entry-title {
		font-size: 24px;
	}

	.tw-single-product__summary .price {
		font-size: 32px;
	}

	.tw-product-share__button {
		width: 44px;
		height: 44px;
		min-width: 44px;
		min-height: 44px;
	}

	.tw-product-color-option__image {
		width: 68px;
		height: auto;
	}

	.tw-product-color-option__name {
		max-width: 68px;
	}

	.tw-product-size__options {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.tw-product-size__button {
		height: 46px;
		min-height: 46px;
		font-size: 13px;
	}

	.tw-product-quantity__control {
		grid-template-columns: 44px 64px 44px;
		min-height: 46px;
	}

	.tw-product-quantity__control .quantity {
		width: 64px;
		height: 46px;
	}

	.tw-product-quantity__control .qty {
		width: 64px;
		height: 46px;
		min-height: 46px;
	}

	.tw-product-quantity__button {
		width: 44px;
		height: 46px;
		min-width: 44px;
		min-height: 46px;
	}

	.tw-single-product__summary .single_add_to_cart_button,
	.tw-product-actions__button {
		height: 52px;
		min-height: 52px;
	}

	.tw-product-purchase__cart > .single_add_to_cart_button,
	.tw-product-purchase__buy-now > .tw-product-actions__button,
	.tw-product-purchase__primary-row .single_add_to_cart_button,
	.tw-product-purchase__primary-row .tw-product-actions__button {
		height: 52px;
		min-height: 52px;
	}

	.tw-size-guide {
		align-items: center;
		justify-content: center;
		padding: 24px;
	}

	.tw-size-guide__dialog {
		width: min(760px, calc(100vw - 48px));
		max-height: min(82vh, 760px);
		padding: 24px;
		border-radius: 8px;
		background: rgba(255, 255, 255, 0.94);
		backdrop-filter: blur(14px);
		-webkit-backdrop-filter: blur(14px);
		box-shadow: 0 20px 60px rgba(28, 28, 26, 0.2);
		animation: tw-size-guide-dialog-in 220ms ease both;
	}

	.tw-size-guide__dialog::before {
		display: none;
	}

}

@media (min-width: 1024px) {

	.tw-single-product__summary {
		padding: 24px;
	}

	.tw-single-product__summary .product_title,
	.tw-single-product__summary .entry-title {
		font-size: 28px;
	}

	.tw-single-product__summary .price {
		font-size: 36px;
	}

}

@media (min-width: 1280px) {

	.tw-single-product__summary {
		padding: 26px;
	}

	.tw-single-product__summary .product_title,
	.tw-single-product__summary .entry-title {
		font-size: 30px;
	}

	.tw-single-product__summary .price {
		font-size: 38px;
	}

}

/* ==========================================================================
   Hover and Pointer Interactions
   ========================================================================== */

@media (hover: hover) and (pointer: fine) {

	.tw-product-share__button:hover:not(:disabled),
	.tw-product-share__close:hover:not(:disabled) {
		color: var(--tw-color-accent, #a8823d);
		background-color: transparent;
	}

	.tw-product-share__option:hover:not(:disabled) {
		background-color: rgba(245, 239, 227, 0.58);
	}

	.tw-product-color-option__button:hover:not(:disabled) {
		opacity: 0.86;
	}

	.tw-product-size__guide:hover {
		color: var(--tw-color-primary, #2e1a24);
	}

	.tw-product-size__button:hover:not(:disabled) {
		border-color: rgba(46, 26, 36, 0.78);
	}

	.tw-single-product__summary .variations select:hover {
		border-color: var(--tw-color-text, #1c1c1a);
	}

	.tw-product-quantity__button:hover:not(:disabled) {
		background-color: rgba(46, 26, 36, 0.07);
	}

	.tw-product-quantity__button:active:not(:disabled) {
		background-color: rgba(46, 26, 36, 0.12);
	}

	.tw-product-purchase__cart .single_add_to_cart_button:hover:not(:disabled):not(.disabled) {
		background: #000000 !important;
		background-color: #000000 !important;
		border-color: #000000 !important;
	}

	.tw-single-product__summary form.cart .single_add_to_cart_button:hover:not(:disabled):not(.disabled) {
		background: #000000 !important;
		background-color: #000000 !important;
		border-color: #000000 !important;
	}

	.tw-product-actions__button--buy-now[data-action-state="ready"]:hover:not(:disabled),
	.tw-product-actions__button--buy-now.is-action-ready:hover:not(:disabled) {
		background: var(--tw-color-primary, #2e1a24);
		color: #ffffff;
	}

	.tw-product-actions__button--whatsapp[data-action-state="ready"]:hover:not(:disabled),
	.tw-product-actions__button--whatsapp.is-action-ready:hover:not(:disabled) {
		background: #1fbd5a;
		background-color: #1fbd5a;
		border-color: #1fbd5a;
	}

	.tw-product-actions__button--whatsapp[data-action-state="unavailable"]:hover,
	.tw-product-actions__button--whatsapp.is-unavailable:hover {
		background: #1f8f4d;
		background-color: #1f8f4d;
		border-color: #1f8f4d;
	}

	.tw-single-product__summary .woocommerce-review-link:hover {
		color: var(--tw-color-accent, #a8823d);
		opacity: 1;
	}

	.tw-single-product__summary .woocommerce-product-details__short-description a:hover {
		opacity: 0.8;
	}

	.tw-single-product__summary .product_meta a:hover {
		color: var(--tw-color-accent, #a8823d);
	}

	.tw-size-guide__close:hover {
		background-color: var(--tw-color-base, #f5efe3);
		border-color: var(--tw-color-text, #1c1c1a);
	}

}

/* ==========================================================================
   Motion
   ========================================================================== */

@keyframes tw-share-panel-in {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes tw-size-guide-overlay-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes tw-size-guide-dialog-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

	.tw-size-guide,
	.tw-size-guide__dialog,
	.tw-product-share__panel {
		animation: none;
	}

	.tw-product-share__button,
	.tw-product-share__close,
	.tw-product-share__option,
	.tw-single-product__summary .woocommerce-review-link,
	.tw-product-color-option__button,
	.tw-product-color-option__image,
	.tw-product-size__guide,
	.tw-product-size__button,
	.tw-single-product__summary .variations select,
	.tw-single-product__summary .qty,
	.tw-product-quantity__control,
	.tw-product-quantity__button,
	.tw-single-product__summary .single_add_to_cart_button,
	.tw-product-actions__button,
	.tw-product-actions__button--buy-now,
	.tw-product-actions__button--whatsapp,
	.tw-single-product__summary .woocommerce-product-details__short-description a,
	.tw-single-product__summary .product_meta a,
	.tw-size-guide__close {
		transition: none;
	}

	.tw-product-color-options {
		scroll-behavior: auto;
	}

}

/* ==========================================================================
   Forced Colors
   ========================================================================== */

@media (forced-colors: active) {

	.tw-single-product__summary {
		background: Canvas;
		color: CanvasText;
		border-color: CanvasText;
	}

	.tw-single-product__summary::before {
		display: none;
	}

	.tw-product-share__button,
	.tw-product-share__close {
		background: ButtonFace;
		color: ButtonText;
		border-color: ButtonText;
	}

	.tw-product-color-option__image {
		border-color: CanvasText;
		background: Canvas;
	}

	.tw-product-color-option__button[aria-pressed="true"] .tw-product-color-option__image,
	.tw-product-color-option__button.is-selected .tw-product-color-option__image {
		border: 2px solid Highlight;
	}

	.tw-product-size__button {
		background: ButtonFace;
		color: ButtonText;
		border-color: ButtonText;
	}

	.tw-product-size__button[aria-pressed="true"],
	.tw-product-size__button.is-selected {
		background: Highlight;
		color: Canvas;
		border-color: Highlight;
	}

	.tw-single-product__summary .variations select {
		background: ButtonFace;
		color: ButtonText;
		border-color: ButtonText;
	}

	.tw-product-quantity__control {
		background: ButtonFace;
		border-color: ButtonText;
	}

	.tw-product-quantity__control .qty {
		background: ButtonFace;
		color: ButtonText;
		border-color: ButtonText;
	}

	.tw-product-quantity__button {
		color: ButtonText;
	}

	.tw-product-purchase__cart .single_add_to_cart_button {
		background: ButtonFace;
		color: ButtonText;
		border-color: ButtonText;
	}

	.tw-product-actions__button--buy-now {
		background: ButtonFace;
		color: ButtonText;
		border-color: ButtonText;
	}

	.tw-product-actions__button--buy-now[data-action-state="disabled"],
	.tw-product-actions__button--buy-now.is-action-disabled,
	.tw-product-actions__button--buy-now[data-action-state="selection-required"],
	.tw-product-actions__button--buy-now.is-selection-required {
		color: GrayText;
		border-color: GrayText;
	}

	.tw-product-actions__button--whatsapp {
		background: ButtonFace;
		color: ButtonText;
		border-color: ButtonText;
	}

	.tw-product-actions__button--whatsapp[data-action-state="disabled"],
	.tw-product-actions__button--whatsapp.is-action-disabled,
	.tw-product-actions__button--whatsapp[data-action-state="selection-required"],
	.tw-product-actions__button--whatsapp.is-selection-required {
		color: GrayText;
		border-color: GrayText;
	}

	.tw-product-actions__button--whatsapp[data-action-state="unavailable"],
	.tw-product-actions__button--whatsapp.is-unavailable {
		background: ButtonFace;
		color: ButtonText;
		border: 1px solid ButtonText;
	}

	.tw-product-share__button:focus-visible,
	.tw-product-share__close:focus-visible,
	.tw-product-color-option__button:focus-visible,
	.tw-product-size__button:focus-visible,
	.tw-product-quantity__button:focus-visible,
	.tw-product-quantity__control .qty:focus-visible,
	.tw-single-product__summary .single_add_to_cart_button:focus-visible,
	.tw-product-actions__button:focus-visible,
	.tw-size-guide__close:focus-visible {
		outline-color: Highlight;
	}

}