/* AM Product Suite — base structural styles.
   Colors/typography/sizing are controlled from Elementor and injected
   as scoped inline CSS; this file only handles layout and behavior. */

/* ===================== SINGLE PRODUCT LAYOUT ===================== */
.amps-product-layout {
	display: flex;
	gap: 50px;
	align-items: flex-start;
	max-width: 100%;
	box-sizing: border-box;
}

.amps-product-layout * {
	box-sizing: border-box;
}

.amps-product-gallery-col {
	width: 50%;
	flex-shrink: 0;
}

.amps-product-summary-col {
	width: calc(100% - 50%);
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

@media (max-width: 767px) {
	.amps-product-layout {
		flex-direction: column;
	}

	.amps-product-gallery-col,
	.amps-product-summary-col {
		width: 100% !important;
	}
}

/* ===================== GALLERY ===================== */
.amps-gallery {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.amps-gallery--thumbs-bottom {
	flex-direction: column;
}

.amps-gallery--thumbs-left {
	flex-direction: row;
}

.amps-gallery-thumbs {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.amps-gallery--thumbs-left .amps-gallery-thumbs {
	flex-direction: column;
	order: 1;
}

.amps-gallery--thumbs-bottom .amps-gallery-thumbs {
	flex-direction: row;
	order: 2;
	flex-wrap: wrap;
}

.amps-gallery-main {
	flex: 1;
	order: 2;
	min-width: 0;
}

.amps-gallery--thumbs-bottom .amps-gallery-main {
	order: 1;
}

.amps-gallery-zoom-trigger {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: none;
	background: none;
	cursor: zoom-in;
}

.amps-gallery-main img {
	display: block;
	width: 100%;
	height: auto;
}

.amps-gallery-zoom-icon {
	position: absolute;
	bottom: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .9);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1E1E1E;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.amps-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .92);
	z-index: 999999990;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s ease;
}

.amps-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.amps-lightbox-stage {
	max-width: 90vw;
	max-height: 90vh;
}

.amps-lightbox-stage img {
	display: block;
	max-width: 90vw;
	max-height: 90vh;
	width: auto;
	height: auto;
	object-fit: contain;
}

.amps-lightbox-close,
.amps-lightbox-prev,
.amps-lightbox-next {
	position: absolute;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	line-height: 1;
}

.amps-lightbox-close {
	top: 24px;
	right: 28px;
	font-size: 32px;
}

.amps-lightbox-prev,
.amps-lightbox-next {
	top: 50%;
	transform: translateY(-50%);
	font-size: 40px;
	padding: 10px 16px;
}

.amps-lightbox-prev {
	left: 12px;
}

.amps-lightbox-next {
	right: 12px;
}

.amps-gallery-thumb {
	width: 80px;
	height: 80px;
	padding: 0;
	border: 1px solid #E2E2E2;
	background: none;
	cursor: pointer;
	overflow: hidden;
	flex-shrink: 0;
	transition: border-color .2s ease;
}

.amps-gallery-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.amps-gallery-thumb.is-active {
	border-color: #1E1E1E;
}

/* ===================== SUMMARY ===================== */
.amps-summary {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.amps-product-title {
	margin: 0;
	line-height: 1.3;
}

.amps-product-price {
	line-height: 1.4;
}

.amps-product-price del {
	opacity: .5;
	margin-right: 8px;
}

.amps-disclaimer {
	margin: 0;
	line-height: 1.5;
}

.amps-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.amps-attributes {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.amps-attribute-label {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .5px;
	margin-bottom: 8px;
	opacity: .7;
}

.amps-pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.amps-pill {
	min-width: 44px;
	padding: 8px 14px;
	border: 1px solid #1E1E1E;
	background: none;
	cursor: pointer;
	font-size: 13px;
	transition: background-color .2s ease, color .2s ease;
}

.amps-pill.is-disabled {
	opacity: .3;
	cursor: not-allowed;
	text-decoration: line-through;
}

.woocommerce-variation.single_variation {
	margin: 4px 0;
}

.woocommerce-variation-price .price {
	font-weight: 600;
}

.woocommerce-variation-availability {
	font-size: 13px;
}

.amps-qty-cart-row {
	display: flex;
	align-items: stretch;
	gap: 12px;
	margin-top: 6px;
}

.amps-quantity .quantity {
	display: flex;
	margin: 0;
	float: none;
}

.amps-quantity .quantity label {
	display: none;
}

.amps-quantity {
	display: flex;
	align-items: stretch;
	border: 1px solid #D8D8D8;
}

.amps-quantity input.qty {
	width: 50px;
	text-align: center;
	border: none;
	padding: 0 4px;
	height: 46px;
	-moz-appearance: textfield;
}

.amps-quantity input.qty::-webkit-outer-spin-button,
.amps-quantity input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.amps-qty-stepper {
	width: 40px;
	height: 46px;
	border: none;
	background: none;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
	flex-shrink: 0;
}

.amps-qty-stepper:hover {
	background: #F5F5F5;
}

.amps-add-to-cart-btn {
	flex: 1;
	border: none;
	cursor: pointer;
	padding: 0 24px;
	height: 46px;
	white-space: nowrap;
	transition: opacity .2s ease;
}

.amps-add-to-cart-btn:hover {
	opacity: .85;
}

.amps-add-to-cart-btn.is-loading,
.amps-buy-now-btn.is-loading {
	opacity: .6;
	pointer-events: none;
}

/* Visual-only "unavailable" state — deliberately not the native
   `disabled` attribute, since a truly disabled button blocks the
   browser's click event entirely, which would prevent the "please
   select a size" message from ever showing. */
.amps-add-to-cart-btn.amps-is-unavailable,
.amps-buy-now-btn.amps-is-unavailable {
	opacity: .5;
}

.amps-buy-now-btn {
	display: block;
	width: 100%;
	height: 46px;
	margin-top: 10px;
	background: none;
	border: 1px solid #1E1E1E;
	cursor: pointer;
	transition: opacity .2s ease;
}

.amps-buy-now-btn:hover {
	opacity: .75;
}

/* ===================== ACCORDION ===================== */
.amps-accordion {
	display: flex;
	flex-direction: column;
}

.amps-accordion-item {
	border-bottom: 1px solid #E5E1D8;
}

.amps-accordion-header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 18px 0;
	text-align: left;
}

.amps-accordion-title {
	flex: 1 1 auto;
	/* Without this, a long question won't wrap and instead pushes the
	   row wider than its container (the classic flexbox min-width:auto
	   overflow bug) — this is what was pushing the FAQ accordion past
	   the screen edge on mobile. */
	min-width: 0;
	overflow-wrap: break-word;
}

.amps-accordion-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	transition: transform .25s ease;
}

.amps-accordion-icon svg {
	display: block;
}

.amps-accordion-item.is-open .amps-accordion-icon {
	transform: rotate(180deg);
}

.amps-accordion-content {
	padding: 0 0 18px;
	line-height: 1.7;
}

.amps-accordion-content table {
	width: 100%;
	border-collapse: collapse;
}

.amps-accordion-content table th,
.amps-accordion-content table td {
	padding: 6px 10px;
	border: 1px solid #E5E1D8;
	text-align: left;
	font-size: 13px;
}

/* ===================== CART DRAWER ===================== */
.amps-cart-drawer-widget {
	display: inline-block;
}

.amps-cart-trigger {
	position: relative;
	background: none;
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.amps-cart-count {
	position: absolute;
	top: -8px;
	right: -10px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 50%;
	font-size: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.amps-cart-overlay {
	position: fixed;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, visibility .3s ease;
	z-index: 999999991;
}

.amps-cart-drawer-panel {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	max-width: 100vw;
	width: 400px;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform .35s ease;
	z-index: 999999992;
	box-shadow: -4px 0 24px rgba(0, 0, 0, .12);
}

.amps-cart-drawer-portal.is-open .amps-cart-overlay {
	opacity: 1;
	visibility: visible;
}

.amps-cart-drawer-portal.is-open .amps-cart-drawer-panel {
	transform: translateX(0);
}

.amps-cart-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-bottom: 1px solid #EEEEEE;
	flex-shrink: 0;
}

.amps-cart-drawer-close {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
}

.amps-cart-drawer-body {
	flex: 1;
	overflow-y: auto;
	padding: 12px 20px;
}

.amps-cart-empty {
	padding: 40px 0;
	text-align: center;
	opacity: .6;
}

.amps-cart-items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.amps-cart-item {
	position: relative;
	display: flex;
	gap: 12px;
	padding-bottom: 16px;
	border-bottom: 1px solid #F0F0F0;
}

.amps-cart-item-image img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	display: block;
}

.amps-cart-item-info {
	flex: 1;
	min-width: 0;
}

.amps-cart-item-name {
	font-size: 14px;
	font-weight: 500;
}

.amps-cart-item-variation {
	font-size: 12px;
	opacity: .65;
	margin-top: 2px;
}

.amps-cart-item-qty-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
}

.amps-cart-item-qty {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #E0E0E0;
	padding: 2px 8px;
}

.amps-qty-btn {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 14px;
	line-height: 1;
	padding: 4px;
}

.amps-cart-item-price {
	font-size: 13px;
	font-weight: 600;
}

.amps-cart-item-remove {
	position: absolute;
	top: 0;
	right: 0;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
	opacity: .5;
}

.amps-cart-item-remove:hover {
	opacity: 1;
}

.amps-cart-drawer-footer {
	padding: 20px;
	border-top: 1px solid #EEEEEE;
	flex-shrink: 0;
}

.amps-cart-subtotal-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 14px;
}

.amps-cart-checkout-btn {
	display: block;
	text-align: center;
	text-decoration: none;
	padding: 14px;
	font-size: 14px;
	letter-spacing: .5px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.amps-cart-view-link {
	display: block;
	text-align: center;
	text-decoration: underline;
	font-size: 13px;
	opacity: .7;
}

@media (max-width: 767px) {
	.amps-gallery {
		max-width: 100%;
	}

	.amps-gallery--thumbs-left {
		flex-direction: column;
	}

	.amps-gallery--thumbs-left .amps-gallery-thumbs {
		flex-direction: row;
		order: 2;
		width: 100%;
		max-width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 4px;
	}

	.amps-gallery--thumbs-left .amps-gallery-main {
		order: 1;
		width: 100%;
		max-width: 100%;
	}

	.amps-gallery--thumbs-left .amps-gallery-main img {
		max-width: 100%;
		width: 100%;
		height: auto;
	}

	.amps-qty-cart-row {
		flex-direction: row;
		gap: 10px;
	}

	.amps-quantity {
		flex-shrink: 0;
	}

	.amps-quantity input.qty {
		width: 34px;
		height: 48px;
	}

	.amps-qty-stepper {
		width: 32px;
		height: 48px;
	}

	.amps-add-to-cart-btn {
		flex: 1;
		height: 48px;
		min-width: 0;
		padding: 0 12px;
		font-size: 13px;
	}

	.amps-buy-now-btn {
		height: 48px;
	}

	.amps-cart-drawer-panel {
		width: 100vw;
	}
}

/* ===================== PRODUCT GRID / CARDS ===================== */
.amps-product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.amps-product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.amps-card-image-link {
	position: relative;
	display: block;
	text-decoration: none;
}

.amps-card-image-wrap {
	position: relative;
	width: 100%;
	height: 420px;
	overflow: hidden;
	background-color: #F4F1EC;
}

.amps-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity .35s ease, transform .5s ease;
}

.amps-card-img-hover {
	opacity: 0;
}

.amps-product-card:hover .amps-card-img-main {
	opacity: 0;
}

.amps-product-card:hover .amps-card-img-hover {
	opacity: 1;
}

.amps-card-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 4px 10px;
	font-size: 11px;
	letter-spacing: .5px;
	text-transform: uppercase;
	background-color: #1E1E1E;
	color: #fff;
	z-index: 2;
}

.amps-card-badge--soldout {
	background-color: #8A8A8A;
}

.amps-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 6px;
	padding-top: 14px;
}

.amps-card-title {
	margin: 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	/* Reserve space for exactly 2 lines, whether the title needs
	   them or not, so price/button always line up at the same
	   vertical position across every card in the row. */
	min-height: calc(1.4em * 2);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.amps-card-title a {
	color: inherit;
	text-decoration: none;
}

.amps-card-title a:hover {
	text-decoration: underline;
}

.amps-card-price {
	font-size: 14px;
}

.amps-card-price del {
	opacity: .5;
	margin-left: 6px;
	font-size: .9em;
}

.amps-card-price ins {
	text-decoration: none;
}

.amps-card-btn {
	display: block;
	width: 100%;
	text-align: center;
	border: none;
	cursor: pointer;
	text-decoration: none;
	padding: 11px;
	margin-top: auto;
	background-color: #1E1E1E;
	color: #fff;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: opacity .2s ease;
}

.amps-card-btn:hover {
	opacity: .85;
	color: #fff;
}

.amps-card-add-btn.is-loading {
	opacity: .6;
	pointer-events: none;
}

@media (max-width: 767px) {
	.amps-product-grid {
		display: flex;
		grid-template-columns: none;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 14px;
		padding-bottom: 6px;
		scrollbar-width: none;
	}

	.amps-product-grid::-webkit-scrollbar {
		display: none;
	}

	.amps-product-card {
		flex: 0 0 auto;
		width: 62%;
		scroll-snap-align: start;
	}

	.amps-card-title {
		font-size: 13px;
	}

	.amps-card-btn {
		font-size: 11px;
		padding: 9px;
	}
}

/* ===================== SIZE CHART ===================== */
.amps-attribute-label-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

.amps-attribute-label-row .amps-attribute-label {
	margin-bottom: 0;
}

.amps-sizechart-trigger {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-size: 12px;
	text-decoration: underline;
	color: #1E1E1E;
}

.amps-sizechart-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .45);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, visibility .3s ease;
	z-index: 999999993;
}

.amps-sizechart-panel {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	width: 860px;
	max-width: 100vw;
	background: #fff;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform .35s ease;
	z-index: 999999994;
	box-shadow: -4px 0 24px rgba(0, 0, 0, .12);
}

.amps-sizechart-drawer.is-open .amps-sizechart-overlay {
	opacity: 1;
	visibility: visible;
}

.amps-sizechart-drawer.is-open .amps-sizechart-panel {
	transform: translateX(0);
}

.amps-sizechart-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 28px;
	border-bottom: 1px solid #EEEEEE;
	flex-shrink: 0;
}

.amps-sizechart-title {
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .5px;
}

.amps-sizechart-close {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 26px;
	line-height: 1;
}

.amps-sizechart-body {
	flex: 1;
	overflow-y: auto;
	padding: 24px 28px;
}

.amps-sizechart-table-wrap {
	overflow-x: auto;
}

.amps-sizechart-table-wrap table {
	width: 100%;
	min-width: 480px;
	border-collapse: collapse;
}

.amps-sizechart-table-wrap table th {
	background-color: #1E1E1E;
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: .5px;
	padding: 12px 10px;
	text-align: left;
	white-space: nowrap;
}

.amps-sizechart-table-wrap table td {
	padding: 12px 10px;
	font-size: 13px;
	border-bottom: 1px solid #EDEDED;
	white-space: nowrap;
}

.amps-sizechart-table-wrap table tr:nth-child(even) td {
	background-color: #F5F3EF;
}

@media (max-width: 767px) {
	.amps-sizechart-panel {
		width: 100vw;
	}

	.amps-sizechart-header,
	.amps-sizechart-body {
		padding-left: 18px;
		padding-right: 18px;
	}
}

/* ===================== TRUST BADGES ===================== */
.amps-trust-badges {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-top: 1px solid #E5E1D8;
	padding-top: 14px;
	margin-top: 4px;
}

.amps-trust-item {
	display: flex;
	align-items: flex-start;
	text-align: left;
	gap: 10px;
}

.amps-trust-item + .amps-trust-item {
	border-left: none;
}

.amps-trust-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	line-height: 1.5;
	flex-shrink: 0;
}

.amps-trust-icon svg {
	width: 1em;
	height: 1em;
}

.amps-trust-text {
	font-size: 13px;
	letter-spacing: 0;
	line-height: 1.5;
}

.amps-trust-label {
	font-weight: 600;
}

.amps-trust-sub {
	font-weight: 400;
}

@media (max-width: 767px) {
	.amps-trust-text {
		font-size: 12px;
	}
}

/* ===================== SIZING MODE TOGGLE ===================== */
.amps-sizing-mode {
	border: 1px solid #E5E1D8;
	border-radius: 6px;
	padding: 14px;
	background: #FAF8F3;
}

.amps-sizing-mode-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .5px;
	opacity: .7;
	margin-bottom: 10px;
}

.amps-sizing-toggle-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.amps-sizing-toggle {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	text-align: left;
	background: #FFFFFF;
	border: 1px solid #E5E1D8;
	border-radius: 6px;
	padding: 10px 12px;
	cursor: pointer;
	transition: border-color .2s ease, color .2s ease;
}

.amps-sizing-toggle-title {
	font-weight: 600;
	font-size: 14px;
}

.amps-sizing-toggle-line {
	font-size: 12px;
	opacity: .7;
}

.amps-sizing-toggle.is-active {
	border-width: 2px;
}

.amps-sizing-mode-note {
	font-size: 12px;
	opacity: .75;
	margin: 8px 0 0;
	line-height: 1.5;
}

@media (max-width: 480px) {
	.amps-sizing-toggle-row {
		grid-template-columns: 1fr;
	}
}

.amps-measurement-block {
	margin-top: 12px;
}

.amps-measurement-trigger {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-size: 13px;
	text-decoration: underline;
	color: #1E1E1E;
}

.amps-measurement-trigger.is-saved {
	text-decoration: none;
	font-weight: 600;
}

/* ===================== MEASUREMENT DRAWER ===================== */
.amps-measurement-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .45);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, visibility .3s ease;
	z-index: 999999995;
}

.amps-measurement-panel {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	width: 480px;
	max-width: 100vw;
	background: #fff;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform .35s ease;
	z-index: 999999996;
	box-shadow: -4px 0 24px rgba(0, 0, 0, .12);
}

.amps-measurement-drawer.is-open .amps-measurement-overlay {
	opacity: 1;
	visibility: visible;
}

.amps-measurement-drawer.is-open .amps-measurement-panel {
	transform: translateX(0);
}

.amps-measurement-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 28px;
	border-bottom: 1px solid #EEEEEE;
	flex-shrink: 0;
}

.amps-measurement-title {
	font-size: 18px;
	font-weight: 600;
}

.amps-measurement-close {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 24px;
	line-height: 1;
}

.amps-measurement-body {
	flex: 1;
	overflow-y: auto;
	padding: 24px 28px;
}

.amps-measurement-intro {
	font-size: 13px;
	color: #6B6B6B;
	line-height: 1.6;
	margin: 0 0 20px;
}

.amps-measurement-field {
	margin-bottom: 20px;
}

.amps-measurement-field-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 8px;
}

.amps-measurement-field label {
	display: block;
	font-size: 13px;
	color: #5B5B5B;
	margin-bottom: 6px;
}

.amps-measurement-field-head label {
	margin-bottom: 0;
	flex: 1;
}

.amps-measurement-icon {
	display: block;
	width: 76px;
	height: auto;
	flex-shrink: 0;
	border: 1px solid #EFEFEF;
	border-radius: 4px;
}

.amps-measurement-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
}

.amps-measurement-input {
	width: 100%;
	padding: 12px 40px 12px 14px;
	border: 1px solid #D8D8D8;
	border-radius: 4px;
	font-size: 14px;
	background: #fff;
}

.amps-measurement-input:focus {
	outline: none;
	border-color: #1E1E1E;
}

.amps-measurement-unit {
	position: absolute;
	right: 14px;
	font-size: 12px;
	color: #8A8A8A;
	pointer-events: none;
}

.amps-measurement-field--notes textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #D8D8D8;
	border-radius: 4px;
	font-size: 14px;
	font-family: inherit;
	resize: vertical;
}

.amps-measurement-field--notes textarea:focus {
	outline: none;
	border-color: #1E1E1E;
}

.amps-measurement-footer {
	padding: 20px 28px;
	border-top: 1px solid #EEEEEE;
	flex-shrink: 0;
}

.amps-measurement-save-btn {
	display: block;
	width: 100%;
	border: none;
	cursor: pointer;
	padding: 14px;
	font-size: 13px;
	letter-spacing: .5px;
	text-transform: uppercase;
	background-color: #1E1E1E;
	color: #fff;
	border-radius: 4px;
	transition: opacity .2s ease;
}

.amps-measurement-save-btn:hover {
	opacity: .88;
}

@media (max-width: 767px) {
	.amps-measurement-panel {
		width: 100vw;
	}

	.amps-measurement-header,
	.amps-measurement-body,
	.amps-measurement-footer {
		padding-left: 18px;
		padding-right: 18px;
	}
}

/* ===================== SHARED SECTION HEADING ===================== */
.amps-section-eyebrow {
	font-family: 'Courier New', monospace;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

/* ===================== FABRIC / MATERIAL FEATURE ===================== */
.amps-fabric-feature {
	display: flex;
	gap: 60px;
	/* Deliberately NOT flex-start: the image column needs to stretch
	   to match the (usually taller) content column's height so the
	   sticky image below has real vertical room to travel before it
	   reaches the bottom of its own column and stops sticking. */
	align-items: stretch;
	padding: 60px 40px;
}

.amps-fabric-feature--right {
	flex-direction: row-reverse;
}

.amps-fabric-image {
	flex: 0 0 50%;
	max-width: 50%;
	position: sticky;
	top: 100px;
}

.amps-fabric-image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.amps-fabric-content {
	flex: 0 0 50%;
	max-width: 50%;
	min-width: 0;
}

.amps-fabric-heading {
	margin: 0 0 16px;
	line-height: 1.25;
}

.amps-fabric-description {
	margin: 0 0 28px;
	line-height: 1.7;
	max-width: 640px;
}

.amps-fabric-specs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px 40px;
	max-width: 640px;
}

.amps-fabric-spec {
	border-left: 2px solid #A9822F;
	padding-left: 14px;
}

.amps-fabric-spec-label {
	font-family: 'Courier New', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: .65;
	margin-bottom: 4px;
}

.amps-fabric-spec-value {
	font-size: 15px;
	line-height: 1.5;
}

@media (max-width: 767px) {
	.amps-fabric-feature,
	.amps-fabric-feature--right {
		flex-direction: column;
		gap: 24px;
		padding: 40px 20px;
	}

	.amps-fabric-image {
		max-width: 100%;
		flex-basis: auto;
		position: static;
	}

	.amps-fabric-content {
		max-width: 100%;
		flex-basis: auto;
	}

	.amps-fabric-specs {
		grid-template-columns: 1fr;
	}
}

/* ===================== SIZE GUIDE ===================== */
.amps-size-guide {
	display: flex;
	gap: 60px;
	align-items: center;
	padding: 60px 40px;
}

.amps-size-diagram {
	flex: 0 0 50%;
	max-width: 50%;
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 10px;
	padding: 24px;
}

.amps-size-diagram img,
.amps-diagram-svg {
	display: block;
	width: 100%;
	height: auto;
}

.amps-size-content {
	flex: 0 0 50%;
	max-width: 50%;
	min-width: 0;
}

.amps-size-guide-heading {
	margin: 0 0 14px;
	line-height: 1.25;
}

.amps-size-guide-description {
	margin: 0 0 28px;
	line-height: 1.7;
	opacity: .85;
	max-width: 560px;
}

.amps-size-steps {
	display: flex;
	flex-direction: column;
	margin-bottom: 26px;
}

.amps-size-step {
	display: flex;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255,255,255,.12);
}

.amps-size-step:last-child {
	border-bottom: none;
}

.amps-size-step-num {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border: 1px solid currentColor;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.amps-size-step-title {
	font-weight: 600;
	margin-bottom: 4px;
}

.amps-size-step-text {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	opacity: .8;
	max-width: 520px;
}

.amps-whatsapp-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
}

@media (max-width: 767px) {
	.amps-size-guide {
		flex-direction: column;
		gap: 30px;
		padding: 40px 20px;
	}

	.amps-size-diagram {
		max-width: 100%;
		flex-basis: auto;
	}

	.amps-size-content {
		max-width: 100%;
		flex-basis: auto;
	}
}

/* ===================== REVIEWS ===================== */
.amps-reviews {
	padding: 60px 40px;
}

.amps-reviews-heading {
	margin: 0 0 14px;
	line-height: 1.25;
	max-width: 640px;
}

.amps-reviews-description {
	margin: 0 0 30px;
	line-height: 1.7;
	max-width: 640px;
	opacity: .85;
}

.amps-reviews-summary {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
	background: #FFFFFF;
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 30px;
}

.amps-reviews-score {
	text-align: center;
	flex-shrink: 0;
}

.amps-reviews-score-number {
	font-size: 44px;
	font-weight: 700;
	line-height: 1;
}

.amps-stars {
	display: inline-flex;
	gap: 2px;
	margin: 6px 0;
}

.amps-star {
	opacity: .25;
}

.amps-star.is-filled {
	opacity: 1;
}

.amps-reviews-count {
	font-size: 13px;
	opacity: .7;
}

.amps-reviews-histogram {
	flex: 1;
	min-width: 220px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.amps-histogram-row {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
}

.amps-histogram-star {
	width: 26px;
	flex-shrink: 0;
	opacity: .7;
}

.amps-histogram-bar {
	flex: 1;
	height: 6px;
	background: #E9E4D8;
	border-radius: 3px;
	overflow: hidden;
}

.amps-histogram-fill {
	display: block;
	height: 100%;
	border-radius: 3px;
}

.amps-histogram-count {
	width: 24px;
	text-align: right;
	opacity: .7;
}

.amps-reviews-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.amps-reviews-chip {
	background: #F0EBE1;
	border-radius: 999px;
	padding: 6px 14px;
	font-size: 12px;
	white-space: nowrap;
}

.amps-reviews-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.amps-review-card {
	background: #FFFFFF;
	border-radius: 10px;
	padding: 24px;
}

.amps-review-card-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.amps-review-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #1A2A41;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 600;
	flex-shrink: 0;
}

.amps-review-name-wrap {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.amps-review-name {
	font-weight: 600;
	font-size: 14px;
}

.amps-review-verified {
	font-size: 11px;
	color: #A9822F;
	font-weight: 600;
}

.amps-review-image {
	margin: 10px 0;
}

.amps-review-image img {
	display: block;
	width: 100%;
	border-radius: 6px;
}

.amps-review-text {
	font-size: 14px;
	line-height: 1.6;
	margin: 8px 0 10px;
}

.amps-review-meta {
	font-size: 12px;
	opacity: .65;
}

.amps-reviews-sample-note {
	margin: 20px 0 0;
	font-size: 12px;
	opacity: .6;
}

@media (max-width: 900px) {
	.amps-reviews-cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.amps-reviews {
		padding: 40px 20px;
	}
}

/* ===================== INSTAGRAM GALLERY ===================== */
.amps-instagram-gallery {
	padding: 60px 40px;
}

.amps-ig-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 26px;
}

.amps-ig-heading {
	margin: 0;
	line-height: 1.25;
}

.amps-ig-follow {
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.amps-ig-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.amps-ig-item {
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: 6px;
}

.amps-ig-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.amps-ig-item:hover img {
	transform: scale(1.04);
}

@media (max-width: 900px) {
	.amps-ig-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	.amps-instagram-gallery {
		padding: 40px 20px;
	}

	.amps-ig-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ===================== FAQ ===================== */
.amps-faq {
	padding: 60px 40px;
	max-width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
}

.amps-faq * {
	box-sizing: border-box;
}

.amps-faq-heading {
	margin: 0 0 24px;
	line-height: 1.25;
}

.amps-faq .amps-accordion-item:first-child {
	border-top: 1px solid #E5E1D8;
}

.amps-faq-pending {
	opacity: .55;
	margin: 0;
}

@media (max-width: 767px) {
	.amps-faq {
		padding: 40px 20px;
	}
}

/* ===================== PRODUCT GRID HEADING ("You may also like") ===================== */
.amps-product-grid-heading {
	margin-bottom: 26px;
}

.amps-product-grid-title {
	margin: 0;
	line-height: 1.25;
}
