:root {
	--cc-cart-accent: var(--mw_primary_color, #ef0052);
	--cc-cart-accent-soft: #fff0f4;
	--cc-cart-ink: #151515;
	--cc-cart-muted: #747782;
	--cc-cart-line: #eceef1;
	--cc-cart-panel: #f6f6f6;
	--cc-cart-white: #fff;
	--cc-cart-danger-soft: #ffd6d8;
	--cc-cart-shadow: 0 8px 26px rgb(26 32 44 / 8%);
}

.cc-ahura-cart-page .cc-cart-shell,
.cc-ahura-cart-page .cc-cart-shell * {
	box-sizing: border-box;
}

.cc-ahura-cart-page .cc-cart-shell {
	width: min(1400px, calc(100% - 32px));
	margin: 28px auto 70px;
	color: var(--cc-cart-ink);
	direction: rtl;
	font-size: 14px;
	line-height: 1.8;
}

.cc-ahura-cart-page .cc-cart-shell a {
	text-decoration: none;
}

.cc-ahura-cart-page .cc-cart-toolbar {
	display: grid;
	grid-template-columns: 375px minmax(0, 1fr);
	grid-template-areas: "continue tabs";
	gap: 24px;
	align-items: center;
	margin-bottom: 18px;
	direction: ltr;
}

.cc-ahura-cart-page .cc-continue-shopping {
	grid-area: continue;
	justify-self: end;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 54px;
	padding: 8px 16px;
	border-radius: 14px;
	background: var(--cc-cart-panel);
	color: var(--cc-cart-ink);
	direction: rtl;
	transition: transform .2s ease, background-color .2s ease;
}

.cc-ahura-cart-page .cc-continue-shopping:hover {
	background: #eee;
	transform: translateY(-1px);
}

.cc-ahura-cart-page .cc-continue-shopping svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cc-ahura-cart-page .cc-continue-shopping span {
	display: flex;
	flex-direction: column;
	line-height: 1.35;
}

.cc-ahura-cart-page .cc-continue-shopping small {
	font-size: 10px;
	color: var(--cc-cart-muted);
}

.cc-ahura-cart-page .cc-continue-shopping strong {
	font-size: 13px;
	font-weight: 800;
}

.cc-ahura-cart-page .cc-cart-tabs {
	grid-area: tabs;
	display: flex;
	justify-content: flex-start;
	gap: 26px;
	direction: rtl;
	border-bottom: 1px solid transparent;
}

.cc-ahura-cart-page .cc-cart-tabs a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 54px;
	padding: 8px 2px 12px;
	color: #737782;
	font-weight: 800;
}

.cc-ahura-cart-page .cc-cart-tabs a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -1px;
	width: 0;
	height: 3px;
	border-radius: 999px;
	background: var(--cc-cart-accent);
	transition: width .2s ease;
}

.cc-ahura-cart-page .cc-cart-tabs a:hover,
.cc-ahura-cart-page .cc-cart-tabs a.is-active {
	color: var(--cc-cart-accent);
}

.cc-ahura-cart-page .cc-cart-tabs a.is-active::after {
	width: 100%;
}

.cc-ahura-cart-page .cc-cart-tabs a span {
	display: inline-grid;
	place-items: center;
	min-width: 24px;
	height: 22px;
	padding: 0 6px;
	border-radius: 7px;
	background: #969aa2;
	color: #fff;
	font-size: 11px;
	line-height: 1;
}

.cc-ahura-cart-page .cc-cart-tabs a.is-active span {
	background: var(--cc-cart-accent);
}

.cc-ahura-cart-page .cc-cart-layout {
	display: grid;
	grid-template-columns: 375px minmax(0, 1fr);
	grid-template-areas: "summary products";
	gap: 24px;
	align-items: start;
	direction: ltr;
}

.cc-ahura-cart-page .cc-cart-products {
	grid-area: products;
	border: 1px solid var(--cc-cart-line);
	border-radius: 20px;
	background: var(--cc-cart-white);
	box-shadow: var(--cc-cart-shadow);
	overflow: hidden;
	direction: rtl;
}

.cc-ahura-cart-page .cc-cart-summary {
	grid-area: summary;
	position: sticky;
	top: 24px;
	direction: rtl;
}

.cc-ahura-cart-page .cc-cart-summary .cart_totals {
	width: 100%;
	padding: 28px 27px 24px;
	border-radius: 22px;
	background: var(--cc-cart-panel);
	overflow: hidden;
}

.cc-ahura-cart-page .cc-summary-head {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 14px;
}

.cc-ahura-cart-page .cc-summary-head h2 {
	margin: 0;
	color: var(--cc-cart-ink);
	font-size: 17px;
	font-weight: 900;
}

.cc-ahura-cart-page .cc-summary-icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 13px;
	background: #050505;
	color: #fff;
}

.cc-ahura-cart-page .cc-summary-icon svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cc-ahura-cart-page .cc-summary-count {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 17px;
	margin-bottom: 10px;
	border-bottom: 2px dashed #e1e2e4;
}

.cc-ahura-cart-page .cc-summary-count p {
	margin: 0;
	color: #383838;
	font-size: 13px;
}

.cc-ahura-cart-page .cc-summary-count a {
	flex: 0 0 auto;
	padding: 5px 13px;
	border-radius: 9px;
	background: #fff;
	color: #303030;
	font-size: 12px;
	font-weight: 700;
}

.cc-ahura-cart-page .cc-cart-summary table,
.cc-ahura-cart-page .cc-cart-summary table tbody {
	display: block;
	width: 100%;
	border: 0;
	background: transparent;
}

.cc-ahura-cart-page .cc-cart-summary table tr {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 15px 0;
	border: 0;
	background: transparent;
}

.cc-ahura-cart-page .cc-cart-summary table tr + tr {
	border-top: 1px solid rgb(0 0 0 / 3%);
}

.cc-ahura-cart-page .cc-cart-summary table th,
.cc-ahura-cart-page .cc-cart-summary table td {
	display: block;
	width: auto;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--cc-cart-ink);
	font-size: 13px;
	text-align: right;
}

.cc-ahura-cart-page .cc-cart-summary table th {
	font-weight: 800;
}

.cc-ahura-cart-page .cc-cart-summary table td {
	margin-right: auto;
	text-align: left;
	white-space: nowrap;
}

.cc-ahura-cart-page .cc-cart-summary table td::before {
	display: none;
}

.cc-ahura-cart-page .cc-cart-summary .cc-product-discount td,
.cc-ahura-cart-page .cc-cart-summary .cart-discount td,
.cc-ahura-cart-page .cc-cart-summary .cc-discount-value {
	color: var(--cc-cart-accent);
}

.cc-ahura-cart-page .cc-cart-summary .cc-discount-value small {
	font-size: 11px;
}

.cc-ahura-cart-page .cc-cart-summary .woocommerce-remove-coupon {
	display: block;
	margin-top: 3px;
	color: var(--cc-cart-muted);
	font-size: 10px;
}

.cc-ahura-cart-page .cc-cart-summary .shipping {
	flex-wrap: wrap;
}

.cc-ahura-cart-page .cc-cart-summary .shipping td {
	width: 100%;
	margin: 7px 0 0;
	white-space: normal;
	text-align: right;
}

.cc-ahura-cart-page .cc-cart-summary .shipping ul {
	margin: 0;
}

.cc-ahura-cart-page .cc-cart-summary .shipping-calculator-button {
	color: var(--cc-cart-accent);
	font-weight: 700;
}

.cc-ahura-cart-page .cc-cart-summary .shipping-calculator-form {
	margin-top: 10px;
}

.cc-ahura-cart-page .cc-cart-summary .shipping-calculator-form p {
	margin: 0 0 8px;
}

.cc-ahura-cart-page .cc-cart-summary .shipping-calculator-form input,
.cc-ahura-cart-page .cc-cart-summary .shipping-calculator-form select {
	width: 100%;
	min-height: 42px;
	padding: 7px 10px;
	border: 1px solid #dedfe2;
	border-radius: 9px;
	background: #fff;
}

.cc-ahura-cart-page .cc-cart-summary .shipping-calculator-form button {
	width: 100%;
	min-height: 42px;
	border-radius: 9px;
	background: #e5e5e6;
	color: #222;
}

.cc-ahura-cart-page .cc-cart-summary .order-total {
	margin-top: 2px;
	padding-top: 20px;
	border-top: 2px dashed #dedfe2;
}

.cc-ahura-cart-page .cc-cart-summary .order-total th,
.cc-ahura-cart-page .cc-cart-summary .order-total td {
	font-size: 15px;
	font-weight: 900;
}

.cc-ahura-cart-page .cc-cart-summary .order-total small {
	display: block;
	white-space: normal;
	font-size: 10px;
	font-weight: 500;
}

.cc-ahura-cart-page .cc-cart-summary .wc-proceed-to-checkout {
	padding: 8px 0 0;
}

.cc-ahura-cart-page .cc-cart-summary .checkout-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	margin: 0;
	padding: 11px 16px;
	border: 0;
	border-radius: 12px;
	background: var(--cc-cart-accent);
	box-shadow: 0 7px 16px color-mix(in srgb, var(--cc-cart-accent) 25%, transparent);
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.4;
	transition: transform .2s ease, filter .2s ease;
}

.cc-ahura-cart-page .cc-cart-summary .checkout-button:hover {
	filter: brightness(.94);
	transform: translateY(-1px);
}

.cc-ahura-cart-page .cc-cart-items {
	padding: 12px 20px 0;
}

.cc-ahura-cart-page .cc-cart-item {
	display: grid;
	grid-template-columns: 118px minmax(0, 1fr) 42px;
	grid-template-areas: "thumb details remove";
	gap: 20px;
	align-items: center;
	min-height: 190px;
	padding: 24px 4px;
	border-bottom: 1px dashed #e4e5e7;
}

.cc-ahura-cart-page .cc-cart-item:last-child {
	border-bottom: 0;
}

.cc-ahura-cart-page .cc-product-thumb {
	grid-area: thumb;
}

.cc-ahura-cart-page .cc-product-thumb a {
	display: block;
}

.cc-ahura-cart-page .cc-product-thumb img {
	display: block;
	width: 112px;
	height: 112px;
	margin: 0 auto;
	border-radius: 12px;
	object-fit: contain;
}

.cc-ahura-cart-page .cc-product-details {
	grid-area: details;
	min-width: 0;
}

.cc-ahura-cart-page .cc-product-name {
	margin: 0 0 12px;
	color: #111;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.8;
}

.cc-ahura-cart-page .cc-product-name a {
	color: inherit;
}

.cc-ahura-cart-page .cc-product-name a:hover {
	color: var(--cc-cart-accent);
}

.cc-ahura-cart-page .cc-product-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 18px;
	margin-bottom: 8px;
	color: #4b4d53;
	font-size: 11px;
	font-weight: 650;
}

.cc-ahura-cart-page .cc-product-meta span + span {
	position: relative;
	padding-right: 18px;
}

.cc-ahura-cart-page .cc-product-meta span + span::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 17px;
	background: #e3e4e6;
	transform: translateY(-50%);
}

.cc-ahura-cart-page .cc-delivery-status::after {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 6px;
	border-radius: 50%;
	background: #32b36b;
	vertical-align: middle;
}

.cc-ahura-cart-page .cc-variation-data {
	margin-bottom: 8px;
	font-size: 11px;
}

.cc-ahura-cart-page .cc-variation-data .variation {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 14px;
	margin: 0;
}

.cc-ahura-cart-page .cc-variation-data .variation dt,
.cc-ahura-cart-page .cc-variation-data .variation dd,
.cc-ahura-cart-page .cc-variation-data .variation p {
	margin: 0;
}

.cc-ahura-cart-page .cc-product-purchase {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 10px;
}

.cc-ahura-cart-page .cc-product-price {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.cc-ahura-cart-page .cc-product-price strong {
	color: #111;
	font-size: 15px;
	font-weight: 900;
}

.cc-ahura-cart-page .cc-item-discount {
	margin-bottom: 1px;
	color: var(--cc-cart-accent);
	font-size: 11px;
	font-weight: 800;
}

.cc-ahura-cart-page .cc-quantity-control {
	display: flex;
	align-items: center;
	height: 38px;
	border: 1px solid #e1e2e5;
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
}

.cc-ahura-cart-page .cc-quantity-control .quantity {
	height: 100%;
}

.cc-ahura-cart-page .cc-quantity-control input.qty {
	width: 42px;
	height: 100%;
	padding: 0;
	border: 0;
	border-right: 1px solid #ededee;
	border-left: 1px solid #ededee;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #111;
	font-size: 13px;
	font-weight: 800;
	text-align: center;
	-moz-appearance: textfield;
}

.cc-ahura-cart-page .cc-quantity-control input.qty::-webkit-outer-spin-button,
.cc-ahura-cart-page .cc-quantity-control input.qty::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.cc-ahura-cart-page .cc-quantity-btn {
	display: grid;
	place-items: center;
	width: 34px;
	height: 100%;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #202124;
	font-size: 19px;
	font-weight: 500;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease;
}

.cc-ahura-cart-page .cc-quantity-btn:hover {
	background: var(--cc-cart-accent-soft);
	color: var(--cc-cart-accent);
}

.cc-ahura-cart-page .cc-single-quantity {
	display: grid;
	place-items: center;
	width: 40px;
	height: 38px;
	border: 1px solid #e1e2e5;
	border-radius: 10px;
	font-weight: 800;
}

.cc-ahura-cart-page .cc-save-for-later {
	display: inline-block;
	margin-top: 9px;
	color: #777a83;
	font-size: 11px;
	font-weight: 700;
}

.cc-ahura-cart-page .cc-save-for-later:hover {
	color: var(--cc-cart-accent);
}

.cc-ahura-cart-page .cc-product-remove {
	grid-area: remove;
	align-self: center;
	justify-self: center;
}

.cc-ahura-cart-page .cc-product-remove .remove {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 9px;
	background: var(--cc-cart-danger-soft);
	color: #fff !important;
	font-size: 0;
	font-weight: 400;
	line-height: 1;
}

.cc-ahura-cart-page .cc-product-remove .remove span {
	font-size: 24px;
	transform: translateY(-1px);
}

.cc-ahura-cart-page .cc-product-remove .remove:hover {
	background: #ffbabe;
}

.cc-ahura-cart-page .cc-cart-actions {
	padding: 14px 20px 28px;
}

.cc-ahura-cart-page .cc-coupon-box {
	display: flex !important;
	align-items: center;
	gap: 28px;
	width: 100%;
	padding: 24px 38px;
	border-radius: 22px;
	background: var(--cc-cart-panel);
}

.cc-ahura-cart-page .cc-coupon-icon {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 112px;
	height: 92px;
	color: #737781;
}

.cc-ahura-cart-page .cc-coupon-icon svg {
	width: 84px;
	height: 84px;
	fill: currentColor;
}

.cc-ahura-cart-page .cc-coupon-content {
	flex: 1;
	min-width: 0;
}

.cc-ahura-cart-page .cc-coupon-content label {
	display: block;
	margin-bottom: 7px;
	color: #1b1b1b;
	font-size: 13px;
	font-weight: 900;
}

.cc-ahura-cart-page .cc-coupon-field {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 8px;
	border-bottom: 2px dashed #d8dadd;
}

.cc-ahura-cart-page .cc-coupon-field input {
	flex: 1;
	min-width: 0;
	height: 44px;
	padding: 8px 15px;
	border: 1px solid #eef0f2;
	border-radius: 11px;
	background: #fff;
	color: #222;
	box-shadow: none;
	font-size: 12px;
}

.cc-ahura-cart-page .cc-coupon-field input::placeholder {
	color: #b6b8bf;
}

.cc-ahura-cart-page .cc-coupon-field button,
.cc-ahura-cart-page .cc-update-cart {
	min-height: 40px;
	padding: 8px 14px;
	border: 0;
	border-radius: 10px;
	background: #e7e7e8;
	color: #4c4d50;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
}

.cc-ahura-cart-page .cc-update-cart {
	display: block;
	margin: 14px 0 0 auto;
}

.cc-ahura-cart-page.cc-cart-js .cc-update-cart {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.cc-ahura-cart-page .woocommerce-cart-form {
	position: relative;
}

.cc-ahura-cart-page .woocommerce-cart-form::after {
	content: attr(data-updating);
	position: absolute;
	z-index: 5;
	inset: 0;
	display: none;
	place-items: center;
	border-radius: 20px;
	background: rgb(255 255 255 / 72%);
	backdrop-filter: blur(2px);
	color: var(--cc-cart-accent);
	font-weight: 800;
}

.cc-ahura-cart-page .woocommerce-cart-form.cc-is-updating::after {
	display: grid;
}

.cc-ahura-cart-page .cc-cart-cross-sells {
	margin-top: 28px;
}

.cc-ahura-cart-page .cc-cart-cross-sells .cross-sells {
	width: 100%;
}

.cc-ahura-cart-page .cc-cart-cross-sells > .cross-sells > h2 {
	margin-bottom: 18px;
	font-size: 20px;
}

.cc-ahura-cart-page .cc-saved-cart-panel {
	min-height: 430px;
	padding: 28px;
	border: 1px solid var(--cc-cart-line);
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--cc-cart-shadow);
}

.cc-ahura-cart-page .cc-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 18px;
	margin-bottom: 8px;
	border-bottom: 1px dashed #e4e5e7;
}

.cc-ahura-cart-page .cc-section-heading h2 {
	margin: 0 0 2px;
	font-size: 18px;
	font-weight: 900;
}

.cc-ahura-cart-page .cc-section-heading p {
	margin: 0;
	color: var(--cc-cart-muted);
	font-size: 12px;
}

.cc-ahura-cart-page .cc-saved-items {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	padding-top: 18px;
}

.cc-ahura-cart-page .cc-saved-item {
	display: flex;
	gap: 18px;
	min-width: 0;
	padding: 18px;
	border: 1px solid var(--cc-cart-line);
	border-radius: 16px;
}

.cc-ahura-cart-page .cc-saved-thumb {
	flex: 0 0 108px;
}

.cc-ahura-cart-page .cc-saved-thumb img {
	display: block;
	width: 108px;
	height: 108px;
	border-radius: 11px;
	object-fit: contain;
}

.cc-ahura-cart-page .cc-saved-details {
	min-width: 0;
}

.cc-ahura-cart-page .cc-saved-details h3 {
	margin: 0 0 9px;
	font-size: 14px;
	font-weight: 900;
}

.cc-ahura-cart-page .cc-saved-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 12px;
	color: var(--cc-cart-muted);
	font-size: 10px;
}

.cc-ahura-cart-page .cc-saved-price {
	margin-top: 7px;
	font-weight: 900;
}

.cc-ahura-cart-page .cc-saved-actions {
	display: flex;
	gap: 10px;
	margin-top: 12px;
}

.cc-ahura-cart-page .cc-restore-item,
.cc-ahura-cart-page .cc-delete-saved {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 6px 13px;
	border-radius: 9px;
	font-size: 11px;
	font-weight: 800;
}

.cc-ahura-cart-page .cc-restore-item {
	background: var(--cc-cart-accent);
	color: #fff;
}

.cc-ahura-cart-page .cc-delete-saved {
	background: #f3f3f4;
	color: #5d6068;
}

.cc-ahura-cart-page .cc-saved-empty,
.cc-ahura-cart-page .cc-cart-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 330px;
	padding: 35px 20px;
	text-align: center;
}

.cc-ahura-cart-page .cc-saved-empty svg,
.cc-ahura-cart-page .cc-empty-icon svg {
	width: 68px;
	height: 68px;
	fill: none;
	stroke: var(--cc-cart-accent);
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cc-ahura-cart-page .cc-saved-empty h3,
.cc-ahura-cart-page .cc-cart-empty h2 {
	margin: 13px 0 4px;
	font-size: 18px;
	font-weight: 900;
}

.cc-ahura-cart-page .cc-saved-empty p,
.cc-ahura-cart-page .cc-cart-empty p {
	margin: 0 0 18px;
	color: var(--cc-cart-muted);
	font-size: 13px;
}

.cc-ahura-cart-page .cc-saved-empty a,
.cc-ahura-cart-page .cc-cart-empty .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 8px 20px;
	border: 0;
	border-radius: 10px;
	background: var(--cc-cart-accent);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
}

.cc-ahura-cart-page .cc-cart-empty {
	min-height: 430px;
	border: 1px solid var(--cc-cart-line);
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--cc-cart-shadow);
}

.cc-ahura-cart-page .woocommerce-error,
.cc-ahura-cart-page .woocommerce-info,
.cc-ahura-cart-page .woocommerce-message {
	width: min(1400px, calc(100% - 32px));
	margin-right: auto;
	margin-left: auto;
	border-radius: 12px;
}

@media (max-width: 1100px) {
	.cc-ahura-cart-page .cc-cart-toolbar {
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas: "tabs continue";
	}

	.cc-ahura-cart-page .cc-cart-layout {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas:
			"products"
			"summary";
	}

	.cc-ahura-cart-page .cc-cart-summary {
		position: static;
	}

	.cc-ahura-cart-page .cc-cart-summary .cart_totals {
		max-width: 100%;
	}
}

@media (max-width: 760px) {
	.cc-ahura-cart-page .cc-cart-shell {
		width: min(100% - 20px, 1400px);
		margin-top: 16px;
	}

	.cc-ahura-cart-page .cc-cart-toolbar {
		grid-template-columns: 1fr;
		grid-template-areas:
			"tabs"
			"continue";
		gap: 9px;
	}

	.cc-ahura-cart-page .cc-cart-tabs {
		justify-content: space-between;
		gap: 8px;
	}

	.cc-ahura-cart-page .cc-cart-tabs a {
		min-height: 48px;
		font-size: 12px;
	}

	.cc-ahura-cart-page .cc-continue-shopping {
		justify-self: stretch;
		justify-content: center;
	}

	.cc-ahura-cart-page .cc-cart-products {
		border-radius: 16px;
	}

	.cc-ahura-cart-page .cc-cart-items {
		padding: 4px 13px 0;
	}

	.cc-ahura-cart-page .cc-cart-item {
		grid-template-columns: 82px minmax(0, 1fr) 30px;
		gap: 11px;
		min-height: 150px;
		padding: 18px 0;
	}

	.cc-ahura-cart-page .cc-product-thumb img {
		width: 80px;
		height: 80px;
	}

	.cc-ahura-cart-page .cc-product-name {
		margin-bottom: 7px;
		font-size: 13px;
		line-height: 1.7;
	}

	.cc-ahura-cart-page .cc-product-meta {
		display: block;
		font-size: 9px;
	}

	.cc-ahura-cart-page .cc-product-meta span {
		display: block;
	}

	.cc-ahura-cart-page .cc-product-meta span + span {
		padding-right: 0;
	}

	.cc-ahura-cart-page .cc-product-meta span + span::before {
		display: none;
	}

	.cc-ahura-cart-page .cc-product-purchase {
		align-items: flex-end;
		gap: 8px;
	}

	.cc-ahura-cart-page .cc-product-price strong {
		font-size: 12px;
	}

	.cc-ahura-cart-page .cc-quantity-control {
		height: 34px;
	}

	.cc-ahura-cart-page .cc-quantity-control input.qty {
		width: 34px;
	}

	.cc-ahura-cart-page .cc-quantity-btn {
		width: 29px;
	}

	.cc-ahura-cart-page .cc-product-remove .remove {
		width: 27px;
		height: 27px;
		border-radius: 8px;
	}

	.cc-ahura-cart-page .cc-product-remove .remove span {
		font-size: 21px;
	}

	.cc-ahura-cart-page .cc-cart-actions {
		padding: 12px 13px 18px;
	}

	.cc-ahura-cart-page .cc-coupon-box {
		align-items: flex-start;
		gap: 12px;
		padding: 17px 14px;
		border-radius: 16px;
	}

	.cc-ahura-cart-page .cc-coupon-icon {
		width: 54px;
		height: 64px;
	}

	.cc-ahura-cart-page .cc-coupon-icon svg {
		width: 52px;
		height: 52px;
	}

	.cc-ahura-cart-page .cc-coupon-field {
		align-items: stretch;
		flex-direction: column;
	}

	.cc-ahura-cart-page .cc-coupon-field button {
		width: 100%;
	}

	.cc-ahura-cart-page .cc-cart-summary .cart_totals {
		padding: 22px 18px 19px;
		border-radius: 16px;
	}

	.cc-ahura-cart-page .cc-saved-cart-panel {
		padding: 18px 13px;
	}

	.cc-ahura-cart-page .cc-saved-items {
		grid-template-columns: 1fr;
	}

	.cc-ahura-cart-page .cc-saved-item {
		gap: 12px;
		padding: 13px;
	}

	.cc-ahura-cart-page .cc-saved-thumb {
		flex-basis: 82px;
	}

	.cc-ahura-cart-page .cc-saved-thumb img {
		width: 82px;
		height: 82px;
	}
}

@media (max-width: 420px) {
	.cc-ahura-cart-page .cc-cart-item {
		grid-template-columns: 70px minmax(0, 1fr) 27px;
	}

	.cc-ahura-cart-page .cc-product-thumb img {
		width: 68px;
		height: 68px;
	}

	.cc-ahura-cart-page .cc-product-purchase {
		align-items: flex-start;
		flex-direction: column;
	}

	.cc-ahura-cart-page .cc-save-for-later {
		margin-top: 6px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cc-ahura-cart-page .cc-cart-shell *,
	.cc-ahura-cart-page .cc-cart-shell *::before,
	.cc-ahura-cart-page .cc-cart-shell *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
