.aces-store {
	margin: 0 auto;
	max-width: 1180px;
	padding-bottom: 92px;
}

.aces-store-toolbar {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.aces-store-toolbar h2,
.aces-store-review h3 {
	margin: 0;
	font-size: clamp(38px, 5vw, 70px);
	line-height: 0.95;
	text-transform: uppercase;
}

.aces-store-eyebrow {
	margin: 0 0 8px;
	color: #b51c1f;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.aces-store-view-order {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10000;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 16px 22px;
	background: #050505;
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.08em;
	box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.24);
	text-transform: uppercase;
}

.aces-store-view-order:hover,
.aces-store-view-order:focus {
	color: #fff;
}

.aces-store-view-order span {
	display: inline-grid;
	place-items: center;
	min-width: 28px;
	height: 28px;
	padding: 0 8px;
	background: #b51c1f;
	color: #fff;
}

.aces-store-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 42px;
}

.aces-store-product {
	position: relative;
	background: #fff;
	border: 1px solid rgba(5, 5, 5, 0.12);
}

.aces-store-product.is-unavailable {
	opacity: 0.58;
}

.aces-store-product-image {
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	padding: 18px;
	background: #050505;
}

.aces-store-product-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.aces-store-product-body {
	padding: 22px;
}

.aces-store-product h3 {
	margin: 0 0 8px;
	font-size: 30px;
	line-height: 1;
	text-transform: uppercase;
}

.aces-store-price {
	margin: 0 0 12px;
	color: #b51c1f;
	font-weight: 900;
}

.aces-store-hidden-qty {
	display: none;
}

.aces-store-picker {
	display: grid;
	gap: 10px;
	margin-top: 16px;
}

.aces-store-pick-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 72px;
	align-items: center;
	gap: 8px;
}

.aces-store-pick-row select,
.aces-store-pick-row input {
	width: 100%;
	height: 42px;
	margin: 0;
	border: 1px solid rgba(5, 5, 5, 0.28);
	background: #fff;
	color: #111;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
}

.aces-store-pick-row select {
	-webkit-appearance: none;
	appearance: none;
	padding: 0 34px 0 14px;
	background:
		linear-gradient(45deg, transparent 50%, #111 50%) calc(100% - 18px) 17px / 7px 7px no-repeat,
		linear-gradient(135deg, #111 50%, transparent 50%) calc(100% - 13px) 17px / 7px 7px no-repeat,
		#fff;
	cursor: pointer;
}

.aces-store-pick-row .ui-selectmenu-button {
	position: relative;
	display: flex;
	align-items: center;
	width: 100% !important;
	height: 42px;
	margin: 0;
	padding: 0 34px 0 14px;
	border: 1px solid rgba(5, 5, 5, 0.28);
	border-radius: 0;
	background: #fff;
	color: #111;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
}

.aces-store-pick-row .ui-selectmenu-button:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 14px;
	width: 10px;
	height: 10px;
	border-right: 2px solid #111;
	border-bottom: 2px solid #111;
	transform: translateY(-65%) rotate(45deg);
	pointer-events: none;
}

.aces-store-pick-row .ui-selectmenu-text {
	margin: 0;
	padding: 0;
	line-height: 1;
}

.aces-store-pick-row .ui-selectmenu-icon {
	display: none;
}

.aces-store-pick-row input {
	-webkit-appearance: auto;
	appearance: auto;
	text-align: center;
}

.aces-store-pick-row input::-webkit-inner-spin-button,
.aces-store-pick-row input::-webkit-outer-spin-button {
	opacity: 1;
}

.aces-store-add-size,
.aces-store-remove-size {
	height: 42px;
	margin: 0;
	border: 0;
	background: #050505;
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.aces-store-add-size {
	justify-self: start;
	padding: 0 14px;
	background: #b51c1f;
}

.aces-store-remove-size {
	grid-column: 2;
	justify-self: center;
	width: 72px;
	height: 32px;
	padding: 0 12px;
}

.aces-store-unavailable {
	display: inline-block;
	margin-top: 14px;
	padding: 7px 10px;
	background: #111;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.aces-store-customer {
	padding: 34px;
	background: #050505;
	color: #fff;
}

.aces-store-customer h3 {
	margin-top: 0;
	color: #fff;
	font-size: 36px;
	text-transform: uppercase;
}

.aces-store-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.aces-store-fields label {
	color: #fff;
	font-weight: 800;
}

.aces-store-fields input,
.aces-store-fields textarea {
	width: 100%;
	margin-top: 6px;
	background: #fff;
	color: #111;
}

.aces-store-fields .full {
	grid-column: 1 / -1;
}

.aces-store-review {
	margin-top: 28px;
	padding: 34px;
	background: #fff;
	border: 2px solid #050505;
}

.aces-store-review-empty {
	margin-top: 22px;
	padding: 20px;
	background: #f4f0eb;
	color: #333;
	font-weight: 800;
}

.aces-store-review-list {
	margin-top: 22px;
	border-top: 1px solid rgba(5, 5, 5, 0.16);
}

.aces-store-review-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 18px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(5, 5, 5, 0.16);
}

.aces-store-review-row span {
	font-weight: 900;
	text-transform: uppercase;
}

.aces-store-review-row small {
	display: block;
	margin-top: 4px;
	color: #555;
	font-size: 14px;
	font-weight: 800;
	text-transform: none;
}

.aces-store-review-total {
	margin-top: 20px;
	color: #b51c1f;
	font-size: 30px;
	font-weight: 900;
	text-align: right;
	text-transform: uppercase;
}

.aces-store-confirm {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 22px;
	color: #111;
	font-weight: 900;
}

.aces-store-confirm input {
	width: 20px;
	height: 20px;
	margin: 0;
}

@media (max-width: 900px) {
	.aces-store-grid,
	.aces-store-fields {
		grid-template-columns: 1fr;
	}

	.aces-store-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.aces-store-review-row {
		grid-template-columns: 1fr;
	}

	.aces-store-review-total {
		text-align: left;
	}

	.aces-store-pick-row {
		grid-template-columns: minmax(0, 1fr) 68px;
	}

	.aces-store-remove-size {
		grid-column: 1 / -1;
		width: 100%;
	}
}
