:root {
	--sc-navy: #050919;
	--sc-navy-soft: #0d1329;
	--sc-ink: #090d1c;
	--sc-muted: #697187;
	--sc-line: #e4e8f0;
	--sc-surface: #ffffff;
	--sc-background: #f4f7fb;
	--sc-radius: 18px;
	--sc-shadow: 0 12px 30px rgba(7, 13, 31, 0.08);
	--sc-container: 1240px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--sc-ink);
	background: var(--sc-background);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.sc-menu-open {
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sc-container {
	width: min(calc(100% - 48px), var(--sc-container));
	margin-inline: auto;
}

.sc-header {
	position: relative;
	z-index: 100;
	color: #fff;
	background: var(--sc-navy);
}

.street-commerce-home .sc-header {
	position: absolute;
	inset: 0 0 auto;
	background: linear-gradient(180deg, rgba(5, 9, 25, 0.92), rgba(5, 9, 25, 0));
}

.sc-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 36px;
	min-height: 86px;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo {
	display: block;
	max-width: 240px;
	max-height: 54px;
	width: auto;
}

.sc-brand__fallback,
.sc-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.sc-brand__mark {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	color: var(--sc-navy);
	background: #fff;
	font-size: 12px;
	font-weight: 950;
}

.sc-brand__name {
	font-size: 14px;
	text-transform: uppercase;
}

.sc-nav {
	justify-self: center;
}

.sc-nav__list,
.sc-nav ul {
	display: flex;
	align-items: center;
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sc-nav a {
	position: relative;
	display: block;
	padding: 30px 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sc-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 24px;
	height: 2px;
	background: #fff;
	transition: right 180ms ease;
}

.sc-nav a:hover::after,
.sc-nav .current-menu-item > a::after {
	right: 0;
}

.sc-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.sc-icon-link {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	transition: background 180ms ease, border-color 180ms ease;
}

.sc-icon-link:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.4);
}

.sc-icon-link svg,
.sc-feature-card svg,
.sc-product-search svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sc-cart-count {
	position: absolute;
	top: -4px;
	right: -3px;
	display: grid;
	place-items: center;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 999px;
	color: var(--sc-navy);
	background: #fff;
	font-size: 9px;
	font-weight: 900;
}

.sc-menu-toggle {
	display: none;
	padding: 8px;
	color: #fff;
	background: transparent;
	border: 0;
}

.sc-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px 0;
	background: currentColor;
}

.sc-content {
	min-height: 50vh;
}

.sc-hero {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	min-height: 650px;
	color: #fff;
	background: var(--sc-navy) url("../images/hero.svg") center / cover no-repeat;
	overflow: hidden;
}

.sc-hero::before {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(90deg, rgba(4, 8, 22, 0.9) 0%, rgba(4, 8, 22, 0.62) 44%, rgba(4, 8, 22, 0.12) 76%, rgba(4, 8, 22, 0.12) 100%);
}

.sc-hero__content {
	padding-top: 86px;
	max-width: 650px;
}

.sc-eyebrow,
.sc-section-heading .sc-eyebrow,
.sc-eyebrow .elementor-heading-title {
	display: block;
	color: #8290ad;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.sc-hero .sc-eyebrow,
.sc-eyebrow--hero .elementor-heading-title {
	display: inline-flex;
	width: fit-content;
	padding: 7px 12px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.76);
	background: rgba(255, 255, 255, 0.06);
}

.sc-hero h1,
.sc-elementor-hero__title .elementor-heading-title {
	margin: 24px 0 18px;
	color: #fff;
	font-size: clamp(54px, 8vw, 104px);
	font-weight: 950;
	letter-spacing: -0.06em;
	line-height: 0.92;
	text-transform: uppercase;
}

.sc-hero p,
.sc-elementor-hero__text {
	max-width: 520px;
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 16px;
	font-weight: 550;
	line-height: 1.75;
}

.sc-hero__buttons,
.sc-elementor-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.sc-button,
.sc-elementor-button .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: transform 180ms ease, background 180ms ease;
}

.sc-button:hover,
.sc-elementor-button .elementor-button:hover {
	transform: translateY(-2px);
}

.sc-button--light,
.sc-elementor-button--light .elementor-button {
	color: var(--sc-navy);
	background: #fff;
}

.sc-button--ghost,
.sc-elementor-button--ghost .elementor-button {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.22);
}

.sc-elementor-hero {
	padding-inline: max(24px, calc((100vw - var(--sc-container)) / 2));
}

.sc-elementor-hero > .e-con-inner {
	width: 100%;
}

.sc-main-shell,
.sc-main-shell-start {
	position: relative;
	z-index: 5;
	margin-top: -34px;
	border-radius: 28px 28px 0 0;
	background: var(--sc-background);
}

.sc-main-shell-start {
	padding-top: 1px;
}

.sc-elementor-shortcode-section {
	padding: 0 !important;
	margin: 0 !important;
	background: transparent;
}

.sc-elementor-shortcode-section > .e-con-inner,
.sc-elementor-shortcode-section .elementor-widget-shortcode,
.sc-elementor-shortcode-section .elementor-widget-container {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.sc-search-section {
	padding: 64px 0 22px;
}

.sc-product-search {
	position: relative;
	width: min(720px, 100%);
	margin-inline: auto;
}

.sc-product-search svg {
	position: absolute;
	left: 20px;
	top: 50%;
	width: 18px;
	color: #9aa4ba;
	transform: translateY(-50%);
}

.sc-product-search input {
	width: 100%;
	height: 58px;
	padding: 0 24px 0 52px;
	color: var(--sc-ink);
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 14px;
	box-shadow: 0 8px 20px rgba(10, 16, 35, 0.05);
	outline: none;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.sc-product-search input:focus {
	border-color: #8792aa;
	box-shadow: 0 0 0 4px rgba(13, 19, 41, 0.07);
}

.sc-product-search input::placeholder {
	color: #a0a9bb;
}

.sc-section {
	padding: 46px 0;
}

.sc-section-heading {
	margin-bottom: 28px;
}

.sc-section-heading--center {
	text-align: center;
}

.sc-section-heading h2 {
	margin: 4px 0 0;
	color: var(--sc-ink);
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 950;
	letter-spacing: -0.035em;
	line-height: 1.1;
}

.sc-section-heading--line {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	padding-left: 16px;
	border-left: 3px solid #aab4c8;
}

.sc-section-heading--line h2 {
	font-size: clamp(26px, 2.8vw, 36px);
	text-transform: uppercase;
}

.sc-section-heading--line > a {
	flex: none;
	padding-bottom: 6px;
	color: var(--sc-ink);
	font-size: 12px;
	font-weight: 850;
}

.sc-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.sc-category-card {
	position: relative;
	isolation: isolate;
	min-height: 365px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--sc-shadow);
}

.sc-category-card img {
	position: absolute;
	z-index: -2;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.sc-category-card:hover img {
	transform: scale(1.045);
}

.sc-category-card__overlay {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(180deg, rgba(5, 9, 25, 0.02) 35%, rgba(5, 9, 25, 0.92) 100%);
}

.sc-category-card__content {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	color: #fff;
}

.sc-category-card__content strong {
	display: block;
	font-size: 17px;
	font-weight: 950;
	line-height: 1.2;
	text-transform: uppercase;
}

.sc-category-card__content small {
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.05em;
}

.sc-promo-section {
	padding-top: 28px;
}

.sc-promo-banner {
	display: block;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: var(--sc-shadow);
}

.sc-promo-banner img {
	display: block;
	width: 100%;
	aspect-ratio: 1240 / 500;
	object-fit: cover;
}

.sc-woocommerce-products .woocommerce {
	width: 100%;
}

.woocommerce ul.products,
.sc-demo-products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin: 0 !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none !important;
}

.woocommerce ul.products li.product,
.sc-demo-product {
	position: relative;
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 13px 13px 16px !important;
	background: #fff;
	border: 1px solid #edf0f5;
	border-radius: 18px;
	box-shadow: 0 8px 22px rgba(9, 14, 31, 0.04);
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.woocommerce ul.products li.product:hover,
.sc-demo-product:hover {
	transform: translateY(-4px);
	box-shadow: var(--sc-shadow);
}

.woocommerce ul.products li.product a img,
.sc-demo-product > img {
	width: 100%;
	aspect-ratio: 1 / 1.08;
	margin: 0 0 13px !important;
	border-radius: 13px;
	background: #f7f7f8;
	object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.sc-demo-product h3 {
	min-height: 44px;
	margin: 4px 0 8px !important;
	padding: 0 !important;
	color: var(--sc-ink);
	font-size: 14px !important;
	font-weight: 850;
	line-height: 1.4;
}

.woocommerce ul.products li.product .price {
	margin: 0;
	color: var(--sc-ink) !important;
	font-size: 16px !important;
	font-weight: 900 !important;
}

.woocommerce ul.products li.product .price del {
	display: block;
	color: #9aa3b4;
	font-size: 11px;
	font-weight: 500;
	opacity: 1;
}

.woocommerce ul.products li.product .button {
	position: absolute;
	right: 13px;
	bottom: 14px;
	margin: 0 !important;
	padding: 10px 13px !important;
	color: #fff !important;
	background: var(--sc-navy) !important;
	border-radius: 10px !important;
	font-size: 10px !important;
	font-weight: 850 !important;
	line-height: 1 !important;
}

.woocommerce span.onsale,
.sc-product-badge {
	position: absolute !important;
	z-index: 3;
	top: 12px !important;
	left: 12px !important;
	right: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 6px 9px !important;
	color: #fff !important;
	background: var(--sc-navy) !important;
	border-radius: 999px !important;
	font-size: 9px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	text-transform: uppercase;
}

.sc-demo-product small {
	color: #8d96aa;
	font-size: 10px;
	font-weight: 750;
	letter-spacing: 0.08em;
}

.sc-demo-product__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.sc-demo-product__bottom strong {
	font-size: 15px;
}

.sc-demo-product__bottom a {
	padding: 10px 12px;
	color: #fff;
	background: var(--sc-navy);
	border-radius: 10px;
	font-size: 10px;
	font-weight: 850;
}

.sc-features-section {
	padding-top: 70px;
}

.sc-features-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.sc-feature-card {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 104px;
	padding: 20px;
	background: #fff;
	border: 1px solid #edf0f5;
	border-radius: 16px;
}

.sc-feature-card__icon {
	flex: none;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	color: #667088;
	background: #f2f5f9;
	border-radius: 12px;
}

.sc-feature-card strong {
	display: block;
	font-size: 13px;
	font-weight: 900;
}

.sc-feature-card p {
	margin: 4px 0 0;
	color: var(--sc-muted);
	font-size: 11px;
	line-height: 1.45;
}

.sc-newsletter-section {
	padding: 100px 0 110px;
	text-align: center;
}

.sc-newsletter {
	max-width: 760px;
}

.sc-newsletter h2 {
	margin: 6px 0 8px;
	font-size: clamp(28px, 3.4vw, 42px);
	font-weight: 950;
	letter-spacing: -0.04em;
}

.sc-newsletter > p {
	max-width: 600px;
	margin: 0 auto 28px;
	color: var(--sc-muted);
}

.sc-newsletter__form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
}

.sc-newsletter__form input {
	min-width: 0;
	height: 58px;
	padding: 0 20px;
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 14px;
	outline: none;
}

.sc-newsletter__form button {
	height: 58px;
	padding: 0 28px;
	color: #fff;
	background: var(--sc-navy);
	border: 0;
	border-radius: 14px;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.04em;
	cursor: pointer;
}

.sc-notice {
	margin: 0 0 16px;
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 13px;
}

.sc-notice--success {
	color: #166534;
	background: #dcfce7;
}

.sc-notice--error {
	color: #991b1b;
	background: #fee2e2;
}

.sc-footer {
	color: rgba(255, 255, 255, 0.74);
	background: var(--sc-navy);
}

.sc-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 60px;
	padding-top: 64px;
	padding-bottom: 48px;
}

.sc-footer h2 {
	margin: 0 0 16px;
	color: #fff;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.sc-footer p {
	max-width: 440px;
	margin: 14px 0 0;
	font-size: 13px;
}

.sc-footer__menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sc-footer__menu li + li {
	margin-top: 8px;
}

.sc-footer__menu a {
	font-size: 13px;
}

.sc-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 22px;
	padding-bottom: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 11px;
}

.sc-standard-page {
	padding-top: 150px;
	padding-bottom: 90px;
}

body:not(.street-commerce-home) .sc-standard-page {
	padding-top: 80px;
}

.sc-page-header h1,
.woocommerce-products-header__title {
	margin: 0 0 36px;
	font-size: clamp(38px, 5vw, 68px);
	font-weight: 950;
	letter-spacing: -0.05em;
}

.sc-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.sc-post-card {
	background: #fff;
	border-radius: var(--sc-radius);
	overflow: hidden;
	box-shadow: var(--sc-shadow);
}

.sc-post-card__image img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.sc-post-card__body {
	padding: 24px;
}

.sc-post-card__meta {
	color: var(--sc-muted);
	font-size: 12px;
}

.sc-post-card h2 {
	margin: 8px 0;
	font-size: 22px;
	line-height: 1.25;
}

/* WooCommerce internal pages */
.woocommerce .woocommerce-breadcrumb {
	margin-bottom: 28px;
	color: var(--sc-muted);
	font-size: 12px;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
	gap: 54px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	float: none;
	width: auto;
	margin: 0;
}

.woocommerce div.product .product_title {
	font-size: clamp(34px, 4vw, 56px);
	font-weight: 950;
	letter-spacing: -0.045em;
	line-height: 1.05;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--sc-navy);
	font-size: 28px;
	font-weight: 900;
}

.woocommerce .quantity .qty {
	min-height: 48px;
	border: 1px solid var(--sc-line);
	border-radius: 10px;
}

.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt {
	min-height: 48px;
	padding: 0 24px;
	background: var(--sc-navy);
	border-radius: 10px;
}

.woocommerce table.shop_table {
	background: #fff;
	border-color: var(--sc-line);
	border-radius: 14px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.select2-container--default .select2-selection--single {
	min-height: 48px;
	padding: 10px 14px;
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 10px;
}

@media (max-width: 1100px) {
	.sc-header__inner {
		gap: 20px;
	}

	.sc-nav__list,
	.sc-nav ul {
		gap: 18px;
	}

	.sc-category-card {
		min-height: 300px;
	}

	.woocommerce ul.products,
	.sc-demo-products,
	.sc-features-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 960px) {
	.sc-container {
		width: min(calc(100% - 32px), var(--sc-container));
	}

	.sc-header__inner {
		grid-template-columns: 1fr auto auto;
		min-height: 74px;
	}

	.sc-menu-toggle {
		display: block;
		grid-column: 2;
	}

	.sc-header__actions {
		grid-column: 3;
	}

	.sc-nav {
		position: fixed;
		inset: 74px 0 0;
		display: none;
		justify-self: stretch;
		padding: 26px 24px;
		background: rgba(5, 9, 25, 0.98);
		backdrop-filter: blur(16px);
	}

	.sc-nav.is-open {
		display: block;
	}

	.sc-nav__list,
	.sc-nav ul {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.sc-nav a {
		padding: 17px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		font-size: 14px;
	}

	.sc-nav a::after {
		display: none;
	}

	.sc-hero,
	.sc-elementor-hero {
		min-height: 600px;
		background-position: 62% center !important;
	}

	.sc-hero::before {
		background: linear-gradient(90deg, rgba(4, 8, 22, 0.96), rgba(4, 8, 22, 0.6) 70%, rgba(4, 8, 22, 0.3));
	}

	.sc-elementor-hero .sc-hero__content,
	.sc-elementor-hero__title,
	.sc-elementor-hero__text {
		width: 100% !important;
		max-width: 620px;
	}

	.sc-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sc-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.sc-footer__grid > :first-child {
		grid-column: 1 / -1;
	}

	.woocommerce div.product {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.sc-container {
		width: min(calc(100% - 24px), var(--sc-container));
	}

	.sc-brand__name {
		display: none;
	}

	.sc-header__actions .sc-icon-link:first-child {
		display: none;
	}

	.sc-hero,
	.sc-elementor-hero {
		min-height: 610px;
		padding-inline: 12px;
		background-position: 68% center !important;
	}

	.sc-hero::before {
		background: linear-gradient(90deg, rgba(4, 8, 22, 0.98), rgba(4, 8, 22, 0.75));
	}

	.sc-hero h1,
	.sc-elementor-hero__title .elementor-heading-title {
		font-size: clamp(50px, 18vw, 74px);
	}

	.sc-hero p,
	.sc-elementor-hero__text {
		font-size: 14px;
	}

	.sc-main-shell,
	.sc-main-shell-start {
		margin-top: -24px;
		border-radius: 20px 20px 0 0;
	}

	.sc-search-section {
		padding-top: 42px;
	}

	.sc-product-search input {
		height: 54px;
		font-size: 13px;
	}

	.sc-section {
		padding: 34px 0;
	}

	.sc-category-grid,
	.woocommerce ul.products,
	.sc-demo-products,
	.sc-features-grid,
	.sc-post-grid {
		grid-template-columns: 1fr;
	}

	.sc-category-card {
		min-height: 350px;
	}

	.sc-section-heading--line {
		align-items: flex-start;
	}

	.sc-section-heading--line > a {
		display: none;
	}

	.woocommerce ul.products li.product .woocommerce-loop-product__title,
	.sc-demo-product h3 {
		min-height: 0;
	}

	.sc-newsletter-section {
		padding: 70px 0 80px;
	}

	.sc-newsletter__form {
		grid-template-columns: 1fr;
	}

	.sc-footer__grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.sc-footer__grid > :first-child {
		grid-column: auto;
	}

	.sc-footer__bottom {
		flex-direction: column;
	}
}

/* ==========================================================
   Street Commerce 1.1 — produto, carrinho e checkout
   ========================================================== */
.sc-page-cart .sc-standard-page,
.sc-page-checkout .sc-standard-page,
.sc-page-product .sc-standard-page,
.sc-elementor-commerce-page {
	padding-top: 58px;
	padding-bottom: 96px;
}

.sc-page-cart .sc-page-header,
.sc-page-checkout .sc-page-header {
	margin-bottom: 26px;
}

.sc-page-cart .sc-page-header h1,
.sc-page-checkout .sc-page-header h1 {
	margin-bottom: 0;
	font-size: clamp(36px, 5vw, 62px);
}

.sc-commerce-intro {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
	align-items: end;
	gap: 36px;
	margin: 0 0 28px;
	padding: 28px 30px;
	color: #fff;
	background:
		radial-gradient(circle at 88% -30%, rgba(255, 255, 255, 0.12), transparent 42%),
		linear-gradient(135deg, var(--sc-navy), #111b3b);
	border-radius: 20px;
	box-shadow: 0 18px 46px rgba(5, 9, 25, 0.16);
}

.sc-commerce-eyebrow {
	display: block;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.16em;
}

.sc-commerce-intro h2 {
	margin: 0;
	font-size: clamp(27px, 3vw, 38px);
	font-weight: 950;
	letter-spacing: -0.04em;
	line-height: 1.05;
}

.sc-commerce-intro p {
	max-width: 520px;
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 13px;
}

.sc-checkout-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.sc-checkout-step {
	position: relative;
	display: grid;
	grid-template-columns: 30px 1fr;
	align-items: center;
	gap: 9px;
	min-width: 0;
	color: rgba(255, 255, 255, 0.38);
}

.sc-checkout-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 15px;
	left: calc(30px + 12px);
	right: -4px;
	height: 1px;
	background: rgba(255, 255, 255, 0.14);
}

.sc-checkout-step span {
	position: relative;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: #151d37;
	font-size: 11px;
	font-weight: 900;
}

.sc-checkout-step strong {
	position: relative;
	z-index: 2;
	overflow: hidden;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.05em;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.sc-checkout-step.is-active {
	color: #fff;
}

.sc-checkout-step.is-active span {
	color: var(--sc-navy);
	background: #fff;
	border-color: #fff;
}

/* Notices */
.woocommerce-notices-wrapper:empty {
	display: none;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	margin: 0 0 22px !important;
	padding: 18px 20px 18px 54px !important;
	background: #fff;
	border: 1px solid var(--sc-line);
	border-top: 0 !important;
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(7, 13, 31, 0.05);
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
	top: 17px;
	left: 20px;
	color: var(--sc-navy);
}

/* Quantity */
.woocommerce .quantity {
	display: inline-grid;
	grid-template-columns: 38px minmax(50px, 64px) 38px;
	align-items: stretch;
	height: 50px;
	margin-right: 10px !important;
	border: 1px solid var(--sc-line);
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}

.woocommerce .quantity .qty {
	width: 100%;
	min-height: 48px;
	padding: 0 4px;
	border: 0;
	border-radius: 0;
	background: #fff;
	font-weight: 850;
	-moz-appearance: textfield;
}

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

.sc-qty-button {
	padding: 0;
	color: var(--sc-ink);
	background: #f7f8fb;
	border: 0;
	cursor: pointer;
	font-size: 18px;
	font-weight: 700;
	transition: background 160ms ease;
}

.sc-qty-button:hover {
	background: #eceff5;
}

/* Single product */
.single-product .sc-woocommerce-page > .sc-container {
	padding-top: 56px;
}

.single-product .woocommerce .woocommerce-breadcrumb {
	margin-bottom: 30px;
	padding: 13px 16px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid var(--sc-line);
	border-radius: 12px;
}

.single-product .woocommerce div.product {
	align-items: start;
	gap: clamp(34px, 5vw, 70px);
}

.single-product .woocommerce div.product div.images {
	position: sticky;
	top: 24px;
	padding: 16px;
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 22px;
	box-shadow: var(--sc-shadow);
}

.single-product .woocommerce div.product div.images img {
	border-radius: 15px;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin-top: 12px;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs li {
	width: auto;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs img {
	border: 1px solid transparent;
	border-radius: 10px;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs img.flex-active {
	border-color: var(--sc-navy);
}

.single-product .woocommerce div.product div.summary {
	padding: 8px 0 0;
}

.single-product .woocommerce div.product .product_title {
	margin: 0 0 14px;
}

.single-product .woocommerce .woocommerce-product-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
}

.single-product .woocommerce .star-rating {
	color: #f3aa18;
}

.single-product .woocommerce div.product p.price,
.single-product .woocommerce div.product span.price {
	margin: 0 0 18px;
	font-size: clamp(26px, 3vw, 34px);
}

.single-product .woocommerce div.product .woocommerce-product-details__short-description {
	margin: 0 0 24px;
	color: var(--sc-muted);
	font-size: 15px;
}

.single-product .woocommerce div.product form.cart {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 26px 0 0;
	padding: 22px;
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(7, 13, 31, 0.06);
}

.single-product .woocommerce div.product form.cart .variations {
	width: 100%;
	margin-bottom: 10px;
}

.single-product .woocommerce div.product form.cart .variations th,
.single-product .woocommerce div.product form.cart .variations td {
	padding: 7px 0;
	text-align: left;
}

.single-product .woocommerce div.product form.cart .variations label {
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.single-product .woocommerce div.product form.cart .variations select {
	min-width: 210px;
	min-height: 48px;
	padding: 0 14px;
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 10px;
}

.single-product .woocommerce div.product form.cart .button {
	flex: 1 1 220px;
	min-height: 50px;
	padding: 0 24px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.single-product .woocommerce div.product .product_meta {
	display: grid;
	gap: 5px;
	margin-top: 22px;
	padding-top: 18px;
	color: var(--sc-muted);
	border-top: 1px solid var(--sc-line);
	font-size: 12px;
}

.single-product .woocommerce div.product .product_meta a {
	color: var(--sc-ink);
	font-weight: 750;
}

.sc-product-benefits {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.sc-product-benefits > div {
	display: grid;
	grid-template-columns: 34px 1fr;
	align-items: center;
	gap: 11px;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid var(--sc-line);
	border-radius: 12px;
}

.sc-product-benefits > div > span {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	color: #fff;
	background: var(--sc-navy);
	border-radius: 10px;
	font-size: 13px;
	font-weight: 900;
}

.sc-product-benefits p,
.sc-product-benefits strong,
.sc-product-benefits small {
	display: block;
	margin: 0;
}

.sc-product-benefits strong {
	font-size: 12px;
}

.sc-product-benefits small {
	color: var(--sc-muted);
	font-size: 10px;
}

.single-product .woocommerce div.product .woocommerce-tabs,
.single-product .woocommerce .related.products,
.single-product .woocommerce .upsells.products {
	grid-column: 1 / -1;
	margin-top: 46px;
}

.single-product .woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 8px;
	padding: 0;
	margin: 0 0 16px;
}

.single-product .woocommerce div.product .woocommerce-tabs ul.tabs::before {
	display: none;
}

.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li a {
	padding: 12px 18px;
	background: #e9edf4;
	border-radius: 10px;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: #fff;
	background: var(--sc-navy);
}

.single-product .woocommerce div.product .woocommerce-tabs .panel {
	padding: clamp(24px, 4vw, 42px);
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 18px;
	box-shadow: var(--sc-shadow);
}

.single-product .related.products > h2,
.single-product .upsells.products > h2 {
	margin-bottom: 22px;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 950;
	letter-spacing: -0.04em;
}

/* Cart */
.woocommerce-cart .woocommerce {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
	align-items: start;
	gap: 26px;
}

.woocommerce-cart .woocommerce > .sc-commerce-intro,
.woocommerce-cart .woocommerce > .woocommerce-notices-wrapper,
.woocommerce-cart .woocommerce > .woocommerce-message,
.woocommerce-cart .woocommerce > .woocommerce-info,
.woocommerce-cart .woocommerce > .woocommerce-error,
.woocommerce-cart .woocommerce > .sc-commerce-trust-grid,
.woocommerce-cart .woocommerce > .return-to-shop,
.woocommerce-cart .woocommerce > .cart-empty {
	grid-column: 1 / -1;
}

.woocommerce-cart .woocommerce-cart-form {
	padding: 8px 22px 20px;
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 18px;
	box-shadow: var(--sc-shadow);
}

.woocommerce-cart table.shop_table {
	margin: 0;
	border: 0;
	border-collapse: collapse;
	box-shadow: none;
}

.woocommerce-cart table.shop_table th {
	padding: 18px 12px;
	color: var(--sc-muted);
	border-bottom: 1px solid var(--sc-line);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.woocommerce-cart table.shop_table td {
	padding: 20px 12px;
	border-color: var(--sc-line);
}

.woocommerce-cart table.shop_table .product-thumbnail {
	width: 100px;
}

.woocommerce-cart table.shop_table .product-thumbnail img {
	width: 78px;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 12px;
}

.woocommerce-cart table.shop_table .product-name a {
	font-size: 14px;
	font-weight: 850;
}

.woocommerce-cart table.shop_table .product-price,
.woocommerce-cart table.shop_table .product-subtotal {
	font-size: 13px;
	font-weight: 850;
}

.woocommerce-cart a.remove {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	color: #7d8598 !important;
	background: #f1f3f7;
	border-radius: 999px;
	font-size: 18px;
}

.woocommerce-cart a.remove:hover {
	color: #fff !important;
	background: #b42318;
}

.woocommerce-cart .actions {
	padding-top: 20px !important;
}

.woocommerce-cart .coupon {
	display: flex;
	gap: 8px;
}

.woocommerce-cart .coupon .input-text {
	min-width: 180px;
	min-height: 48px;
	padding: 0 13px !important;
	border: 1px solid var(--sc-line) !important;
	border-radius: 10px;
}

.woocommerce-cart .button,
.woocommerce-checkout .button {
	min-height: 48px;
	padding: 0 20px !important;
	border-radius: 10px !important;
	font-size: 11px !important;
	font-weight: 900 !important;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.woocommerce-cart .cart-collaterals {
	position: sticky;
	top: 24px;
	width: auto;
}

.woocommerce-cart .cart-collaterals .cart_totals {
	float: none;
	width: auto;
	padding: 25px;
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 18px;
	box-shadow: var(--sc-shadow);
}

.woocommerce-cart .cart-collaterals .cart_totals h2 {
	margin: 0 0 18px;
	font-size: 24px;
	font-weight: 950;
	letter-spacing: -0.03em;
}

.woocommerce-cart .cart-collaterals table {
	margin: 0 0 18px;
}

.woocommerce-cart .cart-collaterals table th,
.woocommerce-cart .cart-collaterals table td {
	padding: 14px 0;
	border-color: var(--sc-line);
	font-size: 12px;
}

.woocommerce-cart .cart-collaterals table td {
	text-align: right;
}

.woocommerce-cart .wc-proceed-to-checkout {
	padding: 0;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	display: grid;
	place-items: center;
	width: 100%;
	min-height: 54px;
	margin: 0;
	background: var(--sc-navy);
	border-radius: 12px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.sc-commerce-trust-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 4px;
}

.sc-commerce-trust-card {
	display: grid;
	grid-template-columns: 40px 1fr;
	align-items: center;
	gap: 12px;
	padding: 17px;
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 14px;
}

.sc-commerce-trust-card > span {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	color: #fff;
	background: var(--sc-navy);
	border-radius: 11px;
	font-weight: 900;
}

.sc-commerce-trust-card strong,
.sc-commerce-trust-card small {
	display: block;
}

.sc-commerce-trust-card strong {
	font-size: 12px;
}

.sc-commerce-trust-card small {
	color: var(--sc-muted);
	font-size: 10px;
	line-height: 1.35;
}

/* Checkout */
.woocommerce-checkout .woocommerce-form-login,
.woocommerce-checkout .checkout_coupon {
	margin: 0 0 22px !important;
	padding: 22px !important;
	background: #fff;
	border: 1px solid var(--sc-line) !important;
	border-radius: 16px;
	box-shadow: var(--sc-shadow);
}

.woocommerce-checkout form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
	align-items: start;
	gap: 28px;
}

.woocommerce-checkout form.checkout #customer_details {
	padding: clamp(24px, 4vw, 34px);
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 18px;
	box-shadow: var(--sc-shadow);
}

.woocommerce-checkout form.checkout #customer_details .col-1,
.woocommerce-checkout form.checkout #customer_details .col-2 {
	float: none;
	width: 100%;
}

.woocommerce-checkout form.checkout #customer_details .col-2 {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--sc-line);
}

.woocommerce-checkout form.checkout h3 {
	margin: 0 0 20px;
	font-size: 23px;
	font-weight: 950;
	letter-spacing: -0.03em;
}

.woocommerce-checkout form.checkout #order_review_heading {
	display: none;
}

.woocommerce-checkout form.checkout #order_review {
	position: sticky;
	top: 24px;
	padding: 26px;
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 18px;
	box-shadow: var(--sc-shadow);
}

.woocommerce-checkout form.checkout #order_review::before {
	content: "Resumo do pedido";
	display: block;
	margin-bottom: 18px;
	font-size: 23px;
	font-weight: 950;
	letter-spacing: -0.03em;
}

.woocommerce-checkout form.checkout .form-row {
	margin: 0 0 15px;
}

.woocommerce-checkout form.checkout .form-row label {
	margin-bottom: 5px;
	font-size: 11px;
	font-weight: 850;
}

.woocommerce-checkout form.checkout .form-row .required {
	color: #b42318;
}

.woocommerce-checkout form.checkout input.input-text,
.woocommerce-checkout form.checkout textarea,
.woocommerce-checkout form.checkout select,
.woocommerce-checkout .select2-container .select2-selection--single {
	min-height: 50px;
	background: #f9fafc;
	border-color: #dfe4ec;
	border-radius: 10px;
}

.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
	padding: 9px 13px;
}

.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
	height: 48px;
}

.woocommerce-checkout #order_review table.shop_table {
	margin: 0 0 22px;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td {
	padding: 13px 0;
	border-color: var(--sc-line);
	font-size: 12px;
}

.woocommerce-checkout #order_review table.shop_table td:last-child,
.woocommerce-checkout #order_review table.shop_table th:last-child {
	text-align: right;
}

.woocommerce-checkout #payment {
	background: #f5f7fb;
	border-radius: 14px;
}

.woocommerce-checkout #payment ul.payment_methods {
	padding: 18px;
	border-color: var(--sc-line);
}

.woocommerce-checkout #payment div.payment_box {
	color: var(--sc-muted);
	background: #fff;
	border-radius: 10px;
	font-size: 12px;
}

.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: #fff;
}

.woocommerce-checkout #payment .place-order {
	padding: 18px;
}

.sc-checkout-security {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	padding: 10px 12px;
	color: #3d465d;
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 9px;
	font-size: 10px;
	font-weight: 700;
}

.woocommerce-checkout #payment #place_order {
	float: none;
	width: 100%;
	min-height: 54px;
	background: var(--sc-navy);
	border-radius: 12px !important;
}

.woocommerce-checkout .woocommerce-privacy-policy-text {
	color: var(--sc-muted);
	font-size: 10px;
}

/* WooCommerce Blocks compatibility */
.wc-block-cart,
.wc-block-checkout {
	font-family: inherit;
}

.wc-block-cart__main,
.wc-block-cart__sidebar,
.wc-block-checkout__main,
.wc-block-checkout__sidebar {
	padding: 24px !important;
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 18px;
	box-shadow: var(--sc-shadow);
}

.wc-block-components-button:not(.is-link) {
	min-height: 52px;
	color: #fff;
	background: var(--sc-navy);
	border-radius: 11px;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
	border-color: var(--sc-line) !important;
	border-radius: 10px !important;
}

/* Empty cart and order confirmation */
.woocommerce-cart .cart-empty,
.woocommerce-order-received .woocommerce-order {
	padding: 44px;
	text-align: center;
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 18px;
	box-shadow: var(--sc-shadow);
}

.woocommerce-order-received .woocommerce-order ul.order_details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 12px;
	margin: 22px 0;
	padding: 0;
}

.woocommerce-order-received .woocommerce-order ul.order_details li {
	float: none;
	margin: 0;
	padding: 14px;
	background: #f6f8fb;
	border: 0;
	border-radius: 10px;
}

@media (max-width: 980px) {
	.sc-commerce-intro,
	.woocommerce-cart .woocommerce,
	.woocommerce-checkout form.checkout {
		grid-template-columns: 1fr;
	}

	.woocommerce-cart .cart-collaterals,
	.woocommerce-checkout form.checkout #order_review,
	.single-product .woocommerce div.product div.images {
		position: static;
	}

	.sc-commerce-trust-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.sc-page-cart .sc-standard-page,
	.sc-page-checkout .sc-standard-page,
	.sc-page-product .sc-standard-page,
	.sc-elementor-commerce-page {
		padding-top: 34px;
		padding-bottom: 68px;
	}

	.sc-commerce-intro {
		padding: 22px 18px;
		border-radius: 16px;
	}

	.sc-checkout-steps {
		gap: 4px;
	}

	.sc-checkout-step {
		grid-template-columns: 26px 1fr;
		gap: 5px;
	}

	.sc-checkout-step span {
		width: 26px;
		height: 26px;
	}

	.sc-checkout-step strong {
		font-size: 8px;
	}

	.sc-checkout-step:not(:last-child)::after {
		top: 13px;
		left: 32px;
	}

	.single-product .woocommerce div.product form.cart {
		padding: 16px;
	}

	.single-product .woocommerce div.product form.cart .quantity,
	.single-product .woocommerce div.product form.cart .button {
		width: 100%;
		margin-right: 0 !important;
	}

	.single-product .woocommerce div.product .woocommerce-tabs ul.tabs {
		overflow-x: auto;
		padding-bottom: 4px;
	}

	.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li a {
		white-space: nowrap;
	}

	.woocommerce-cart .woocommerce-cart-form {
		padding: 8px 14px 16px;
	}

	.woocommerce-cart table.shop_table_responsive tr {
		padding: 16px 0;
		border-bottom: 1px solid var(--sc-line);
	}

	.woocommerce-cart table.shop_table_responsive tr td {
		padding: 8px 0;
		border: 0;
	}

	.woocommerce-cart table.shop_table_responsive tr td.product-thumbnail {
		display: block;
		text-align: left !important;
	}

	.woocommerce-cart .actions .coupon {
		float: none;
		width: 100%;
		margin-bottom: 10px;
	}

	.woocommerce-cart .coupon .input-text {
		flex: 1;
		min-width: 0;
		width: auto !important;
	}

	.woocommerce-cart .actions > .button {
		width: 100% !important;
	}

	.woocommerce-checkout form.checkout #customer_details,
	.woocommerce-checkout form.checkout #order_review {
		padding: 20px 16px;
	}
}

/* ==========================================================
   Street Commerce 1.2 — fidelidade visual ao demo React
   ========================================================== */
:root {
	--sc-navy: #050817;
	--sc-navy-soft: #10172c;
	--sc-ink: #080c1a;
	--sc-muted: #727b91;
	--sc-line: #e5e9f1;
	--sc-background: #f5f7fb;
	--sc-container: 1240px;
	--sc-card-radius: 17px;
}

body {
	background: var(--sc-background);
	font-size: 15px;
}

body.sc-drawer-open,
body.sc-menu-open {
	overflow: hidden;
}

.sc-header {
	position: relative;
	z-index: 120;
	background: var(--sc-navy);
}

.street-commerce-home .sc-header {
	position: absolute;
	inset: 0 0 auto;
	background: linear-gradient(180deg, rgba(3, 6, 16, 0.88), rgba(3, 6, 16, 0));
}

.sc-header__inner {
	grid-template-columns: minmax(190px, auto) 1fr auto auto;
	gap: 28px;
	min-height: 78px;
}

.sc-brand__fallback {
	gap: 10px;
}

.sc-brand__mark {
	width: 31px;
	height: 31px;
	font-size: 10px;
	letter-spacing: -0.02em;
}

.sc-brand__name {
	font-size: 13px;
	font-weight: 950;
	letter-spacing: 0.1em;
}

.sc-nav {
	grid-column: 2;
	justify-self: center;
}

.sc-nav__list,
.sc-nav ul {
	gap: 31px;
}

.sc-nav a {
	padding: 28px 0;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.11em;
}

.sc-nav a::after {
	bottom: 21px;
	height: 1px;
}

.sc-header__actions {
	grid-column: 3;
	gap: 7px;
}

.sc-icon-link {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	padding: 0;
	color: #fff;
	background: transparent;
	border: 0;
	border-radius: 0;
	cursor: pointer;
}

.sc-icon-link:hover {
	background: transparent;
	border-color: transparent;
	opacity: 0.72;
}

.sc-icon-link svg {
	width: 18px;
	height: 18px;
	stroke-width: 1.55;
}

.sc-cart-count,
.sc-wishlist-count {
	position: absolute;
	top: 1px;
	right: -1px;
	display: grid;
	place-items: center;
	min-width: 14px;
	height: 14px;
	padding: 0 3px;
	color: #fff;
	background: #d9273e;
	border: 2px solid var(--sc-navy);
	border-radius: 999px;
	font-size: 7px;
	font-weight: 950;
	line-height: 1;
}

.sc-menu-toggle {
	grid-column: 4;
}

.sc-hero,
.sc-elementor-hero {
	min-height: 650px;
	background-color: #030612 !important;
	background-position: center center !important;
	background-size: cover !important;
}

.sc-hero--fallback {
	background-image: var(--sc-hero-image, url("../images/hero-demo.jpg")) !important;
}

.sc-hero::before {
	background:
		linear-gradient(90deg, rgba(2, 5, 15, 0.9) 0%, rgba(2, 5, 15, 0.7) 37%, rgba(2, 5, 15, 0.22) 67%, rgba(2, 5, 15, 0.08) 100%),
		linear-gradient(180deg, rgba(2, 5, 15, 0.08), rgba(2, 5, 15, 0.38));
}

.sc-hero__content {
	max-width: 610px;
	padding-top: 78px;
}

.sc-hero .sc-eyebrow,
.sc-eyebrow--hero .elementor-heading-title {
	padding: 6px 11px;
	border-color: rgba(255, 255, 255, 0.13);
	color: rgba(255, 255, 255, 0.76);
	background: rgba(255, 255, 255, 0.05);
	font-size: 9px;
	letter-spacing: 0.13em;
}

.sc-hero h1,
.sc-elementor-hero__title .elementor-heading-title {
	margin: 24px 0 17px;
	font-size: clamp(62px, 7.2vw, 108px);
	letter-spacing: -0.055em;
	line-height: 0.88;
}

.sc-hero p,
.sc-elementor-hero__text {
	max-width: 445px;
	font-size: 14px;
	font-weight: 550;
	line-height: 1.75;
}

.sc-hero__buttons,
.sc-elementor-hero__buttons {
	gap: 12px;
	margin-top: 28px;
}

.sc-button,
.sc-elementor-button .elementor-button {
	min-height: 48px;
	padding: 0 22px;
	border-radius: 11px;
	font-size: 10px;
	letter-spacing: 0.055em;
}

.sc-main-shell,
.sc-main-shell-start {
	margin-top: -28px;
	border-radius: 26px 26px 0 0;
}

.sc-search-section {
	padding: 62px 0 24px;
}

.sc-product-search {
	width: min(720px, 100%);
}

.sc-product-search input {
	height: 56px;
	border-radius: 13px;
	font-size: 12px;
}

.sc-section {
	padding: 44px 0;
}

.sc-section-heading {
	margin-bottom: 25px;
}

.sc-section-heading h2 {
	font-size: clamp(27px, 3vw, 38px);
}

.sc-section-heading--line {
	padding-left: 14px;
	border-left-width: 2px;
}

.sc-section-heading--line h2 {
	font-size: clamp(25px, 2.7vw, 34px);
}

.sc-section-heading--line > a {
	font-size: 10px;
}

.sc-eyebrow,
.sc-section-heading .sc-eyebrow,
.sc-eyebrow .elementor-heading-title {
	font-size: 9px;
	letter-spacing: 0.14em;
}

.sc-category-grid {
	gap: 20px;
}

.sc-category-card {
	min-height: 0;
	aspect-ratio: 0.78;
	border-radius: 18px;
}

.sc-category-card__content {
	left: 17px;
	right: 17px;
	bottom: 17px;
}

.sc-category-card__content strong {
	font-size: 14px;
}

.sc-category-card__content small {
	font-size: 8px;
}

.sc-promo-section {
	padding-top: 27px;
	padding-bottom: 48px;
}

.sc-promo-banner {
	border-radius: 20px;
}

.sc-promo-banner img {
	aspect-ratio: 1240 / 505;
}

.woocommerce ul.products,
.sc-demo-products {
	gap: 22px;
}

.woocommerce ul.products li.product,
.sc-demo-product {
	padding: 12px 12px 14px !important;
	border-radius: var(--sc-card-radius);
	box-shadow: 0 7px 18px rgba(9, 14, 31, 0.035);
}

.woocommerce ul.products li.product a img,
.sc-demo-product > img {
	aspect-ratio: 1 / 1.06;
	margin-bottom: 11px !important;
	border-radius: 12px;
	object-fit: contain;
}

.sc-loop-category,
.woocommerce ul.products li.product .sc-loop-category,
.sc-demo-product small {
	display: block;
	margin: 0 0 2px;
	color: #8790a5;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.sc-demo-product h3 {
	min-height: 38px;
	margin: 2px 0 7px !important;
	font-size: 12px !important;
	font-weight: 850;
	line-height: 1.35;
}

.woocommerce ul.products li.product .price {
	padding-right: 82px;
	font-size: 13px !important;
}

.woocommerce ul.products li.product .price del,
.sc-demo-price del {
	display: block;
	margin-bottom: 1px;
	color: #a0a8b9;
	font-size: 9px;
	font-weight: 500;
}

.sc-demo-price strong {
	display: block;
	font-size: 13px;
}

.woocommerce ul.products li.product .button,
.sc-demo-product__bottom a {
	right: 12px;
	bottom: 13px;
	padding: 9px 11px !important;
	border-radius: 9px !important;
	font-size: 8px !important;
}

.sc-demo-product__bottom {
	align-items: end;
}

.woocommerce span.onsale,
.sc-product-badge {
	top: 10px !important;
	left: 10px !important;
	padding: 5px 8px !important;
	font-size: 7px !important;
}

.sc-wishlist-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: var(--sc-ink);
	background: #fff;
	border: 1px solid var(--sc-line);
	cursor: pointer;
	transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.sc-wishlist-button svg {
	width: 17px;
	height: 17px;
	fill: transparent;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sc-wishlist-button.is-active {
	color: #fff;
	background: var(--sc-navy);
	border-color: var(--sc-navy);
}

.sc-wishlist-button.is-active svg {
	fill: currentColor;
}

.sc-wishlist-button--loop {
	position: absolute;
	z-index: 8;
	top: 9px;
	right: 9px;
	width: 31px;
	height: 31px;
	padding: 0;
	border-radius: 999px;
	box-shadow: 0 5px 14px rgba(5, 9, 25, 0.09);
}

.sc-wishlist-button--loop:hover {
	transform: translateY(-1px);
}

.sc-wishlist-button--single {
	width: 100%;
	min-height: 48px;
	margin-top: 12px;
	border-radius: 11px;
	font-size: 11px;
	font-weight: 850;
}

.sc-features-section {
	padding-top: 66px;
	padding-bottom: 54px;
}

.sc-features-grid {
	gap: 18px;
}

.sc-feature-card {
	min-height: 94px;
	padding: 17px;
	border-radius: 14px;
}

.sc-feature-card__icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
}

.sc-feature-card strong {
	font-size: 11px;
}

.sc-feature-card p {
	font-size: 9px;
}

.sc-newsletter-section {
	padding: 90px 0 105px;
}

.sc-newsletter {
	max-width: 720px;
}

.sc-newsletter h2 {
	font-size: clamp(27px, 3.3vw, 39px);
}

.sc-newsletter > p {
	max-width: 520px;
	font-size: 12px;
}

.sc-newsletter__form input,
.sc-newsletter__form button {
	height: 54px;
	border-radius: 12px;
}

.sc-newsletter__form button {
	font-size: 9px;
}

/* Side drawers */
.sc-drawer-backdrop {
	position: fixed;
	z-index: 990;
	inset: 0;
	background: rgba(3, 6, 16, 0.58);
	opacity: 0;
	backdrop-filter: blur(2px);
	transition: opacity 220ms ease;
}

.sc-drawer-backdrop.is-visible {
	opacity: 1;
}

.sc-drawer {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	width: min(430px, 100%);
	height: 100dvh;
	color: var(--sc-ink);
	background: #fff;
	box-shadow: -20px 0 60px rgba(3, 6, 16, 0.18);
	transform: translateX(102%);
	visibility: hidden;
	transition: transform 260ms ease, visibility 260ms ease;
}

.sc-drawer.is-open {
	transform: translateX(0);
	visibility: visible;
}

.sc-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 24px 20px;
	border-bottom: 1px solid var(--sc-line);
}

.sc-drawer__eyebrow {
	display: block;
	margin-bottom: 3px;
	color: #8a93a7;
	font-size: 8px;
	font-weight: 900;
	letter-spacing: 0.14em;
}

.sc-drawer__header h2 {
	margin: 0;
	font-size: 25px;
	font-weight: 950;
	letter-spacing: -0.04em;
}

.sc-drawer__close {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	padding: 0;
	color: var(--sc-ink);
	background: #f3f5f8;
	border: 0;
	border-radius: 999px;
	font-size: 25px;
	line-height: 1;
	cursor: pointer;
}

.sc-wishlist-drawer__content,
.sc-cart-drawer__content {
	flex: 1;
	min-height: 0;
	padding: 18px 24px;
	overflow-y: auto;
}

.sc-drawer-empty {
	display: grid;
	place-items: center;
	align-content: center;
	min-height: 260px;
	padding: 30px;
	color: var(--sc-muted);
	text-align: center;
}

.sc-drawer-empty > span {
	font-size: 42px;
	line-height: 1;
}

.sc-drawer-empty p {
	max-width: 250px;
	margin: 12px 0 0;
	font-size: 12px;
}

.sc-wishlist-item {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--sc-line);
}

.sc-wishlist-item__image img {
	display: block;
	width: 88px;
	height: 96px;
	background: #f5f6f8;
	border-radius: 11px;
	object-fit: contain;
}

.sc-wishlist-item__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}

.sc-wishlist-item__name {
	font-size: 13px;
	font-weight: 850;
	line-height: 1.35;
}

.sc-wishlist-item__content strong {
	margin-top: 6px;
	font-size: 13px;
}

.sc-wishlist-item__actions {
	display: flex;
	gap: 13px;
	margin-top: auto;
	padding-top: 10px;
}

.sc-wishlist-item__actions a,
.sc-wishlist-item__actions button {
	padding: 0;
	color: var(--sc-muted);
	background: transparent;
	border: 0;
	font-size: 9px;
	font-weight: 850;
	text-transform: uppercase;
	cursor: pointer;
}

.sc-wishlist-item__actions a {
	color: var(--sc-ink);
}

.sc-cart-drawer__footer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 9px;
	padding: 16px 24px 22px;
	border-top: 1px solid var(--sc-line);
}

.sc-drawer-button {
	display: grid;
	place-items: center;
	min-height: 48px;
	padding: 0 12px;
	color: #fff;
	background: var(--sc-navy);
	border: 1px solid var(--sc-navy);
	border-radius: 10px;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.045em;
	text-align: center;
	text-transform: uppercase;
}

.sc-drawer-button--secondary {
	color: var(--sc-navy);
	background: #fff;
}

.sc-cart-drawer .widget_shopping_cart_content {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.sc-cart-drawer ul.woocommerce-mini-cart {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sc-cart-drawer li.woocommerce-mini-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: 76px 1fr;
	gap: 13px;
	min-height: 98px;
	padding: 13px 28px 13px 0;
	border-bottom: 1px solid var(--sc-line);
}

.sc-cart-drawer li.woocommerce-mini-cart-item > a:not(.remove) {
	font-size: 12px;
	font-weight: 850;
	line-height: 1.35;
}

.sc-cart-drawer li.woocommerce-mini-cart-item img {
	float: left;
	width: 76px;
	height: 82px;
	margin: 0 13px 0 0;
	background: #f4f6f8;
	border-radius: 10px;
	object-fit: contain;
}

.sc-cart-drawer li.woocommerce-mini-cart-item a.remove {
	position: absolute;
	top: 12px;
	right: 0;
	display: grid;
	place-items: center;
	width: 23px;
	height: 23px;
	color: #7d8598 !important;
	background: #f1f3f7;
	border-radius: 999px;
	font-size: 16px;
}

.sc-cart-drawer .quantity {
	display: block;
	margin-top: 7px;
	color: var(--sc-muted);
	font-size: 10px;
}

.sc-cart-drawer .woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	margin: 18px 0 0;
	padding: 15px 0 0;
	border-top: 1px solid var(--sc-line);
	font-size: 12px;
}

.sc-cart-drawer .woocommerce-mini-cart__buttons {
	display: none;
}

.sc-toast {
	position: fixed;
	z-index: 1100;
	left: 50%;
	bottom: 24px;
	max-width: min(420px, calc(100% - 32px));
	padding: 12px 17px;
	color: #fff;
	background: var(--sc-navy);
	border-radius: 10px;
	box-shadow: 0 12px 30px rgba(3, 6, 16, 0.24);
	font-size: 11px;
	font-weight: 750;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 12px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.sc-toast.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

@media (max-width: 960px) {
	.sc-header__inner {
		grid-template-columns: 1fr auto auto;
		gap: 8px;
		min-height: 70px;
	}

	.sc-brand {
		grid-column: 1;
	}

	.sc-header__actions {
		grid-column: 2;
		grid-row: 1;
	}

	.sc-menu-toggle {
		display: block;
		grid-column: 3;
		grid-row: 1;
	}

	.sc-nav {
		grid-column: auto;
		inset: 70px 0 0;
	}

	.sc-hero,
	.sc-elementor-hero {
		min-height: 610px;
		background-position: 60% center !important;
	}

	.sc-category-card {
		aspect-ratio: 0.84;
	}
}

@media (max-width: 640px) {
	.sc-brand__name {
		display: inline;
		font-size: 11px;
	}

	.sc-header__actions .sc-icon-link:first-child {
		display: inline-grid;
	}

	.sc-hero,
	.sc-elementor-hero {
		min-height: 590px;
		padding-inline: 0;
		background-position: 62% center !important;
	}

	.sc-hero::before {
		background: linear-gradient(90deg, rgba(2, 5, 15, 0.9), rgba(2, 5, 15, 0.58));
	}

	.sc-hero h1,
	.sc-elementor-hero__title .elementor-heading-title {
		font-size: clamp(49px, 16vw, 68px);
	}

	.sc-hero p,
	.sc-elementor-hero__text {
		max-width: 330px;
		font-size: 13px;
	}

	.sc-main-shell,
	.sc-main-shell-start {
		border-radius: 21px 21px 0 0;
	}

	.sc-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.sc-category-card {
		min-height: 235px;
		aspect-ratio: auto;
		border-radius: 14px;
	}

	.woocommerce ul.products,
	.sc-demo-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.woocommerce ul.products li.product,
	.sc-demo-product {
		padding: 8px 8px 11px !important;
		border-radius: 14px;
	}

	.woocommerce ul.products li.product .woocommerce-loop-product__title,
	.sc-demo-product h3 {
		font-size: 10px !important;
	}

	.woocommerce ul.products li.product .price,
	.sc-demo-price strong {
		padding-right: 0;
		font-size: 11px !important;
	}

	.woocommerce ul.products li.product .button,
	.sc-demo-product__bottom a {
		position: static;
		display: none;
	}

	.sc-demo-product__bottom {
		display: block;
	}

	.sc-wishlist-button--loop {
		top: 7px;
		right: 7px;
		width: 28px;
		height: 28px;
	}

	.sc-products-section .sc-section-heading--line {
		padding-left: 10px;
	}

	.sc-features-grid {
		grid-template-columns: 1fr;
	}

	.sc-drawer {
		width: min(390px, 100%);
	}

	.sc-cart-drawer__footer {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================
   Street Commerce 1.2.1 — acabamento e compatibilidade
   ========================================================== */

/* Mantém o hero importado consistente mesmo com estilos globais do Elementor. */
.sc-elementor-hero .elementor-widget,
.sc-elementor-hero .elementor-widget:not(:last-child),
.sc-elementor-hero .elementor-widget-container,
.sc-elementor-hero .elementor-widget-text-editor p {
	margin-bottom: 0;
}

.sc-elementor-hero .sc-hero__content,
.sc-elementor-hero__buttons {
	gap: 0;
}

.sc-elementor-hero__buttons {
	display: flex !important;
	align-items: center;
	gap: 12px;
}

.sc-elementor-hero__buttons > .elementor-element,
.sc-elementor-hero__buttons .elementor-widget-button {
	flex: 0 0 auto;
	width: auto !important;
}

.sc-elementor-button .elementor-button-content-wrapper {
	align-items: center;
}

/* Dropdowns opcionais preservam a aparência minimalista do menu do demo. */
.sc-nav li {
	position: relative;
}

.sc-nav .sub-menu {
	position: absolute;
	top: calc(100% - 14px);
	left: 50%;
	display: grid;
	min-width: 210px;
	gap: 0;
	padding: 9px;
	background: rgba(5, 8, 23, 0.98);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	box-shadow: 0 18px 45px rgba(1, 4, 14, 0.28);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 8px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.sc-nav li:hover > .sub-menu,
.sc-nav li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.sc-nav .sub-menu a {
	padding: 11px 12px;
	border-radius: 8px;
	white-space: nowrap;
}

.sc-nav .sub-menu a::after {
	display: none;
}

.sc-nav .sub-menu a:hover,
.sc-nav .sub-menu .current-menu-item > a {
	background: rgba(255, 255, 255, 0.08);
}

/* Garante que o botão dos cards abra detalhes, sem herdar loaders do AJAX. */
.woocommerce ul.products li.product .sc-product-details-button::after {
	display: none !important;
}

@media (max-width: 960px) {
	.sc-nav .sub-menu {
		position: static;
		display: none;
		min-width: 0;
		padding: 0 0 0 16px;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.sc-nav li:hover > .sub-menu,
	.sc-nav li:focus-within > .sub-menu,
	.sc-nav .current-menu-ancestor > .sub-menu {
		display: grid;
	}

	.sc-nav .sub-menu a {
		padding: 13px 0;
		border-radius: 0;
		font-size: 12px;
	}
}


/* ==========================================================
   Street Commerce 1.4 — header/hero blindados contra estilos
   globais do Elementor e rodapé simples.
   ========================================================== */
.street-commerce-home .sc-header {
	background: linear-gradient(180deg, rgba(3, 6, 16, 0.88) 0%, rgba(3, 6, 16, 0.42) 54%, rgba(3, 6, 16, 0) 100%);
}

.sc-header__inner {
	min-height: 86px;
}

.sc-brand__fallback,
.sc-footer__brand {
	gap: 12px;
	color: #fff;
}

.sc-brand__mark {
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 950;
	letter-spacing: -0.04em;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.28) inset;
	overflow: hidden;
}

.sc-brand__mark--image {
	padding: 0;
}

.sc-brand__mark img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sc-brand__name {
	color: #fff;
	font-size: 17px;
	font-weight: 950;
	letter-spacing: 0.075em;
	line-height: 1;
	white-space: nowrap;
}

.sc-nav a {
	color: #fff;
	font-size: 11px;
	letter-spacing: 0.105em;
}

.sc-elementor-hero,
.sc-hero--fallback {
	min-height: 650px !important;
}

.sc-elementor-hero {
	display: flex !important;
	align-items: stretch !important;
	justify-content: center !important;
	padding-inline: max(48px, calc((100vw - var(--sc-container)) / 2)) !important;
}

.sc-elementor-hero > .e-con-inner {
	display: flex !important;
	width: 100% !important;
	min-height: 650px !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	justify-content: center !important;
	padding: 86px 0 0 !important;
}

.sc-elementor-hero .sc-elementor-hero__content,
.sc-elementor-hero .sc-hero__content {
	display: flex !important;
	width: min(620px, 100%) !important;
	max-width: 620px !important;
	flex: 0 0 auto !important;
	align-items: flex-start !important;
	justify-content: center !important;
	padding: 0 !important;
}

.sc-hero .sc-eyebrow,
.sc-elementor-hero .sc-eyebrow--hero .elementor-heading-title,
.sc-elementor-hero .sc-eyebrow .elementor-heading-title {
	display: inline-flex !important;
	width: fit-content !important;
	margin: 0 !important;
	padding: 6px 12px !important;
	color: rgba(255, 255, 255, 0.94) !important;
	background: rgba(255, 255, 255, 0.09) !important;
	border: 1px solid rgba(255, 255, 255, 0.20) !important;
	border-radius: 999px !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: 11px !important;
	font-weight: 850 !important;
	letter-spacing: 0.11em !important;
	line-height: 1.2 !important;
	text-transform: uppercase !important;
}

.sc-hero h1,
.sc-elementor-hero .sc-elementor-hero__title .elementor-heading-title,
.sc-elementor-hero h1.elementor-heading-title {
	width: auto !important;
	max-width: none !important;
	margin: 26px 0 20px !important;
	color: #fff !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(68px, 6.7vw, 96px) !important;
	font-weight: 950 !important;
	letter-spacing: -0.058em !important;
	line-height: 0.94 !important;
	text-transform: uppercase !important;
	white-space: nowrap !important;
}

.sc-hero p,
.sc-elementor-hero .sc-elementor-hero__text,
.sc-elementor-hero .sc-elementor-hero__text p,
.sc-elementor-hero .elementor-widget-text-editor p {
	max-width: 505px !important;
	margin: 0 !important;
	color: rgba(255, 255, 255, 0.86) !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: 17px !important;
	font-weight: 560 !important;
	line-height: 1.62 !important;
}

.sc-elementor-hero__buttons,
.sc-hero__buttons {
	display: flex !important;
	width: auto !important;
	flex-direction: row !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 14px !important;
	margin-top: 32px !important;
}

.sc-elementor-hero__buttons .elementor-widget-button,
.sc-elementor-hero__buttons > .elementor-element {
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
}

.sc-button,
.sc-elementor-hero .sc-elementor-button .elementor-button,
.sc-elementor-hero .elementor-widget-button .elementor-button {
	min-width: 0 !important;
	min-height: 54px !important;
	padding: 0 28px !important;
	border-radius: 13px !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	letter-spacing: 0.035em !important;
	line-height: 1 !important;
	text-transform: uppercase !important;
	box-shadow: none !important;
}

.sc-button--light,
.sc-elementor-hero .sc-elementor-button--light .elementor-button {
	color: #050817 !important;
	background: #fff !important;
	border: 1px solid #fff !important;
}

.sc-button--light:hover,
.sc-elementor-hero .sc-elementor-button--light .elementor-button:hover {
	color: #050817 !important;
	background: #f2f4f7 !important;
	border-color: #f2f4f7 !important;
}

.sc-button--ghost,
.sc-elementor-hero .sc-elementor-button--ghost .elementor-button {
	color: #fff !important;
	background: rgba(255, 255, 255, 0.09) !important;
	border: 1px solid rgba(255, 255, 255, 0.28) !important;
}

.sc-button--ghost:hover,
.sc-elementor-hero .sc-elementor-button--ghost .elementor-button:hover {
	color: #fff !important;
	background: rgba(255, 255, 255, 0.16) !important;
	border-color: rgba(255, 255, 255, 0.40) !important;
}

.sc-footer {
	display: block;
	color: rgba(255, 255, 255, 0.70);
	background: #050817;
}

.sc-footer__main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 80px;
	padding-top: 58px;
	padding-bottom: 46px;
}

.sc-footer__about {
	max-width: 520px;
}

.sc-footer__brand {
	display: inline-flex;
	align-items: center;
}

.sc-footer__brand strong {
	color: #fff;
	font-size: 16px;
	font-weight: 950;
	letter-spacing: 0.075em;
}

.sc-footer__about p {
	max-width: 430px;
	margin: 18px 0 0;
	font-size: 13px;
	line-height: 1.7;
}

.sc-footer__navigation h2 {
	margin-bottom: 14px;
}

.sc-footer__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
}

.sc-footer__menu li + li {
	margin-top: 0;
}

.sc-footer__menu a {
	color: rgba(255, 255, 255, 0.74);
	font-size: 12px;
	font-weight: 700;
}

.sc-footer__menu a:hover {
	color: #fff;
}

.sc-footer__bottom {
	padding-top: 20px;
	padding-bottom: 20px;
}

@media (max-width: 960px) {
	.sc-header__inner {
		grid-template-columns: 1fr auto auto;
	}

	.sc-brand__name {
		font-size: 15px;
	}

	.sc-elementor-hero {
		padding-inline: 32px !important;
	}

	.sc-elementor-hero > .e-con-inner {
		padding-top: 78px !important;
	}

	.sc-elementor-hero .sc-elementor-hero__content,
	.sc-elementor-hero .sc-hero__content {
		width: min(570px, 100%) !important;
	}

	.sc-hero h1,
	.sc-elementor-hero .sc-elementor-hero__title .elementor-heading-title,
	.sc-elementor-hero h1.elementor-heading-title {
		font-size: clamp(58px, 9vw, 82px) !important;
	}

	.sc-footer__main {
		grid-template-columns: 1fr;
		gap: 34px;
	}
}

@media (max-width: 640px) {
	.sc-container {
		width: min(calc(100% - 32px), var(--sc-container));
	}

	.sc-header__inner {
		min-height: 72px;
	}

	.sc-brand__mark {
		width: 36px;
		height: 36px;
		flex-basis: 36px;
		border-radius: 10px;
	}

	.sc-brand__name {
		font-size: 13px;
	}

	.sc-elementor-hero,
	.sc-hero--fallback {
		min-height: 610px !important;
		background-position: 60% center !important;
	}

	.sc-elementor-hero {
		padding-inline: 20px !important;
	}

	.sc-elementor-hero > .e-con-inner {
		min-height: 610px !important;
		padding-top: 72px !important;
	}

	.sc-hero .sc-eyebrow,
	.sc-elementor-hero .sc-eyebrow--hero .elementor-heading-title,
	.sc-elementor-hero .sc-eyebrow .elementor-heading-title {
		font-size: 9px !important;
	}

	.sc-hero h1,
	.sc-elementor-hero .sc-elementor-hero__title .elementor-heading-title,
	.sc-elementor-hero h1.elementor-heading-title {
		font-size: clamp(52px, 16vw, 72px) !important;
		white-space: normal !important;
	}

	.sc-hero p,
	.sc-elementor-hero .sc-elementor-hero__text,
	.sc-elementor-hero .sc-elementor-hero__text p,
	.sc-elementor-hero .elementor-widget-text-editor p {
		font-size: 15px !important;
	}

	.sc-elementor-hero__buttons,
	.sc-hero__buttons {
		width: 100% !important;
	}

	.sc-elementor-hero__buttons .elementor-widget-button,
	.sc-elementor-hero__buttons > .elementor-element,
	.sc-elementor-hero .sc-elementor-button .elementor-button,
	.sc-button {
		width: 100% !important;
	}

	.sc-footer__main {
		padding-top: 44px;
		padding-bottom: 34px;
	}

	.sc-footer__menu {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sc-footer__bottom {
		flex-direction: column;
		gap: 5px;
	}
}


/* ==========================================================
   Street Commerce 1.4.1 — centralização dos CTAs e cache busting
   ========================================================== */
.sc-button,
.sc-elementor-hero .sc-elementor-button .elementor-button,
.sc-elementor-hero .elementor-widget-button .elementor-button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	vertical-align: middle !important;
	box-sizing: border-box !important;
}

.sc-elementor-hero__buttons .elementor-button-wrapper {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
}

.sc-elementor-hero .elementor-button-content-wrapper {
	display: inline-flex !important;
	width: 100% !important;
	height: 100% !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	line-height: 1 !important;
}

.sc-elementor-hero .elementor-button-text,
.sc-elementor-hero .elementor-button-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	line-height: 1 !important;
}

.sc-elementor-hero .sc-elementor-button--light .elementor-button,
.sc-hero__buttons .sc-button--light {
	min-width: 220px !important;
}

.sc-elementor-hero .sc-elementor-button--ghost .elementor-button,
.sc-hero__buttons .sc-button--ghost {
	min-width: 196px !important;
}

@media (max-width: 640px) {
	.sc-elementor-hero .sc-elementor-button--light .elementor-button,
	.sc-elementor-hero .sc-elementor-button--ghost .elementor-button,
	.sc-hero__buttons .sc-button--light,
	.sc-hero__buttons .sc-button--ghost {
		min-width: 100% !important;
	}
}

/* ==========================================================
   Street Commerce 1.5 — templates WooCommerce completos
   ========================================================== */

/* Product page */
.sc-product-page .sc-standard-page {
	padding-top: 46px;
	padding-bottom: 92px;
}

.single-product .woocommerce div.product.sc-single-product {
	display: block;
	margin: 0;
}

.sc-product-breadcrumb {
	margin-bottom: 26px;
}

.sc-product-breadcrumb .woocommerce-breadcrumb {
	margin: 0 !important;
	padding: 12px 15px;
	color: var(--sc-muted);
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid var(--sc-line);
	border-radius: 12px;
	font-size: 11px;
}

.sc-product-main {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.76fr);
	align-items: start;
	gap: clamp(34px, 5vw, 70px);
}

.sc-product-gallery {
	min-width: 0;
}

.single-product .sc-product-gallery .onsale {
	z-index: 3;
	top: 18px;
	left: 18px;
	min-width: auto;
	min-height: auto;
	padding: 8px 11px;
	color: #fff;
	background: var(--sc-navy);
	border-radius: 999px;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.single-product .sc-product-gallery div.images {
	position: sticky;
	top: 24px;
	float: none;
	width: 100%;
	margin: 0;
	padding: 16px;
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 22px;
	box-shadow: var(--sc-shadow);
}

.single-product .sc-product-gallery div.images .woocommerce-product-gallery__image a {
	display: block;
	background: #f5f6f8;
	border-radius: 15px;
	overflow: hidden;
}

.single-product .sc-product-gallery div.images img {
	width: 100%;
	border-radius: 15px;
}

.sc-product-summary {
	float: none !important;
	width: 100% !important;
	padding: 4px 0 0 !important;
}

.sc-product-summary__topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 15px;
}

.sc-product-category-label {
	color: #778099;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.sc-product-summary .sc-wishlist-button--single {
	position: static;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: auto;
	height: 38px;
	padding: 0 13px;
	color: var(--sc-ink);
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 999px;
	box-shadow: none;
	font-size: 10px;
	font-weight: 800;
}

.sc-product-summary .sc-wishlist-button--single svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.sc-product-summary .sc-wishlist-button--single.is-active {
	color: #fff;
	background: var(--sc-navy);
	border-color: var(--sc-navy);
}

.sc-product-summary .product_title {
	max-width: 620px;
	margin: 0 0 13px !important;
	font-size: clamp(34px, 4.4vw, 58px) !important;
	font-weight: 950;
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.sc-product-summary .woocommerce-product-rating {
	margin: 0 0 17px !important;
}

.sc-product-summary .price {
	margin-bottom: 20px !important;
	color: var(--sc-ink) !important;
	font-size: clamp(27px, 3vw, 36px) !important;
	font-weight: 900 !important;
	letter-spacing: -0.035em;
}

.sc-product-summary .price del {
	margin-right: 7px;
	color: #9ba2b1;
	font-size: 0.58em;
}

.sc-product-summary .price ins {
	text-decoration: none;
}

.sc-product-summary .woocommerce-product-details__short-description {
	max-width: 600px;
	margin-bottom: 24px !important;
	color: #626b80;
	font-size: 15px;
	line-height: 1.7;
}

.single-product .sc-product-summary form.cart {
	margin: 24px 0 0 !important;
	padding: 22px !important;
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 17px;
	box-shadow: var(--sc-shadow);
}

.single-product .sc-product-summary form.cart .single_add_to_cart_button {
	min-height: 52px;
	color: #fff !important;
	background: var(--sc-navy) !important;
	border-radius: 11px !important;
}

.single-product .sc-product-summary form.cart .single_add_to_cart_button:hover {
	background: #151c35 !important;
}

.single-product .sc-product-summary .product_meta {
	margin-top: 22px;
	padding: 18px 0 0;
	border-top: 1px solid var(--sc-line);
}

.sc-product-support-note {
	display: grid;
	grid-template-columns: 38px 1fr;
	align-items: center;
	gap: 11px;
	margin-top: 14px;
	padding: 14px 15px;
	background: #eef1f6;
	border-radius: 12px;
}

.sc-product-support-note > span {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	color: #fff;
	background: var(--sc-navy);
	border-radius: 11px;
	font-weight: 900;
}

.sc-product-support-note strong,
.sc-product-support-note small {
	display: block;
}

.sc-product-support-note strong {
	font-size: 11px;
}

.sc-product-support-note small {
	color: var(--sc-muted);
	font-size: 10px;
}

.sc-product-after {
	margin-top: 54px;
}

.single-product .sc-product-after .woocommerce-tabs,
.single-product .sc-product-after .related.products,
.single-product .sc-product-after .upsells.products {
	margin-top: 42px;
}

/* Cart page */
.woocommerce-cart .woocommerce {
	display: block;
}

.sc-cart-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.52fr) minmax(330px, 0.72fr);
	align-items: start;
	gap: 26px;
}

.sc-cart-form,
.sc-cart-panel {
	min-width: 0;
}

.woocommerce-cart .woocommerce-cart-form.sc-cart-form {
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.sc-cart-panel {
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 18px;
	box-shadow: var(--sc-shadow);
	overflow: hidden;
}

.sc-cart-panel__header,
.sc-cart-totals__header,
.sc-checkout-card__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	padding: 24px 26px 20px;
	border-bottom: 1px solid var(--sc-line);
}

.sc-cart-panel__header span,
.sc-cart-totals__header span,
.sc-checkout-card__header > span {
	display: block;
	margin-bottom: 4px;
	color: #8a92a5;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.sc-cart-panel__header h2,
.sc-cart-totals__header h2,
.sc-checkout-card__header h2 {
	margin: 0;
	font-size: 24px;
	font-weight: 950;
	letter-spacing: -0.035em;
	line-height: 1.1;
}

.sc-cart-panel__header > strong {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	color: #fff;
	background: var(--sc-navy);
	border-radius: 999px;
	font-size: 12px;
}

.sc-cart-list__head,
.sc-cart-item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 92px 152px 100px;
	align-items: center;
	gap: 16px;
}

.sc-cart-list__head {
	padding: 13px 26px;
	color: #8a92a5;
	background: #f7f8fb;
	border-bottom: 1px solid var(--sc-line);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sc-cart-list__head span:not(:first-child) {
	text-align: center;
}

.sc-cart-item {
	padding: 22px 26px;
	border-bottom: 1px solid var(--sc-line);
}

.sc-cart-item:last-child {
	border-bottom: 0;
}

.sc-cart-item__product {
	display: grid;
	grid-template-columns: 94px minmax(0, 1fr);
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.sc-cart-item__image a,
.sc-cart-item__image img {
	display: block;
}

.sc-cart-item__image img {
	width: 94px;
	height: 104px;
	object-fit: cover;
	background: #f4f5f7;
	border-radius: 12px;
}

.sc-cart-item__details {
	min-width: 0;
}

.sc-cart-item__category {
	display: block;
	margin-bottom: 5px;
	color: #969dad;
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sc-cart-item__category a {
	color: inherit;
}

.sc-cart-item__name {
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.35;
}

.sc-cart-item__details .variation,
.sc-order-review-product .variation {
	margin: 4px 0 7px;
	color: var(--sc-muted);
	font-size: 10px;
}

.sc-cart-item__details .variation dt,
.sc-cart-item__details .variation dd,
.sc-order-review-product .variation dt,
.sc-order-review-product .variation dd {
	display: inline;
	float: none;
	margin: 0 3px 0 0;
}

.sc-cart-item__remove {
	display: inline-flex !important;
	align-items: center;
	justify-content: flex-start;
	width: auto !important;
	height: auto !important;
	margin-top: 3px;
	padding: 0 !important;
	color: #8b3340 !important;
	background: transparent !important;
	border-radius: 0 !important;
	font-size: 10px !important;
	font-weight: 800;
}

.sc-cart-item__price,
.sc-cart-item__quantity,
.sc-cart-item__subtotal {
	text-align: center;
	font-size: 12px;
	font-weight: 850;
}

.sc-cart-item__subtotal {
	font-size: 13px;
	font-weight: 950;
}

.sc-cart-item .quantity {
	margin: 0 auto !important;
}

.sc-cart-actions {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 26px 24px;
	background: #fbfcfd;
	border-top: 1px solid var(--sc-line);
}

.sc-cart-coupon label {
	display: block;
	margin-bottom: 6px;
	font-size: 10px;
	font-weight: 850;
}

.sc-cart-coupon > div {
	display: flex;
	gap: 8px;
}

.woocommerce-cart .sc-cart-coupon .input-text {
	width: 190px !important;
	min-width: 0;
}

.woocommerce-cart .sc-cart-coupon .button,
.woocommerce-cart .sc-cart-update {
	color: #fff !important;
	background: var(--sc-navy) !important;
}

.woocommerce-cart .sc-cart-update {
	white-space: nowrap;
}

.sc-cart-sidebar {
	position: sticky;
	top: 24px;
	min-width: 0;
}

.woocommerce-cart .sc-cart-sidebar .cart_totals {
	padding: 0;
	overflow: hidden;
}

.sc-cart-totals__header {
	display: block;
}

.woocommerce-cart .sc-cart-sidebar .cart_totals table {
	width: calc(100% - 48px);
	margin: 6px 24px 18px;
}

.woocommerce-cart .sc-cart-sidebar .cart_totals table th,
.woocommerce-cart .sc-cart-sidebar .cart_totals table td {
	padding: 14px 0;
}

.woocommerce-cart .sc-cart-sidebar .cart_totals table .order-total th,
.woocommerce-cart .sc-cart-sidebar .cart_totals table .order-total td {
	padding-top: 18px;
	font-size: 16px;
	font-weight: 950;
}

.sc-cart-totals__assurance {
	display: grid;
	grid-template-columns: 34px 1fr;
	align-items: center;
	gap: 10px;
	margin: 0 24px 17px;
	padding: 12px;
	background: #f4f6fa;
	border-radius: 11px;
}

.sc-cart-totals__assurance > span {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	color: #fff;
	background: var(--sc-navy);
	border-radius: 10px;
}

.sc-cart-totals__assurance p,
.sc-cart-totals__assurance strong,
.sc-cart-totals__assurance small {
	display: block;
	margin: 0;
}

.sc-cart-totals__assurance strong {
	font-size: 11px;
}

.sc-cart-totals__assurance small {
	color: var(--sc-muted);
	font-size: 9px;
}

.woocommerce-cart .sc-cart-sidebar .wc-proceed-to-checkout {
	padding: 0 24px;
}

.sc-continue-shopping {
	display: block;
	padding: 14px 24px 23px;
	color: var(--sc-muted);
	text-align: center;
	font-size: 10px;
	font-weight: 850;
	text-transform: uppercase;
}

/* Checkout page */
.woocommerce-checkout form.checkout.sc-checkout-form {
	display: block;
}

.sc-checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(370px, 0.78fr);
	align-items: start;
	gap: 28px;
}

.sc-checkout-customer,
.sc-checkout-summary {
	min-width: 0;
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 18px;
	box-shadow: var(--sc-shadow);
	overflow: hidden;
}

.sc-checkout-summary {
	position: sticky;
	top: 24px;
}

.sc-checkout-card__header {
	display: block;
	padding: 25px 28px 21px;
}

.sc-checkout-card__header p {
	margin: 8px 0 0;
	color: var(--sc-muted);
	font-size: 11px;
}

.woocommerce-checkout form.checkout.sc-checkout-form #customer_details {
	padding: 26px 28px 30px;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.woocommerce-checkout form.checkout.sc-checkout-form #customer_details .col-1,
.woocommerce-checkout form.checkout.sc-checkout-form #customer_details .col-2 {
	float: none;
	width: 100%;
}

.woocommerce-checkout form.checkout.sc-checkout-form #customer_details .col-2 {
	margin-top: 26px;
	padding-top: 23px;
	border-top: 1px solid var(--sc-line);
}

.woocommerce-checkout .sc-checkout-section h3 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 20px;
	font-size: 18px;
}

.woocommerce-checkout .sc-checkout-section h3::before {
	content: "";
	display: block;
	width: 4px;
	height: 20px;
	background: var(--sc-navy);
	border-radius: 999px;
}

.woocommerce-checkout form.checkout.sc-checkout-form .form-row-first,
.woocommerce-checkout form.checkout.sc-checkout-form .form-row-last {
	width: calc(50% - 7px);
}

.woocommerce-checkout form.checkout.sc-checkout-form .form-row-first {
	margin-right: 14px;
}

.woocommerce-checkout form.checkout.sc-checkout-form #order_review {
	position: static;
	padding: 22px 26px 26px;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.woocommerce-checkout form.checkout.sc-checkout-form #order_review::before {
	display: none;
}

.sc-order-review-table {
	margin-bottom: 20px !important;
}

.sc-order-review-table thead th {
	padding-top: 0 !important;
	color: #8991a3;
	font-size: 9px !important;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sc-order-review-table .product-name {
	width: 72%;
}

.sc-order-review-product {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	align-items: center;
	gap: 11px;
}

.sc-order-review-product__image img {
	display: block;
	width: 58px;
	height: 66px;
	object-fit: cover;
	background: #f4f5f7;
	border-radius: 9px;
}

.sc-order-review-product strong,
.sc-order-review-product small {
	display: block;
}

.sc-order-review-product strong {
	font-size: 11px;
	line-height: 1.35;
}

.sc-order-review-product small {
	margin-top: 3px;
	color: var(--sc-muted);
	font-size: 10px;
}

.sc-order-review-table tfoot .order-total th,
.sc-order-review-table tfoot .order-total td {
	padding-top: 17px !important;
	font-size: 15px !important;
	font-weight: 950 !important;
}

.woocommerce-checkout #payment.sc-checkout-payment {
	margin-top: 20px;
	background: #f4f6fa;
	border: 1px solid var(--sc-line);
	border-radius: 14px;
	overflow: hidden;
}

.sc-payment-heading {
	display: grid;
	grid-template-columns: 36px 1fr;
	align-items: center;
	gap: 11px;
	padding: 15px 17px;
	background: #fff;
	border-bottom: 1px solid var(--sc-line);
}

.sc-payment-heading > span {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	color: #fff;
	background: var(--sc-navy);
	border-radius: 10px;
}

.sc-payment-heading strong,
.sc-payment-heading small {
	display: block;
}

.sc-payment-heading strong {
	font-size: 11px;
}

.sc-payment-heading small {
	color: var(--sc-muted);
	font-size: 9px;
}

.woocommerce-checkout #payment.sc-checkout-payment ul.payment_methods {
	padding: 10px 17px 2px;
}

.woocommerce-checkout #payment.sc-checkout-payment ul.payment_methods li {
	padding: 10px 0;
	border-bottom: 1px solid #e0e4eb;
}

.woocommerce-checkout #payment.sc-checkout-payment ul.payment_methods li:last-child {
	border-bottom: 0;
}

.woocommerce-checkout #payment.sc-checkout-payment .place-order {
	padding: 15px 17px 18px;
}

.woocommerce-checkout #payment.sc-checkout-payment #place_order {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 55px;
	color: #fff !important;
	background: var(--sc-navy) !important;
	border-radius: 11px !important;
}

/* Empty cart */
.sc-empty-state {
	max-width: 720px;
	margin: 0 auto;
	padding: 58px 36px;
	text-align: center;
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 20px;
	box-shadow: var(--sc-shadow);
}

.sc-empty-state__icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 18px;
	background: #edf0f5;
	border-radius: 18px;
	font-size: 28px;
}

.sc-empty-state > span,
.sc-order-status > span {
	display: block;
	margin-bottom: 8px;
	color: #858da0;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.sc-empty-state h2 {
	margin: 0 0 9px;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 950;
	letter-spacing: -0.04em;
}

.sc-empty-state p {
	margin: 0 auto 22px;
	color: var(--sc-muted);
}

.sc-empty-state .button {
	min-height: 50px;
	padding: 0 25px !important;
	color: #fff !important;
	background: var(--sc-navy) !important;
}

/* Order confirmation */
.woocommerce-order-received .woocommerce-order.sc-order-confirmation {
	padding: 0;
	text-align: left;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.sc-order-status {
	padding: clamp(32px, 6vw, 60px);
	text-align: center;
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 20px;
	box-shadow: var(--sc-shadow);
}

.sc-order-status__icon {
	display: grid;
	place-items: center;
	width: 66px;
	height: 66px;
	margin: 0 auto 17px;
	color: #fff;
	background: var(--sc-navy);
	border-radius: 999px;
	font-size: 27px;
	font-weight: 950;
}

.sc-order-status--failed .sc-order-status__icon {
	background: #9d2635;
}

.sc-order-status h1 {
	margin: 0 0 10px;
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 950;
	letter-spacing: -0.05em;
	line-height: 1;
}

.sc-order-status p {
	max-width: 650px;
	margin: 0 auto;
	color: var(--sc-muted);
}

.sc-order-status__actions {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 22px;
}

.sc-order-status__actions .button {
	color: #fff !important;
	background: var(--sc-navy) !important;
}

.woocommerce-order-received .sc-order-overview {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	margin: 22px 0 28px !important;
}

.woocommerce-order-received .sc-order-overview li {
	float: none !important;
	margin: 0 !important;
	padding: 17px !important;
	background: #fff !important;
	border: 1px solid var(--sc-line) !important;
	border-radius: 14px !important;
}

.sc-order-overview li > span,
.sc-order-overview li > strong {
	display: block;
}

.sc-order-overview li > span {
	margin-bottom: 5px;
	color: var(--sc-muted);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.sc-order-overview li > strong {
	font-size: 12px;
	word-break: break-word;
}

.woocommerce-order-received .woocommerce-order-details,
.woocommerce-order-received .woocommerce-customer-details {
	margin-top: 24px;
	padding: 26px;
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 18px;
	box-shadow: var(--sc-shadow);
}

.woocommerce-order-received .woocommerce-order-details__title,
.woocommerce-order-received .woocommerce-column__title {
	margin: 0 0 17px;
	font-size: 22px;
	font-weight: 950;
	letter-spacing: -0.03em;
}

@media (max-width: 1080px) {
	.sc-product-main,
	.sc-cart-layout,
	.sc-checkout-layout {
		grid-template-columns: 1fr;
	}

	.single-product .sc-product-gallery div.images,
	.sc-cart-sidebar,
	.sc-checkout-summary {
		position: static;
	}

	.woocommerce-order-received .sc-order-overview {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.sc-product-page .sc-standard-page {
		padding-top: 30px;
	}

	.sc-product-summary__topline {
		align-items: flex-start;
		flex-direction: column;
	}

	.sc-product-summary .product_title {
		font-size: clamp(34px, 12vw, 48px) !important;
	}

	.sc-cart-list__head {
		display: none;
	}

	.sc-cart-item {
		grid-template-columns: 1fr 1fr;
		gap: 13px;
		padding: 20px 17px;
	}

	.sc-cart-item__product {
		grid-column: 1 / -1;
		grid-template-columns: 82px minmax(0, 1fr);
	}

	.sc-cart-item__image img {
		width: 82px;
		height: 94px;
	}

	.sc-cart-item__price,
	.sc-cart-item__quantity,
	.sc-cart-item__subtotal {
		position: relative;
		padding-top: 17px;
		text-align: left;
	}

	.sc-cart-item__price::before,
	.sc-cart-item__quantity::before,
	.sc-cart-item__subtotal::before {
		content: attr(data-title);
		position: absolute;
		top: 0;
		left: 0;
		color: #8d95a6;
		font-size: 8px;
		font-weight: 900;
		letter-spacing: 0.07em;
		text-transform: uppercase;
	}

	.sc-cart-item__subtotal {
		text-align: right;
	}

	.sc-cart-item__subtotal::before {
		left: auto;
		right: 0;
	}

	.sc-cart-item .quantity {
		margin: 0 !important;
	}

	.sc-cart-actions {
		align-items: stretch;
		flex-direction: column;
		padding: 18px 17px 21px;
	}

	.sc-cart-coupon > div {
		width: 100%;
	}

	.woocommerce-cart .sc-cart-coupon .input-text {
		flex: 1;
		width: auto !important;
	}

	.sc-cart-update {
		width: 100%;
	}

	.sc-checkout-card__header,
	.woocommerce-checkout form.checkout.sc-checkout-form #customer_details,
	.woocommerce-checkout form.checkout.sc-checkout-form #order_review {
		padding-left: 18px;
		padding-right: 18px;
	}

	.woocommerce-checkout form.checkout.sc-checkout-form .form-row-first,
	.woocommerce-checkout form.checkout.sc-checkout-form .form-row-last {
		float: none;
		width: 100%;
		margin-right: 0;
	}

	.sc-order-review-product {
		grid-template-columns: 48px minmax(0, 1fr);
	}

	.sc-order-review-product__image img {
		width: 48px;
		height: 58px;
	}

	.woocommerce-order-received .sc-order-overview {
		grid-template-columns: 1fr;
	}

	.sc-order-status__actions {
		flex-direction: column;
	}
}

@media (max-width: 460px) {
	.sc-cart-panel__header,
	.sc-cart-totals__header {
		padding-left: 17px;
		padding-right: 17px;
	}

	.sc-cart-item {
		grid-template-columns: 1fr;
	}

	.sc-cart-item__price,
	.sc-cart-item__quantity,
	.sc-cart-item__subtotal {
		text-align: left;
	}

	.sc-cart-item__subtotal::before {
		left: 0;
		right: auto;
	}
}

/* ==========================================================
   Street Commerce 1.6 — página de produto com galeria ampla
   ========================================================== */

/* Evita que regras antigas do WooCommerce transformem o template em três colunas. */
body.single-product .woocommerce div.product.sc-single-product {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	clear: both !important;
}

body.single-product .woocommerce div.product.sc-single-product::before,
body.single-product .woocommerce div.product.sc-single-product::after {
	display: none !important;
	content: none !important;
}

body.single-product .sc-product-main {
	display: grid !important;
	grid-template-columns: minmax(0, 1.22fr) minmax(410px, 0.78fr) !important;
	align-items: start !important;
	gap: clamp(38px, 5vw, 76px) !important;
	width: 100% !important;
}

body.single-product .sc-product-gallery,
body.single-product .sc-product-summary,
body.single-product .sc-product-after {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	clear: both !important;
}

body.single-product .sc-product-gallery {
	position: relative;
}

body.single-product .sc-product-gallery div.images.woocommerce-product-gallery {
	position: sticky !important;
	top: 28px !important;
	display: block !important;
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: clamp(18px, 2.2vw, 28px) !important;
	background: #fff !important;
	border: 1px solid var(--sc-line) !important;
	border-radius: 24px !important;
	box-shadow: 0 22px 55px rgba(7, 13, 31, 0.09) !important;
	box-sizing: border-box !important;
}

body.single-product .sc-product-gallery .woocommerce-product-gallery__wrapper {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

body.single-product .sc-product-gallery .woocommerce-product-gallery__image,
body.single-product .sc-product-gallery .woocommerce-product-gallery__image.flex-active-slide {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: clamp(520px, 52vw, 720px) !important;
	aspect-ratio: 4 / 5 !important;
	padding: clamp(20px, 3vw, 42px) !important;
	background: #f5f6f8 !important;
	border-radius: 18px !important;
	overflow: hidden !important;
	box-sizing: border-box !important;
}

body.single-product .sc-product-gallery .woocommerce-product-gallery__image a {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	height: 100% !important;
	background: transparent !important;
	border-radius: 0 !important;
	overflow: visible !important;
}

body.single-product .sc-product-gallery .woocommerce-product-gallery__image img,
body.single-product .sc-product-gallery div.images img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 680px !important;
	max-height: 680px !important;
	margin: auto !important;
	border-radius: 14px !important;
	object-fit: contain !important;
	object-position: center !important;
}

body.single-product .sc-product-gallery .flex-control-thumbs {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	gap: 12px !important;
	width: 100% !important;
	margin: 16px 0 0 !important;
	padding: 0 !important;
}

body.single-product .sc-product-gallery .flex-control-thumbs li {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}

body.single-product .sc-product-gallery .flex-control-thumbs img {
	width: 100% !important;
	height: 98px !important;
	padding: 7px !important;
	background: #f5f6f8 !important;
	border: 2px solid transparent !important;
	border-radius: 13px !important;
	object-fit: contain !important;
	cursor: pointer !important;
}

body.single-product .sc-product-gallery .flex-control-thumbs img.flex-active {
	border-color: var(--sc-navy) !important;
}

body.single-product .sc-product-summary {
	position: sticky !important;
	top: 28px !important;
	align-self: start !important;
	padding-top: 8px !important;
}

body.single-product .sc-product-summary .product_title {
	max-width: 680px !important;
	font-size: clamp(42px, 4.5vw, 66px) !important;
	line-height: 0.96 !important;
}

body.single-product .sc-product-summary form.cart {
	padding: 24px !important;
}

body.single-product .sc-product-after {
	display: block !important;
	grid-column: 1 / -1 !important;
	margin-top: clamp(54px, 7vw, 90px) !important;
}

body.single-product .sc-product-after > * {
	width: 100% !important;
	max-width: none !important;
}

body.single-product .sc-product-after .woocommerce-tabs {
	margin-top: 0 !important;
}

body.single-product .sc-product-after .woocommerce-tabs .panel {
	min-height: 170px;
}

body.single-product .sc-product-after .related.products,
body.single-product .sc-product-after .upsells.products {
	margin-top: 64px !important;
}

body.single-product .sc-product-after ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 22px !important;
}

body.single-product .sc-product-after ul.products::before,
body.single-product .sc-product-after ul.products::after {
	display: none !important;
}

body.single-product .sc-product-after ul.products > li.product {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}

@media (max-width: 1180px) {
	body.single-product .sc-product-main {
		grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr) !important;
		gap: 36px !important;
	}

	body.single-product .sc-product-gallery .woocommerce-product-gallery__image,
	body.single-product .sc-product-gallery .woocommerce-product-gallery__image.flex-active-slide {
		min-height: 540px !important;
	}
}

@media (max-width: 960px) {
	body.single-product .sc-product-main {
		grid-template-columns: 1fr !important;
	}

	body.single-product .sc-product-gallery div.images.woocommerce-product-gallery,
	body.single-product .sc-product-summary {
		position: static !important;
	}

	body.single-product .sc-product-gallery .woocommerce-product-gallery__image,
	body.single-product .sc-product-gallery .woocommerce-product-gallery__image.flex-active-slide {
		min-height: clamp(480px, 78vw, 680px) !important;
		aspect-ratio: 5 / 4 !important;
	}

	body.single-product .sc-product-after ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 640px) {
	body.single-product .sc-product-breadcrumb {
		margin-bottom: 18px !important;
	}

	body.single-product .sc-product-gallery div.images.woocommerce-product-gallery {
		padding: 12px !important;
		border-radius: 18px !important;
	}

	body.single-product .sc-product-gallery .woocommerce-product-gallery__image,
	body.single-product .sc-product-gallery .woocommerce-product-gallery__image.flex-active-slide {
		min-height: 420px !important;
		aspect-ratio: 1 / 1.18 !important;
		padding: 18px !important;
		border-radius: 14px !important;
	}

	body.single-product .sc-product-gallery .flex-control-thumbs {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
		gap: 8px !important;
	}

	body.single-product .sc-product-gallery .flex-control-thumbs img {
		height: 72px !important;
	}

	body.single-product .sc-product-summary .product_title {
		font-size: clamp(38px, 13vw, 52px) !important;
	}

	body.single-product .sc-product-after {
		margin-top: 48px !important;
	}

	body.single-product .sc-product-after ul.products {
		grid-template-columns: 1fr !important;
	}
}

/* ==========================================================
   Street Commerce 1.7.9 — ícone hamburguer mobile com espaçamento corrigido
   ========================================================== */

/*
 * A galeria passou a usar markup próprio para não depender das larguras,
 * floats e cálculos do FlexSlider do WooCommerce. Isso evita a coluna
 * espremida observada em alguns ambientes com cache/otimização de CSS.
 */
body.single-product .sc-product-page .sc-standard-page,
body.single-product .sc-woocommerce-page > .sc-container {
	width: min(calc(100% - 48px), 1440px) !important;
	max-width: 1440px !important;
}

body.single-product .sc-product-main {
	display: grid !important;
	grid-template-columns: minmax(700px, 1.28fr) minmax(380px, 0.72fr) !important;
	align-items: start !important;
	gap: clamp(30px, 3vw, 46px) !important;
	width: 100% !important;
	max-width: none !important;
}

body.single-product .sc-product-gallery {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
}

body.single-product .sc-custom-product-gallery {
	position: sticky;
	top: 28px;
	display: block;
	width: 100%;
	max-width: none;
	min-width: 0;
	padding: clamp(12px, 1.5vw, 18px);
	background: #fff;
	border: 1px solid var(--sc-line);
	border-radius: 24px;
	box-shadow: 0 22px 55px rgba(7, 13, 31, 0.09);
	box-sizing: border-box;
}

body.admin-bar.single-product .sc-custom-product-gallery,
body.admin-bar.single-product .sc-product-summary {
	top: 60px !important;
}

body.single-product .sc-custom-product-gallery__stage {
	position: relative;
	display: grid;
	place-items: center;
	width: 100%;
	height: clamp(700px, 60vw, 900px);
	min-height: 0;
	aspect-ratio: auto;
	padding: clamp(10px, 1.4vw, 18px);
	background: #f5f6f8;
	border-radius: 18px;
	overflow: hidden;
	box-sizing: border-box;
}

body.single-product .sc-custom-product-gallery__stage .onsale {
	position: absolute !important;
	z-index: 3;
	top: 16px !important;
	left: 16px !important;
	min-width: auto !important;
	min-height: auto !important;
	margin: 0 !important;
	padding: 8px 11px !important;
	color: #fff !important;
	background: var(--sc-navy) !important;
	border-radius: 999px !important;
	font-size: 9px !important;
	font-weight: 900 !important;
	letter-spacing: 0.08em !important;
	line-height: 1 !important;
	text-transform: uppercase !important;
}

body.single-product .sc-custom-product-gallery__main-link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-width: 0;
	color: var(--sc-ink);
	outline-offset: 5px;
}

body.single-product .sc-custom-product-gallery__main-image {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	margin: 0 auto !important;
	border: 0 !important;
	border-radius: 12px !important;
	object-fit: contain !important;
	object-position: center !important;
	transition: opacity 140ms ease, transform 220ms ease;
}

body.single-product .sc-custom-product-gallery__main-link:hover .sc-custom-product-gallery__main-image {
	transform: scale(1.015);
}

body.single-product .sc-custom-product-gallery__main-image.is-changing {
	opacity: 0.35;
}

body.single-product .sc-custom-product-gallery__zoom {
	position: absolute;
	top: 0;
	right: 0;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	color: var(--sc-ink);
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(7, 13, 31, 0.08);
	border-radius: 50%;
	box-shadow: 0 8px 22px rgba(7, 13, 31, 0.08);
}

body.single-product .sc-custom-product-gallery__zoom svg {
	width: 22px;
	height: 22px;
	stroke: currentColor;
	stroke-width: 2;
}

body.single-product .sc-custom-product-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	width: 100%;
	margin-top: 14px;
}

body.single-product .sc-custom-product-gallery__thumb {
	display: grid;
	place-items: center;
	width: 100%;
	min-width: 0;
	aspect-ratio: 1 / 1;
	padding: 7px;
	background: #f5f6f8;
	border: 2px solid transparent;
	border-radius: 13px;
	cursor: pointer;
	overflow: hidden;
	transition: border-color 160ms ease, background 160ms ease;
}

body.single-product .sc-custom-product-gallery__thumb:hover,
body.single-product .sc-custom-product-gallery__thumb.is-active {
	background: #fff;
	border-color: var(--sc-navy);
}

body.single-product .sc-custom-product-gallery__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 94px;
	margin: auto;
	object-fit: contain;
}

body.single-product .sc-product-summary {
	position: sticky !important;
	top: 28px !important;
	width: 100% !important;
	min-width: 0 !important;
	max-width: none !important;
	padding-top: 8px !important;
}

body.single-product .sc-product-summary .product_title {
	font-size: clamp(34px, 3vw, 52px) !important;
}

@media (min-width: 1280px) {
	body.single-product .sc-product-main {
		grid-template-columns: minmax(760px, 1.32fr) minmax(390px, 0.68fr) !important;
		gap: 38px !important;
	}

	body.single-product .sc-custom-product-gallery__stage {
		height: 820px;
	}
}

@media (max-width: 1120px) {
	body.single-product .sc-product-main {
		grid-template-columns: minmax(520px, 1.08fr) minmax(340px, 0.92fr) !important;
		gap: 30px !important;
	}

	body.single-product .sc-custom-product-gallery__stage {
		height: 680px;
		min-height: 0;
	}
}

@media (max-width: 960px) {
	body.single-product .sc-product-page .sc-standard-page,
	body.single-product .sc-woocommerce-page > .sc-container {
		width: min(calc(100% - 32px), 820px) !important;
	}

	body.single-product .sc-product-main {
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 30px !important;
	}

	body.single-product .sc-custom-product-gallery,
	body.single-product .sc-product-summary {
		position: static !important;
	}

	body.single-product .sc-custom-product-gallery__stage {
		height: clamp(500px, 85vw, 700px);
		min-height: 0;
		aspect-ratio: auto;
	}
}

@media (max-width: 640px) {
	body.single-product .sc-product-page .sc-standard-page,
	body.single-product .sc-woocommerce-page > .sc-container {
		width: min(calc(100% - 24px), 100%) !important;
	}

	body.single-product .sc-custom-product-gallery {
		padding: 11px;
		border-radius: 18px;
	}

	body.single-product .sc-custom-product-gallery__stage {
		height: 430px;
		min-height: 0;
		aspect-ratio: auto;
		padding: 16px;
		border-radius: 14px;
	}

	body.single-product .sc-custom-product-gallery__thumbs {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 8px;
	}

	body.single-product .sc-custom-product-gallery__zoom {
		width: 40px;
		height: 40px;
	}
}


/* Variation support */
body.single-product .sc-product-summary form.cart.variations_form {
	padding: 24px !important;
}

body.single-product .sc-product-summary .variations {
	width: 100%;
	margin: 0 0 18px;
	border: 0;
	border-collapse: separate;
	border-spacing: 0 12px;
}

body.single-product .sc-product-summary .variations tbody,
body.single-product .sc-product-summary .variations tr,
body.single-product .sc-product-summary .variations td,
body.single-product .sc-product-summary .variations th {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	text-align: left;
}

body.single-product .sc-product-summary .variations th.label {
	margin-bottom: 8px;
}

body.single-product .sc-product-summary .variations th.label label {
	display: inline-block;
	color: var(--sc-ink);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

body.single-product .sc-product-summary .variations td.value {
	position: relative;
}

body.single-product .sc-product-summary .variations select {
	width: 100%;
	min-height: 52px;
	padding: 0 44px 0 16px;
	color: var(--sc-ink);
	background: #f5f6f8;
	border: 1px solid var(--sc-line);
	border-radius: 12px;
	box-shadow: none;
	font-size: 14px;
	font-weight: 700;
	appearance: none;
	-webkit-appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--sc-ink) 50%), linear-gradient(135deg, var(--sc-ink) 50%, transparent 50%);
	background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

body.single-product .sc-product-summary .variations select:focus {
	outline: none;
	border-color: var(--sc-navy);
	box-shadow: 0 0 0 3px rgba(13, 20, 38, 0.08);
}

body.single-product .sc-product-summary .reset_variations {
	display: inline-flex;
	align-items: center;
	margin-top: 10px;
	color: #6b7385;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

body.single-product .sc-product-summary .single_variation_wrap {
	display: block;
	margin-top: 10px;
}

body.single-product .sc-product-summary .woocommerce-variation {
	margin-bottom: 14px;
	padding: 14px 16px;
	background: #f7f8fb;
	border: 1px solid var(--sc-line);
	border-radius: 12px;
}

body.single-product .sc-product-summary .woocommerce-variation-price .price {
	margin-bottom: 0 !important;
	font-size: 28px !important;
}

body.single-product .sc-product-summary .woocommerce-variation-availability,
body.single-product .sc-product-summary .woocommerce-variation-description {
	margin-top: 8px;
	color: #697287;
	font-size: 13px;
	line-height: 1.6;
}

body.single-product .sc-product-summary .single_variation_wrap .woocommerce-variation-add-to-cart {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

body.single-product .sc-product-summary .single_variation_wrap .woocommerce-variation-add-to-cart .quantity {
	margin: 0 !important;
}

body.single-product .sc-product-summary .single_variation_wrap .single_add_to_cart_button {
	flex: 1 1 240px;
}

@media (max-width: 640px) {
	body.single-product .sc-product-summary .single_variation_wrap .woocommerce-variation-add-to-cart {
		align-items: stretch;
	}

	body.single-product .sc-product-summary .single_variation_wrap .single_add_to_cart_button {
		width: 100%;
		flex-basis: 100%;
	}
}


/* Street Commerce 1.7.4 — sem abas e relacionados corrigidos */

body.single-product .sc-product-after .woocommerce-tabs,
body.single-product .woocommerce div.product .woocommerce-tabs {
	display: none !important;
}

body.single-product .sc-product-after {
	display: block !important;
	width: 100% !important;
}

body.single-product .sc-product-after .related.products,
body.single-product .sc-product-after .upsells.products {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	margin-top: 56px !important;
}

body.single-product .sc-product-after .related.products > h2,
body.single-product .sc-product-after .upsells.products > h2 {
	display: block !important;
	width: 100% !important;
	margin: 0 0 24px !important;
	font-size: clamp(30px, 3.2vw, 46px) !important;
	line-height: 1.05 !important;
}

body.single-product .sc-product-after ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 22px !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

body.single-product .sc-product-after ul.products li.product {
	min-width: 0 !important;
}

body.single-product .sc-product-after ul.products li.product .button {
	white-space: nowrap;
}

@media (max-width: 960px) {
	body.single-product .sc-product-after ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 640px) {
	body.single-product .sc-product-after .related.products > h2,
	body.single-product .sc-product-after .upsells.products > h2 {
		font-size: clamp(28px, 8vw, 38px) !important;
	}

	body.single-product .sc-product-after ul.products {
		grid-template-columns: 1fr !important;
	}
}


/* ==========================================================
   Street Commerce 1.7.9 — ícone hamburguer mobile com espaçamento corrigido
   ========================================================== */
body.single-product .sc-product-breadcrumb .woocommerce-breadcrumb {
	padding: 14px 18px;
	background: rgba(255,255,255,0.9);
	border-radius: 14px;
	box-shadow: 0 10px 22px rgba(7,13,31,0.04);
}

body.single-product .sc-product-summary {
	padding: clamp(24px, 2.2vw, 30px) !important;
	background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,251,253,0.98) 100%);
	border: 1px solid rgba(7,13,31,0.08);
	border-radius: 24px;
	box-shadow: 0 22px 55px rgba(7,13,31,0.08);
}

body.single-product .sc-product-summary__topline {
	margin-bottom: 18px;
}

body.single-product .sc-product-category-label {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	color: var(--sc-navy);
	background: #eef2f8;
	border-radius: 999px;
	font-size: 10px;
	letter-spacing: 0.12em;
}

body.single-product .sc-product-summary .sc-wishlist-button--single {
	height: 42px;
	padding: 0 15px;
	background: rgba(255,255,255,0.96);
	box-shadow: 0 8px 18px rgba(7,13,31,0.05);
}

body.single-product .sc-product-summary .product_title {
	margin-bottom: 16px !important;
	letter-spacing: -0.06em;
}

body.single-product .sc-product-summary .price {
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px !important;
}

body.single-product .sc-product-summary .price del {
	margin-right: 0;
	margin-bottom: 4px;
}

body.single-product .sc-product-summary .woocommerce-product-details__short-description {
	padding: 16px 18px;
	background: #f5f7fb;
	border: 1px solid rgba(7,13,31,0.06);
	border-radius: 16px;
	font-size: 15px;
	line-height: 1.75;
}

body.single-product .sc-product-summary form.cart,
body.single-product .sc-product-summary form.cart.variations_form {
	margin-top: 22px !important;
	padding: 24px !important;
	background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%) !important;
	border: 1px solid rgba(7,13,31,0.08) !important;
	border-radius: 20px !important;
	box-shadow: 0 16px 38px rgba(7,13,31,0.06) !important;
}

body.single-product .sc-product-summary .variations {
	margin-bottom: 20px;
	border-spacing: 0 14px;
}

body.single-product .sc-product-summary .variations th.label label {
	font-size: 11px;
	letter-spacing: 0.1em;
}

body.single-product .sc-product-summary .variations select {
	min-height: 56px;
	background-color: #fff;
	border-radius: 14px;
	font-size: 15px;
}

body.single-product .sc-product-summary .woocommerce-variation {
	padding: 16px 18px;
	background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
	border-radius: 14px;
}

body.single-product .sc-product-summary .single_variation_wrap .woocommerce-variation-add-to-cart {
	gap: 12px;
}

body.single-product .sc-product-summary .single_variation_wrap .single_add_to_cart_button,
body.single-product .sc-product-summary form.cart .single_add_to_cart_button {
	min-height: 56px;
	padding: 0 24px !important;
	border-radius: 14px !important;
	box-shadow: 0 14px 28px rgba(12,18,38,0.18);
	font-size: 13px !important;
	font-weight: 900 !important;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

body.single-product .sc-product-summary form.cart .quantity,
body.single-product .sc-product-summary .single_variation_wrap .quantity {
	height: 56px;
	border-radius: 14px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

body.single-product .sc-product-summary form.cart .quantity .qty,
body.single-product .sc-product-summary .single_variation_wrap .quantity .qty {
	min-height: 54px;
	font-size: 16px;
}

body.single-product .sc-product-summary .product_meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
	padding-top: 18px;
}

body.single-product .sc-product-summary .product_meta > span {
	display: inline-flex;
	align-items: center;
	padding: 10px 12px;
	background: #f5f7fb;
	border: 1px solid rgba(7,13,31,0.06);
	border-radius: 12px;
	color: #5e677d;
	font-size: 12px;
}

body.single-product .sc-product-summary .product_meta a {
	margin-left: 4px;
}

body.single-product .sc-product-benefits {
	gap: 12px;
	margin-top: 18px;
}

body.single-product .sc-product-benefits > div {
	padding: 14px 15px;
	background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
	border: 1px solid rgba(7,13,31,0.07);
	border-radius: 15px;
	box-shadow: 0 10px 24px rgba(7,13,31,0.04);
}

body.single-product .sc-product-benefits > div > span {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	box-shadow: 0 10px 18px rgba(12,18,38,0.18);
}

body.single-product .sc-product-support-note {
	grid-template-columns: 44px 1fr;
	gap: 12px;
	margin-top: 18px;
	padding: 16px;
	background: linear-gradient(135deg, #0f1630 0%, #1a2447 100%);
	border: 0;
	border-radius: 16px;
	box-shadow: 0 16px 34px rgba(10,16,34,0.22);
}

body.single-product .sc-product-support-note > span {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: rgba(255,255,255,0.14);
	color: #fff;
	font-size: 18px;
}

body.single-product .sc-product-support-note strong,
body.single-product .sc-product-support-note small {
	color: #fff;
}

body.single-product .sc-product-support-note small {
	opacity: 0.8;
	font-size: 11px;
}

body.single-product .sc-product-after {
	margin-top: 60px !important;
}

body.single-product .sc-product-after .related.products > h2,
body.single-product .sc-product-after .upsells.products > h2 {
	margin-bottom: 22px !important;
	letter-spacing: -0.05em !important;
}

body.single-product .sc-product-after ul.products li.product {
	padding: 14px 14px 16px !important;
	border-radius: 18px !important;
	box-shadow: 0 12px 28px rgba(7,13,31,0.05) !important;
}

body.single-product .sc-product-after ul.products li.product a img {
	border-radius: 14px;
}

body.single-product .sc-product-after ul.products li.product .button {
	border-radius: 10px !important;
}

@media (max-width: 960px) {
	body.single-product .sc-product-summary {
		padding: 22px !important;
	}
}

@media (max-width: 640px) {
	body.single-product .sc-product-summary {
		padding: 18px !important;
		border-radius: 18px;
	}

	body.single-product .sc-product-summary .woocommerce-product-details__short-description {
		padding: 14px;
	}

	body.single-product .sc-product-summary form.cart,
	body.single-product .sc-product-summary form.cart.variations_form {
		padding: 18px !important;
		border-radius: 16px !important;
	}
}


/* Street Commerce 1.7.6 — bloco lateral menos achatado */
body.single-product .sc-product-summary {
	min-width: 0 !important;
	max-width: 460px !important;
	margin-left: auto !important;
}

body.single-product .sc-product-summary .product_title {
	max-width: 100% !important;
	word-break: normal;
	overflow-wrap: anywhere;
}

body.single-product .sc-product-summary .price,
body.single-product .sc-product-summary .woocommerce-product-details__short-description,
body.single-product .sc-product-summary form.cart,
body.single-product .sc-product-summary .product_meta,
body.single-product .sc-product-summary .sc-product-benefits,
body.single-product .sc-product-summary .sc-product-support-note {
	max-width: 100% !important;
}

@media (min-width: 1280px) {
	body.single-product .sc-product-summary {
		max-width: 470px !important;
	}
}

@media (max-width: 1120px) {
	body.single-product .sc-product-summary {
		max-width: 420px !important;
	}
}

@media (max-width: 960px) {
	body.single-product .sc-product-summary {
		max-width: none !important;
		margin-left: 0 !important;
	}
}


/* ==========================================================
   Street Commerce 1.7.7 — menu mobile premium
   ========================================================== */
@media (max-width: 960px) {
	body.sc-menu-open::before {
		content: "";
		position: fixed;
		inset: 0;
		z-index: 118;
		background: rgba(2, 6, 18, 0.48);
		backdrop-filter: blur(3px);
	}

	.sc-header {
		z-index: 120;
	}

	.sc-header__inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
		gap: 10px;
		min-height: 72px;
	}

	.sc-brand__fallback {
		max-width: 100%;
		gap: 10px;
	}

	.sc-brand__name {
		max-width: 140px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.sc-header__actions {
		gap: 6px;
	}

	.sc-icon-link {
		width: 31px;
		height: 31px;
	}

	.sc-menu-toggle {
		position: relative;
		display: inline-grid;
		place-items: center;
		width: 40px;
		height: 40px;
		padding: 0;
		color: #fff;
		background: transparent;
		border: 0;
		border-radius: 12px;
		cursor: pointer;
		z-index: 121;
	}

	.sc-menu-toggle span:not(.screen-reader-text) {
		width: 22px;
		height: 2px;
		margin: 0;
		border-radius: 999px;
		transform-origin: center;
		transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
	}

	.sc-menu-toggle span:not(.screen-reader-text) + span:not(.screen-reader-text) {
		margin-top: 3px;
	}

	body.sc-menu-open .sc-menu-toggle span:nth-child(2) {
		transform: translateY(5px) rotate(45deg);
	}

	body.sc-menu-open .sc-menu-toggle span:nth-child(3) {
		opacity: 0;
	}

	body.sc-menu-open .sc-menu-toggle span:nth-child(4) {
		transform: translateY(-5px) rotate(-45deg);
	}

	.sc-nav {
		position: fixed;
		top: 72px;
		right: 0;
		left: auto;
		bottom: 0;
		display: block;
		width: min(340px, calc(100vw - 20px));
		max-width: 100vw;
		height: calc(100dvh - 72px);
		padding: 18px 18px 24px;
		background: linear-gradient(180deg, rgba(3, 7, 20, 0.98) 0%, rgba(3, 7, 20, 1) 100%);
		border-left: 1px solid rgba(255,255,255,0.08);
		border-top: 1px solid rgba(255,255,255,0.06);
		border-top-left-radius: 22px;
		box-shadow: -22px 0 48px rgba(1, 4, 14, 0.34);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translate3d(18px, 0, 0);
		transition: opacity 180ms ease, transform 220ms ease, visibility 220ms ease;
		z-index: 119;
	}

	.sc-nav.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translate3d(0, 0, 0);
	}

	.sc-nav__list,
	.sc-nav ul {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.sc-nav li {
		width: 100%;
	}

	.sc-nav a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 19px 6px;
		color: #fff;
		border-bottom: 1px solid rgba(255,255,255,0.08);
		font-size: 14px;
		font-weight: 850;
		letter-spacing: 0.08em;
		line-height: 1.2;
		text-transform: uppercase;
	}

	.sc-nav a::after {
		display: none !important;
	}

	.sc-nav .current-menu-item > a,
	.sc-nav a:hover {
		color: #fff;
		background: rgba(255,255,255,0.03);
	}

	.sc-nav .sub-menu {
		display: grid;
		gap: 0;
		padding: 6px 0 6px 14px;
		margin-top: -4px;
	}

	.sc-nav .sub-menu a {
		padding: 12px 6px;
		font-size: 12px;
		color: rgba(255,255,255,0.82);
		text-transform: none;
		letter-spacing: 0.04em;
	}
}

@media (max-width: 640px) {
	.sc-header__inner {
		min-height: 70px;
	}

	.sc-brand__mark {
		width: 34px;
		height: 34px;
		border-radius: 10px;
	}

	.sc-brand__name {
		max-width: 124px;
		font-size: 12px;
	}

	.sc-nav {
		top: 70px;
		width: min(320px, calc(100vw - 12px));
		height: calc(100dvh - 70px);
		padding: 14px 14px 22px;
		border-top-left-radius: 18px;
	}

	.sc-nav a {
		padding: 18px 4px;
		font-size: 13px;
	}
}


/* Street Commerce 1.7.9 — corrige espaçamento do hambúrguer mobile */
@media (max-width: 960px) {
	.sc-menu-toggle {
		display: inline-flex !important;
		flex-direction: column !important;
		justify-content: center !important;
		align-items: center !important;
		gap: 4px !important;
		width: 36px !important;
		height: 36px !important;
		min-width: 36px !important;
		padding: 0 !important;
		line-height: 0 !important;
	}

	.sc-menu-toggle .screen-reader-text {
		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;
	}

	.sc-menu-toggle span:not(.screen-reader-text) {
		display: block !important;
		width: 20px !important;
		height: 2px !important;
		margin: 0 !important;
		flex: 0 0 2px !important;
		border-radius: 999px !important;
		transform-origin: center !important;
	}

	.sc-menu-toggle span:not(.screen-reader-text) + span:not(.screen-reader-text) {
		margin-top: 0 !important;
	}

	body.sc-menu-open .sc-menu-toggle span:nth-child(2) {
		transform: translateY(6px) rotate(45deg) !important;
	}

	body.sc-menu-open .sc-menu-toggle span:nth-child(3) {
		opacity: 0 !important;
		transform: scaleX(0.6) !important;
	}

	body.sc-menu-open .sc-menu-toggle span:nth-child(4) {
		transform: translateY(-6px) rotate(-45deg) !important;
	}
}

@media (max-width: 640px) {
	.sc-menu-toggle {
		width: 34px !important;
		height: 34px !important;
		min-width: 34px !important;
		gap: 3px !important;
	}

	.sc-menu-toggle span:not(.screen-reader-text) {
		width: 18px !important;
	}
}


/* ==========================================================
   Street Commerce 1.8.0 — conta, login/cadastro e hero refinados
   ========================================================== */
.sc-header__actions {
	gap: 12px;
}

.sc-account-link {
	text-decoration: none;
}

.sc-page-account .entry-title,
.woocommerce-account .entry-title {
	margin-bottom: 24px;
}

.woocommerce-account .woocommerce {
	display: grid;
	grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after {
	display: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
	float: none;
	width: auto;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	padding: 22px;
	background: linear-gradient(180deg, #0d1326 0%, #141c35 100%);
	border-radius: 24px;
	box-shadow: 0 18px 42px rgba(7,13,31,0.12);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	color: rgba(255,255,255,0.88);
	background: rgba(255,255,255,0.02);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
	color: #0d1326;
	background: #fff;
	border-color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content {
	padding: 28px;
	background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
	border: 1px solid rgba(7,13,31,0.08);
	border-radius: 24px;
	box-shadow: 0 18px 42px rgba(7,13,31,0.08);
}

.woocommerce-account .woocommerce-MyAccount-content > :first-child {
	margin-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button,
.woocommerce-account .woocommerce-MyAccount-content .button,
.sc-account-auth .button,
.sc-account-auth button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 20px;
	color: #fff !important;
	background: #0d1326 !important;
	border: 1px solid #0d1326 !important;
	border-radius: 14px !important;
	box-shadow: 0 14px 26px rgba(13,19,38,0.18);
	font-weight: 800 !important;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error,
.sc-account-auth .woocommerce-message,
.sc-account-auth .woocommerce-info,
.sc-account-auth .woocommerce-error {
	margin: 0 0 18px;
	padding: 16px 18px 16px 48px;
	border-radius: 16px;
	border: 1px solid rgba(7,13,31,0.08);
	background: #fff;
}

.woocommerce-account table.shop_table {
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
	overflow: hidden;
	border: 1px solid rgba(7,13,31,0.08);
	border-radius: 18px;
}

.woocommerce-account table.shop_table th,
.woocommerce-account table.shop_table td {
	padding: 14px 16px;
}

.woocommerce-account form .form-row input.input-text,
.woocommerce-account form .form-row textarea,
.woocommerce-account form .form-row select,
.sc-account-auth form .form-row input.input-text,
.sc-account-auth form .form-row textarea,
.sc-account-auth form .form-row select {
	min-height: 52px;
	padding: 0 16px;
	background: #fff;
	border: 1px solid rgba(7,13,31,0.1);
	border-radius: 14px;
	box-shadow: none;
}

.sc-account-auth {
	display: grid;
	gap: 28px;
}

.sc-account-auth__intro {
	padding: 30px;
	color: #fff;
	background: linear-gradient(135deg, #0d1326 0%, #1d294c 100%);
	border-radius: 28px;
	box-shadow: 0 22px 48px rgba(8,14,28,0.18);
}

.sc-account-auth__eyebrow {
	display: inline-flex;
	align-items: center;
	padding: 7px 12px;
	margin-bottom: 14px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.sc-account-auth__intro h1 {
	margin: 0 0 10px;
	color: #fff;
	font-size: clamp(30px, 3.4vw, 48px);
	line-height: 1.02;
}

.sc-account-auth__intro p {
	margin: 0;
	color: rgba(255,255,255,0.76);
	max-width: 620px;
}

.sc-account-auth__benefits {
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.sc-account-auth__benefits li {
	position: relative;
	padding-left: 26px;
	color: rgba(255,255,255,0.88);
}

.sc-account-auth__benefits li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 999px;
}

.sc-account-auth__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.sc-account-auth__grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sc-account-card {
	padding: 28px;
	background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
	border: 1px solid rgba(7,13,31,0.08);
	border-radius: 24px;
	box-shadow: 0 18px 42px rgba(7,13,31,0.08);
}

.sc-account-card h2 {
	margin: 0 0 20px;
	font-size: 28px;
	line-height: 1.05;
}

.sc-account-card .form-row {
	margin-bottom: 14px;
}

.sc-account-card__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 6px;
}

.sc-account-card .woocommerce-form__label-for-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
}

.sc-account-card .woocommerce-LostPassword {
	margin: 8px 0 0;
}

.sc-account-card__helper {
	margin: 0 0 14px;
	padding: 14px 16px;
	color: #5f677a;
	background: #f0f3f8;
	border-radius: 14px;
	font-size: 14px;
}

@media (max-width: 960px) {
	.woocommerce-account .woocommerce,
	.sc-account-auth__grid--two {
		grid-template-columns: 1fr;
	}

	.woocommerce-account .woocommerce-MyAccount-content,
	.woocommerce-account .woocommerce-MyAccount-navigation,
	.sc-account-auth__intro,
	.sc-account-card {
		padding: 22px;
		border-radius: 20px;
	}

	.sc-header__actions {
		gap: 8px;
	}
}

@media (max-width: 640px) {
	.sc-account-auth__intro,
	.sc-account-card,
	.woocommerce-account .woocommerce-MyAccount-content,
	.woocommerce-account .woocommerce-MyAccount-navigation {
		padding: 18px;
		border-radius: 18px;
	}

	.woocommerce-account .woocommerce-MyAccount-content,
	.sc-account-card {
		overflow-x: auto;
	}

	.sc-account-card__actions {
		align-items: stretch;
	}

	.sc-account-card__actions .button,
	.sc-account-card__actions button.button {
		width: 100%;
	}

	.sc-header__actions {
		gap: 6px;
	}
}


/* ==========================================================
   Street Commerce 1.8.1 — login/cadastro premium corrigido
   ========================================================== */
.woocommerce-account .woocommerce > .sc-account-auth {
	grid-column: 1 / -1;
	width: 100%;
}

.sc-account-auth {
	grid-template-columns: 1fr;
	align-items: start;
}

.sc-account-auth--with-register .sc-account-auth__intro {
	grid-column: 1 / -1;
}

.sc-account-auth__intro {
	width: 100%;
	min-width: 0;
}

.sc-account-auth__grid {
	width: 100%;
	grid-template-columns: minmax(0, 1fr);
	align-items: start;
}

.sc-account-auth__grid--two {
	grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.sc-account-card {
	width: 100%;
	min-width: 0;
}

.sc-account-card__header {
	margin-bottom: 18px;
}

.sc-account-card__header h2 {
	margin: 0 0 8px;
}

.sc-account-card__header p {
	margin: 0;
	color: #5f677a;
	font-size: 14px;
	line-height: 1.6;
}

.sc-account-card form {
	display: grid;
	gap: 0;
}

.sc-account-card .form-row {
	margin-bottom: 16px;
}

.sc-account-card .form-row label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 700;
	color: #0d1326;
}

.sc-account-card .form-row .input-text {
	width: 100%;
}

.sc-account-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 4px;
}

.sc-account-card .woocommerce-form-login__submit,
.sc-account-card--register .button {
	min-width: 180px;
}

.sc-account-card .lost_password {
	margin-top: 14px;
}

.sc-account-card .lost_password a {
	font-size: 14px;
	font-weight: 700;
}

@media (max-width: 960px) {
	.sc-account-auth__grid--two {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.sc-account-card__footer {
		align-items: stretch;
	}

	.sc-account-card .woocommerce-form-login__submit,
	.sc-account-card--register .button {
		width: 100%;
		min-width: 0;
	}
}


/* ==========================================================
   Street Commerce 1.8.3 — carrossel mobile + header sticky
   ========================================================== */
.sc-header {
	transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.sc-header.is-scrolled {
	position: sticky;
	top: 0;
	color: var(--sc-ink);
	background: rgba(255, 255, 255, 0.96) !important;
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(8, 14, 28, 0.08);
	box-shadow: 0 12px 30px rgba(7, 13, 31, 0.08);
}

.street-commerce-home .sc-header {
	position: sticky;
	top: 0;
	margin-bottom: -86px;
}

.street-commerce-home .sc-header.is-scrolled {
	margin-bottom: 0;
}

body.admin-bar .sc-header.is-scrolled {
	top: 32px;
}

.sc-header.is-scrolled .sc-brand__name,
.sc-header.is-scrolled .sc-nav a,
.sc-header.is-scrolled .sc-icon-link,
.sc-header.is-scrolled .sc-menu-toggle {
	color: var(--sc-ink);
}

.sc-header.is-scrolled .sc-brand__mark {
	color: #fff;
	background: var(--sc-navy);
}

.sc-header.is-scrolled .sc-nav a::after {
	background: var(--sc-ink);
}

.sc-products-carousel {
	position: relative;
}

.sc-products-carousel__viewport {
	position: relative;
}

.sc-carousel-button {
	display: none;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4;
	width: 34px;
	height: 34px;
	padding: 0;
	color: var(--sc-ink);
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(8, 14, 28, 0.08);
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(7, 13, 31, 0.12);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.sc-carousel-button span {
	display: block;
	transform: translateY(-1px);
}

.sc-carousel-button:disabled {
	opacity: 0.35;
	cursor: default;
}

.sc-carousel-button--prev {
	left: -12px;
}

.sc-carousel-button--next {
	right: -12px;
}

@media (max-width: 960px) {
	body.admin-bar .sc-header.is-scrolled {
		top: 46px;
	}

	.sc-products-section--best-selling .sc-products-carousel.is-carousel-active .sc-carousel-button {
		display: inline-flex;
	}

	.sc-products-section--best-selling .woocommerce ul.products,
	.sc-products-section--best-selling .sc-demo-products {
		display: flex !important;
		flex-wrap: nowrap;
		grid-template-columns: none !important;
		gap: 14px;
		overflow-x: auto;
		padding: 2px 2px 8px;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.sc-products-section--best-selling .woocommerce ul.products::-webkit-scrollbar,
	.sc-products-section--best-selling .sc-demo-products::-webkit-scrollbar {
		display: none;
	}

	.sc-products-section--best-selling .woocommerce ul.products > li.product,
	.sc-products-section--best-selling .sc-demo-products > .sc-demo-product {
		flex: 0 0 calc(50% - 7px);
		min-width: 152px;
		scroll-snap-align: start;
	}
}

@media (max-width: 640px) {
	.sc-header__inner {
		min-height: 74px;
	}

	.street-commerce-home .sc-header {
		margin-bottom: -74px;
	}

	.sc-carousel-button {
		width: 30px;
		height: 30px;
		font-size: 22px;
	}

	.sc-carousel-button--prev {
		left: -8px;
	}

	.sc-carousel-button--next {
		right: -8px;
	}
}


/* ==========================================================
   Street Commerce 1.8.4 — carrossel best sellers no desktop
   ========================================================== */
.sc-products-section--best-selling .woocommerce ul.products,
.sc-products-section--best-selling .sc-demo-products {
	display: flex !important;
	flex-wrap: nowrap;
	grid-template-columns: none !important;
	gap: 22px;
	overflow-x: auto;
	padding: 2px 2px 10px;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.sc-products-section--best-selling .woocommerce ul.products::-webkit-scrollbar,
.sc-products-section--best-selling .sc-demo-products::-webkit-scrollbar {
	display: none;
}

.sc-products-section--best-selling .woocommerce ul.products > li.product,
.sc-products-section--best-selling .sc-demo-products > .sc-demo-product {
	flex: 0 0 calc((100% - 44px) / 3.2);
	min-width: 262px;
	scroll-snap-align: start;
}

.sc-products-section--best-selling .sc-products-carousel.is-carousel-active .sc-carousel-button {
	display: inline-flex;
}

@media (max-width: 1200px) {
	.sc-products-section--best-selling .woocommerce ul.products > li.product,
	.sc-products-section--best-selling .sc-demo-products > .sc-demo-product {
		flex-basis: calc((100% - 22px) / 2.7);
		min-width: 250px;
	}
}

@media (max-width: 960px) {
	.sc-products-section--best-selling .woocommerce ul.products,
	.sc-products-section--best-selling .sc-demo-products {
		gap: 14px;
	}

	.sc-products-section--best-selling .woocommerce ul.products > li.product,
	.sc-products-section--best-selling .sc-demo-products > .sc-demo-product {
		flex: 0 0 calc((100% - 14px) / 2.15);
		min-width: 152px;
	}
}

@media (max-width: 640px) {
	.sc-products-section--best-selling .woocommerce ul.products > li.product,
	.sc-products-section--best-selling .sc-demo-products > .sc-demo-product {
		flex-basis: calc(100% - 72px);
		min-width: 210px;
	}
}


/* ==========================================================
   Street Commerce 1.8.5 — avaliações Google configuráveis
   ========================================================== */
.sc-google-reviews-section {
	padding-top: clamp(58px, 7vw, 92px);
	padding-bottom: clamp(64px, 8vw, 104px);
	background: #eef2f7;
}

.sc-google-reviews-heading {
	margin-bottom: 30px;
}

.sc-google-reviews-heading > a {
	white-space: nowrap;
}

.sc-google-reviews-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.72fr) minmax(0, 2.28fr);
	gap: 22px;
	align-items: stretch;
}

.sc-google-reviews-layout--summary-only {
	grid-template-columns: minmax(280px, 520px);
	justify-content: center;
}

.sc-google-rating-card,
.sc-google-review-card {
	background: #fff;
	border: 1px solid rgba(7, 13, 31, 0.07);
	border-radius: 22px;
	box-shadow: 0 16px 38px rgba(7, 13, 31, 0.07);
}

.sc-google-rating-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 28px;
}

.sc-google-rating-card__brand {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 18px;
}

.sc-google-rating-card__brand > span,
.sc-google-review-card__google {
	font-weight: 950;
	background: linear-gradient(135deg, #4285f4 0 28%, #ea4335 28% 49%, #fbbc05 49% 70%, #34a853 70% 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.sc-google-rating-card__brand > span {
	font-size: 28px;
	line-height: 1;
}

.sc-google-rating-card__brand strong {
	font-size: 17px;
	letter-spacing: -0.02em;
}

.sc-google-rating-card h3 {
	margin: 0 0 16px;
	font-size: clamp(22px, 2vw, 30px);
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.sc-google-rating-card__score {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 4px;
}

.sc-google-rating-card__score > strong {
	font-size: 38px;
	line-height: 1;
	letter-spacing: -0.05em;
}

.sc-google-stars {
	display: inline-flex;
	gap: 2px;
}

.sc-google-stars span {
	color: #d9dde6;
	font-size: 19px;
	line-height: 1;
}

.sc-google-stars span.is-filled {
	color: #f4b400;
}

.sc-google-stars--small span {
	font-size: 15px;
}

.sc-google-rating-card__count,
.sc-google-rating-card__pending {
	margin: 7px 0 22px;
	color: var(--sc-muted);
	font-size: 13px;
}

.sc-google-rating-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	margin-top: auto;
	padding: 0 18px;
	color: #fff;
	background: var(--sc-navy);
	border-radius: 13px;
	box-shadow: 0 12px 24px rgba(7, 13, 31, 0.15);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-align: center;
	text-transform: uppercase;
}

.sc-google-rating-card__button--setup {
	background: #536079;
}

.sc-google-review-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.sc-google-review-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 24px;
}

.sc-google-review-card__top {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	align-items: center;
	gap: 11px;
	margin-bottom: 16px;
}

.sc-google-review-card__avatar {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	color: #fff;
	background: linear-gradient(135deg, #17203d, #34436e);
	border-radius: 999px;
	font-size: 15px;
	font-weight: 900;
}

.sc-google-review-card__top strong,
.sc-google-review-card__top span {
	display: block;
}

.sc-google-review-card__top strong {
	overflow: hidden;
	font-size: 13px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sc-google-review-card__top div > span {
	color: var(--sc-muted);
	font-size: 10px;
}

.sc-google-review-card__google {
	font-size: 21px;
}

.sc-google-review-card > p {
	margin: 14px 0 0;
	color: #3f485b;
	font-size: 13px;
	line-height: 1.75;
}

@media (max-width: 1080px) {
	.sc-google-reviews-layout {
		grid-template-columns: minmax(250px, 0.85fr) minmax(0, 2.15fr);
	}

	.sc-google-review-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.sc-google-reviews-layout,
	.sc-google-reviews-layout--summary-only {
		grid-template-columns: 1fr;
	}

	.sc-google-rating-card {
		align-items: center;
		text-align: center;
	}

	.sc-google-rating-card__button {
		max-width: 340px;
	}
}

@media (max-width: 640px) {
	.sc-google-reviews-heading {
		align-items: flex-start;
	}

	.sc-google-reviews-heading > a {
		margin-top: 8px;
	}

	.sc-google-review-cards {
		display: flex;
		gap: 14px;
		overflow-x: auto;
		padding-bottom: 8px;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.sc-google-review-cards::-webkit-scrollbar {
		display: none;
	}

	.sc-google-review-card {
		flex: 0 0 calc(100% - 42px);
		scroll-snap-align: start;
	}

	.sc-google-rating-card,
	.sc-google-review-card {
		border-radius: 18px;
	}

	.sc-google-rating-card {
		padding: 22px;
	}
}


/* ==========================================================
   Street Commerce 1.8.6 — avaliações reais do Google em carrossel
   ========================================================== */
.sc-google-reviews-layout {
	position: relative;
}

.sc-google-review-carousel {
	position: relative;
	min-width: 0;
}

.sc-google-review-cards {
	display: flex;
	grid-template-columns: none;
	gap: 18px;
	overflow-x: auto;
	padding: 2px 2px 10px;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.sc-google-review-cards::-webkit-scrollbar {
	display: none;
}

.sc-google-review-card {
	flex: 0 0 calc((100% - 36px) / 3);
	min-width: 260px;
	scroll-snap-align: start;
}

.sc-google-review-card__avatar--image {
	display: block;
	object-fit: cover;
}

.sc-google-review-card__author-link {
	display: inline-flex;
	border-radius: 999px;
}

.sc-google-review-card__source {
	display: inline-flex;
	align-items: center;
	margin-top: auto;
	padding-top: 16px;
	color: var(--sc-navy);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.sc-google-carousel-button {
	display: none;
	position: absolute;
	top: 50%;
	z-index: 5;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	color: var(--sc-ink);
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(7, 13, 31, 0.08);
	border-radius: 999px;
	box-shadow: 0 12px 28px rgba(7, 13, 31, 0.14);
	font-size: 27px;
	line-height: 1;
	transform: translateY(-50%);
	cursor: pointer;
}

.sc-google-review-carousel.is-active .sc-google-carousel-button {
	display: inline-flex;
}

.sc-google-carousel-button:disabled {
	opacity: 0.34;
	cursor: default;
}

.sc-google-carousel-button--prev {
	left: -13px;
}

.sc-google-carousel-button--next {
	right: -13px;
}

.sc-google-reviews-disclosure {
	grid-column: 2;
	margin: 10px 2px 0;
	color: var(--sc-muted);
	font-size: 10px;
	line-height: 1.55;
}

@media (max-width: 1080px) {
	.sc-google-review-card {
		flex-basis: calc((100% - 18px) / 2);
	}
}

@media (max-width: 820px) {
	.sc-google-reviews-disclosure {
		grid-column: 1;
	}

	.sc-google-review-card {
		flex-basis: calc(100% - 64px);
	}
}

@media (max-width: 640px) {
	.sc-google-review-card {
		flex-basis: calc(100% - 38px);
		min-width: 248px;
	}

	.sc-google-carousel-button {
		width: 32px;
		height: 32px;
		font-size: 23px;
	}

	.sc-google-carousel-button--prev {
		left: -8px;
	}

	.sc-google-carousel-button--next {
		right: -8px;
	}
}

/* Street Commerce 1.9.0 — promoções automáticas */
.sc-scheduled-sale-badge{max-width:calc(100% - 24px);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
body.sc-coupon-popup-open{overflow:hidden}


/* ==========================================================
   Street Commerce 1.10.4 — submenus multinível do menu principal
   Exibe a hierarquia cadastrada no WordPress sem alterar o conteúdo.
   ========================================================== */
@media (min-width: 961px) {
	.sc-nav {
		overflow: visible;
	}

	.sc-nav__list,
	.sc-nav__list > li,
	.sc-nav li.menu-item-has-children {
		overflow: visible;
	}

	/* Primeiro nível do dropdown. */
	.sc-nav__list > li > .sub-menu {
		top: calc(100% - 14px);
		left: 50%;
		transform: translate(-50%, 8px);
		z-index: 130;
	}

	.sc-nav__list > li:hover > .sub-menu,
	.sc-nav__list > li:focus-within > .sub-menu {
		transform: translate(-50%, 0);
	}

	/* Terceiro nível em diante abre ao lado do item pai. */
	.sc-nav .sub-menu .sub-menu {
		top: -9px;
		left: calc(100% + 10px);
		min-width: 220px;
		transform: translate(8px, 0);
		z-index: 131;
	}

	.sc-nav .sub-menu li:hover > .sub-menu,
	.sc-nav .sub-menu li:focus-within > .sub-menu {
		transform: translate(0, 0);
	}

	.sc-nav .sub-menu li {
		position: relative;
	}

	.sc-nav .sub-menu li.menu-item-has-children > a {
		padding-right: 34px;
	}

	/* Pequena seta apenas nos itens que realmente possuem filhos. */
	.sc-nav .sub-menu li.menu-item-has-children > a::before {
		content: "›";
		position: absolute;
		right: 12px;
		top: 50%;
		transform: translateY(-52%);
		font-size: 19px;
		font-weight: 700;
		line-height: 1;
		opacity: 0.72;
	}

	/* Mantém o submenu visível ao atravessar o pequeno espaço até o flyout. */
	.sc-nav .sub-menu li.menu-item-has-children::after {
		content: "";
		position: absolute;
		top: 0;
		left: 100%;
		width: 12px;
		height: 100%;
	}
}

@media (max-width: 960px) {
	/* No drawer mobile, todos os níveis permanecem legíveis em árvore. */
	.sc-nav .sub-menu .sub-menu {
		margin: 0;
		padding-left: 16px;
		border-left: 1px solid rgba(255,255,255,0.08);
	}

	.sc-nav .sub-menu .sub-menu a {
		font-size: 11px;
		opacity: 0.86;
	}
}


/* ==========================================================
   Street Commerce 1.10.5 — vitrine do cliente + grupo VIP
   ========================================================== */
.sc-products-carousel--enabled .woocommerce ul.products,
.sc-products-carousel--enabled .sc-demo-products {
	display: flex !important;
	flex-wrap: nowrap;
	grid-template-columns: none !important;
	gap: 22px;
	overflow-x: auto;
	padding: 2px 2px 12px;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.sc-products-carousel--enabled .woocommerce ul.products::-webkit-scrollbar,
.sc-products-carousel--enabled .sc-demo-products::-webkit-scrollbar {
	display: none;
}

.sc-products-carousel--enabled .woocommerce ul.products > li.product,
.sc-products-carousel--enabled .sc-demo-products > .sc-demo-product {
	flex: 0 0 calc((100% - 66px) / 4);
	min-width: 250px;
	scroll-snap-align: start;
}

.sc-products-carousel--enabled.is-carousel-active .sc-carousel-button {
	display: inline-flex;
}

.sc-vip-section {
	padding: 92px 0 100px;
	background: linear-gradient(135deg, #090d1b 0%, #111a34 100%);
}

.sc-vip {
	max-width: 860px;
	text-align: center;
}

.sc-vip .sc-eyebrow {
	color: rgba(255,255,255,.62);
}

.sc-vip h2 {
	max-width: 780px;
	margin: 10px auto 30px;
	color: #fff;
	font-size: clamp(27px, 3.3vw, 42px);
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.sc-vip__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 28px;
	color: #0a0e1d;
	background: #fff;
	border: 1px solid #fff;
	border-radius: 13px;
	box-shadow: 0 16px 34px rgba(0,0,0,.18);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .05em;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.sc-vip__button:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 38px rgba(0,0,0,.26);
}

.sc-vip__social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 28px;
}

.sc-vip__social a {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	color: #0a0e1d;
	background: #fff;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(0,0,0,.15);
	text-decoration: none;
	transition: transform 180ms ease;
}

.sc-vip__social a:hover {
	transform: translateY(-2px);
}

.sc-vip__social svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sc-vip__social svg .is-fill {
	fill: currentColor;
	stroke: none;
}

@media (max-width: 1200px) {
	.sc-products-carousel--enabled .woocommerce ul.products > li.product,
	.sc-products-carousel--enabled .sc-demo-products > .sc-demo-product {
		flex-basis: calc((100% - 44px) / 3);
		min-width: 235px;
	}
}

@media (max-width: 960px) {
	.sc-products-carousel--enabled .woocommerce ul.products,
	.sc-products-carousel--enabled .sc-demo-products {
		gap: 14px;
	}

	.sc-products-carousel--enabled .woocommerce ul.products > li.product,
	.sc-products-carousel--enabled .sc-demo-products > .sc-demo-product {
		flex-basis: calc((100% - 14px) / 2.15);
		min-width: 170px;
	}
}

@media (max-width: 640px) {
	.sc-products-carousel--enabled .woocommerce ul.products > li.product,
	.sc-products-carousel--enabled .sc-demo-products > .sc-demo-product {
		flex-basis: calc(100% - 68px);
		min-width: 218px;
	}

	.sc-vip-section {
		padding: 70px 0 76px;
	}

	.sc-vip h2 {
		font-size: 28px;
	}
}

/* Street Commerce 1.10.6 — respect the logo saved in Site Identity. */
.sc-brand__fallback--native-logo,
.sc-footer__brand--native-logo {
	gap: 0;
}

.sc-brand__mark--native-logo {
	display: flex;
	width: auto;
	height: auto;
	min-width: 0;
	max-width: 220px;
	border-radius: 0;
	background: transparent !important;
	box-shadow: none;
}

.sc-brand__mark--native-logo img {
	display: block;
	width: auto;
	height: auto;
	max-width: 220px;
	max-height: 58px;
	object-fit: contain;
}

.sc-footer__brand--native-logo .sc-brand__mark--native-logo img {
	max-height: 64px;
}

@media (max-width: 640px) {
	.sc-brand__mark--native-logo,
	.sc-brand__mark--native-logo img {
		max-width: 150px;
		max-height: 48px;
	}
}


/* ==========================================================
   Street Commerce 1.10.7 — preservar home do cliente
   Somente alinhamento do hero aprovado anteriormente.
   ========================================================== */
@media (min-width: 641px) {
	.sc-elementor-hero > .e-con-inner {
		align-items: center !important;
	}

	.sc-elementor-hero .sc-elementor-hero__content,
	.sc-elementor-hero .sc-hero__content,
	.sc-hero--fallback .sc-hero__content {
		margin-inline: auto !important;
		align-items: center !important;
		text-align: center !important;
	}

	.sc-elementor-hero .sc-elementor-hero__text,
	.sc-elementor-hero .sc-elementor-hero__text p,
	.sc-elementor-hero .elementor-widget-text-editor p,
	.sc-hero--fallback .sc-hero__content p {
		margin-inline: auto !important;
		text-align: center !important;
	}

	.sc-elementor-hero .sc-elementor-hero__buttons,
	.sc-elementor-hero .sc-hero__buttons,
	.sc-hero--fallback .sc-hero__buttons {
		justify-content: center !important;
	}
}


/* ==========================================================
   Street Commerce 1.10.8 — acabamento aprovado do hero/footer
   Não altera o conteúdo salvo no Elementor; somente apresentação.
   ========================================================== */

/* O hero aprovado usa apenas o CTA de categorias. */
.sc-elementor-hero .sc-elementor-button--light {
	display: none !important;
}

.sc-elementor-hero .sc-elementor-button--ghost .elementor-button,
.sc-hero--fallback .sc-button--categories {
	color: #070b16 !important;
	background: #fff !important;
	border-color: #fff !important;
	box-shadow: 0 14px 32px rgba(0, 0, 0, .18) !important;
}

.sc-elementor-hero .sc-elementor-button--ghost .elementor-button:hover,
.sc-hero--fallback .sc-button--categories:hover {
	color: #070b16 !important;
	background: #f3f4f7 !important;
	border-color: #f3f4f7 !important;
}

.sc-elementor-hero .sc-elementor-hero__buttons,
.sc-elementor-hero .sc-hero__buttons,
.sc-hero--fallback .sc-hero__buttons {
	justify-content: center !important;
}

/* Rodapé administrável pelo Personalizar. */
.sc-footer--customizable .sc-footer__brand--image .sc-brand__mark {
	width: auto;
	height: auto;
	min-width: 0;
	max-width: 220px;
	padding: 0;
	background: transparent !important;
	border-radius: 0;
	box-shadow: none;
}

.sc-footer--customizable .sc-footer__brand--image .sc-brand__mark img {
	display: block;
	width: auto;
	height: auto;
	max-width: 220px;
	max-height: 72px;
	object-fit: contain;
}

.sc-footer--customizable .sc-footer__brand--image strong {
	margin-left: 12px;
}

.sc-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin-top: 20px;
}

.sc-footer__social a {
	color: rgba(255,255,255,.72);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.sc-footer__social a:hover {
	color: #fff;
}

@media (max-width: 640px) {
	.sc-footer--customizable .sc-footer__brand--image .sc-brand__mark,
	.sc-footer--customizable .sc-footer__brand--image .sc-brand__mark img {
		max-width: 170px;
		max-height: 58px;
	}

	.sc-footer--customizable .sc-footer__brand--image strong {
		display: none;
	}
}


/* ==========================================================
   Street Commerce 1.10.9 — correção definitiva de topo/hero/rodapé
   ========================================================== */

/* Logo do topo: qualquer imagem cadastrada é tratada como logo completa,
   sem texto adicional "Você no Hype"/nome da marca ao lado. */
.sc-brand {
	min-width: clamp(170px, 16vw, 240px);
}

.sc-brand__fallback--brand-logo {
	display: inline-flex;
	width: clamp(170px, 16vw, 240px);
	max-width: 240px;
	gap: 0 !important;
}

.sc-brand__mark--brand-logo {
	display: flex !important;
	width: 100% !important;
	height: 68px !important;
	min-width: 0 !important;
	max-width: 240px !important;
	flex: 0 1 240px !important;
	padding: 0 !important;
	background: transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	overflow: visible !important;
}

.sc-brand__mark--brand-logo img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 240px !important;
	max-height: 68px !important;
	object-fit: contain !important;
	object-position: left center !important;
}

.sc-brand__fallback--brand-logo .sc-brand__name {
	display: none !important;
}

/* Sticky: apenas os links de primeiro nível ficam escuros no fundo branco.
   Submenus continuam claros porque o dropdown permanece escuro. */
.sc-header.is-scrolled {
	background: rgba(255, 255, 255, .98) !important;
	border-bottom-color: rgba(8, 14, 28, .09) !important;
	box-shadow: 0 12px 30px rgba(7, 13, 31, .08) !important;
}

.sc-header.is-scrolled .sc-nav > .sc-nav__list > li > a,
.sc-header.is-scrolled .sc-icon-link,
.sc-header.is-scrolled .sc-menu-toggle {
	color: #090e1d !important;
}

.sc-header.is-scrolled .sc-nav .sub-menu a {
	color: #fff !important;
}

.sc-header.is-scrolled .sc-nav .sub-menu a:hover,
.sc-header.is-scrolled .sc-nav .sub-menu a:focus-visible {
	color: #fff !important;
	background: rgba(255,255,255,.10) !important;
}

/* Hero: mantém conteúdo do Elementor, mas aplica o acabamento aprovado. */
.sc-hero-cta-hidden {
	display: none !important;
}

.sc-elementor-hero .sc-elementor-hero__content,
.sc-elementor-hero .sc-hero__content,
.sc-hero--fallback .sc-hero__content {
	margin-inline: auto !important;
	align-items: center !important;
	text-align: center !important;
}

.sc-elementor-hero .sc-elementor-hero__text,
.sc-elementor-hero .sc-elementor-hero__text p,
.sc-elementor-hero .elementor-widget-text-editor p,
.sc-hero--fallback .sc-hero__content p {
	margin-inline: auto !important;
	text-align: center !important;
}

.sc-elementor-hero__buttons,
.sc-elementor-hero .sc-hero__buttons,
.sc-hero--fallback .sc-hero__buttons {
	justify-content: center !important;
}

.sc-hero-categories-link,
.sc-elementor-hero .sc-elementor-button--ghost .elementor-button,
.sc-hero--fallback .sc-button--categories {
	color: #070b16 !important;
	background: #fff !important;
	border-color: #fff !important;
	box-shadow: 0 14px 32px rgba(0,0,0,.18) !important;
}

.sc-hero-categories-link:hover,
.sc-hero-categories-link:focus-visible {
	color: #070b16 !important;
	background: #f2f3f6 !important;
	border-color: #f2f3f6 !important;
}

/* Rodapé no formato do site antigo do cliente, com a linguagem visual atual. */
.sc-footer--legacy {
	color: #737886;
	background: #f8f8f9;
	border-top: 1px solid #eef0f4;
}

.sc-footer-legacy__grid {
	display: grid;
	grid-template-columns: minmax(230px, .9fr) minmax(420px, 1.45fr) minmax(220px, .8fr);
	gap: clamp(50px, 7vw, 110px);
	align-items: start;
	padding-top: 72px;
	padding-bottom: 64px;
}

.sc-footer-legacy__intro,
.sc-footer-legacy__label,
.sc-footer-legacy__contact-list,
.sc-footer-legacy__help ul,
.sc-footer-legacy__bottom p {
	margin: 0;
}

.sc-footer-legacy__intro {
	margin-bottom: 18px;
	color: #a2a6b0;
	font-size: 14px;
	font-weight: 600;
}

.sc-footer-legacy__label {
	margin-bottom: 24px;
	font-size: 13px;
	font-weight: 600;
}

.sc-footer-legacy__seals {
	display: grid;
	gap: 18px;
	justify-items: start;
}

.sc-footer-legacy__seals > img {
	display: block;
	width: auto;
	max-width: 190px;
	max-height: 78px;
	object-fit: contain;
}

.sc-security-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 182px;
	color: #303540;
}

.sc-security-badge__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 48px;
	color: #fff;
	background: #159447;
	clip-path: polygon(50% 0, 92% 12%, 88% 67%, 50% 100%, 12% 67%, 8% 12%);
	font-size: 24px;
	font-weight: 900;
}

.sc-security-badge small,
.sc-security-badge strong,
.sc-security-badge em {
	display: block;
	line-height: 1.05;
}

.sc-security-badge small {
	font-size: 8px;
	font-style: normal;
	letter-spacing: .05em;
}

.sc-security-badge strong {
	margin-top: 2px;
	font-size: 15px;
	font-weight: 900;
}

.sc-security-badge em {
	margin-top: 2px;
	color: #7a808a;
	font-size: 8px;
	font-style: normal;
	letter-spacing: .08em;
}

.sc-security-badge--google .sc-security-badge__icon {
	background: linear-gradient(135deg, #4caf50, #2b7cc1);
}

.sc-security-badge--google strong {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -.04em;
}

.sc-footer-legacy__contact {
	text-align: left;
}

.sc-footer-legacy__social {
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0 0 28px;
}

.sc-footer-legacy__social a {
	display: inline-grid;
	place-items: center;
	width: 22px;
	height: 22px;
	color: #a4a8b0;
	text-decoration: none !important;
	transition: color .18s ease, transform .18s ease;
}

.sc-footer-legacy__social a:hover {
	color: #121827;
	transform: translateY(-2px);
}

.sc-footer-legacy__social svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.sc-footer-legacy__social a:first-child svg,
.sc-footer-legacy__social .sc-svg-fill {
	fill: currentColor;
	stroke: none;
}

.sc-footer-legacy__contact h2,
.sc-footer-legacy__help h2 {
	margin: 0 0 28px;
	color: #151922;
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: -.025em;
	text-transform: none;
}

.sc-footer-legacy__contact-list,
.sc-footer-legacy__help ul {
	padding: 0;
	list-style: none;
}

.sc-footer-legacy__contact-list {
	display: grid;
	gap: 24px;
	font-size: 14px;
	line-height: 1.5;
}

.sc-footer-legacy__contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.sc-footer-legacy__contact-list a,
.sc-footer-legacy__help a {
	color: inherit;
	text-decoration: none !important;
}

.sc-footer-legacy__contact-list a:hover,
.sc-footer-legacy__help a:hover {
	color: #151922;
}

.sc-footer-legacy__logo {
	display: block;
	width: min(390px, 100%);
	margin-top: 44px;
}

.sc-footer-legacy__logo img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 125px;
	object-fit: contain;
	object-position: left center;
}

.sc-footer-legacy__help ul {
	display: grid;
	gap: 14px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .01em;
}

.sc-footer-legacy__bottom {
	color: #8e9096;
	background: #1f1f20;
}

.sc-footer-legacy__bottom-inner {
	display: flex;
	min-height: 108px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-align: center;
}

.sc-footer-legacy__bottom p {
	font-size: 12px;
}

.sc-footer-legacy__payments {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3px;
}

.sc-footer-legacy__payments span {
	display: inline-flex;
	min-width: 36px;
	height: 22px;
	align-items: center;
	justify-content: center;
	padding: 0 6px;
	color: #20242d;
	background: #fff;
	border-radius: 3px;
	font-size: 8px;
	font-weight: 900;
}

.sc-footer-legacy__payments-image {
	display: block;
	width: auto;
	max-width: 190px;
	max-height: 34px;
	object-fit: contain;
}

@media (max-width: 960px) {
	.sc-brand {
		min-width: 155px;
	}

	.sc-brand__fallback--brand-logo {
		width: 170px;
	}

	.sc-brand__mark--brand-logo,
	.sc-brand__mark--brand-logo img {
		max-width: 170px !important;
	}

	.sc-footer-legacy__grid {
		grid-template-columns: 1fr 1.35fr;
		gap: 48px 64px;
	}

	.sc-footer-legacy__help {
		grid-column: 1 / -1;
	}

	.sc-footer-legacy__help ul {
		display: flex;
		flex-wrap: wrap;
		gap: 12px 28px;
	}
}

@media (max-width: 640px) {
	.sc-brand {
		min-width: 122px;
	}

	.sc-brand__fallback--brand-logo {
		width: 132px;
	}

	.sc-brand__mark--brand-logo {
		height: 48px !important;
	}

	.sc-brand__mark--brand-logo,
	.sc-brand__mark--brand-logo img {
		max-width: 132px !important;
		max-height: 48px !important;
	}

	.sc-footer-legacy__grid {
		grid-template-columns: 1fr;
		gap: 42px;
		padding-top: 52px;
		padding-bottom: 46px;
	}

	.sc-footer-legacy__help {
		grid-column: auto;
	}

	.sc-footer-legacy__contact h2,
	.sc-footer-legacy__help h2 {
		margin-bottom: 20px;
	}

	.sc-footer-legacy__logo {
		width: min(300px, 100%);
		margin-top: 32px;
	}

	.sc-footer-legacy__bottom-inner {
		min-height: 96px;
	}
}


/* ==========================================================
   Street Commerce 1.10.10 — ajuste cirúrgico solicitado
   Overlay discreto no hero sem alterar imagem/conteúdo do Elementor.
   ========================================================== */
.sc-elementor-hero {
	position: relative !important;
	isolation: isolate;
}

.sc-elementor-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: rgba(2, 4, 10, .24);
}

.sc-elementor-hero > .e-con-inner {
	position: relative !important;
	z-index: 1;
}
