/** Variable product */

.pd-variation-accordion-mode table.variations {
	display: none;
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	white-space: nowrap;
}

.pd-variation-accordion {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1rem;
	width: calc(100% - 12px);
}

.pd-var-acc-item {
	border-radius: 6px;
	overflow: hidden;
}

.pd-var-acc-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0.85rem 1rem;
	margin: 0;
	border: none;
	border-radius: 6px;
	background: #cccccc;
	color: #000;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.3;
	text-align: left;
	cursor: pointer;
	transition: background 0.15s ease;
}

.pd-var-acc-header:hover,
.pd-var-acc-header:focus-visible {
	background: #bfbfbf;
	outline: 2px solid #000;
	outline-offset: 2px;
}

.pd-var-acc-header-text {
	flex: 1;
	padding-right: 0.75rem;
}

.pd-var-acc-header-value {
	font-weight: 400;
	opacity: 0.85;
}

.pd-var-acc-header-icon {
	flex-shrink: 0;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid #000;
	transition: transform 0.2s ease;
	margin-left: 15px;
}

.pd-var-acc-item.is-open .pd-var-acc-header-icon {
	transform: rotate(180deg);
}

.pd-var-acc-panel {
	display: none;
	background: #000;
	padding: 1rem 1rem 1.25rem;
	border-radius: 0 0 6px 6px;
	margin-top: -4px;
}

.pd-var-acc-item.is-open .pd-var-acc-panel {
	display: block;
}

.pd-var-acc-item.is-open .pd-var-acc-header {
	border-radius: 6px 6px 0 0;
}

.pd-var-acc-panel-title {
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	margin: 0 0 0.75rem;
	padding: 0;
	display: none;
}

.pd-var-acc-options {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.pd-var-acc-option {
	position: relative;
	display: block;
	width: 100%;
	padding: 1rem 2.5rem 1rem 1rem;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 4px;
	background: transparent;
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.pd-var-acc-option:hover,
.pd-var-acc-option:focus-visible {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.06);
	outline: none;
}

.pd-var-acc-option.is-selected {
	border-color: #fff;
}

.pd-var-acc-option.is-selected::after {
	content: "";
	position: absolute;
	/* top: 0.5rem; */
	right: 0.5rem;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.pd-var-acc-option.is-selected::before {
	content: "";
	position: absolute;
    /* top: 0.8rem; */
    right: 0.98rem;
	width: 6px;
	height: 10px;
	border: solid #000;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	z-index: 1;
	pointer-events: none;
}

.pd-var-acc-option {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pd-posture-img-wrap {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pd-posture-preview {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.price-subtext {
	font-size: 18px;
	color: #fff;
	font-weight: 600;
	margin: 20px 0 0;
}

.product-summary-columns {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.product-column-left {
	flex: 1;
}

.product-column-right {
	flex-shrink: 0;
}

/* Badges */
.product-badges {
	display: flex;
	flex-direction: row;
	gap: 15px;
}

.product-badges img {
	height: 120px;
	width: auto;
}