/* Official Empire Shop brand assets */
.brand--official {
	flex: 0 0 auto;
	line-height: 0;
}

.brand__logo {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.site-header__main > .brand--official .brand__logo--main {
	width: 190px;
	max-height: 60px;
}

.mobile-menu__head .brand__logo--main {
	width: 175px;
	max-height: 56px;
}

.brand--footer {
	width: min(240px, 100%);
}

.brand__logo--footer {
	width: 100%;
	max-height: 58px;
	object-position: left center;
}

.category-mega__links i.has-image {
	padding: 0;
	border-radius: 0;
	background: transparent;
}

.category-mega__links i.has-image img {
	display: block;
	width: 31px;
	height: 31px;
	object-fit: contain;
}

.quantity-field {
	min-width: 126px;
}

.product-buy-box .product-detail__form {
	grid-template-columns: 126px 1fr;
}

.quantity-stepper {
	height: 54px;
	display: grid;
	grid-template-columns: 38px minmax(38px, 1fr) 38px;
	align-items: stretch;
	overflow: hidden;
	border: 1px solid #d8d3c4;
	border-radius: 13px;
	background: #fff;
	transition: border-color .2s, box-shadow .2s;
}

.quantity-stepper:focus-within {
	border-color: #d9a400;
	box-shadow: 0 0 0 4px rgba(242, 183, 5, .14);
}

.quantity-stepper button {
	display: grid;
	place-items: center;
	padding: 0;
	border: 0;
	background: #f5f3ec;
	color: #27251f;
	font-size: 21px;
	font-weight: 700;
	cursor: pointer;
	transition: background .2s, color .2s;
}

.quantity-stepper button:hover {
	background: #f2b705;
	color: #17150f;
}

.quantity-stepper input,
.product-buy-box .product-detail__form .quantity-stepper input,
.cart-item__qty .quantity-stepper input {
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: #fff;
	text-align: center;
	font-size: 14px;
	font-weight: 800;
	outline: 0;
	appearance: textfield;
	-moz-appearance: textfield;
}

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

.quantity-stepper--cart {
	height: 42px;
	grid-template-columns: 32px minmax(34px, 1fr) 32px;
	border-radius: 10px;
}

.payment-grid {
	grid-template-columns: repeat(2, minmax(84px, 1fr));
}

.payment-grid .payment-card {
	min-height: 48px;
	padding: 6px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	border: 1px solid rgba(255, 255, 255, .15);
	box-shadow: inset 0 0 0 1px rgba(30, 28, 20, .04);
}

.payment-card strong {
	line-height: 1;
}

.payment-card--visa strong {
	color: #1434cb;
	font-family: Arial, sans-serif;
	font-size: 18px;
	font-style: italic;
	font-weight: 900;
	letter-spacing: -.08em;
}

.payment-card--mastercard {
	flex-direction: column;
	gap: 2px !important;
}

.payment-card--mastercard i {
	position: relative;
	width: 34px;
	height: 19px;
}

.payment-card--mastercard i b {
	position: absolute;
	top: 0;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: #eb001b;
}

.payment-card--mastercard i b:first-child {
	left: 2px;
}

.payment-card--mastercard i b:last-child {
	right: 2px;
	background: #f79e1b;
	mix-blend-mode: multiply;
}

.payment-card--mastercard strong {
	font-family: Arial, sans-serif;
	font-size: 7px;
	letter-spacing: -.03em;
}

.payment-card--pix svg,
.payment-card--cash svg {
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
}

.payment-card--pix svg {
	fill: #32bcad;
}

.payment-card--pix strong {
	color: #4d4d4d;
	font-size: 14px;
	font-weight: 500;
}

.payment-card--cash svg {
	fill: none;
	stroke: #26733a;
	stroke-width: 2;
	stroke-linecap: round;
}

.payment-card--cash strong {
	color: #26733a;
	font-size: 9px;
}

.social-links a,
.social-links > span {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border: 1px solid #5d594f;
	border-radius: 11px;
	color: #fff;
	transition: border-color .2s, color .2s, transform .2s, background .2s;
}

.social-links > span {
	color: #77736a;
	cursor: not-allowed;
}

.social-links svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.social-links a:nth-child(2) svg,
.social-links a:nth-child(3) svg,
.social-links span:nth-child(2) svg,
.social-links span:nth-child(3) svg {
	fill: currentColor;
	stroke: none;
}

.social-links a:last-child svg {
	fill: none;
}

.social-links a:hover {
	border-color: #f2b705;
	background: #f2b705;
	color: #17150f;
	transform: translateY(-2px);
}

@media (max-width: 760px) {
	.site-header__main > .brand--official .brand__logo--main {
		width: 138px;
		max-height: 44px;
	}

	.mobile-menu__head .brand__logo--main {
		width: 168px;
		max-height: 54px;
	}

	.brand--footer {
		width: 220px;
	}

	.product-buy-box .product-detail__form {
		grid-template-columns: 128px 1fr;
	}
}

@media (max-width: 390px) {
	.site-header__main > .brand--official .brand__logo--main {
		width: 124px;
	}
}
