.devmant-cart {
	--devmant-cart-black: #0b0b0a;
	--devmant-cart-ink: #1a1a18;
	--devmant-cart-white: #fff;
	--devmant-cart-line: #e8e8e8;
	--devmant-cart-muted: #4c4c4c;
	--devmant-cart-soft: #f6f6f6;
	color: var(--devmant-cart-black);
	font-family: "Jost", sans-serif;
	width: 100%;
}

.devmant-cart *,
.devmant-cart *::before,
.devmant-cart *::after {
	box-sizing: border-box;
}

.devmant-cart [hidden] {
	display: none !important;
}

.devmant-cart__container {
	margin: 0 auto;
	max-width: 1320px;
	padding: 0 48px;
	width: 100%;
}

.devmant-cart__layout {
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 1fr) var(--devmant-cart-summary-width, 380px);
	padding: 64px 0 92px;
}

.devmant-cart__list {
	border-top: 1px solid var(--devmant-cart-line);
	min-width: 0;
}

.devmant-cart__item {
	align-items: center;
	border-bottom: 1px solid var(--devmant-cart-line);
	display: grid;
	gap: 22px;
	grid-template-columns: auto minmax(0, 1fr) auto auto;
	padding: 24px 0;
	position: relative;
}

.devmant-cart__item.is-updating {
	opacity: 0.55;
	pointer-events: none;
}

.devmant-cart__image-wrap {
	background: var(--devmant-cart-soft);
	overflow: hidden;
	width: 120px;
}

.devmant-cart__image {
	aspect-ratio: 1 / 1;
	display: block;
	height: auto;
	object-fit: cover;
	transition: filter 0.45s ease, transform 0.45s ease;
	width: 100%;
}

.devmant-cart__details {
	min-width: 0;
}

.devmant-cart__title {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.35;
	margin: 0 0 8px;
}

.devmant-cart__title a {
	color: inherit;
	text-decoration: none;
}

.devmant-cart__meta {
	color: var(--devmant-cart-muted);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.45;
	margin: 0 0 6px;
	text-transform: uppercase;
}

.devmant-cart__price {
	align-items: baseline;
	display: flex;
	font-weight: 800;
	gap: 10px;
	white-space: nowrap;
}

.devmant-cart__quantity {
	border: 1px solid var(--devmant-cart-line);
	display: flex;
	margin-top: 12px;
	overflow: hidden;
	width: max-content;
}

.devmant-cart__quantity-button,
.devmant-cart__quantity-input {
	background: var(--devmant-cart-white);
	border: 0;
	border-radius: 0;
	height: 44px;
	margin: 0;
}

.devmant-cart__quantity-button {
	align-items: center;
	color: inherit;
	cursor: pointer;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	padding: 0;
	width: 44px;
}

.devmant-cart__quantity-button svg {
	fill: currentColor;
	height: 1em;
	width: 1em;
}

.devmant-cart__quantity-input {
	-moz-appearance: textfield;
	box-shadow: none;
	padding: 0;
	text-align: center;
	width: 54px;
}

.devmant-cart__quantity-input::-webkit-inner-spin-button,
.devmant-cart__quantity-input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.devmant-cart__remove {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--devmant-cart-muted);
	cursor: pointer;
	display: inline-flex;
	height: 36px;
	justify-content: center;
	padding: 0;
	width: 36px;
}

.devmant-cart__remove svg {
	fill: currentColor;
	height: 1em;
	width: 1em;
}

.devmant-cart__summary {
	align-self: start;
	background: var(--devmant-cart-black);
	color: var(--devmant-cart-white);
	padding: 28px;
	position: sticky;
	top: 104px;
}

.devmant-cart__eyebrow {
	color: rgba(255, 255, 255, 0.62);
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 2.6px;
	text-transform: uppercase;
}

.devmant-cart__summary-row {
	align-items: baseline;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	display: flex;
	gap: 18px;
	justify-content: space-between;
	padding: 14px 0;
}

.devmant-cart__summary-total {
	font-size: 1.35rem;
	font-weight: 800;
}

.devmant-cart__button {
	align-items: center;
	border: 0;
	cursor: pointer;
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 800;
	gap: 8px;
	justify-content: center;
	letter-spacing: 1.7px;
	line-height: 1.2;
	min-height: 52px;
	padding: 16px 28px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.devmant-cart__button-icon {
	align-items: center;
	display: inline-flex;
	justify-content: center;
}

.devmant-cart__button-icon:empty {
	display: none;
}

.devmant-cart__button-icon svg {
	fill: currentColor;
	height: 1em;
	width: 1em;
}

.devmant-cart__checkout {
	background: var(--devmant-cart-white);
	color: var(--devmant-cart-black);
	margin-top: 24px;
	width: 100%;
}

.devmant-cart__checkout:hover {
	background: var(--devmant-cart-ink);
	color: var(--devmant-cart-white);
}

.devmant-cart__whatsapp {
	background: transparent;
	border: 1px solid var(--devmant-cart-white);
	color: var(--devmant-cart-white);
	margin-top: 12px;
	width: 100%;
}

.devmant-cart__whatsapp:hover {
	background: var(--devmant-cart-white);
	color: var(--devmant-cart-black);
}

.devmant-cart__empty {
	align-items: center;
	display: flex;
	flex-direction: column;
	padding: 80px 24px;
	text-align: center;
}

.devmant-cart__empty-icon {
	color: var(--devmant-cart-muted);
	font-size: 2rem;
	margin-bottom: 20px;
}

.devmant-cart__empty-icon svg {
	fill: currentColor;
	height: 1em;
	width: 1em;
}

.devmant-cart__empty-title {
	font-size: 2rem;
	font-weight: 800;
	margin: 0 0 12px;
}

.devmant-cart__empty-description {
	color: var(--devmant-cart-muted);
	margin-bottom: 24px;
}

.devmant-cart__continue {
	background: var(--devmant-cart-black);
	color: var(--devmant-cart-white);
}

.devmant-cart__status {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.devmant-cart__notice {
	border: 1px solid var(--devmant-cart-line);
	padding: 20px;
}

@media (max-width: 1080px) {
	.devmant-cart__container {
		padding: 0 24px;
	}

	.devmant-cart__layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.devmant-cart__summary {
		position: relative;
		top: auto;
	}
}

@media (max-width: 640px) {
	.devmant-cart__item {
		align-items: start;
		grid-template-columns: auto minmax(0, 1fr) auto;
	}

	.devmant-cart__image-wrap {
		width: 86px;
	}

	.devmant-cart__price {
		grid-column: 2;
	}

	.devmant-cart__remove {
		grid-column: 3;
		grid-row: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.devmant-cart *,
	.devmant-cart *::before,
	.devmant-cart *::after {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}
