/**
 * Storefront Custom — estilos centralizados
 *
 * @package Storefront_Custom
 */

/* ==========================================================================
   Variáveis globais — paleta Gelotec
   ========================================================================== */

:root {
	--sc-primary: #004a99;
	--sc-primary-dark: #003366;
	--sc-primary-light: #0066cc;
	--sc-secondary: #0066cc;
	--sc-secondary-dark: #0055aa;
	--sc-accent: #f5a623;
	--sc-accent-hover: #e09510;
	--sc-accent-light: #ffc04d;
	--sc-text: #2c2c2c;
	--sc-text-light: #6b7280;
	--sc-text-muted: #9ca3af;
	--sc-text-inverse: #ffffff;
	--sc-bg: #ffffff;
	--sc-bg-alt: #f4f6f8;
	--sc-bg-dark: #081a2e;
	--sc-border: #dde3ea;
	--sc-border-light: #eef1f5;
	--sc-radius: 6px;
	--sc-radius-lg: 10px;
	--sc-radius-pill: 50px;
	--sc-shadow: 0 2px 12px rgba(15, 39, 68, 0.08);
	--sc-shadow-md: 0 4px 20px rgba(15, 39, 68, 0.12);
	--sc-shadow-hover: 0 8px 28px rgba(15, 39, 68, 0.16);
	--sc-transition: 0.25s ease;
	--sc-font: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ==========================================================================
   Base e cores globais
   ========================================================================== */

body.storefront-custom-theme {
	color: var(--sc-text);
	background-color: var(--sc-bg);
	font-family: var(--sc-font);
}

body.storefront-custom-theme a {
	color: var(--sc-secondary);
	transition: color var(--sc-transition);
}

body.storefront-custom-theme a:hover,
body.storefront-custom-theme a:focus {
	color: var(--sc-accent);
}

body.storefront-custom-theme h1,
body.storefront-custom-theme h2,
body.storefront-custom-theme h3,
body.storefront-custom-theme h4,
body.storefront-custom-theme h5,
body.storefront-custom-theme h6 {
	color: var(--sc-primary);
}

body.storefront-custom-theme .col-full {
	max-width: 1200px;
}

body.storefront-custom-theme .site-content {
	background-color: var(--sc-bg-alt);
}

/* ==========================================================================
   Header — barra superior
   ========================================================================== */

.sc-top-bar {
	background-color: var(--sc-primary-dark);
	color: var(--sc-text-inverse);
	font-size: 0.8125rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sc-top-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.sc-top-bar__tagline {
	opacity: 0.85;
}

.sc-top-bar__links {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.sc-top-bar__link {
	color: var(--sc-text-inverse);
	text-decoration: none;
	font-weight: 600;
	transition: color var(--sc-transition);
}

.sc-top-bar__link:hover,
.sc-top-bar__link:focus {
	color: var(--sc-accent-light);
}

/* ==========================================================================
   Header — masthead e navegação
   ========================================================================== */

body.storefront-custom-theme .site-header {
	background-color: var(--sc-primary) !important;
	box-shadow: var(--sc-shadow-md);
	padding-top: 0;
}

body.storefront-custom-theme .sc-header-branding-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 1rem 0;
}

body.storefront-custom-theme .site-branding {
	margin-bottom: 0;
}

body.storefront-custom-theme .site-branding .site-title a,
body.storefront-custom-theme .site-branding .site-title {
	color: var(--sc-text-inverse);
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: -0.02em;
	text-decoration: none;
}

body.storefront-custom-theme .site-branding .site-title a:hover {
	color: var(--sc-accent-light);
}

body.storefront-custom-theme .site-branding .site-description {
	color: rgba(255, 255, 255, 0.7);
	margin: 0.25rem 0 0;
	font-size: 0.875rem;
}

body.storefront-custom-theme .secondary-navigation ul.menu a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.8125rem;
	transition: color var(--sc-transition);
}

body.storefront-custom-theme .secondary-navigation ul.menu a:hover {
	color: var(--sc-accent-light);
}

body.storefront-custom-theme .site-search .widget_product_search form::before {
	color: rgba(255, 255, 255, 0.6);
}

body.storefront-custom-theme .site-search .widget_product_search input[type="search"] {
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--sc-radius-pill);
	color: var(--sc-text-inverse);
	padding: 0.6rem 1rem 0.6rem 2.5rem;
	transition: border-color var(--sc-transition), background-color var(--sc-transition);
}

body.storefront-custom-theme .site-search .widget_product_search input[type="search"]:focus {
	background-color: rgba(255, 255, 255, 0.15);
	border-color: var(--sc-accent);
	outline: none;
}

body.storefront-custom-theme .site-search .widget_product_search input[type="search"]::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

body.storefront-custom-theme .storefront-primary-navigation {
	background-color: var(--sc-primary-dark);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.storefront-custom-theme .main-navigation ul.menu > li > a,
body.storefront-custom-theme .main-navigation ul.nav-menu > li > a {
	color: var(--sc-text-inverse);
	font-weight: 600;
	font-size: 0.9375rem;
	padding: 1rem 1.25rem;
	transition: color var(--sc-transition), background-color var(--sc-transition);
}

body.storefront-custom-theme .main-navigation ul.menu > li > a:hover,
body.storefront-custom-theme .main-navigation ul.nav-menu > li > a:hover,
body.storefront-custom-theme .main-navigation ul.menu > li.current-menu-item > a,
body.storefront-custom-theme .main-navigation ul.nav-menu > li.current-menu-item > a {
	color: var(--sc-accent-light);
	background-color: rgba(255, 255, 255, 0.05);
}

body.storefront-custom-theme .main-navigation ul.menu ul li a,
body.storefront-custom-theme .main-navigation ul.nav-menu ul li a {
	background-color: var(--sc-primary);
	color: var(--sc-text-inverse);
}

body.storefront-custom-theme .main-navigation ul.menu ul li a:hover,
body.storefront-custom-theme .main-navigation ul.nav-menu ul li a:hover {
	background-color: var(--sc-secondary);
}

body.storefront-custom-theme #site-header-cart li a {
	color: var(--sc-text-inverse);
}

body.storefront-custom-theme #site-header-cart .cart-contents {
	background-color: var(--sc-accent);
	border-radius: var(--sc-radius);
	padding: 0.5rem 1rem;
	font-weight: 600;
	transition: background-color var(--sc-transition);
}

body.storefront-custom-theme #site-header-cart .cart-contents:hover {
	background-color: var(--sc-accent-hover);
	color: var(--sc-text-inverse);
}

body.storefront-custom-theme .menu-toggle {
	background-color: transparent;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: var(--sc-radius);
	color: var(--sc-text-inverse);
}

body.storefront-custom-theme .menu-toggle:hover,
body.storefront-custom-theme .menu-toggle:focus {
	border-color: var(--sc-accent);
	color: var(--sc-accent-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */

body.storefront-custom-theme .site-footer {
	background-color: var(--sc-bg-dark);
	color: var(--sc-text-inverse);
	padding-top: 3rem;
}

body.storefront-custom-theme .site-footer a {
	color: rgba(255, 255, 255, 0.85);
	transition: color var(--sc-transition);
}

body.storefront-custom-theme .site-footer a:hover {
	color: var(--sc-accent-light);
}

body.storefront-custom-theme .footer-widgets {
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.storefront-custom-theme .footer-widgets .widget .widget-title,
body.storefront-custom-theme .footer-widgets .widget h2 {
	color: var(--sc-text-inverse);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--sc-accent);
}

body.storefront-custom-theme .footer-widgets .widget {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9375rem;
	line-height: 1.7;
}

body.storefront-custom-theme .site-info {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.8125rem;
	padding: 1.5rem 0;
	text-align: center;
}

.sc-footer-bottom {
	background: var(--sc-bg);
	border-top: 1px solid var(--sc-border-light);
	padding: 1rem 0 1.5rem;
}

.sc-footer-bottom__inner {
	text-align: center;
}

.sc-footer-bottom__text {
	color: var(--sc-text-muted);
	font-size: 0.75rem;
	margin: 0;
}

.sc-footer-bottom__text a {
	color: var(--sc-primary);
	font-weight: 600;
	text-decoration: none;
	transition: color var(--sc-transition);
}

.sc-footer-bottom__text a:hover {
	color: var(--sc-secondary);
}

/* ==========================================================================
   Botões globais
   ========================================================================== */

body.storefront-custom-theme .button,
body.storefront-custom-theme button,
body.storefront-custom-theme input[type="button"],
body.storefront-custom-theme input[type="reset"],
body.storefront-custom-theme input[type="submit"],
body.storefront-custom-theme .woocommerce a.button,
body.storefront-custom-theme .woocommerce button.button,
body.storefront-custom-theme .woocommerce input.button,
body.storefront-custom-theme .woocommerce #respond input#submit {
	background-color: var(--sc-accent);
	border: 2px solid var(--sc-accent);
	border-radius: var(--sc-radius);
	color: var(--sc-text-inverse);
	font-weight: 600;
	font-size: 0.9375rem;
	padding: 0.75rem 1.5rem;
	text-transform: none;
	letter-spacing: 0;
	transition: background-color var(--sc-transition), border-color var(--sc-transition), color var(--sc-transition), box-shadow var(--sc-transition), transform var(--sc-transition);
}

body.storefront-custom-theme .button:hover,
body.storefront-custom-theme button:hover,
body.storefront-custom-theme input[type="button"]:hover,
body.storefront-custom-theme input[type="reset"]:hover,
body.storefront-custom-theme input[type="submit"]:hover,
body.storefront-custom-theme .woocommerce a.button:hover,
body.storefront-custom-theme .woocommerce button.button:hover,
body.storefront-custom-theme .woocommerce input.button:hover,
body.storefront-custom-theme .woocommerce #respond input#submit:hover {
	background-color: var(--sc-accent-hover);
	border-color: var(--sc-accent-hover);
	color: var(--sc-text-inverse);
	box-shadow: var(--sc-shadow);
	transform: translateY(-1px);
}

body.storefront-custom-theme .button.alt,
body.storefront-custom-theme .woocommerce a.button.alt,
body.storefront-custom-theme .woocommerce button.button.alt,
body.storefront-custom-theme .woocommerce input.button.alt {
	background-color: var(--sc-primary);
	border-color: var(--sc-primary);
	color: var(--sc-text-inverse);
}

body.storefront-custom-theme .button.alt:hover,
body.storefront-custom-theme .woocommerce a.button.alt:hover,
body.storefront-custom-theme .woocommerce button.button.alt:hover,
body.storefront-custom-theme .woocommerce input.button.alt:hover {
	background-color: var(--sc-primary-light);
	border-color: var(--sc-primary-light);
	color: var(--sc-text-inverse);
}

body.storefront-custom-theme .woocommerce a.button.disabled,
body.storefront-custom-theme .woocommerce a.button:disabled,
body.storefront-custom-theme .woocommerce button.button.disabled,
body.storefront-custom-theme .woocommerce button.button:disabled {
	background-color: var(--sc-border);
	border-color: var(--sc-border);
	color: var(--sc-text-muted);
	opacity: 1;
	transform: none;
	box-shadow: none;
}

/* ==========================================================================
   Cards de produto
   ========================================================================== */

body.storefront-custom-theme .woocommerce ul.products {
	margin-bottom: 2rem;
}

body.storefront-custom-theme .woocommerce ul.products li.product.sc-product-card {
	background-color: var(--sc-bg);
	border: 1px solid var(--sc-border-light);
	border-radius: var(--sc-radius-lg);
	box-shadow: var(--sc-shadow);
	overflow: hidden;
	padding-bottom: 1.25rem;
	transition: box-shadow var(--sc-transition), transform var(--sc-transition), border-color var(--sc-transition);
}

body.storefront-custom-theme .woocommerce ul.products li.product.sc-product-card:hover {
	border-color: var(--sc-border);
	box-shadow: var(--sc-shadow-hover);
	transform: translateY(-4px);
}

body.storefront-custom-theme .woocommerce ul.products li.product.sc-product-card .woocommerce-LoopProduct-link {
	display: block;
	overflow: hidden;
}

body.storefront-custom-theme .woocommerce ul.products li.product.sc-product-card img {
	border-radius: 0;
	transition: transform var(--sc-transition);
}

body.storefront-custom-theme .woocommerce ul.products li.product.sc-product-card:hover img {
	transform: scale(1.04);
}

body.storefront-custom-theme .woocommerce ul.products li.product.sc-product-card .woocommerce-loop-product__title,
body.storefront-custom-theme .woocommerce ul.products li.product.sc-product-card h2 {
	color: var(--sc-primary);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	padding: 0.75rem 1rem 0;
	transition: color var(--sc-transition);
}

body.storefront-custom-theme .woocommerce ul.products li.product.sc-product-card:hover .woocommerce-loop-product__title,
body.storefront-custom-theme .woocommerce ul.products li.product.sc-product-card:hover h2 {
	color: var(--sc-secondary);
}

body.storefront-custom-theme .woocommerce ul.products li.product.sc-product-card .price {
	color: var(--sc-accent);
	font-size: 1.125rem;
	font-weight: 700;
	padding: 0.25rem 1rem 0.75rem;
}

body.storefront-custom-theme .woocommerce ul.products li.product.sc-product-card .price del {
	color: var(--sc-text-muted);
	font-size: 0.875rem;
	font-weight: 400;
}

body.storefront-custom-theme .woocommerce ul.products li.product.sc-product-card .price ins {
	text-decoration: none;
}

body.storefront-custom-theme .woocommerce ul.products li.product.sc-product-card .star-rating {
	margin: 0 1rem 0.5rem;
}

body.storefront-custom-theme .woocommerce ul.products li.product.sc-product-card .button {
	display: block;
	margin: 0 1rem;
	text-align: center;
	width: calc(100% - 2rem);
	border-radius: var(--sc-radius);
	font-size: 0.875rem;
	padding: 0.65rem 1rem;
}

body.storefront-custom-theme .woocommerce ul.products li.product.sc-product-card .onsale {
	background-color: var(--sc-accent);
	border-radius: var(--sc-radius);
	color: var(--sc-text-inverse);
	font-size: 0.75rem;
	font-weight: 700;
	left: 0.75rem;
	min-height: auto;
	min-width: auto;
	padding: 0.35rem 0.65rem;
	right: auto;
	text-transform: uppercase;
	top: 0.75rem;
	line-height: 1.4;
}

/* ==========================================================================
   Responsivo
   ========================================================================== */

@media (max-width: 768px) {
	.sc-top-bar__inner {
		justify-content: center;
		text-align: center;
	}

	.sc-top-bar__tagline {
		width: 100%;
	}

	body.storefront-custom-theme .sc-header-branding-row {
		flex-direction: column;
		align-items: flex-start;
	}

	body.storefront-custom-theme .woocommerce ul.products li.product.sc-product-card:hover {
		transform: none;
	}
}

/* ==========================================================================
   Página — cabeçalho reutilizável
   ========================================================================== */

.sc-page-header {
	background: linear-gradient(135deg, var(--sc-primary) 0%, var(--sc-primary-light) 100%);
	color: var(--sc-text-inverse);
	padding: 2.5rem 0;
	margin-bottom: 2rem;
}

.sc-page-header__inner {
	text-align: center;
}

.sc-page-header__title {
	color: var(--sc-text-inverse);
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	line-height: 1.2;
}

.sc-page-header__subtitle {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.0625rem;
	margin: 0;
}

.sc-page-header--product {
	background: var(--sc-bg);
	border-bottom: 1px solid var(--sc-border-light);
	padding: 1rem 0;
	margin-bottom: 1.5rem;
}

/* Remove o espaço grande do breadcrumb do tema pai */
body.sc-layout-dufrio .storefront-breadcrumb {
	margin-bottom: 0;
	padding-bottom: 0;
}

.sc-page-header--product .woocommerce-breadcrumb {
	margin: 0;
	color: var(--sc-text-light);
	font-size: 0.875rem;
}

.sc-page-header--product .woocommerce-breadcrumb a {
	color: var(--sc-secondary);
}

.sc-page-header__inner--product {
	text-align: left;
}

.sc-page-header--about {
	margin-bottom: 0;
}

/* ==========================================================================
   Página Sobre
   ========================================================================== */

body.sc-page-about .site-content {
	padding-top: 0;
}

body.sc-page-about .storefront-breadcrumb {
	display: none;
}

body.sc-page-about .sc-page--about {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
}

.sc-page--about {
	margin-bottom: 0;
}

/* Hero Sobre */
.sc-about-hero {
	color: var(--sc-text-inverse);
	isolation: isolate;
	margin-bottom: 0;
	min-height: clamp(240px, 32vw, 340px);
	overflow: hidden;
	padding: 2.75rem 0 3rem;
	position: relative;
	width: 100%;
}

.sc-about-hero__bg {
	background:
		radial-gradient(circle at 85% 15%, rgba(0, 102, 204, 0.35) 0%, transparent 45%),
		radial-gradient(circle at 10% 80%, rgba(245, 166, 35, 0.12) 0%, transparent 40%),
		linear-gradient(135deg, #021428 0%, var(--sc-primary-dark) 45%, var(--sc-primary) 100%);
	inset: 0;
	position: absolute;
	z-index: 0;
}

.sc-about-hero__bg::after {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 48px 48px;
	content: "";
	inset: 0;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
	position: absolute;
}

.sc-about-hero__overlay {
	background: linear-gradient(180deg, rgba(2, 20, 40, 0.15) 0%, rgba(2, 20, 40, 0.55) 100%);
	inset: 0;
	position: absolute;
	z-index: 1;
}

.sc-about-hero__inner {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	position: relative;
	z-index: 2;
}

.sc-about-hero__breadcrumb .woocommerce-breadcrumb {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.8125rem;
	margin: 0;
}

.sc-about-hero__breadcrumb .woocommerce-breadcrumb a {
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
}

.sc-about-hero__breadcrumb .woocommerce-breadcrumb a:hover {
	color: var(--sc-accent-light);
}

.sc-about-hero__content {
	max-width: 720px;
}

body.sc-page-about .sc-about-hero__title {
	color: #fff;
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.08;
	margin: 0 0 0.85rem;
	text-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.sc-about-hero__subtitle {
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1rem, 2vw, 1.2rem);
	line-height: 1.6;
	margin: 0;
	max-width: 620px;
}

.sc-about {
	padding: 3rem 0 4rem;
}

.sc-about__layout {
	align-items: center;
	display: grid;
	gap: 3rem;
	grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
}

.sc-about__media {
	background: var(--sc-bg-alt);
	border: 1px solid var(--sc-border-light);
	border-radius: var(--sc-radius-lg);
	overflow: hidden;
	padding: 1.5rem;
}

.sc-about__image {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
	object-fit: contain;
	width: 100%;
}

.sc-about__content {
	color: var(--sc-text-light);
	font-size: 1rem;
	line-height: 1.75;
}

.sc-about__lead {
	color: var(--sc-text);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.65;
	margin: 0 0 1.25rem;
}

.sc-about__content p {
	margin: 0 0 1.15rem;
}

.sc-about__milestones {
	border-top: 1px solid var(--sc-border-light);
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 2rem;
	padding-top: 2rem;
}

.sc-about__milestone {
	background: var(--sc-bg-alt);
	border: 1px solid var(--sc-border-light);
	border-radius: var(--sc-radius-lg);
	padding: 1.25rem;
}

.sc-about__milestone-year {
	color: var(--sc-primary);
	display: block;
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 0.5rem;
}

.sc-about__milestone-text {
	color: var(--sc-text-light);
	display: block;
	font-size: 0.875rem;
	line-height: 1.55;
}

@media (max-width: 900px) {
	.sc-about__layout {
		gap: 2rem;
		grid-template-columns: 1fr;
	}

	.sc-about__milestones {
		grid-template-columns: 1fr;
	}

	.sc-about-hero {
		min-height: auto;
		padding: 2rem 0 2.25rem;
	}
}

/* Seção Representantes — parallax full width */
.sc-about-rep {
	align-items: center;
	display: flex;
	isolation: isolate;
	min-height: clamp(420px, 55vh, 560px);
	overflow: hidden;
	position: relative;
	width: 100%;
}

.sc-about-rep__media {
	background-color: var(--sc-bg-dark);
	inset: 0;
	overflow: hidden;
	position: absolute;
	z-index: 0;
}

.sc-about-rep__bg {
	display: block;
	height: 200%;
	left: 0;
	min-width: 100%;
	object-fit: cover;
	object-position: center center;
	position: absolute;
	top: -50%;
	transform: translate3d(0, var(--sc-parallax-y, 0px), 0);
	width: 100%;
	will-change: transform;
}

.sc-about-rep__overlay {
	background:
		linear-gradient(90deg, rgba(2, 20, 40, 0.92) 0%, rgba(2, 20, 40, 0.72) 45%, rgba(0, 74, 153, 0.55) 100%);
	inset: 0;
	position: absolute;
	z-index: 1;
}

.sc-about-rep__inner {
	padding-bottom: 4rem;
	padding-top: 4rem;
	position: relative;
	z-index: 2;
}

.sc-about-rep__panel {
	backdrop-filter: blur(14px);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: calc(var(--sc-radius-lg) + 4px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
	max-width: 560px;
	padding: clamp(1.75rem, 4vw, 2.5rem);
}

.sc-about-rep__eyebrow {
	color: var(--sc-accent-light);
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}

body.storefront-custom-theme .sc-about-rep__title {
	color: #fff;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 1rem;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.sc-about-rep__text {
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.0625rem;
	line-height: 1.75;
	margin: 0 0 1.75rem;
}

body.storefront-custom-theme .sc-about-rep__cta {
	align-items: center;
	background: #25d366;
	border: none;
	border-radius: var(--sc-radius-pill);
	box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
	color: #fff;
	display: inline-flex;
	font-size: 1rem;
	font-weight: 700;
	gap: 0.65rem;
	padding: 0.95rem 1.6rem;
	text-decoration: none;
	transition: transform var(--sc-transition), box-shadow var(--sc-transition), background var(--sc-transition);
}

body.storefront-custom-theme .sc-about-rep__cta:hover,
body.storefront-custom-theme .sc-about-rep__cta:focus {
	background: #1ebe5d;
	box-shadow: 0 14px 34px rgba(37, 211, 102, 0.45);
	color: #fff;
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.sc-about-rep__inner {
		padding-bottom: 3rem;
		padding-top: 3rem;
	}

	.sc-about-rep__panel {
		max-width: none;
	}
}

/* ==========================================================================
   Página Contato
   ========================================================================== */

body.sc-page-contact .site-content {
	padding-top: 0;
}

body.sc-page-contact .storefront-breadcrumb {
	display: none;
}

body.sc-page-contact .sc-page--contact {
	margin-bottom: 3rem;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
}

.sc-contact-hero {
	align-items: center;
	color: var(--sc-text-inverse);
	display: flex;
	isolation: isolate;
	margin-bottom: 0;
	min-height: clamp(180px, 22vw, 240px);
	overflow: hidden;
	padding: 1.5rem 0;
	position: relative;
	width: 100%;
}

.sc-contact-hero__bg {
	background:
		radial-gradient(circle at 85% 15%, rgba(0, 102, 204, 0.35) 0%, transparent 45%),
		linear-gradient(135deg, #021428 0%, var(--sc-primary-dark) 45%, var(--sc-primary) 100%);
	inset: 0;
	position: absolute;
	z-index: 0;
}

.sc-contact-hero__overlay {
	background: linear-gradient(180deg, rgba(2, 20, 40, 0.15) 0%, rgba(2, 20, 40, 0.55) 100%);
	inset: 0;
	position: absolute;
	z-index: 1;
}

.sc-contact-hero__inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	width: 100%;
	z-index: 2;
}

.sc-contact-hero__breadcrumb .woocommerce-breadcrumb {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.8125rem;
	margin: 0 0 0.75rem;
}

.sc-contact-hero__breadcrumb .woocommerce-breadcrumb a {
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
}

body.sc-page-contact .sc-contact-hero__title {
	color: #fff;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	margin: 0 0 0.65rem;
}

.sc-contact-hero__subtitle {
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.0625rem;
	margin: 0;
	max-width: 560px;
}

.sc-contact {
	padding: 3rem 0 4rem;
}

.sc-contact__layout {
	align-items: start;
	display: grid;
	gap: 2rem;
	grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
}

.sc-contact__info,
.sc-contact__form-panel {
	background: var(--sc-bg);
	border: 1px solid var(--sc-border-light);
	border-radius: var(--sc-radius-lg);
	box-shadow: var(--sc-shadow);
	padding: 1.75rem;
}

.sc-contact__info-title,
.sc-contact__form-title {
	color: var(--sc-primary);
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 0.75rem;
}

.sc-contact__info-text {
	color: var(--sc-text-light);
	font-size: 0.9375rem;
	line-height: 1.65;
	margin: 0 0 1.5rem;
}

.sc-contact__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sc-contact__list-item {
	border-top: 1px solid var(--sc-border-light);
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 0.85rem 0;
}

.sc-contact__list-item:first-child {
	border-top: none;
	padding-top: 0;
}

.sc-contact__list-item strong {
	color: var(--sc-text);
	font-size: 0.8125rem;
}

.sc-contact__list-item a,
.sc-contact__list-item span {
	color: var(--sc-primary);
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
}

.sc-contact__list-item a:hover {
	color: var(--sc-secondary);
}

.sc-contact__list-item--address {
	align-items: flex-start;
	flex-direction: row;
	gap: 0.75rem;
}

.sc-contact__list-icon {
	color: var(--sc-primary);
	flex-shrink: 0;
	line-height: 1;
	margin-top: 0.15rem;
}

.sc-contact__list-body {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.sc-contact__list-body a {
	line-height: 1.5;
}

.sc-contact__form .wpcf7-form {
	display: grid;
	gap: 1rem;
}

.sc-contact__form .wpcf7-form p {
	margin: 0;
}

.sc-contact__form .wpcf7-form label {
	color: var(--sc-text);
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.sc-contact__form .wpcf7-form-control-wrap {
	display: block;
	margin-top: 0.35rem;
}

body.sc-page-contact .sc-contact__form input[type="text"],
body.sc-page-contact .sc-contact__form input[type="email"],
body.sc-page-contact .sc-contact__form input[type="tel"],
body.sc-page-contact .sc-contact__form textarea {
	background: var(--sc-bg);
	border: 1px solid var(--sc-border);
	border-radius: var(--sc-radius);
	box-shadow: none;
	color: var(--sc-text);
	font-size: 0.9375rem;
	padding: 0.75rem 0.9rem;
	width: 100%;
}

body.sc-page-contact .sc-contact__form textarea {
	min-height: 140px;
	resize: vertical;
}

body.sc-page-contact .sc-contact__form input:focus,
body.sc-page-contact .sc-contact__form textarea:focus {
	border-color: var(--sc-secondary);
	outline: none;
}

body.storefront-custom-theme .sc-contact__form .wpcf7-submit {
	background: var(--sc-primary);
	border: none;
	border-radius: var(--sc-radius);
	color: #fff;
	cursor: pointer;
	font-size: 0.9375rem;
	font-weight: 700;
	margin-top: 0.5rem;
	padding: 0.85rem 1.5rem;
	transition: background var(--sc-transition);
	width: 100%;
}

body.storefront-custom-theme .sc-contact__form .wpcf7-submit:hover {
	background: var(--sc-primary-dark);
}

.sc-contact__form .wpcf7-not-valid-tip {
	color: #c0392b;
	font-size: 0.8125rem;
	margin-top: 0.35rem;
}

.sc-contact__form .wpcf7-response-output {
	border-radius: var(--sc-radius);
	font-size: 0.875rem;
	margin: 1rem 0 0;
	padding: 0.85rem 1rem;
}

.sc-contact__form-fallback {
	color: var(--sc-text-light);
	margin: 0;
}

@media (max-width: 900px) {
	.sc-contact__layout {
		grid-template-columns: 1fr;
	}
}

.sc-wc-panel {
	background-color: var(--sc-bg);
	border: 1px solid var(--sc-border-light);
	border-radius: var(--sc-radius-lg);
	box-shadow: var(--sc-shadow);
	margin-bottom: 2rem;
	padding: 1.5rem;
}

/* ==========================================================================
   Painel WooCommerce (wrapper visual)
   ========================================================================== */

/* ==========================================================================
   Home
   ========================================================================== */

.sc-page--home .site-content {
	background-color: var(--sc-bg);
}

.sc-hero {
	position: relative;
	background-color: var(--sc-primary);
	background-position: center;
	background-size: cover;
	color: var(--sc-text-inverse);
	min-height: 420px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.sc-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(15, 39, 68, 0.92) 0%, rgba(8, 26, 46, 0.78) 100%);
}

.sc-hero .col-full {
	position: relative;
	z-index: 1;
	width: 100%;
}

.sc-hero__content {
	max-width: 640px;
	padding: 3rem 0;
}

.sc-hero__title {
	color: var(--sc-text-inverse);
	font-size: 2.75rem;
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 1rem;
}

.sc-hero__subtitle {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.125rem;
	line-height: 1.6;
	margin: 0 0 1.75rem;
}

.sc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.sc-home__content {
	padding: 0;
}

.sc-homepage-block {
	margin: 0;
	padding: 0;
}

.sc-homepage-intro {
	background-color: var(--sc-bg-alt);
	border-radius: var(--sc-radius-lg);
	margin: 2rem auto;
	max-width: 1200px;
	padding: 2rem;
}

.sc-homepage-intro p:last-child {
	margin-bottom: 0;
}

.sc-homepage-section {
	margin-bottom: 1rem;
}

body.storefront-custom-theme .storefront-product-section {
	padding: 2.5rem 0;
}

body.storefront-custom-theme .storefront-product-section .section-title {
	color: var(--sc-primary);
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 3px solid var(--sc-accent);
	display: inline-block;
}

body.storefront-custom-theme .storefront-product-categories ul.products li.product-category {
	border-radius: var(--sc-radius-lg);
	overflow: hidden;
	box-shadow: var(--sc-shadow);
	transition: box-shadow var(--sc-transition), transform var(--sc-transition);
}

body.storefront-custom-theme .storefront-product-categories ul.products li.product-category:hover {
	box-shadow: var(--sc-shadow-hover);
	transform: translateY(-3px);
}

body.storefront-custom-theme .storefront-product-categories ul.products li.product-category h2 {
	background-color: var(--sc-primary);
	color: var(--sc-text-inverse);
	font-size: 1rem;
	padding: 0.75rem 1rem;
}

body.storefront-custom-theme .storefront-product-categories ul.products li.product-category .count {
	background-color: var(--sc-accent);
	color: var(--sc-text-inverse);
}

/* ==========================================================================
   Loja / Produtos
   ========================================================================== */

body.sc-page-shop .site-content {
	padding-top: 0;
}

body.sc-page-shop .sc-page--shop {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
}

body.sc-page-shop .woocommerce-breadcrumb {
	margin-bottom: 0;
}

.sc-shop-toolbar {
	align-items: center;
	border-bottom: 1px solid var(--sc-border-light);
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
	margin-bottom: 1.75rem;
	padding-bottom: 1rem;
}

.sc-shop-toolbar__count {
	flex: 1;
	min-width: 160px;
}

.sc-shop-toolbar__ordering {
	flex-shrink: 0;
	margin-left: auto;
}

body.sc-page-shop .sc-shop-toolbar .woocommerce-result-count {
	color: var(--sc-text-light);
	font-size: 0.875rem;
	margin: 0;
}

body.sc-page-shop .sc-shop-toolbar .woocommerce-ordering {
	float: none;
	margin: 0;
}

body.sc-page-shop .sc-shop-toolbar .woocommerce-ordering select {
	border: 1px solid var(--sc-border);
	border-radius: var(--sc-radius);
	min-width: 200px;
	padding: 0.5rem 0.75rem;
}

body.sc-page-shop .storefront-sorting {
	display: none;
}

body.sc-page-shop .woocommerce-pagination {
	margin-top: 2rem;
	text-align: center;
}

body.sc-page-shop .woocommerce-pagination ul.page-numbers li a,
body.sc-page-shop .woocommerce-pagination ul.page-numbers li span {
	border-radius: var(--sc-radius);
}

body.sc-page-shop .woocommerce-pagination ul.page-numbers li span.current {
	background-color: var(--sc-primary);
	color: var(--sc-text-inverse);
}

/* ==========================================================================
   Produto individual
   ========================================================================== */

/* Página de produto — remove painel/bordas herdados do Storefront */
body.sc-page-product .sc-wc-panel--product {
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	margin: 0 auto;
	max-width: 1280px;
	padding: 2rem 1.5rem 4rem;
}

body.sc-page-product div.product {
	margin: 0;
}

/* Reset de estilos do Storefront que vazam */
body.sc-page-product div.product .woocommerce-product-gallery,
body.sc-page-product div.product .summary,
body.sc-page-product div.product .entry-summary {
	float: none;
	margin: 0;
	width: 100%;
}

body.sc-page-product .woocommerce-tabs,
body.sc-page-product .related,
body.sc-page-product .upsells {
	clear: both;
}

/* Cabeçalho (título + sku + ferramentas) */
.sc-product__head {
	margin-bottom: 1.5rem;
}

body.sc-page-product .sc-product__title {
	color: var(--sc-text);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 0.5rem;
}

.sc-product__head-meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
}

.sc-product__sku {
	color: var(--sc-text-muted);
	font-size: 0.8125rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.sc-product__tools {
	display: flex;
	gap: 0.5rem;
}

body.sc-page-product .sc-product__tool {
	align-items: center;
	background: var(--sc-bg);
	border: 1px solid var(--sc-border);
	border-radius: 50%;
	color: var(--sc-text-light);
	cursor: pointer;
	display: inline-flex;
	height: 38px;
	justify-content: center;
	padding: 0;
	transition: background var(--sc-transition), color var(--sc-transition), border-color var(--sc-transition);
	width: 38px;
}

body.sc-page-product .sc-product__tool:hover {
	background: var(--sc-primary);
	border-color: var(--sc-primary);
	box-shadow: none;
	color: #fff;
	transform: none;
}

body.sc-page-product .sc-product__tool--wishlist:hover {
	background: var(--sc-accent);
	border-color: var(--sc-accent);
}

/* Layout em duas colunas */
.sc-product__layout {
	align-items: start;
	display: grid;
	gap: 3.5rem;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}

/* Galeria (container menor e mais fluido) */
.sc-product__gallery {
	margin: 0;
	min-width: 0;
	position: relative;
	width: 100%;
}

body.sc-page-product div.product .woocommerce-product-gallery__image,
body.sc-page-product div.product .flex-viewport {
	background: var(--sc-bg);
}

body.sc-page-product .woocommerce-product-gallery__image img {
	margin: 0 auto;
	max-height: 480px;
	object-fit: contain;
	width: auto !important;
}

body.sc-page-product div.product .woocommerce-product-gallery {
	margin: 0;
	padding: 0;
	width: 100% !important;
}

body.sc-page-product .woocommerce-product-gallery__image img {
	border-radius: var(--sc-radius-lg);
}

body.sc-page-product .woocommerce-product-gallery .flex-viewport {
	margin-bottom: 1rem;
}

body.sc-page-product .woocommerce-product-gallery ol.flex-control-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 0;
	padding: 0;
}

body.sc-page-product .woocommerce-product-gallery ol.flex-control-thumbs li {
	border: 1px solid var(--sc-border-light);
	border-radius: var(--sc-radius);
	margin: 0;
	overflow: hidden;
	padding: 0.25rem;
	transition: border-color var(--sc-transition);
	width: 72px;
}

body.sc-page-product .woocommerce-product-gallery ol.flex-control-thumbs li img {
	opacity: 0.75;
	transition: opacity var(--sc-transition);
}

body.sc-page-product .woocommerce-product-gallery ol.flex-control-thumbs li img.flex-active,
body.sc-page-product .woocommerce-product-gallery ol.flex-control-thumbs li:hover img {
	opacity: 1;
}

body.sc-page-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	background: #fff;
	border: none;
	border-radius: 100%;
	box-shadow: var(--sc-shadow);
	box-sizing: content-box;
	color: transparent;
	cursor: pointer;
	font-size: 2em;
	height: 36px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	right: 0.75rem;
	text-indent: -9999px;
	top: 0.75rem;
	width: 36px;
	z-index: 3;
}

body.sc-page-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger::before {
	-webkit-font-smoothing: auto;
	border: 2px solid var(--sc-text);
	border-radius: 100%;
	box-sizing: content-box;
	content: "";
	display: block;
	font-family: inherit;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	height: 10px;
	left: 9px;
	line-height: 1;
	position: absolute;
	text-indent: 0;
	top: 9px;
	width: 10px;
}

body.sc-page-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger::after {
	background: var(--sc-text);
	border-radius: 6px;
	box-sizing: content-box;
	content: "";
	display: block;
	height: 8px;
	left: 22px;
	position: absolute;
	top: 19px;
	transform: rotate(-45deg);
	width: 2px;
}

body.sc-page-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger span[aria-hidden="true"] {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	left: 50%;
	margin: -1px;
	overflow: hidden;
	position: absolute;
	top: 50%;
	width: 1px;
}

body.sc-page-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover {
	background: var(--sc-bg-alt);
	box-shadow: var(--sc-shadow-md);
	transform: none;
}

body.sc-page-product div.product .onsale,
body.sc-page-product .sc-product__gallery .onsale {
	background: var(--sc-accent);
	border: none;
	border-radius: var(--sc-radius);
	color: #1a1a1a;
	font-size: 0.8125rem;
	font-weight: 700;
	left: 0.75rem;
	line-height: 1.4;
	margin: 0;
	min-height: 0;
	min-width: 0;
	padding: 0.25rem 0.6rem;
	position: absolute;
	top: 0.75rem;
	z-index: 2;
}

/* Box de compra (summary) — preenche toda a coluna */
body.sc-page-product div.product .summary.sc-product__summary,
body.sc-page-product div.product .sc-product__summary {
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	clear: none;
	float: none;
	margin: 0;
	max-width: 100%;
	min-width: 0;
	padding: 0;
	position: sticky;
	top: 1.5rem;
	width: 100%;
}

/* Avaliação em estrelas */
.sc-product__rating {
	align-items: center;
	display: flex;
	gap: 0.4rem;
	margin-bottom: 0.35rem;
}

.sc-product__stars {
	display: inline-block;
	font-size: 0;
	height: 16px;
	position: relative;
	width: 90px;
}

.sc-product__stars::before {
	color: var(--sc-border);
	content: "\2605\2605\2605\2605\2605";
	font-size: 16px;
	left: 0;
	letter-spacing: 2px;
	line-height: 16px;
	position: absolute;
	top: 0;
}

.sc-product__stars-fill {
	color: var(--sc-accent);
	display: block;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	white-space: nowrap;
}

.sc-product__stars-fill::before {
	content: "\2605\2605\2605\2605\2605";
	font-size: 16px;
	left: 0;
	letter-spacing: 2px;
	line-height: 16px;
	position: absolute;
	top: 0;
}

.sc-product__rating-count {
	color: var(--sc-text-muted);
	font-size: 0.8125rem;
}

/* Linha "Clique e veja!" */
.sc-product__brand-line {
	color: var(--sc-text);
	display: inline-block;
	font-size: 0.9375rem;
	font-weight: 600;
	margin-bottom: 1rem;
	text-decoration: none;
}

.sc-product__brand-line:hover {
	color: var(--sc-secondary);
}

/* Selos de desconto */
.sc-product__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-bottom: 1.5rem;
}

.sc-product__badge {
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
	padding: 0.35rem 0.5rem;
}

.sc-product__badge--percent {
	background: var(--sc-secondary);
	color: #fff;
}

.sc-product__badge--value {
	background: var(--sc-accent);
	color: #1a1a1a;
}

.sc-product__badge--value .amount {
	font-weight: 700;
}

body.sc-page-product .woocommerce-product-details__short-description {
	color: var(--sc-text-light);
	font-size: 0.875rem;
	line-height: 1.6;
	margin-bottom: 1.25rem;
}

/* Bloco de preço */
.sc-product__price {
	margin-bottom: 0.5rem;
}

.sc-product__price-old {
	color: var(--sc-text-muted);
	display: block;
	font-size: 0.875rem;
	margin-bottom: 0.15rem;
	text-decoration: line-through;
}

.sc-product__price-row {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.sc-product__price-now {
	color: var(--sc-primary);
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.05;
}

.sc-product__price-now .amount {
	color: var(--sc-primary);
}

.sc-product__price-tag {
	color: var(--sc-text);
	font-size: 0.8125rem;
	font-weight: 700;
}

.sc-product__installments {
	color: var(--sc-text-light);
	font-size: 0.8125rem;
	margin: 0 0 0.75rem;
}

.sc-product__payment-link {
	align-items: center;
	color: var(--sc-secondary);
	display: inline-flex;
	font-size: 0.8125rem;
	font-weight: 600;
	gap: 0.4rem;
	margin-bottom: 1.75rem;
	text-decoration: none;
}

.sc-product__payment-link:hover {
	color: var(--sc-primary);
	text-decoration: underline;
}

body.sc-page-product div.product form.cart {
	background: transparent;
	border: none;
	display: block;
	margin: 0 0 1rem;
	padding: 0;
}

body.sc-page-product div.product form.cart .quantity {
	display: inline-flex;
	margin: 0;
}

body.sc-page-product .sc-product__qty-field {
	clear: both;
	display: block;
	margin: 0 0 1.25rem;
	width: 100%;
}

body.sc-page-product .sc-product__qty-label {
	color: var(--sc-text);
	display: block;
	font-size: 0.9375rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

body.sc-page-product #woocommerce-correios-calculo-de-frete-na-pagina-do-produto.containerCalculator,
body.sc-page-product #melhor-envio-shortcode.containerCalculator {
	clear: both;
	margin-top: 0;
}

/* Oculta calculadora fora do form até o JS reposicionar */
body.sc-page-product .containerCalculator:not(.sc-product form.cart .containerCalculator) {
	display: none !important;
}

body.sc-page-product div.product .sc-qty-stepper {
	align-items: stretch;
	background: var(--sc-bg);
	border: 1px solid var(--sc-border);
	border-radius: var(--sc-radius);
	display: inline-flex;
	overflow: hidden;
}

body.sc-page-product div.product .sc-qty-stepper .qty {
	-moz-appearance: textfield;
	appearance: textfield;
	border: none;
	border-left: 1px solid var(--sc-border);
	border-right: 1px solid var(--sc-border);
	border-radius: 0;
	margin: 0;
	padding: 0.65rem 0.25rem;
	text-align: center;
	width: 52px;
}

body.sc-page-product div.product .sc-qty-stepper .qty::-webkit-outer-spin-button,
body.sc-page-product div.product .sc-qty-stepper .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

body.sc-page-product div.product .sc-qty-stepper__btn {
	align-items: center;
	background: var(--sc-bg);
	border: none;
	color: var(--sc-primary);
	cursor: pointer;
	display: inline-flex;
	font-size: 1.25rem;
	font-weight: 700;
	height: auto;
	justify-content: center;
	line-height: 1;
	min-width: 44px;
	padding: 0;
	transition: background 0.15s ease;
}

body.sc-page-product div.product .sc-qty-stepper__btn:hover {
	background: var(--sc-bg-alt, #f5f7fa);
}

body.sc-page-product .woocommerce-variation-price,
body.sc-page-product .single_variation .price,
body.sc-page-product .woocommerce-variation .price {
	display: none !important;
}

body.sc-page-product div.product form.cart .variations {
	margin-bottom: 1rem;
}

body.sc-page-product div.product form.cart .variations td,
body.sc-page-product div.product form.cart .variations th {
	padding: 0.35rem 0;
}

body.sc-page-product div.product form.cart .button,
body.sc-page-product div.product form.cart button.single_add_to_cart_button {
	background: var(--sc-secondary);
	border: 2px solid var(--sc-secondary);
	border-radius: var(--sc-radius);
	float: none;
	font-size: 1rem;
	padding: 0.85rem 1.5rem;
	width: 100%;
}

body.sc-page-product div.product form.cart .button:hover,
body.sc-page-product div.product form.cart button.single_add_to_cart_button:hover {
	background: var(--sc-primary);
	border-color: var(--sc-primary);
}

/* Botão WhatsApp (contorno azul, como a referência) */
body.sc-page-product .sc-product__whatsapp {
	align-items: center;
	background: var(--sc-bg);
	border: 2px solid var(--sc-secondary);
	border-radius: var(--sc-radius);
	color: var(--sc-secondary);
	display: flex;
	font-size: 0.9375rem;
	font-weight: 600;
	gap: 0.5rem;
	justify-content: center;
	margin-bottom: 1.5rem;
	padding: 0.75rem 1rem;
	text-decoration: none;
	transition: background var(--sc-transition), color var(--sc-transition);
	width: 100%;
}

body.sc-page-product .sc-product__whatsapp:hover {
	background: var(--sc-secondary);
	color: #fff;
}

body.sc-page-product .sc-product__whatsapp--quote {
	background: #25d366;
	border-color: #25d366;
	color: #fff;
}

body.sc-page-product .sc-product__whatsapp--quote:hover {
	background: #1da851;
	border-color: #1da851;
	color: #fff;
}

body.sc-page-product .sc-product__price--quote .sc-product__price-now {
	color: var(--sc-primary);
	font-size: 1.5rem;
	font-weight: 700;
}

body.sc-product-has-variations form.variations_form table.variations,
body.sc-product-has-variations form.variations_form .reset_variations_alert {
	display: none !important;
}

body.sc-product-has-variations .sc-product__variation-pills {
	margin-bottom: 1.25rem;
}

body.sc-product-has-variations .sc-product__variation-pills-label {
	color: var(--sc-text);
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	margin-bottom: 0.65rem;
}

body.sc-product-has-variations .sc-product__variation-pills-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

body.storefront-custom-theme .sc-product__variation-pill {
	background: var(--sc-bg);
	border: 1px solid var(--sc-border);
	border-radius: var(--sc-radius);
	color: var(--sc-text);
	cursor: pointer;
	font-family: inherit;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.2;
	padding: 0.5rem 0.85rem;
	transition: background-color var(--sc-transition), border-color var(--sc-transition), color var(--sc-transition);
}

body.storefront-custom-theme .sc-product__variation-pill:hover {
	border-color: var(--sc-primary);
	color: var(--sc-primary);
}

body.storefront-custom-theme .sc-product__variation-pill.is-active {
	background: var(--sc-primary);
	border-color: var(--sc-primary);
	color: var(--sc-text-inverse);
}

/* Calcular frete (linha horizontal, como a referência) */
.sc-product__shipping {
	align-items: center;
	border-top: 1px solid var(--sc-border-light);
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
	margin: 0;
	padding-top: 1.5rem;
}

.sc-product__shipping-label {
	color: var(--sc-text);
	font-size: 0.875rem;
	font-weight: 700;
	white-space: nowrap;
}

.sc-product__shipping-row {
	align-items: center;
	display: flex;
	flex: 1;
	gap: 0.4rem;
	min-width: 180px;
}

.sc-product__shipping-input {
	border: 1px solid var(--sc-border);
	border-radius: var(--sc-radius);
	flex: 1;
	font-size: 0.9375rem;
	min-width: 90px;
	padding: 0.55rem 0.6rem;
}

.sc-product__shipping-input:focus {
	border-color: var(--sc-secondary);
	box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
	outline: none;
}

body.sc-page-product .sc-product__shipping-btn {
	align-items: center;
	background: var(--sc-primary);
	border: none;
	border-radius: var(--sc-radius);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	flex-shrink: 0;
	height: 40px;
	justify-content: center;
	padding: 0;
	width: 44px;
}

body.sc-page-product .sc-product__shipping-btn:hover {
	background: var(--sc-secondary);
	box-shadow: none;
	transform: none;
}

.sc-product__shipping-help {
	color: var(--sc-secondary);
	font-size: 0.8125rem;
	text-decoration: underline;
	white-space: nowrap;
}

/* Esconde link "Editar" (admin) na página de produto */
body.sc-page-product .post-edit-link {
	display: none;
}

body.sc-page-product .woocommerce-tabs {
	margin-top: 3rem;
}

body.sc-page-product #tab-reviews {
	scroll-margin-top: 1.5rem;
}

body.sc-page-product .woocommerce-tabs ul.tabs {
	border-bottom: 1px solid var(--sc-border-light);
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	margin: 0;
	padding: 0;
}

body.sc-page-product .woocommerce-tabs ul.tabs::before {
	display: none;
}

body.sc-page-product .woocommerce-tabs ul.tabs li {
	background: transparent;
	border: none;
	border-radius: 0;
	margin: 0;
	padding: 0;
}

body.sc-page-product .woocommerce-tabs ul.tabs li::before,
body.sc-page-product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

body.sc-page-product .woocommerce-tabs ul.tabs li a {
	color: var(--sc-text-light);
	display: block;
	font-weight: 600;
	padding: 0.9rem 1.25rem;
}

body.sc-page-product .woocommerce-tabs ul.tabs li.active a {
	color: var(--sc-primary);
	box-shadow: inset 0 -3px 0 var(--sc-accent);
}

body.sc-page-product .woocommerce-tabs .panel {
	background: transparent;
	border-radius: 0;
	color: var(--sc-text-light);
	line-height: 1.7;
	margin: 0;
	padding: 1.5rem 0;
}

body.sc-page-product .related.products,
body.sc-page-product .upsells.products {
	border-top: 1px solid var(--sc-border-light);
	margin-top: 2rem;
	padding-top: 2rem;
}

body.sc-page-product .related.products > h2,
body.sc-page-product .upsells.products > h2 {
	color: var(--sc-primary);
	font-size: 1.5rem;
	margin-bottom: 1.25rem;
}

/* ==========================================================================
   Carrinho
   ========================================================================== */

/* Carrinho/checkout — mantém conteúdo dentro do col-full */
body.sc-page-cart .sc-page--wc,
body.sc-page-checkout .sc-page--wc,
body.sc-page-account .sc-page--wc {
	max-width: 100%;
	overflow-x: clip;
}

body.sc-page-cart .entry-content,
body.sc-page-checkout .entry-content,
body.sc-page-account .entry-content {
	max-width: 100%;
}

body.storefront-align-wide.storefront-full-width-content.sc-page-cart .hentry .entry-content .alignwide,
body.storefront-align-wide.storefront-full-width-content.sc-page-cart .hentry .entry-content .alignfull,
body.storefront-align-wide.storefront-full-width-content.sc-page-checkout .hentry .entry-content .alignwide,
body.storefront-align-wide.storefront-full-width-content.sc-page-checkout .hentry .entry-content .alignfull,
body.storefront-align-wide.storefront-full-width-content.sc-page-account .hentry .entry-content .alignwide,
body.storefront-align-wide.storefront-full-width-content.sc-page-account .hentry .entry-content .alignfull {
	clear: both;
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	width: 100% !important;
}

body.sc-page-cart .entry-content .wp-block-woocommerce-cart,
body.sc-page-checkout .entry-content .wp-block-woocommerce-checkout,
body.sc-page-cart .wc-block-cart,
body.sc-page-checkout .wc-block-checkout {
	box-sizing: border-box;
	max-width: 100%;
}

body.sc-page-cart .wc-block-components-sidebar-layout,
body.sc-page-checkout .wc-block-components-sidebar-layout {
	box-sizing: border-box;
	max-width: 100%;
}

body.sc-page-cart .sc-wc-panel--cart,
body.sc-page-checkout .sc-wc-panel--checkout {
	box-sizing: border-box;
	max-width: 100%;
	overflow: hidden;
}

body.sc-page-cart .sc-wc-panel--cart::after,
body.sc-page-checkout .sc-wc-panel--checkout::after {
	clear: both;
	content: "";
	display: table;
}

body.sc-page-cart .sc-wc-panel--cart {
	padding: 0;
}

body.sc-page-cart .sc-wc-panel--cart .woocommerce-cart-form,
body.sc-page-cart .sc-wc-panel--cart .cart-collaterals {
	box-sizing: border-box;
	float: none;
	max-width: 100%;
	width: 100%;
}

@media (min-width: 768px) {
	body.sc-page-cart .sc-wc-panel--cart .woocommerce-cart-form {
		float: left;
		width: 62%;
	}

	body.sc-page-cart .sc-wc-panel--cart .cart-collaterals {
		float: right;
		width: 35%;
	}
}

body.sc-page-cart .woocommerce-cart-form {
	padding: 1.5rem;
}

body.sc-page-cart table.shop_table {
	border: none;
	border-collapse: separate;
	border-spacing: 0;
}

body.sc-page-cart table.shop_table thead th {
	background-color: var(--sc-primary);
	border: none;
	color: var(--sc-text-inverse);
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 0.875rem 1rem;
	text-transform: uppercase;
}

body.sc-page-cart table.shop_table thead th:first-child {
	border-radius: var(--sc-radius) 0 0 0;
}

body.sc-page-cart table.shop_table thead th:last-child {
	border-radius: 0 var(--sc-radius) 0 0;
}

body.sc-page-cart table.shop_table td {
	border-bottom: 1px solid var(--sc-border-light);
	padding: 1rem;
	vertical-align: middle;
}

body.sc-page-cart table.shop_table .product-thumbnail img {
	border-radius: var(--sc-radius);
	max-width: 72px;
}

body.sc-page-cart table.shop_table .product-name a {
	color: var(--sc-primary);
	font-weight: 600;
}

body.sc-page-cart table.shop_table .product-price,
body.sc-page-cart table.shop_table .product-subtotal {
	text-align: right;
	vertical-align: middle;
}

body.sc-page-cart table.shop_table thead .product-price,
body.sc-page-cart table.shop_table thead .product-subtotal {
	text-align: right;
}

body.sc-page-cart table.shop_table .product-quantity {
	text-align: center;
	vertical-align: middle;
}

body.sc-page-cart table.shop_table thead .product-quantity {
	text-align: center;
}

body.sc-page-cart table.shop_table .product-quantity .quantity {
	align-items: center;
	display: inline-flex;
	float: none;
	justify-content: center;
	margin: 0;
	vertical-align: middle;
}

body.sc-page-cart table.shop_table .product-quantity .qty {
	border: 1px solid var(--sc-border);
	border-radius: var(--sc-radius);
	box-sizing: border-box;
	height: 40px;
	line-height: 1.2;
	margin: 0;
	max-width: 72px;
	padding: 0.35rem 0.5rem;
	text-align: center;
	width: 72px;
}

body.sc-page-cart .cart-collaterals {
	background-color: var(--sc-bg-alt);
	box-sizing: border-box;
	padding: 1.5rem;
}

body.sc-page-cart .cart-collaterals .cart_totals,
body.sc-page-cart .cart-collaterals .shipping_calculator {
	clear: none;
	float: none;
	margin: 0;
	width: 100%;
}

body.sc-page-cart .cart_totals {
	background-color: var(--sc-bg);
	border: 1px solid var(--sc-border-light);
	border-radius: var(--sc-radius-lg);
	box-sizing: border-box;
	padding: 1.5rem;
	width: 100%;
}

body.sc-page-cart .cart_totals h2 {
	color: var(--sc-primary);
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

body.sc-page-cart .cart_totals table.shop_table {
	margin-bottom: 0;
}

body.sc-page-cart .cart_totals table.shop_table th,
body.sc-page-cart .cart_totals table.shop_table td {
	padding: 0.75rem 1rem;
	vertical-align: middle;
}

body.sc-page-cart .wc-proceed-to-checkout {
	margin-top: 0.75rem;
	padding: 0;
}

body.storefront-custom-theme.sc-page-cart .woocommerce .wc-proceed-to-checkout a.checkout-button.sc-checkout-btn {
	align-items: center;
	border-width: 1px;
	display: inline-flex;
	font-size: 0.875rem;
	gap: 0.45rem;
	justify-content: center;
	line-height: 1.2;
	margin: 0;
	min-height: 0;
	padding: 0.5rem 0.875rem !important;
	text-align: center;
	width: 100%;
}

body.sc-page-cart .wc-proceed-to-checkout .checkout-button::after {
	display: none;
}

body.sc-page-cart .sc-checkout-btn__icon {
	display: inline-flex;
	flex-shrink: 0;
	line-height: 0;
}

body.sc-page-cart .sc-checkout-btn__icon svg {
	display: block;
}

body.sc-page-cart .sc-checkout-btn__text {
	line-height: 1.2;
}

/* ==========================================================================
   Checkout
   ========================================================================== */

body.sc-page-checkout {
	--sc-field-height: 2.75rem;
}

body.sc-page-checkout .sc-wc-panel--checkout {
	padding: 1.5rem;
}

body.sc-page-checkout .woocommerce-checkout h3 {
	color: var(--sc-primary);
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

body.sc-page-checkout .woocommerce-billing-fields,
body.sc-page-checkout .woocommerce-shipping-fields,
body.sc-page-checkout .woocommerce-additional-fields {
	background-color: var(--sc-bg-alt);
	border-radius: var(--sc-radius);
	margin-bottom: 1.5rem;
	padding: 1.25rem;
}

body.sc-page-checkout .form-row label {
	color: var(--sc-text);
	font-size: 0.875rem;
	font-weight: 600;
}

body.sc-page-checkout .form-row input.input-text,
body.sc-page-checkout .form-row select,
body.sc-page-checkout .woocommerce-input-wrapper select {
	appearance: auto;
	background-color: var(--sc-bg);
	border: 1px solid var(--sc-border);
	border-radius: var(--sc-radius);
	box-sizing: border-box;
	font-size: 0.9375rem;
	height: var(--sc-field-height);
	line-height: 1.4;
	min-height: var(--sc-field-height);
	padding: 0 0.875rem;
	transition: border-color var(--sc-transition), box-shadow var(--sc-transition);
	width: 100%;
}

body.sc-page-checkout .form-row textarea {
	background-color: var(--sc-bg);
	border: 1px solid var(--sc-border);
	border-radius: var(--sc-radius);
	box-sizing: border-box;
	font-size: 0.9375rem;
	line-height: 1.4;
	min-height: 5rem;
	padding: 0.65rem 0.875rem;
	transition: border-color var(--sc-transition), box-shadow var(--sc-transition);
	width: 100%;
}

body.sc-page-checkout .form-row .select2-container {
	width: 100% !important;
}

body.sc-page-checkout .form-row .select2-container .select2-selection--single {
	align-items: center;
	background-color: var(--sc-bg);
	border: 1px solid var(--sc-border);
	border-radius: var(--sc-radius);
	box-sizing: border-box;
	display: flex;
	height: var(--sc-field-height);
	min-height: var(--sc-field-height);
	transition: border-color var(--sc-transition), box-shadow var(--sc-transition);
}

body.sc-page-checkout .form-row .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: var(--sc-text);
	line-height: calc(var(--sc-field-height) - 2px);
	padding-left: 0.875rem;
	padding-right: 2rem;
}

body.sc-page-checkout .form-row .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: calc(var(--sc-field-height) - 2px);
	right: 0.5rem;
	top: 1px;
}

body.sc-page-checkout .form-row input.input-text:focus,
body.sc-page-checkout .form-row textarea:focus,
body.sc-page-checkout .form-row select:focus,
body.sc-page-checkout .form-row .select2-container--default.select2-container--focus .select2-selection--single,
body.sc-page-checkout .form-row .select2-container--default.select2-container--open .select2-selection--single {
	border-color: var(--sc-secondary);
	box-shadow: 0 0 0 3px rgba(45, 111, 173, 0.15);
	outline: none;
}

body.sc-page-checkout #order_review_heading {
	color: var(--sc-primary);
	margin-top: 1rem;
}

body.sc-page-checkout #order_review {
	background-color: var(--sc-bg-alt);
	border: 1px solid var(--sc-border-light);
	border-radius: var(--sc-radius-lg);
	padding: 1.25rem;
}

body.sc-page-checkout table.shop_table.woocommerce-checkout-review-order-table th {
	background-color: var(--sc-primary);
	color: var(--sc-text-inverse);
}

body.sc-page-checkout #payment {
	background-color: var(--sc-bg);
	border: 1px solid var(--sc-border-light);
	border-radius: var(--sc-radius);
	margin-top: 1rem;
	padding: 1rem;
}

body.sc-page-checkout #place_order {
	width: 100%;
	font-size: 1rem;
	padding: 1rem;
}

/* ==========================================================================
   Minha Conta
   ========================================================================== */

body.sc-page-account {
	--sc-field-height: 2.75rem;
}

.sc-page-header--account {
	background: var(--sc-bg);
	border-bottom: 1px solid var(--sc-border-light);
	margin-bottom: 1.5rem;
	padding: 1rem 0;
}

.sc-page-header--account .sc-page-header__title {
	color: var(--sc-primary);
	font-size: 1.5rem;
}

.sc-page-header--account .sc-page-header__subtitle {
	color: var(--sc-text-light);
	font-size: 0.9375rem;
}

body.sc-page-account .sc-wc-panel--account {
	background: transparent;
	border: none;
	box-shadow: none;
	margin-bottom: 2rem;
	padding: 0;
}

body.sc-page-account .sc-wc-panel--account::after {
	display: none;
}

/* Visitante — login + cadastro */
body.sc-page-account.sc-account-guest .entry-content > .woocommerce {
	display: block;
	margin: 0 auto;
	max-width: 980px;
	width: 100%;
}

body.sc-page-account.sc-account-guest .sc-wc-panel--account {
	background: var(--sc-bg);
	border: 1px solid var(--sc-border-light);
	border-radius: var(--sc-radius-lg);
	box-shadow: var(--sc-shadow);
	padding: clamp(1.25rem, 3vw, 2rem);
}

.sc-account-auth__grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sc-account-auth__grid--login-only {
	grid-template-columns: minmax(0, 1fr);
	max-width: 460px;
}

.sc-account-auth__panel {
	background: var(--sc-bg-alt);
	border: 1px solid var(--sc-border-light);
	border-radius: var(--sc-radius-lg);
	padding: 1.5rem;
}

.sc-account-auth__panel-head {
	margin-bottom: 1.25rem;
}

.sc-account-auth__title {
	color: var(--sc-primary);
	font-size: 1.25rem;
	margin: 0 0 0.35rem;
}

.sc-account-auth__subtitle {
	color: var(--sc-text-light);
	font-size: 0.875rem;
	line-height: 1.45;
	margin: 0;
}

.sc-account-auth__hint {
	background: rgba(0, 74, 153, 0.06);
	border-radius: var(--sc-radius);
	color: var(--sc-text-light);
	font-size: 0.8125rem;
	line-height: 1.45;
	margin: 0 0 1rem;
	padding: 0.75rem 0.875rem;
}

.sc-account-auth__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	justify-content: space-between;
	margin-bottom: 0.5rem;
}

.sc-account-auth__actions--register {
	justify-content: flex-end;
}

body.sc-page-account .woocommerce-LostPassword {
	margin: 0;
}

body.sc-page-account .woocommerce-LostPassword a {
	color: var(--sc-secondary);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
}

body.sc-page-account .woocommerce-LostPassword a:hover {
	color: var(--sc-primary);
	text-decoration: underline;
}

/* Logado — painel com menu lateral */
body.sc-page-account.logged-in .entry-content > .woocommerce {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
	width: 100%;
}

body.sc-page-account .woocommerce-MyAccount-navigation,
body.sc-page-account .woocommerce-MyAccount-content {
	float: none !important;
	margin: 0 !important;
	width: auto !important;
}

body.sc-page-account .woocommerce-MyAccount-navigation {
	background: linear-gradient(180deg, var(--sc-primary) 0%, var(--sc-primary-dark) 100%);
	border-radius: var(--sc-radius-lg);
	box-sizing: border-box;
	min-width: 0;
	overflow: hidden;
	padding: 0.75rem;
}

body.sc-page-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0.25rem;
}

body.sc-page-account .woocommerce-MyAccount-navigation ul li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin: 0;
}

body.sc-page-account .woocommerce-MyAccount-navigation ul li:last-child {
	border-bottom: none;
}

body.sc-page-account .woocommerce-MyAccount-navigation ul li.is-active {
	border-left: 3px solid var(--sc-accent);
}

body.sc-page-account .woocommerce-MyAccount-navigation ul li a {
	align-items: center;
	color: rgba(255, 255, 255, 0.92);
	display: flex;
	font-size: 0.9rem;
	font-weight: 600;
	gap: 0.65rem;
	justify-content: space-between;
	line-height: 1.35;
	margin: 0.1rem 0;
	padding: 0.8rem 0.95rem 0.8rem 1rem;
	position: relative;
	text-decoration: none;
	transition: background-color var(--sc-transition), color var(--sc-transition);
	white-space: normal;
	word-break: break-word;
}

body.sc-page-account .woocommerce-MyAccount-navigation ul li.is-active a {
	padding-left: calc(1rem - 3px);
}

body.sc-page-account .woocommerce-MyAccount-navigation ul li a::before {
	flex-shrink: 0;
	margin-left: 0.25rem;
	opacity: 0.85;
	order: 2;
	position: static;
	transform: none;
}

body.sc-page-account .woocommerce-MyAccount-navigation ul li a:hover,
body.sc-page-account .woocommerce-MyAccount-navigation ul li.is-active a {
	background-color: rgba(255, 255, 255, 0.12);
	border-radius: var(--sc-radius);
	color: var(--sc-text-inverse);
}

body.sc-page-account .woocommerce-MyAccount-content {
	background-color: var(--sc-bg);
	border: 1px solid var(--sc-border-light);
	border-radius: var(--sc-radius-lg);
	box-shadow: var(--sc-shadow);
	box-sizing: border-box;
	min-width: 0;
	padding: clamp(1.25rem, 2.5vw, 1.75rem);
	width: 100%;
}

body.sc-page-account .woocommerce-MyAccount-content h2,
body.sc-page-account .woocommerce-MyAccount-content h3 {
	color: var(--sc-primary);
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

/* Boas-vindas e atalhos */
.sc-account-welcome {
	align-items: flex-start;
	background: linear-gradient(135deg, rgba(0, 74, 153, 0.08) 0%, rgba(0, 102, 204, 0.04) 100%);
	border: 1px solid var(--sc-border-light);
	border-radius: var(--sc-radius-lg);
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-bottom: 1.25rem;
	padding: 1.25rem;
}

.sc-account-welcome__greeting {
	color: var(--sc-primary);
	font-size: 1.125rem;
	margin: 0 0 0.35rem;
}

.sc-account-welcome__desc {
	color: var(--sc-text-light);
	font-size: 0.875rem;
	margin: 0;
}

.sc-account-welcome__logout {
	border: 1px solid var(--sc-border);
	border-radius: var(--sc-radius);
	color: var(--sc-text);
	flex-shrink: 0;
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 0.5rem 0.9rem;
	text-decoration: none;
	transition: background-color var(--sc-transition), border-color var(--sc-transition), color var(--sc-transition);
	white-space: nowrap;
}

.sc-account-welcome__logout:hover {
	background: var(--sc-bg-alt);
	border-color: var(--sc-primary);
	color: var(--sc-primary);
}

.sc-account-quick-links {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 0.5rem;
}

.sc-account-quick-link {
	align-items: flex-start;
	background: var(--sc-bg-alt);
	border: 1px solid var(--sc-border-light);
	border-radius: var(--sc-radius-lg);
	color: inherit;
	display: flex;
	gap: 0.85rem;
	padding: 1rem;
	text-decoration: none;
	transition: border-color var(--sc-transition), box-shadow var(--sc-transition), transform var(--sc-transition);
}

.sc-account-quick-link:hover {
	border-color: var(--sc-secondary);
	box-shadow: var(--sc-shadow);
	color: inherit;
	transform: translateY(-2px);
}

.sc-account-quick-link__icon {
	align-items: center;
	background: rgba(0, 74, 153, 0.08);
	border-radius: var(--sc-radius);
	color: var(--sc-primary);
	display: inline-flex;
	flex-shrink: 0;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.sc-account-quick-link__body {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 0;
}

.sc-account-quick-link__label {
	color: var(--sc-primary);
	font-size: 0.9375rem;
	font-weight: 700;
}

.sc-account-quick-link__desc {
	color: var(--sc-text-light);
	font-size: 0.8125rem;
	line-height: 1.4;
}

/* Campos de formulário */
body.sc-page-account .form-row {
	margin-bottom: 1rem;
}

body.sc-page-account .form-row label {
	color: var(--sc-text);
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 0.4rem;
}

body.sc-page-account .form-row .required {
	color: #c0392b;
}

body.sc-page-account .form-row input.input-text,
body.sc-page-account .form-row select,
body.sc-page-account .form-row textarea {
	background-color: var(--sc-bg);
	border: 1px solid var(--sc-border);
	border-radius: var(--sc-radius);
	box-sizing: border-box;
	color: var(--sc-text);
	font-size: 0.9375rem;
	height: var(--sc-field-height);
	min-height: var(--sc-field-height);
	padding: 0 0.875rem;
	transition: border-color var(--sc-transition), box-shadow var(--sc-transition);
	width: 100%;
}

body.sc-page-account .form-row textarea {
	height: auto;
	min-height: 120px;
	padding: 0.75rem 0.875rem;
}

body.sc-page-account .form-row input.input-text:focus,
body.sc-page-account .form-row textarea:focus,
body.sc-page-account .form-row select:focus {
	border-color: var(--sc-secondary);
	box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.12);
	outline: none;
}

body.sc-page-account .woocommerce-form-login__rememberme {
	color: var(--sc-text-light);
	font-size: 0.875rem;
	margin: 0;
}

body.storefront-custom-theme.sc-page-account .woocommerce-form-login__submit,
body.storefront-custom-theme.sc-page-account .woocommerce-form-register__submit,
body.storefront-custom-theme.sc-page-account .woocommerce-MyAccount-content button.button,
body.storefront-custom-theme.sc-page-account .woocommerce-MyAccount-content input.button {
	background: var(--sc-primary);
	border: 2px solid var(--sc-primary);
	border-radius: var(--sc-radius);
	color: var(--sc-text-inverse);
	font-size: 0.9375rem;
	font-weight: 600;
	min-height: var(--sc-field-height);
	padding: 0.7rem 1.25rem;
	width: 100%;
}

body.storefront-custom-theme.sc-page-account .woocommerce-form-login__submit:hover,
body.storefront-custom-theme.sc-page-account .woocommerce-form-register__submit:hover,
body.storefront-custom-theme.sc-page-account .woocommerce-MyAccount-content button.button:hover,
body.storefront-custom-theme.sc-page-account .woocommerce-MyAccount-content input.button:hover {
	background: var(--sc-primary-dark);
	border-color: var(--sc-primary-dark);
	box-shadow: var(--sc-shadow);
	color: var(--sc-text-inverse);
	transform: none;
}

body.sc-page-account .woocommerce-MyAccount-content table.shop_table {
	border: 1px solid var(--sc-border-light);
	border-collapse: separate;
	border-radius: var(--sc-radius);
	border-spacing: 0;
	overflow: hidden;
}

body.sc-page-account .woocommerce-MyAccount-content table.shop_table thead th {
	background-color: var(--sc-primary);
	border: none;
	color: var(--sc-text-inverse);
	font-size: 0.8125rem;
	padding: 0.85rem 1rem;
	text-transform: uppercase;
}

body.sc-page-account .woocommerce-MyAccount-content table.shop_table td {
	border-bottom: 1px solid var(--sc-border-light);
	padding: 0.85rem 1rem;
	vertical-align: middle;
}

body.sc-page-account .woocommerce-MyAccount-content table.shop_table tr:last-child td {
	border-bottom: none;
}

body.sc-page-account .woocommerce-orders-table__cell-order-actions a {
	margin-right: 0.35rem;
}

body.sc-page-account .woocommerce-message,
body.sc-page-account .woocommerce-info,
body.sc-page-account .woocommerce-error {
	border-radius: var(--sc-radius);
	margin-bottom: 1rem;
}

body.sc-page-account .hentry .edit-link {
	display: none;
}

@media (max-width: 900px) {
	.sc-account-auth__grid {
		grid-template-columns: 1fr;
	}

	.sc-account-quick-links {
		grid-template-columns: 1fr;
	}

	body.sc-page-account.logged-in .entry-content > .woocommerce {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.sc-account-welcome {
		flex-direction: column;
	}

	.sc-account-auth__actions {
		align-items: stretch;
		flex-direction: column;
	}

	body.sc-page-account.sc-account-guest .sc-wc-panel--account {
		padding: 1rem;
	}

	body.sc-page-account .woocommerce-MyAccount-content table.shop_table thead {
		display: none;
	}

	body.sc-page-account .woocommerce-MyAccount-content table.shop_table tr {
		border-bottom: 1px solid var(--sc-border-light);
		display: block;
		margin-bottom: 0.75rem;
		padding-bottom: 0.75rem;
	}

	body.sc-page-account .woocommerce-MyAccount-content table.shop_table td {
		border: none;
		display: flex;
		justify-content: space-between;
		padding: 0.35rem 0;
	}

	body.sc-page-account .woocommerce-MyAccount-content table.shop_table td::before {
		color: var(--sc-text-light);
		content: attr(data-title);
		font-size: 0.8125rem;
		font-weight: 600;
		margin-right: 1rem;
	}
}

/* ==========================================================================
   Páginas — responsivo
   ========================================================================== */

@media (max-width: 768px) {
	.sc-hero {
		min-height: 320px;
	}

	.sc-hero__title {
		font-size: 2rem;
	}

	.sc-hero__actions {
		flex-direction: column;
	}

	.sc-hero__actions .button {
		text-align: center;
		width: 100%;
	}

	.sc-page-header {
		padding: 1.75rem 0;
	}

	.sc-page-header__title {
		font-size: 1.5rem;
	}

	.sc-wc-panel {
		padding: 1rem;
	}

	body.sc-page-product .sc-wc-panel--product {
		padding: 1rem;
	}

	.sc-product__layout {
		gap: 2rem;
		grid-template-columns: minmax(0, 1fr);
	}

	.sc-product__gallery {
		max-width: 420px;
	}

	body.sc-page-product div.product .summary.sc-product__summary,
	body.sc-page-product div.product .sc-product__summary {
		border-top: 1px solid var(--sc-border-light);
		padding: 1.5rem 0 0;
		position: static;
	}

	body.sc-page-product .sc-product__title {
		font-size: 1.3rem;
	}

	.sc-product__shipping-help {
		margin-left: 0;
	}

	body.sc-page-cart table.shop_table thead {
		display: none;
	}

	body.sc-page-account.logged-in .entry-content > .woocommerce {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Layout GELOTEC — modelo e-commerce
   ========================================================================== */

body.sc-layout-dufrio #masthead.site-header {
	background: transparent !important;
	box-shadow: none;
	padding: 0;
	margin: 0;
}

body.sc-layout-dufrio #colophon.site-footer {
	background: transparent;
	margin-top: 0;
	padding: 0;
}

/* Apenas o wrapper direto do colophon vira full-width; os .col-full internos do footer mantêm o container. */
body.sc-layout-dufrio #colophon > .col-full {
	max-width: none;
	padding: 0;
	width: 100%;
}

body.sc-layout-dufrio .site-content {
	background: var(--sc-bg);
}

body.sc-layout-dufrio.sc-page-home .site-content {
	padding-top: 0;
}

body.sc-page-home .sc-page--home {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
}

body.sc-layout-dufrio .col-full {
	max-width: 1280px;
	padding-left: 1rem;
	padding-right: 1rem;
}

/* ==========================================================================
   Header GELOTEC
   ========================================================================== */

.sc-header {
	background: var(--sc-bg);
	width: 100%;
}

/* Barra superior */
.sc-header__topbar {
	background: #fafbfc;
	border-bottom: 1px solid var(--sc-border-light);
	font-size: 0.75rem;
	padding: 0.45rem 0;
}

.sc-header__topbar-nav {
	align-items: center;
	display: flex;
	gap: 1.75rem;
	justify-content: flex-end;
}

.sc-header__topbar-link {
	align-items: center;
	background: none;
	border: none;
	color: var(--sc-text-light);
	cursor: pointer;
	display: inline-flex;
	font-family: inherit;
	font-size: 0.75rem;
	gap: 0.4rem;
	padding: 0;
	text-decoration: none;
	transition: color var(--sc-transition);
}

.sc-header__topbar-link svg {
	color: var(--sc-text-muted);
	flex-shrink: 0;
}

.sc-header__topbar-link:hover {
	color: var(--sc-primary);
}

.sc-header__topbar-link:hover svg {
	color: var(--sc-primary);
}

/* Linha principal */
.sc-header__main {
	background: var(--sc-bg);
	border-bottom: 1px solid var(--sc-border-light);
	padding: 1.1rem 0;
}

.sc-header__main-inner {
	align-items: center;
	display: flex;
	gap: 1.5rem;
}

.sc-header__burger {
	align-items: center;
	background: none;
	border: none;
	color: var(--sc-primary);
	cursor: pointer;
	display: inline-flex;
	flex-shrink: 0;
	justify-content: center;
	padding: 0;
}

.sc-header__logo {
	align-items: center;
	display: inline-flex;
	flex-shrink: 0;
	gap: 2px;
	text-decoration: none;
}

.sc-header__logo-text {
	color: var(--sc-primary);
	font-size: 1.75rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	line-height: 1;
}

.sc-header__logo-icon {
	color: var(--sc-secondary);
}

.sc-header__search {
	align-items: center;
	align-self: center;
	background: var(--sc-bg);
	border: 1px solid var(--sc-border);
	border-radius: var(--sc-radius);
	display: flex;
	flex: 1;
	height: 44px;
	margin: 0;
	max-width: 680px;
	min-height: 44px;
	min-width: 0;
	overflow: hidden;
	transition: border-color var(--sc-transition), box-shadow var(--sc-transition);
}

.sc-header__search:focus-within {
	border-color: var(--sc-secondary);
	box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.sc-header__search input[type="search"] {
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	box-shadow: none;
	flex: 1;
	font-size: 0.9375rem;
	height: 100%;
	line-height: 1.4;
	margin: 0;
	min-width: 0;
	outline: none;
	padding: 0 1rem;
}

.sc-header__search input[type="search"]:focus {
	box-shadow: none;
	outline: none;
}

.sc-header__search input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
}

body.storefront-custom-theme .sc-header__search-btn {
	align-items: center;
	background: transparent;
	border: none;
	border-radius: 0;
	color: var(--sc-text-light);
	cursor: pointer;
	display: inline-flex;
	flex-shrink: 0;
	height: 100%;
	justify-content: center;
	padding: 0 1rem;
}

body.storefront-custom-theme .sc-header__search-btn:hover {
	background: transparent;
	box-shadow: none;
	color: var(--sc-primary);
	transform: none;
}

.sc-header__actions {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	gap: 1.5rem;
	margin-left: auto;
}

.sc-header__action {
	color: var(--sc-text);
	position: relative;
	text-decoration: none;
	transition: color var(--sc-transition);
}

.sc-header__action svg {
	color: var(--sc-text);
	display: block;
}

.sc-header__action:hover {
	color: var(--sc-secondary);
}

.sc-header__action:hover svg {
	color: var(--sc-secondary);
}

.sc-header__action--cep {
	align-items: center;
	color: var(--sc-secondary);
	display: inline-flex;
	gap: 0.4rem;
}

.sc-header__action--cep svg {
	color: var(--sc-secondary);
}

.sc-header__cep-text {
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: underline;
}

.sc-header__cart-count {
	background: var(--sc-accent);
	border-radius: 50%;
	color: #1a1a1a;
	font-size: 0.625rem;
	font-weight: 700;
	height: 17px;
	line-height: 17px;
	position: absolute;
	right: -8px;
	text-align: center;
	top: -6px;
	width: 17px;
}

/* Menu de categorias */
.sc-header__nav {
	background: var(--sc-bg);
	border-bottom: 1px solid var(--sc-border-light);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	position: relative;
}

.sc-header__nav-inner {
	align-items: center;
	display: flex;
	gap: 0.5rem;
}

.sc-header__categories {
	align-items: stretch;
	display: flex;
	flex: 1;
	flex-wrap: wrap;
	gap: 0;
}

.sc-header__category-wrap {
	position: relative;
}

.sc-header__category-wrap.has-children:hover .sc-header__submenu,
.sc-header__category-wrap.has-children:focus-within .sc-header__submenu {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

.sc-header__category {
	align-items: center;
	color: var(--sc-text);
	display: inline-flex;
	font-size: 0.875rem;
	font-weight: 500;
	gap: 0.3rem;
	padding: 0.85rem 0.9rem;
	text-decoration: none;
	white-space: nowrap;
	transition: color var(--sc-transition);
}

.sc-header__category:hover {
	color: var(--sc-secondary);
}

.sc-header__caret {
	color: var(--sc-text-muted);
	transition: transform var(--sc-transition);
}

.sc-header__category:hover .sc-header__caret {
	color: var(--sc-secondary);
	transform: translateY(1px);
}

.sc-header__submenu {
	background: var(--sc-bg);
	border: 1px solid var(--sc-border-light);
	border-radius: var(--sc-radius-lg);
	box-shadow: var(--sc-shadow-md);
	left: 0;
	list-style: none;
	margin: 0;
	min-width: 220px;
	opacity: 0;
	padding: 0.5rem 0;
	position: absolute;
	top: 100%;
	transform: translateY(8px);
	transition: opacity var(--sc-transition), transform var(--sc-transition), visibility var(--sc-transition);
	visibility: hidden;
	z-index: 120;
}

.sc-header__submenu li {
	margin: 0;
}

.sc-header__submenu a {
	color: var(--sc-text);
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	padding: 0.55rem 1rem;
	text-decoration: none;
	transition: background var(--sc-transition), color var(--sc-transition);
	white-space: nowrap;
}

.sc-header__submenu a:hover {
	background: var(--sc-bg-alt);
	color: var(--sc-secondary);
}

/* Drawer de navegação (off-canvas) */
.sc-drawer {
	background: var(--sc-bg);
	bottom: 0;
	box-shadow: 4px 0 24px rgba(0, 0, 0, 0.18);
	display: flex;
	flex-direction: column;
	left: 0;
	max-width: 86vw;
	overflow-y: auto;
	position: fixed;
	top: 0;
	transform: translateX(-100%);
	transition: transform 0.3s ease, visibility 0s linear 0.3s;
	visibility: hidden;
	width: 320px;
	z-index: 1100;
}

.sc-drawer.is-open {
	transform: translateX(0);
	transition: transform 0.3s ease, visibility 0s linear 0s;
	visibility: visible;
}

.sc-drawer__header {
	align-items: center;
	background: var(--sc-primary);
	color: var(--sc-text-inverse);
	display: flex;
	justify-content: space-between;
	padding: 1rem 1.25rem;
}

.sc-drawer__title {
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

body.storefront-custom-theme .sc-drawer__close {
	align-items: center;
	background: transparent;
	border: none;
	border-radius: 50%;
	color: var(--sc-text-inverse);
	cursor: pointer;
	display: flex;
	height: 36px;
	justify-content: center;
	padding: 0;
	width: 36px;
}

body.storefront-custom-theme .sc-drawer__close:hover {
	background: rgba(255, 255, 255, 0.15);
	box-shadow: none;
	color: var(--sc-text-inverse);
	transform: none;
}

.sc-drawer__nav {
	padding: 0.75rem 0 1.5rem;
}

.sc-drawer__subtitle {
	color: var(--sc-text-muted);
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	margin: 1rem 0 0.25rem;
	padding: 0 1.25rem;
	text-transform: uppercase;
}

.sc-drawer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sc-drawer__list--nested {
	display: none;
}

.sc-drawer__list--nested a {
	border-bottom: 1px solid var(--sc-border-light);
	font-size: 0.875rem;
	padding-left: 2rem;
}

.sc-drawer__item--has-children.is-open > .sc-drawer__list--nested {
	display: block;
}

.sc-drawer__row {
	align-items: center;
	display: flex;
}

.sc-drawer__row > a {
	flex: 1;
}

body.storefront-custom-theme .sc-drawer__toggle {
	align-items: center;
	background: transparent;
	border: none;
	border-radius: var(--sc-radius);
	color: var(--sc-text-muted);
	cursor: pointer;
	display: flex;
	flex-shrink: 0;
	height: 2.5rem;
	justify-content: center;
	margin-right: 0.35rem;
	padding: 0;
	transition: background var(--sc-transition), color var(--sc-transition), transform var(--sc-transition);
	width: 2.5rem;
}

body.storefront-custom-theme .sc-drawer__toggle:hover {
	background: var(--sc-bg-alt);
	color: var(--sc-secondary);
}

.sc-drawer__item--has-children.is-open > .sc-drawer__row .sc-drawer__toggle {
	transform: rotate(180deg);
}

.sc-drawer__list a {
	border-bottom: 1px solid var(--sc-border-light);
	color: var(--sc-text);
	display: block;
	font-size: 0.9375rem;
	padding: 0.85rem 1.25rem;
	text-decoration: none;
	transition: background var(--sc-transition), color var(--sc-transition);
}

.sc-drawer__list a:hover {
	background: var(--sc-bg-alt);
	color: var(--sc-primary);
	padding-left: 1.5rem;
}

.sc-drawer__contacts {
	border-top: 1px solid var(--sc-border-light);
	margin-top: 0.25rem;
	padding-top: 0.25rem;
}

.sc-drawer__list--contacts a {
	align-items: center;
	display: flex;
	font-weight: 600;
	gap: 0.75rem;
}

.sc-drawer__list--contacts a:hover {
	padding-left: 1.25rem;
}

.sc-drawer__contact-icon {
	align-items: center;
	display: inline-flex;
	flex-shrink: 0;
	justify-content: center;
	line-height: 0;
	width: 1.25rem;
}

.sc-drawer__contact-link--whatsapp .sc-drawer__contact-icon {
	color: #25d366;
}

.sc-drawer__contact-link--phone .sc-drawer__contact-icon {
	color: var(--sc-primary);
}

.sc-drawer__contact-text strong {
	font-weight: 700;
	margin-right: 0.25rem;
}

.sc-drawer-overlay {
	background: rgba(0, 0, 0, 0.45);
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity 0.3s ease, visibility 0s linear 0.3s;
	visibility: hidden;
	z-index: 1099;
}

.sc-drawer-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
	transition: opacity 0.3s ease, visibility 0s linear 0s;
	visibility: visible;
}

body.sc-no-scroll {
	overflow: hidden;
}

/* Modal de busca (mobile) */
.sc-header__search-toggle {
	align-items: center;
	background: none;
	border: none;
	color: var(--sc-primary);
	cursor: pointer;
	display: none;
	flex-shrink: 0;
	justify-content: center;
	padding: 0;
}

.sc-search-modal {
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity 0.25s ease, visibility 0s linear 0.25s;
	visibility: hidden;
	z-index: 1200;
}

.sc-search-modal.is-open {
	opacity: 1;
	pointer-events: auto;
	transition: opacity 0.25s ease, visibility 0s linear 0s;
	visibility: visible;
}

.sc-search-modal__overlay {
	background: rgba(0, 0, 0, 0.5);
	inset: 0;
	position: absolute;
}

.sc-search-modal__panel {
	background: var(--sc-bg);
	border-radius: 0 0 var(--sc-radius-lg) var(--sc-radius-lg);
	box-shadow: var(--sc-shadow-md);
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: translateY(-12px);
	transition: transform 0.25s ease;
}

.sc-search-modal.is-open .sc-search-modal__panel {
	transform: translateY(0);
}

.sc-search-modal__header {
	align-items: center;
	background: var(--sc-primary);
	color: var(--sc-text-inverse);
	display: flex;
	justify-content: space-between;
	padding: 1rem 1.25rem;
}

.sc-search-modal__title {
	color: var(--sc-text-inverse);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	margin: 0;
	text-transform: uppercase;
}

.sc-search-modal__close {
	align-items: center;
	background: none;
	border: none;
	color: var(--sc-text-inverse);
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	padding: 0.25rem;
}

.sc-search-modal__form {
	align-items: center;
	display: flex;
	gap: 0.75rem;
	padding: 1rem 1.25rem 1.25rem;
}

.sc-search-modal__form input[type="search"] {
	-webkit-appearance: none;
	appearance: none;
	background: var(--sc-bg);
	border: 1px solid var(--sc-border);
	border-radius: var(--sc-radius);
	box-shadow: none;
	flex: 1;
	font-size: 1rem;
	height: 48px;
	line-height: 1.4;
	margin: 0;
	min-width: 0;
	outline: none;
	padding: 0 1rem;
}

.sc-search-modal__form input[type="search"]:focus {
	border-color: var(--sc-secondary);
	box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

body.storefront-custom-theme .sc-search-modal__submit {
	align-items: center;
	background: var(--sc-accent);
	border: none;
	border-radius: var(--sc-radius);
	box-shadow: none;
	color: var(--sc-text-inverse);
	cursor: pointer;
	display: inline-flex;
	flex-shrink: 0;
	height: 48px;
	justify-content: center;
	min-width: 48px;
	padding: 0;
	transform: none;
	width: 48px;
}

body.storefront-custom-theme .sc-search-modal__submit:hover {
	background: var(--sc-accent-hover);
	border-color: var(--sc-accent-hover);
	box-shadow: none;
	color: var(--sc-text-inverse);
	transform: none;
}

body.storefront-custom-theme .sc-search-modal__submit svg {
	display: block;
	flex-shrink: 0;
}

/* Hero slider */
.sc-hero-slider {
	position: relative;
	overflow: hidden;
}

.sc-hero-slider__track {
	min-height: 420px;
	position: relative;
}

.sc-hero-slider__slide {
	align-items: center;
	background: linear-gradient(135deg, var(--sc-primary) 0%, var(--sc-primary-light) 100%);
	background-position: center;
	background-size: cover;
	display: flex;
	min-height: 420px;
	opacity: 0;
	padding: 3rem 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	transition: opacity 0.55s ease;
	visibility: hidden;
	z-index: 0;
}

.sc-hero-slider__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	z-index: 1;
}

.sc-hero-slider__slide--navy {
	background: linear-gradient(135deg, #003366 0%, #004a99 100%);
}

.sc-hero-slider__slide--teal {
	background: linear-gradient(135deg, #006688 0%, #0088aa 100%);
}

.sc-hero-slider__slide.has-image {
	background-color: var(--sc-primary-dark);
}

.sc-hero-slider__overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
}

/* Overlay uniforme em todo o banner para leitura do texto sobre fotos. */
.sc-hero-slider__slide.has-image .sc-hero-slider__overlay {
	background:
		linear-gradient(180deg, rgba(8, 26, 46, 0.2) 0%, rgba(8, 26, 46, 0.55) 100%),
		rgba(8, 26, 46, 0.62);
}

.sc-hero-slider__slide .col-full {
	position: relative;
	z-index: 1;
}

.sc-hero-slider__content {
	max-width: 540px;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.5s ease 0.12s, transform 0.5s ease 0.12s;
}

.sc-hero-slider__slide.has-image .sc-hero-slider__content {
	background: rgba(8, 26, 46, 0.28);
	border-left: 4px solid var(--sc-accent);
	border-radius: 0 var(--sc-radius-lg) var(--sc-radius-lg) 0;
	padding: 1.25rem 1.5rem 1.35rem;
}

.sc-hero-slider__slide.is-active .sc-hero-slider__content {
	opacity: 1;
	transform: translateY(0);
}

/* Títulos de banner — sobrescreve h2 global azul do tema */
body.storefront-custom-theme h2.sc-hero-slider__title,
body.storefront-custom-theme h2.sc-banner-promo__title,
body.storefront-custom-theme .sc-banner-strip__title,
body.storefront-custom-theme .sc-banner-grid__title {
	color: var(--sc-accent);
}

body.storefront-custom-theme .sc-hero-slider__slide.has-image h2.sc-hero-slider__title,
body.storefront-custom-theme .sc-banner-promo.has-image h2.sc-banner-promo__title {
	color: var(--sc-text-inverse);
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.sc-hero-slider__title {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 1rem;
}

.sc-hero-slider__slide.has-image .sc-hero-slider__title {
	margin-bottom: 0.75rem;
}

.sc-hero-slider__subtitle {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	margin: 0 0 1.5rem;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.sc-hero-slider__slide.has-image .sc-hero-slider__subtitle {
	margin-bottom: 1.25rem;
}

.sc-hero-slider__cta {
	background: var(--sc-accent) !important;
	border-color: var(--sc-accent) !important;
	color: #1a1a1a !important;
	font-size: 0.875rem !important;
	padding: 0.55rem 1.25rem !important;
	transform: none !important;
}

.sc-hero-slider__cta:hover {
	transform: none !important;
	box-shadow: none !important;
}

body.storefront-custom-theme .sc-hero-slider__arrow {
	align-items: center;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	border-radius: 50%;
	color: var(--sc-text-inverse);
	cursor: pointer;
	display: flex;
	font-size: 1.2rem;
	height: 44px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	z-index: 2;
}

.sc-hero-slider__arrow--prev { left: 1rem; }
.sc-hero-slider__arrow--next { right: 1rem; }

body.storefront-custom-theme .sc-hero-slider__arrow:hover {
	background: rgba(255, 255, 255, 0.35);
	box-shadow: none;
	transform: translateY(-50%) !important;
}

.sc-hero-slider__dots {
	align-items: center;
	bottom: 1.25rem;
	display: flex;
	gap: 0.65rem;
	justify-content: center;
	left: 0;
	position: absolute;
	right: 0;
	z-index: 2;
}

.sc-hero-slider__dot {
	background: rgba(255, 255, 255, 0.85);
	border: 2px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	cursor: pointer;
	flex-shrink: 0;
	height: 14px;
	padding: 0;
	transition: background var(--sc-transition), border-color var(--sc-transition);
	width: 14px;
}

body.storefront-custom-theme .sc-hero-slider__dot:hover {
	background: rgba(255, 255, 255, 1);
	box-shadow: none;
	transform: none !important;
}

.sc-hero-slider__dot.is-active {
	background: var(--sc-accent);
	border-color: var(--sc-accent);
	height: 8px;
	width: 8px;
}

body.storefront-custom-theme .sc-hero-slider__dot.is-active:hover {
	transform: none !important;
}

/* Banner strip */
.sc-banner-strip {
	padding: 1rem 0;
}

.sc-banner-strip__grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, 1fr);
}

.sc-banner-strip__item {
	border-radius: var(--sc-radius-lg);
	color: var(--sc-text-inverse);
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	justify-content: flex-end;
	min-height: 120px;
	padding: 1.25rem;
	text-decoration: none;
	transition: transform var(--sc-transition);
}

.sc-banner-strip__item:hover {
	transform: translateY(-2px);
}

.sc-banner-strip__item--cold { background: linear-gradient(135deg, #0066cc, #004a99); }
.sc-banner-strip__item--ice { background: linear-gradient(135deg, #00aacc, #007799); }
.sc-banner-strip__item--counter { background: linear-gradient(135deg, #336699, #224466); }

.sc-banner-strip__title {
	font-size: 1.125rem;
	font-weight: 700;
}

.sc-banner-strip__subtitle {
	font-size: 0.875rem;
	opacity: 0.9;
}

/* Trust bar */
.sc-trust-bar {
	background: var(--sc-bg-alt);
	border-top: 1px solid var(--sc-border-light);
	border-bottom: 1px solid var(--sc-border-light);
	padding: 1rem 0;
}

.sc-trust-bar__list {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(4, 1fr);
	list-style: none;
	margin: 0;
	padding: 0;
}

.sc-trust-bar__item {
	align-items: center;
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	text-align: left;
}

.sc-trust-bar__icon {
	color: var(--sc-primary);
	flex-shrink: 0;
}

.sc-trust-bar__text {
	color: var(--sc-text);
	font-size: 0.8125rem;
	font-weight: 600;
}

/* Seções */
.sc-section {
	padding: 2rem 0;
}

.sc-section--alt {
	background: var(--sc-bg-alt);
}

.sc-section-header {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.sc-section-header__left {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.sc-section-header__title {
	color: var(--sc-primary);
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0;
}

.sc-section-header__link {
	color: var(--sc-secondary);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
}

.sc-section-header__link:hover {
	text-decoration: underline;
}

/* Countdown */
.sc-countdown {
	align-items: center;
	display: flex;
	gap: 0.6rem;
}

.sc-countdown__label {
	color: var(--sc-text-light);
	font-size: 0.8125rem;
	font-weight: 600;
	white-space: nowrap;
}

.sc-countdown__timer {
	align-items: center;
	display: flex;
	gap: 0.3rem;
}

.sc-countdown__unit {
	align-items: center;
	background: var(--sc-primary);
	border-radius: var(--sc-radius);
	color: var(--sc-text-inverse);
	display: flex;
	flex-direction: column;
	justify-content: center;
	line-height: 1;
	min-width: 38px;
	padding: 0.3rem 0.35rem;
	text-align: center;
}

.sc-countdown__unit strong {
	display: block;
	font-size: 1.05rem;
	font-weight: 700;
}

.sc-countdown__unit small {
	display: block;
	font-size: 0.625rem;
	margin-top: 2px;
	opacity: 0.8;
	text-transform: lowercase;
}

.sc-countdown__sep {
	color: var(--sc-primary);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1;
}

/* Product grid & card */
.sc-product-grid {
	display: grid;
	gap: 1.25rem;
}

.sc-product-grid--cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* Product slider (Swiper) */
.sc-product-slider {
	overflow: hidden;
	padding: 0 3rem;
	position: relative;
}

.sc-product-slider .swiper-wrapper {
	align-items: stretch;
}

.sc-product-slider .swiper-slide {
	box-sizing: border-box;
	display: flex;
	height: auto;
}

.sc-product-slider .swiper-slide .sc-card-product {
	flex: 1;
	width: 100%;
}

body.storefront-custom-theme .sc-product-slider__arrow {
	align-items: center;
	background: var(--sc-bg);
	border: 1px solid var(--sc-border);
	border-radius: 50%;
	box-shadow: var(--sc-shadow);
	color: var(--sc-primary);
	cursor: pointer;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: background-color var(--sc-transition), border-color var(--sc-transition), color var(--sc-transition), box-shadow var(--sc-transition);
	width: 44px;
	z-index: 2;
}

.sc-product-slider__arrow--prev {
	left: 0;
}

.sc-product-slider__arrow--next {
	right: 0;
}

body.storefront-custom-theme .sc-product-slider__arrow:hover {
	background: var(--sc-primary);
	border-color: var(--sc-primary);
	box-shadow: var(--sc-shadow-md);
	color: var(--sc-text-inverse);
	transform: translateY(-50%);
}

body.storefront-custom-theme .sc-product-slider__arrow.swiper-button-disabled {
	cursor: default;
	opacity: 0.35;
	pointer-events: none;
}

.sc-card-product {
	background: var(--sc-bg);
	border: 1px solid var(--sc-border-light);
	border-radius: var(--sc-radius-lg);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
	transition: box-shadow var(--sc-transition), transform var(--sc-transition);
}

.sc-card-product:hover {
	box-shadow: var(--sc-shadow-hover);
	transform: translateY(-3px);
}

.sc-card-product__badge {
	border-radius: var(--sc-radius);
	font-size: 0.6875rem;
	font-weight: 700;
	left: 0.75rem;
	padding: 0.25rem 0.5rem;
	position: absolute;
	text-transform: uppercase;
	top: 0.75rem;
	z-index: 1;
}

.sc-card-product__badge--sale {
	background: var(--sc-accent);
	color: #1a1a1a;
}

.sc-card-product__badge--new {
	background: var(--sc-secondary);
	color: var(--sc-text-inverse);
}

body.storefront-custom-theme .sc-card-product__wishlist {
	align-items: center;
	background: var(--sc-bg);
	border: 1px solid var(--sc-border);
	border-radius: 50%;
	color: var(--sc-text-muted);
	cursor: pointer;
	display: flex;
	height: 36px;
	justify-content: center;
	padding: 0;
	position: absolute;
	right: 0.75rem;
	top: 0.75rem;
	transition: background-color var(--sc-transition), color var(--sc-transition), border-color var(--sc-transition);
	width: 36px;
	z-index: 1;
}

body.storefront-custom-theme .sc-card-product__wishlist svg {
	display: block;
	height: 18px;
	width: 18px;
}

body.storefront-custom-theme .sc-card-product__wishlist:hover {
	background: var(--sc-accent);
	border-color: var(--sc-accent);
	box-shadow: none;
	color: #fff;
	transform: none;
}

.sc-card-product__image-link {
	display: block;
	padding: 1rem;
}

.sc-card-product__image {
	display: block;
	height: auto;
	margin: 0 auto;
	max-height: 200px;
	object-fit: contain;
	width: 100%;
}

.sc-card-product__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 0 1rem 1rem;
}

.sc-stars {
	color: var(--sc-accent);
	font-size: 0.875rem;
	letter-spacing: 1px;
	margin-bottom: 0.35rem;
}

.sc-stars__star--empty {
	color: var(--sc-border);
}

.sc-card-product__title {
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 0.5rem;
}

.sc-card-product__title a {
	color: var(--sc-text);
	text-decoration: none;
}

.sc-card-product__title a:hover {
	color: var(--sc-primary);
}

.sc-card-product__pricing {
	margin-bottom: 0.75rem;
}

.sc-card-product__price-from {
	color: var(--sc-text-muted);
	display: block;
	font-size: 0.75rem;
	text-decoration: line-through;
}

.sc-card-product__price-to {
	color: var(--sc-primary);
	display: block;
	font-size: 1.25rem;
	font-weight: 700;
}

.sc-card-product__installments {
	color: var(--sc-text-light);
	display: block;
	font-size: 0.75rem;
}

.sc-card-product__price-quote {
	color: var(--sc-primary);
	display: block;
	font-size: 1.125rem;
	font-weight: 700;
}

.sc-card-product__variation-field {
	margin-bottom: 0.75rem;
}

.sc-card-product__variation-label {
	color: var(--sc-text);
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	margin-bottom: 0.35rem;
}

.sc-card-product__variation-select {
	-webkit-appearance: none;
	appearance: none;
	background: var(--sc-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232c2c2c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
	border: 1px solid var(--sc-border);
	border-radius: var(--sc-radius);
	color: var(--sc-text);
	font-family: inherit;
	font-size: 0.8125rem;
	height: 2.5rem;
	padding: 0 2rem 0 0.75rem;
	width: 100%;
}

.sc-card-product__btn {
	font-size: 0.8125rem;
	margin-top: auto;
	padding: 0.6rem 1rem;
	text-align: center;
	width: 100%;
}

body.storefront-custom-theme .sc-card-product__btn--whatsapp {
	align-items: center;
	background-color: #25d366;
	border-color: #25d366;
	color: #fff;
	display: inline-flex;
	gap: 0.5rem;
	justify-content: center;
}

body.storefront-custom-theme .sc-card-product__btn--whatsapp:hover {
	background-color: #1da851;
	border-color: #1da851;
	box-shadow: var(--sc-shadow);
	color: #fff;
	transform: translateY(-1px);
}

/* Banners promo & grid */
.sc-banner-promo {
	margin: 1rem 0;
	overflow: hidden;
	position: relative;
}

.sc-banner-promo--industrial {
	background: linear-gradient(90deg, var(--sc-primary-dark), var(--sc-primary-light));
}

.sc-banner-promo.has-image {
	background-color: var(--sc-primary-dark);
	background-position: center;
	background-size: cover;
	min-height: 220px;
}

.sc-banner-promo__overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.sc-banner-promo.has-image .sc-banner-promo__overlay {
	background:
		linear-gradient(180deg, rgba(8, 26, 46, 0.18) 0%, rgba(8, 26, 46, 0.5) 100%),
		rgba(8, 26, 46, 0.58);
}

.sc-banner-promo.has-image .sc-banner-promo__inner {
	background: rgba(8, 26, 46, 0.24);
	border-left: 4px solid var(--sc-accent);
	border-radius: 0 var(--sc-radius-lg) var(--sc-radius-lg) 0;
	padding: 1.5rem 1.5rem 1.5rem 1.25rem;
}

.sc-banner-promo .col-full {
	position: relative;
	z-index: 1;
}

.sc-banner-promo__inner {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: space-between;
	min-height: 220px;
	padding: 1.75rem 0;
}

.sc-banner-promo__title {
	font-size: 1.5rem;
	margin: 0 0 0.5rem;
}

.sc-banner-promo__subtitle {
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.sc-banner-promo__cta {
	background: var(--sc-accent) !important;
	border-color: var(--sc-accent) !important;
	color: #1a1a1a !important;
}

.sc-banner-grid {
	display: none; /* Oculto temporariamente */
	padding: 1.5rem 0;
}

.sc-banner-grid__layout {
	display: grid;
	gap: 1rem;
	grid-template-columns: 2fr 1fr;
	grid-template-rows: repeat(2, 1fr);
	min-height: 280px;
}

.sc-banner-grid__item {
	border-radius: var(--sc-radius-lg);
	color: var(--sc-text-inverse);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
	text-decoration: none;
	transition: transform var(--sc-transition);
}

.sc-banner-grid__item:hover {
	transform: scale(1.01);
}

.sc-banner-grid__item--main {
	background: linear-gradient(135deg, #004a99, #0066cc);
	grid-row: span 2;
}

.sc-banner-grid__item--sub:nth-child(2) {
	background: linear-gradient(135deg, #007799, #00aabb);
}

.sc-banner-grid__item--sub:nth-child(3) {
	background: linear-gradient(135deg, #335588, #446699);
}

.sc-banner-grid__label {
	font-size: 0.8125rem;
	opacity: 0.85;
}

.sc-banner-grid__title {
	font-size: 1.25rem;
	font-weight: 700;
}

/* Blog — últimas postagens */
.sc-blog-latest__grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sc-blog-latest__card {
	background: var(--sc-bg);
	border: 1px solid var(--sc-border-light);
	border-radius: var(--sc-radius-lg);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.sc-blog-latest__image-link {
	display: block;
	overflow: hidden;
}

.sc-blog-latest__image {
	aspect-ratio: 16 / 10;
	display: block;
	height: auto;
	object-fit: cover;
	transition: transform var(--sc-transition);
	width: 100%;
}

.sc-blog-latest__card:hover .sc-blog-latest__image {
	transform: scale(1.04);
}

.sc-blog-latest__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.25rem;
}

.sc-blog-latest__date {
	color: var(--sc-text-muted);
	display: block;
	font-size: 0.75rem;
	margin-bottom: 0.5rem;
}

.sc-blog-latest__title {
	font-size: 1rem;
	line-height: 1.4;
	margin: 0 0 0.65rem;
}

.sc-blog-latest__title a {
	color: var(--sc-primary);
	text-decoration: none;
}

.sc-blog-latest__title a:hover {
	color: var(--sc-secondary);
}

.sc-blog-latest__excerpt {
	color: var(--sc-text-light);
	flex: 1;
	font-size: 0.875rem;
	line-height: 1.6;
	margin: 0 0 1rem;
}

.sc-blog-latest__btn {
	align-self: flex-start;
	font-size: 0.8125rem;
}

.sc-blog-latest__empty {
	color: var(--sc-text-light);
	font-size: 0.9375rem;
	margin: 0;
	text-align: center;
}

.sc-blog-latest__empty a {
	color: var(--sc-secondary);
	font-weight: 600;
}

/* Info cards */
.sc-info-cards {
	padding: 2rem 0;
}

.sc-info-cards__grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(2, 1fr);
}

.sc-info-card {
	background: var(--sc-bg);
	border: 1px solid var(--sc-border-light);
	border-radius: var(--sc-radius-lg);
	display: grid;
	gap: 1rem;
	grid-template-columns: 180px 1fr;
	overflow: hidden;
}

.sc-info-card__image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.sc-info-card__body {
	padding: 1.25rem 1.25rem 1.25rem 0;
}

.sc-info-card__title {
	font-size: 1rem;
	margin: 0 0 0.5rem;
}

.sc-info-card__title a {
	color: var(--sc-primary);
	text-decoration: none;
}

.sc-info-card__excerpt {
	color: var(--sc-text-light);
	font-size: 0.875rem;
	line-height: 1.6;
	margin: 0 0 1rem;
}

.sc-info-card__btn {
	font-size: 0.8125rem;
}

/* Newsletter */
.sc-newsletter {
	background: #eef2f6;
	padding: 2rem 0;
}

.sc-newsletter__inner {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: space-between;
}

.sc-newsletter__title {
	color: var(--sc-primary);
	font-size: 1.25rem;
	margin: 0 0 0.35rem;
}

.sc-newsletter__subtitle {
	color: var(--sc-text-light);
	margin: 0;
}

.sc-newsletter__form {
	display: block;
	width: 100%;
	max-width: 640px;
}

.sc-newsletter__fields {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.sc-newsletter__form input {
	border: 1px solid var(--sc-border);
	border-radius: var(--sc-radius);
	flex: 1 1 160px;
	font-size: 0.875rem;
	min-width: 0;
	padding: 0.65rem 0.875rem;
}

.sc-newsletter__submit {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	gap: 0.45rem;
	justify-content: center;
	min-width: 120px;
	position: relative;
	white-space: nowrap;
}

.sc-newsletter__submit.is-loading {
	opacity: 0.92;
	pointer-events: none;
}

.sc-newsletter__submit-loading {
	display: none;
}

.sc-newsletter__submit.is-loading .sc-newsletter__submit-text {
	display: none;
}

.sc-newsletter__submit.is-loading .sc-newsletter__submit-loading {
	align-items: center;
	display: inline-flex;
	justify-content: center;
}

.sc-newsletter__spinner {
	animation: sc-newsletter-spin 0.8s linear infinite;
}

@keyframes sc-newsletter-spin {
	to {
		transform: rotate(360deg);
	}
}

.sc-newsletter__feedback {
	border-radius: var(--sc-radius);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.45;
	margin: 0.75rem 0 0;
	padding: 0.75rem 0.9rem;
}

.sc-newsletter__feedback.is-success {
	background: rgba(0, 138, 32, 0.1);
	border: 1px solid rgba(0, 138, 32, 0.25);
	color: #0f6b2a;
}

.sc-newsletter__feedback.is-error {
	background: rgba(192, 57, 43, 0.08);
	border: 1px solid rgba(192, 57, 43, 0.25);
	color: #a93226;
}

.sc-newsletter__form.is-success .sc-newsletter__fields {
	display: none;
}

/* Footer GELOTEC */
.sc-footer {
	width: 100%;
}

.sc-footer__main {
	background: var(--sc-bg);
	border-top: 1px solid var(--sc-border-light);
	padding: 2.5rem 0;
}

.sc-footer__grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(5, 1fr);
}

.sc-footer__heading {
	color: var(--sc-primary);
	font-size: 0.875rem;
	font-weight: 700;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.sc-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sc-footer__links li,
.sc-footer__links .menu-item {
	margin-bottom: 0.5rem;
}

.sc-footer__links a {
	color: var(--sc-text-light);
	display: inline-block;
	font-size: 0.8125rem;
	text-decoration: none;
}

.sc-footer__links a:hover {
	color: var(--sc-primary);
}

.sc-footer__contact-item {
	color: var(--sc-text-light);
	font-size: 0.8125rem;
	margin: 0 0 0.5rem;
}

.sc-footer__contact-item a {
	color: var(--sc-primary);
}

.sc-footer__contact-wa {
	align-items: center;
	color: var(--sc-primary);
	display: inline-flex;
	gap: 0.45rem;
	text-decoration: none;
}

.sc-footer__contact-wa:hover {
	color: var(--sc-secondary);
}

.sc-footer__contact-wa svg {
	color: #25d366;
	flex-shrink: 0;
}

.sc-footer__contact-address {
	align-items: flex-start;
	display: flex;
	gap: 0.55rem;
}

.sc-footer__contact-address .sc-footer__contact-icon {
	color: var(--sc-primary);
	flex-shrink: 0;
	line-height: 1;
	margin-top: 0.1rem;
}

.sc-footer__contact-address a {
	color: var(--sc-primary);
	font-weight: 600;
	line-height: 1.5;
	text-decoration: none;
}

.sc-footer__contact-address a:hover {
	color: var(--sc-secondary);
}

.sc-footer__payments {
	background: var(--sc-bg-alt);
	border-top: 1px solid var(--sc-border-light);
	padding: 1rem 0;
}

.sc-footer__payments-inner {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: space-between;
}

.sc-footer__payment-methods,
.sc-footer__security {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.sc-footer__payment-label {
	color: var(--sc-text-light);
	font-size: 0.75rem;
	font-weight: 600;
	margin-right: 0.25rem;
}

.sc-footer__payment-badge,
.sc-footer__security-badge {
	align-items: center;
	background: var(--sc-bg);
	border: 1px solid var(--sc-border);
	border-radius: var(--sc-radius);
	color: var(--sc-text-light);
	display: inline-flex;
	font-size: 0.6875rem;
	font-weight: 700;
	height: 28px;
	justify-content: center;
	letter-spacing: 0.02em;
	min-width: 46px;
	padding: 0 0.6rem;
	text-transform: uppercase;
}

.sc-footer__security-badge {
	background: #eaf3ea;
	border-color: #cfe6cf;
	color: #2f7d32;
}

.sc-footer__bottom {
	background: var(--sc-primary-dark);
	color: rgba(255, 255, 255, 0.7);
	padding: 1rem 0;
	text-align: center;
}

.sc-footer__copyright {
	font-size: 0.75rem;
	margin: 0;
}

.sc-footer__cnpj {
	font-size: 0.75rem;
	margin: 0.35rem 0 0;
	opacity: 0.9;
}

.sc-footer__copyright strong {
	color: var(--sc-text-inverse);
}

.sc-homepage-editor {
	background: var(--sc-bg);
	border-radius: var(--sc-radius-lg);
	padding: 2rem;
}

/* Layout responsivo */
@media (max-width: 1024px) {
	.sc-product-grid--cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.sc-product-slider {
		padding: 0 2.75rem;
	}

	body.storefront-custom-theme .sc-product-slider__arrow {
		height: 40px;
		width: 40px;
	}

	.sc-footer__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.sc-banner-grid__layout {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.sc-banner-grid__item--main {
		grid-row: auto;
		min-height: 160px;
	}
}

@media (max-width: 900px) {
	.sc-header__topbar-link span {
		display: inline;
	}

	.sc-header__nav {
		display: none;
	}
}

@media (max-width: 768px) {
	.sc-product-slider {
		padding: 0 2.5rem;
	}

	body.storefront-custom-theme .sc-product-slider__arrow {
		height: 36px;
		width: 36px;
	}

	body.storefront-custom-theme .sc-product-slider__arrow svg {
		height: 18px;
		width: 18px;
	}

	.sc-header__main {
		padding: 0.75rem 0;
	}

	.sc-header__main-inner {
		align-items: center;
		column-gap: 0.75rem;
		flex-wrap: nowrap;
	}

	.sc-header__logo {
		margin-right: 0;
	}

	.sc-header__logo-text {
		font-size: 1.4rem;
	}

	.sc-header__actions {
		gap: 1.1rem;
		margin-left: 0;
	}

	.sc-header__search {
		display: none;
	}

	.sc-header__search-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.sc-header__cep-text {
		display: none;
	}

	.sc-shop-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.sc-shop-toolbar__ordering {
		margin-left: 0;
		width: 100%;
	}

	body.sc-page-shop .sc-shop-toolbar .woocommerce-ordering select {
		width: 100%;
	}

	.sc-trust-bar__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.sc-banner-strip__grid {
		grid-template-columns: 1fr;
	}

	.sc-info-cards__grid {
		grid-template-columns: 1fr;
	}

	.sc-blog-latest__grid {
		grid-template-columns: 1fr;
	}

	.sc-info-card {
		grid-template-columns: 1fr;
	}

	.sc-info-card__body {
		padding: 1rem;
	}

	.sc-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.sc-hero-slider__title {
		font-size: 1.5rem;
	}

	.sc-hero-slider__slide.has-image .sc-hero-slider__content {
		padding: 1rem 1.1rem 1.1rem;
	}

	.sc-newsletter__fields {
		width: 100%;
	}

	.sc-newsletter__form input,
	.sc-newsletter__submit {
		flex: 1 1 100%;
		min-width: 100%;
	}
}

/* ==========================================================================
   WhatsApp flutuante
   ========================================================================== */

.sc-whatsapp-float {
	align-items: center;
	animation: sc-wa-float 3s ease-in-out infinite;
	background: #25d366;
	border-radius: 50%;
	bottom: 1.5rem;
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
	color: #fff;
	display: flex;
	height: 58px;
	justify-content: center;
	position: fixed;
	right: 1.5rem;
	text-decoration: none;
	transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
	width: 58px;
	z-index: 1050;
}

.sc-whatsapp-float__icon {
	align-items: center;
	color: #fff;
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.sc-whatsapp-float__icon svg {
	fill: #fff;
	color: #fff;
}

.sc-whatsapp-float:hover .sc-whatsapp-float__icon,
.sc-whatsapp-float:hover .sc-whatsapp-float__icon svg {
	fill: #fff;
	color: #fff;
}

.sc-whatsapp-float__pulse {
	animation: sc-wa-pulse 2.2s ease-out infinite;
	background: #25d366;
	border-radius: 50%;
	inset: 0;
	position: absolute;
	z-index: 1;
}

.sc-whatsapp-float:hover {
	animation: none;
	background: #1ebe57;
	box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
	color: #fff;
	transform: scale(1.08);
}

.sc-whatsapp-float:focus-visible {
	outline: 2px solid var(--sc-secondary);
	outline-offset: 3px;
}

@keyframes sc-wa-float {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-5px);
	}
}

@keyframes sc-wa-pulse {
	0% {
		opacity: 0.55;
		transform: scale(1);
	}

	70%,
	100% {
		opacity: 0;
		transform: scale(1.55);
	}
}

@media (max-width: 768px) {
	.sc-whatsapp-float {
		bottom: 1.25rem;
		height: 54px;
		right: 1rem;
		width: 54px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sc-whatsapp-float {
		animation: none;
	}

	.sc-whatsapp-float__pulse {
		animation: none;
		display: none;
	}
}

/* ==========================================================================
   Barra de cookies
   ========================================================================== */

.sc-cookie-bar {
	background: rgba(255, 255, 255, 0.97);
	border-top: 1px solid var(--sc-border-light);
	bottom: 0;
	box-shadow: 0 -8px 28px rgba(15, 39, 68, 0.1);
	left: 0;
	opacity: 0;
	padding: 0.85rem 0;
	pointer-events: none;
	position: fixed;
	right: 0;
	transform: translateY(100%);
	transition: transform 0.38s ease, opacity 0.38s ease;
	z-index: 1040;
}

.sc-cookie-bar.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.sc-cookie-bar.is-hiding {
	opacity: 0;
	pointer-events: none;
	transform: translateY(100%);
}

.sc-cookie-bar__inner {
	align-items: center;
	display: flex;
	gap: 1rem 1.5rem;
	justify-content: space-between;
}

.sc-cookie-bar__content {
	flex: 1;
	min-width: 0;
}

.sc-cookie-bar__title {
	color: var(--sc-primary);
	font-size: 0.875rem;
	font-weight: 700;
	margin: 0 0 0.2rem;
}

.sc-cookie-bar__text {
	color: var(--sc-text-light);
	font-size: 0.8125rem;
	line-height: 1.45;
	margin: 0;
}

.sc-cookie-bar__text a {
	color: var(--sc-secondary);
	font-weight: 600;
	text-decoration: underline;
}

.sc-cookie-bar__text a:hover {
	color: var(--sc-primary);
}

.sc-cookie-bar__actions {
	display: flex;
	flex-shrink: 0;
	gap: 0.5rem;
}

body.storefront-custom-theme .sc-cookie-bar__btn {
	border-radius: var(--sc-radius);
	cursor: pointer;
	font-family: inherit;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.2;
	padding: 0.55rem 1rem;
	text-transform: none;
	transition: background-color var(--sc-transition), border-color var(--sc-transition), color var(--sc-transition), transform var(--sc-transition);
	white-space: nowrap;
}

body.storefront-custom-theme .sc-cookie-bar__btn--accept {
	background: var(--sc-primary);
	border: 2px solid var(--sc-primary);
	color: var(--sc-text-inverse);
}

body.storefront-custom-theme .sc-cookie-bar__btn--accept:hover {
	background: var(--sc-primary-dark);
	border-color: var(--sc-primary-dark);
	box-shadow: none;
	color: var(--sc-text-inverse);
	transform: translateY(-1px);
}

body.storefront-custom-theme .sc-cookie-bar__btn--reject {
	background: transparent;
	border: 2px solid var(--sc-border);
	color: var(--sc-text);
}

body.storefront-custom-theme .sc-cookie-bar__btn--reject:hover {
	background: var(--sc-bg-alt);
	border-color: var(--sc-text-muted);
	box-shadow: none;
	color: var(--sc-primary);
	transform: none;
}

@media (max-width: 768px) {
	.sc-cookie-bar {
		padding: 0.75rem 0 calc(0.75rem + env(safe-area-inset-bottom, 0px));
	}

	.sc-cookie-bar__inner {
		align-items: stretch;
		flex-direction: column;
	}

	.sc-cookie-bar__actions {
		justify-content: flex-end;
	}

	body.sc-cookie-bar-visible .sc-whatsapp-float {
		bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
	}
}

@media (prefers-reduced-motion: reduce) {
	.sc-cookie-bar {
		transition: none;
	}
}
