.cc-shop {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 28px;
	font-family: Helvetica, Arial, sans-serif;
}

.cc-shop .cc-shop__account {
	color: var(--cc-shop-icon-color, #020015);
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
	line-height: 1;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.cc-shop .cc-shop__account:hover {
	color: var(--cc-shop-icon-hover-color, #aaaaaa);
}

.cc-shop .cc-shop__icon {
	width: 30px;
	height: 30px;
	display: block;
	flex-shrink: 0;
}

.cc-shop .cc-shop__cart-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	isolation: isolate;
}

.cc-shop .cc-shop__cart-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	color: var(--cc-shop-icon-color, #020015);
	cursor: pointer;
	line-height: 1;
}

.cc-shop .cc-shop__cart-button:hover {
	color: var(--cc-shop-icon-hover-color, #aaaaaa);
}

.cc-shop .cc-shop__cart-badge-slot {
	position: absolute;
	top: -8px;
	right: -8px;
	z-index: 5;
	display: inline-flex;
	pointer-events: none;
}

.cc-shop .cc-shop__cart-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 999px;
	background: #000;
	color: #fff;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 10px;
	font-weight: 700;
	line-height: 16px;
	text-align: center;
	box-sizing: border-box;
	pointer-events: none;
}

.cc-shop .cc-shop__mexico {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 30px;
	flex: 0 0 auto;
	padding: 0;
	margin: 0;
	text-decoration: none;
	line-height: 1;
}

.cc-shop .cc-shop__mexico:hover {
	color: inherit;
}

.cc-shop .cc-shop__mexico-img {
	display: block;
	width: 40px;
	height: 28px;
	max-width: 40px;
	max-height: 28px;
	object-fit: contain;
	object-position: center center;
	border: 0;
	outline: 0;
	box-shadow: none;
	filter: none;
	background: transparent;
	opacity: 1;
}

.cc-shop img,
.cc-shop .cc-shop__mexico img,
.cc-shop .cc-shop__mexico-img {
	border: 0 !important;
	box-shadow: none !important;
	filter: none !important;
	background: transparent !important;
}

.cc-shop .cc-shop__mexico::before,
.cc-shop .cc-shop__mexico::after,
.cc-shop .cc-shop__cart-button::before,
.cc-shop .cc-shop__cart-button::after,
.cc-shop .cc-shop__cart-wrap::before,
.cc-shop .cc-shop__cart-wrap::after {
	content: none !important;
	display: none !important;
}

.cc-shop .cc-shop__cart-badge--empty {
	display: none;
}

.cc-shop .cc-shop-cart-popup {
	position: absolute;
	top: calc(100% + 18px);
	right: 0;
	z-index: 99999;
	width: 420px;
	max-width: calc(100vw - 32px);
	background: #fff;
	border: 1px solid #e2e2e2;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.cc-shop .cc-shop__cart-wrap.is-open .cc-shop-cart-popup {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.cc-shop .cc-shop-cart-popup__content {
	display: block;
}

.cc-shop .cc-shop-cart-popup__inner {
	padding: 24px;
	font-family: Helvetica, Arial, sans-serif;
	color: #070717;
}

.cc-shop .cc-shop-cart-popup__items {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 320px;
	overflow-y: auto;
}

.cc-shop .cc-shop-cart-popup__item {
	display: grid;
	grid-template-columns: 74px 1fr;
	gap: 18px;
	align-items: center;
	margin: 0;
	padding: 0 0 24px;
	border-bottom: 1px solid #e2e2e2;
}

.cc-shop .cc-shop-cart-popup__item:last-child {
	border-bottom: 0;
}

.cc-shop .cc-shop-cart-popup__thumb {
	width: 74px;
	height: 74px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cc-shop .cc-shop-cart-popup__thumb img {
	width: 74px;
	height: 74px;
	object-fit: contain;
	display: block;
}

.cc-shop .cc-shop-cart-popup__details {
	min-width: 0;
	display: grid;
	gap: 5px;
}

.cc-shop .cc-shop-cart-popup__name {
	display: block;
	font-size: 16px;
	line-height: 1.25;
	font-weight: 700;
	color: #070717;
	letter-spacing: 0.01em;
}

.cc-shop .cc-shop-cart-popup__meta {
	display: block;
	font-size: 12px;
	line-height: 1.3;
	color: #070717;
}

.cc-shop .cc-shop-cart-popup__meta dl,
.cc-shop .cc-shop-cart-popup__meta p {
	margin: 0;
}

.cc-shop .cc-shop-cart-popup__qty {
	display: block;
	font-size: 14px;
	line-height: 1.3;
	color: #070717;
}

.cc-shop .cc-shop-cart-popup__price {
	display: block;
	font-size: 15px;
	line-height: 1.3;
	font-weight: 700;
	color: #070717;
}

.cc-shop .cc-shop-cart-popup__total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 16px;
	padding: 24px 0 20px;
}

.cc-shop .cc-shop-cart-popup__total-label {
	font-size: 18px;
	line-height: 1;
	font-weight: 800;
	text-transform: uppercase;
	color: #070717;
}

.cc-shop .cc-shop-cart-popup__total-value {
	font-size: 20px;
	line-height: 1;
	font-weight: 800;
	color: #070717;
}

.cc-shop .cc-shop-cart-popup__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.cc-shop .cc-shop-cart-popup__btn {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.03em;
	text-decoration: none;
	text-transform: none;
	border: 1px solid #070717;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	font-family: Helvetica, Arial, sans-serif;
}

.cc-shop .cc-shop-cart-popup__btn--cart {
	background: #070717;
	color: #fff;
}

.cc-shop .cc-shop-cart-popup__btn--checkout {
	background: #ef3340;
	border-color: #ef3340;
	color: #fff;
}

.cc-shop .cc-shop-cart-popup__btn--shop {
	background: #070717;
	border-color: #070717;
	color: #fff;
	width: 100%;
}

.cc-shop .cc-shop-cart-popup__btn--cart:hover {
	background: #000;
	color: #fff;
}

.cc-shop .cc-shop-cart-popup__btn--checkout:hover {
	background: #d92734;
	border-color: #d92734;
	color: #fff;
}

.cc-shop .cc-shop-cart-popup__btn--shop:hover {
	background: #000;
	color: #fff;
}

.cc-shop .cc-shop-cart-popup__empty {
	padding: 24px;
	font-size: 15px;
	line-height: 1.4;
	color: #070717;
	text-align: center;
}

.cc-shop .cc-shop-cart-popup__empty-text {
	margin: 0 0 16px;
}

@media (max-width: 1024px) {
	.cc-shop .cc-shop-cart-popup {
		width: 390px;
	}
}

@media (max-width: 980px) {
	.cc-shop {
		gap: 22px;
	}

	.cc-shop .cc-shop__icon {
		width: 28px;
		height: 28px;
	}

	.cc-shop .cc-shop__cart-button {
		width: 34px;
		height: 34px;
	}

	.cc-shop .cc-shop__mexico {
		width: 44px;
		height: 34px;
	}

	.cc-shop .cc-shop__mexico-img {
		width: 38px;
		height: 28px;
		max-width: 38px;
		max-height: 28px;
	}

	.cc-shop .cc-shop__cart-badge-slot {
		top: -6px;
		right: -6px;
	}

	.cc-shop .cc-shop-cart-popup {
		width: 370px;
	}

	.cc-shop[data-mobile-cart-behavior="link"] .cc-shop-cart-popup {
		display: none;
	}

	.cc-shop[data-mobile-cart-behavior="popup"] .cc-shop-cart-popup {
		display: block;
	}
}

@media (max-width: 860px) {

	.cc-shop .cc-shop-cart-popup {
		position: fixed;
		top: var(--cc-shop-popup-top, 76px);
		right: 14px;
		left: 14px;
		width: auto;
		max-width: none;
	}

	.cc-shop .cc-shop-cart-popup__inner {
		padding: 22px;
	}
}

@media (max-width: 767px) {
	.cc-shop .cc-shop-cart-popup {
		top: var(--cc-shop-popup-top, 72px);
		right: 12px;
		left: 12px;
	}

	.cc-shop .cc-shop-cart-popup__inner,
	.cc-shop .cc-shop-cart-popup__empty {
		padding: 20px;
	}

	.cc-shop .cc-shop-cart-popup__item {
		grid-template-columns: 68px 1fr;
		gap: 16px;
		padding-bottom: 22px;
	}

	.cc-shop .cc-shop-cart-popup__thumb,
	.cc-shop .cc-shop-cart-popup__thumb img {
		width: 68px;
		height: 68px;
	}

	.cc-shop .cc-shop-cart-popup__name {
		font-size: 16px;
	}

	.cc-shop .cc-shop-cart-popup__qty {
		font-size: 14px;
	}

	.cc-shop .cc-shop-cart-popup__price {
		font-size: 15px;
	}

	.cc-shop .cc-shop-cart-popup__total-label {
		font-size: 20px;
	}

	.cc-shop .cc-shop-cart-popup__total-value {
		font-size: 22px;
	}

	.cc-shop .cc-shop-cart-popup__actions {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.cc-shop .cc-shop-cart-popup__btn {
		min-height: 48px;
		font-size: 13px;
		padding: 0 12px;
	}
}

@media (max-width: 430px) {
	.cc-shop .cc-shop-cart-popup__actions {
		grid-template-columns: 1fr;
	}

	.cc-shop .cc-shop-cart-popup__btn {
		width: 100%;
	}
}

@media (min-width: 1280px) {
	.cc-shop .cc-shop-cart-popup {
		width: 430px;
	}
}

@media (min-width: 1440px) {
	.cc-shop .cc-shop-cart-popup {
		width: 450px;
	}
}
