/* ==========================================================================
   VestCare — Design tokens from Figma
   ========================================================================== */

:root {
	--vc-navy: #0a2442;
	--vc-navy-tab: #092342;
	--vc-teal: #048d8c;
	--vc-teal-dark: #048d8b;
	--vc-gold: #ba9b5b;
	--vc-blue-200: #ace2f6;
	--vc-blue-700: #163062;
	--vc-cream: #e6e3d0;
	--vc-primary-500: #392f30;
	--vc-primary-400: #8c7376;
	--vc-primary-700: #161213;
	--vc-text: #1f1f1f;
	--vc-text-body: #3c4048;
	--vc-text-muted: #6b7280;
	--vc-border: #e1e2e4;
	--vc-border-light: #e5e7eb;
	--vc-bg-hero: #e4e4e4;
	--vc-bg-product: #ededed;
	--vc-white: #ffffff;
	--vc-container: 1216px;
	--vc-gutter: 112px;
	--vc-font-heading: 'Raleway', sans-serif;
	--vc-font-body: 'Inter', sans-serif;
	--vc-shadow-header: 0 5px 9.6px rgba(0, 0, 0, 0.04);
	--vc-radius: 8px;
	--vc-category-banner-h: 500px;
	color-scheme: light;
}

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

html {
	scroll-behavior: smooth;
	background: var(--vc-white);
}

body {
	margin: 0;
	font-family: var(--vc-font-body);
	font-size: 14px;
	line-height: 1.5;
	color: var(--vc-text-body);
	background: var(--vc-white);
	-webkit-font-smoothing: antialiased;
}

#main-content {
	background: var(--vc-white);
	overflow-x: clip;
}

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

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

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

p {
	margin: 0;
}

/* Layout */
.vc-container {
	width: 100%;
	max-width: calc(var(--vc-container) + var(--vc-gutter) * 2);
	margin: 0 auto;
	padding-left: var(--vc-gutter);
	padding-right: var(--vc-gutter);
}

/* Wordmark SVG (Figma logo-vestcare-escrita) */
.vc-wordmark-svg {
	position: relative;
}

.vc-wordmark-svg__layer {
	position: absolute;
}

.vc-wordmark-svg__layer img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	display: block;
}

.vc-wordmark-svg--header {
	width: 166px;
	height: 21.37px;
	flex-shrink: 0;
}

.vc-wordmark-svg--watermark {
	width: 100%;
	max-width: 1440px;
	height: 191px;
	margin: 0 auto;
}

.vc-wordmark-svg--brand-strip {
	width: 100%;
	height: 100%;
}

/* ==========================================================================
   Header
   ========================================================================== */

.vc-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--vc-white);
	width: 100%;
	transition: box-shadow 0.25s ease;
}

body.admin-bar .vc-site-header {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .vc-site-header {
		top: 46px;
	}
}

.vc-site-header.is-scrolled {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vc-site-header.is-scrolled .vc-header-main {
	box-shadow: none;
}

.vc-header-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 19px var(--vc-gutter);
	box-shadow: var(--vc-shadow-header);
	max-width: 1440px;
	margin: 0 auto;
	width: 100%;
	transition: padding 0.25s ease;
}

.vc-site-header.is-scrolled .vc-header-main {
	padding-top: 14px;
	padding-bottom: 14px;
}

.vc-header-main__left {
	display: flex;
	align-items: center;
	gap: 48px;
}

.vc-header-main__logo {
	display: block;
	flex-shrink: 0;
}

.vc-header-main__logo .vc-wordmark-svg--header {
	display: block;
}

.vc-search {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 545px;
	max-width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--vc-border);
	border-radius: var(--vc-radius);
}

.vc-search svg {
	flex-shrink: 0;
	color: var(--vc-text-body);
}

.vc-search input {
	flex: 1;
	border: none;
	outline: none;
	font-family: var(--vc-font-heading);
	font-size: 14px;
	color: var(--vc-text-body);
	background: transparent;
}

.vc-search input::placeholder {
	color: var(--vc-text-body);
}

.vc-header-actions {
	display: flex;
	align-items: center;
	gap: 24px;
}

.vc-header-action {
	display: flex;
	align-items: center;
	gap: 4px;
	font-family: var(--vc-font-heading);
	font-weight: 500;
	font-size: 14px;
	color: var(--vc-text-body);
	transition: color 0.2s;
}

.vc-header-action:hover {
	color: var(--vc-teal);
}

.vc-header-action svg {
	width: 20px;
	height: 20px;
}

.vc-header-action--cart .vc-cart-count {
	font-size: 16px;
	color: var(--vc-gold);
	font-weight: 500;
}

.vc-nav-secondary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px var(--vc-gutter);
	background: var(--vc-white);
	max-width: 1440px;
	margin: 0 auto;
	width: 100%;
	flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
	.vc-site-header,
	.vc-header-main {
		transition: none;
	}
}

.vc-nav-secondary a {
	font-family: var(--vc-font-heading);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.5;
	color: var(--vc-text-body);
	white-space: nowrap;
	flex-shrink: 0;
	transition: color 0.2s;
}

.vc-nav-secondary a:hover,
.vc-nav-secondary a.is-active {
	color: var(--vc-teal);
}

/* ==========================================================================
   Marquee
   ========================================================================== */

.vc-marquee {
	background: var(--vc-teal-dark);
	overflow: hidden;
	padding: 8px 0;
	width: 100%;
}

.vc-marquee__track {
	display: flex;
	width: max-content;
	animation: vc-marquee 30s linear infinite;
}

.vc-marquee__group {
	display: flex;
	align-items: center;
	gap: 88px;
	padding-right: 88px;
}

.vc-marquee__item {
	font-family: var(--vc-font-heading);
	font-size: 14px;
	font-weight: 400;
	color: var(--vc-white);
	text-transform: uppercase;
	white-space: nowrap;
}

.vc-marquee .vc-brand-symbol--icon {
	flex-shrink: 0;
}

@keyframes vc-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.vc-hero {
	position: relative;
	background: var(--vc-bg-hero);
	width: 100%;
	overflow: hidden;
}

.vc-hero__inner {
	position: relative;
	max-width: 1440px;
	height: 528px;
	margin: 0 auto;
}

.vc-hero__models {
	position: absolute;
	left: calc(50% + 29.62px);
	top: 17px;
	width: 1285.242px;
	height: 675px;
	transform: translateX(-50%);
	z-index: 2;
	pointer-events: none;
}

.vc-hero,
.vc-marquee,
.vc-categories {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}

.vc-hero__models img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.vc-hero__text {
	position: absolute;
	left: 172px;
	top: 149px;
	width: 293px;
	z-index: 3;
	margin: 0;
	font-family: var(--vc-font-heading);
	color: var(--vc-text);
	line-height: 1.4;
}

.vc-hero__text-regular {
	display: block;
	font-weight: 500;
	font-size: 24px;
}

.vc-hero__text-bold {
	display: block;
	font-weight: 700;
	font-size: 28px;
}

.vc-hero__promo {
	position: absolute;
	left: 1003px;
	top: 101px;
	width: 288px;
	height: 233px;
	z-index: 3;
}

.vc-hero__discount {
	position: relative;
	width: 100%;
	height: 199px;
	color: var(--vc-gold);
}

.vc-hero__discount-number {
	position: absolute;
	left: 0;
	top: 0;
	font-family: var(--vc-font-body);
	font-weight: 800;
	font-size: 164.388px;
	line-height: 1;
}

.vc-hero__discount-percent {
	position: absolute;
	left: 206px;
	top: 32px;
	font-family: var(--vc-font-heading);
	font-weight: 800;
	font-size: 83.368px;
	line-height: 1;
}

.vc-hero__discount-off {
	position: absolute;
	left: 198px;
	top: 115px;
	font-family: var(--vc-font-heading);
	font-weight: 800;
	font-size: 47.099px;
	line-height: 1;
}

.vc-hero__promo-label {
	position: absolute;
	left: 50%;
	top: 183px;
	width: 260px;
	transform: translateX(-50%);
	margin: 0;
	font-family: var(--vc-font-heading);
	font-weight: 600;
	font-size: 17.607px;
	line-height: 1.4;
	letter-spacing: 5.6342px;
	text-transform: uppercase;
	text-align: center;
	color: var(--vc-text);
}

/* Brand symbol — Figma nodes 19:3304 / 19:3305 */
.vc-brand-symbol--hero {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.vc-brand-symbol__circle {
	position: absolute;
	left: -637px;
	top: -1015px;
	width: 2671px;
	height: 2671px;
	border-radius: 50%;
	overflow: hidden;
}

.vc-brand-symbol__frame {
	position: absolute;
	left: 50%;
	top: calc(50% + 6.73px);
	width: 2304.815px;
	height: 1335.5px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translate(-50%, -50%);
}

.vc-brand-symbol__symbol {
	position: relative;
	display: flex;
	width: 1335.5px;
	height: 2304.815px;
	padding: 0.031px 7.35px 6.398px 0;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	transform: rotate(-90deg);
}

.vc-brand-symbol__layer {
	position: absolute;
}

.vc-brand-symbol__layer img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
}

.vc-brand-symbol__layer--1 {
	inset: 13.72% 0.55% 33.89% 18.76%;
}

.vc-brand-symbol__layer--2 {
	inset: 44.31% 18.98% 9.88% 25.49%;
}

.vc-brand-symbol__layer--3 {
	inset: 13.71% 58.85% 59.4% 0;
}

.vc-brand-symbol__layer--4 {
	inset: 0 37.5% 64.23% 37.37%;
}

.vc-brand-symbol__layer--5 {
	inset: 69.75% 25.68% 9.57% 55.71%;
}

.vc-brand-symbol__layer--6 {
	inset: 73.02% 41.1% 0.28% 43.98%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vc-brand-symbol__layer--6 .vc-brand-symbol__layer-transform {
	width: 100%;
	height: 100%;
	transform: scaleX(-1) rotate(82.63deg);
}

.vc-brand-symbol__layer--7 {
	inset: 47.12% 39.3% 38.48% 37.42%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vc-brand-symbol__layer--7 .vc-brand-symbol__layer-transform {
	width: 100%;
	height: 100%;
	transform: scaleX(-1) rotate(-24.44deg);
}

.vc-brand-symbol--icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	flex-shrink: 0;
}

.vc-brand-symbol__icon {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vc-brand-symbol__symbol--icon {
	width: 1335.5px;
	height: 2304.815px;
	transform: rotate(-90deg) scale(0.014);
	transform-origin: center center;
}

.vc-brand-symbol--icon .vc-brand-symbol__layer img {
	filter: brightness(0) invert(1);
}

@media (max-width: 1200px) {
	.vc-brand-symbol__circle {
		left: -45%;
		top: -80%;
		transform: scale(0.72);
		transform-origin: top left;
	}

	.vc-hero__text {
		left: 8%;
		top: 120px;
		width: 240px;
	}

	.vc-hero__text-regular {
		font-size: 20px;
	}

	.vc-hero__text-bold {
		font-size: 24px;
	}

	.vc-hero__promo {
		left: auto;
		right: 5%;
		top: 80px;
		transform: scale(0.75);
		transform-origin: top right;
	}

	.vc-hero__models {
		width: 110%;
		height: auto;
		min-height: 480px;
	}
}

@media (max-width: 600px) {
	.vc-brand-symbol__circle {
		left: -55%;
		top: -60%;
		transform: scale(0.5);
	}
}

/* ==========================================================================
   Category banners — Figma node 19:3792
   ========================================================================== */

.vc-categories {
	display: flex;
	align-items: flex-start;
	align-content: flex-start;
	align-self: stretch;
	flex-wrap: wrap;
	gap: 0;
	width: 100%;
	max-width: none;
	margin: 0;
	padding-bottom: 80px;
	background: var(--vc-white);
}

.vc-category-banner {
	flex: 1 0 0;
	min-width: 1px;
	height: var(--vc-category-banner-h);
	position: relative;
	display: block;
	text-decoration: none;
	border: none;
	overflow: hidden;
	border-radius: 4px;
}

.vc-category-banner__clip,
.vc-category-banner__visual {
	position: absolute;
	inset: 0;
	border-radius: 4px;
	overflow: hidden;
	pointer-events: none;
}

.vc-category-banner__figure-stack {
	position: absolute;
	inset: 0;
}

.vc-category-banner__figure-overflow {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.vc-category-banner__figure-overflow img {
	display: block;
	max-width: none;
}

.vc-category-banner__gradient {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.vc-category-banner__label {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 48px;
	font-family: var(--vc-font-body);
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	text-align: center;
	color: var(--vc-text);
	white-space: nowrap;
	pointer-events: none;
}

/* Scrubs — 19:3794 */
.vc-category-banner--scrubs .vc-category-banner__figure {
	position: absolute;
	width: 108.889%;
	height: 112%;
	left: -8.889%;
	top: -12%;
}

.vc-category-banner--scrubs .vc-category-banner__figure-overflow img {
	position: absolute;
	width: 100%;
	height: 199.89%;
	left: 1.67%;
	top: 6.1%;
}

.vc-category-banner--scrubs .vc-category-banner__gradient {
	background: linear-gradient(215.99deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 85.86%);
}

/* Jalecos — 19:3799 */
.vc-category-banner--jalecos .vc-category-banner__backdrop {
	position: absolute;
	inset: 0;
	background: #2b3440;
	border-radius: 4px;
	z-index: 0;
}

.vc-category-banner--jalecos .vc-category-banner__figure-overflow {
	z-index: 1;
	border-radius: 4px;
}

.vc-category-banner--jalecos .vc-category-banner__figure-overflow img {
	position: absolute;
	width: 130.76%;
	height: 268.85%;
	left: -17.81%;
	top: -22%;
}

.vc-category-banner--jalecos .vc-category-banner__gradient {
	border-radius: 4px;
	background: linear-gradient(210.27deg, rgba(0, 0, 0, 0) 53.022%, rgba(0, 0, 0, 0.24) 87.068%);
}

/* Brand strip — Figma node 9:2212 */
.vc-brand-strip {
	width: 100%;
	background: var(--vc-white);
}

.vc-brand-strip__wrap {
	width: 100%;
	max-width: calc(var(--vc-container) + var(--vc-gutter) * 2);
	margin: 0 auto;
	padding-left: var(--vc-gutter);
	padding-right: var(--vc-gutter);
}

.vc-brand-strip__stage {
	position: relative;
	height: 275px;
	max-width: var(--vc-container);
	margin: 0 auto;
	overflow: hidden;
	border-radius: 4px;
	background: var(--vc-navy);
}

.vc-brand-strip__model {
	position: absolute;
	left: 196px;
	top: -48px;
	width: 793px;
	height: 528px;
	overflow: hidden;
	pointer-events: none;
}

.vc-brand-strip__model img {
	position: absolute;
	width: 100%;
	height: 213.04%;
	top: 0.06%;
	left: 0;
	max-width: none;
	display: block;
}

.vc-brand-strip__model--left {
	z-index: 1;
}

.vc-brand-strip__model--right {
	z-index: 3;
}

.vc-brand-strip__wordmark {
	position: absolute;
	left: calc(50% - 465.46px);
	top: 188px;
	width: 2033.077px;
	height: 261.683px;
	transform: translateX(-50%);
	z-index: 2;
	pointer-events: none;
}

.vc-brand-strip__wordmark .vc-wordmark-svg--brand-strip {
	position: absolute;
	inset: 0;
}

/* ==========================================================================
   Product sections
   ========================================================================== */

.vc-section {
	padding: 120px 0;
}

.vc-section__header {
	margin-bottom: 48px;
}

.vc-section__title {
	font-family: var(--vc-font-heading);
	font-weight: 600;
	font-size: 32px;
	line-height: 1.2;
	color: var(--vc-text);
	margin-bottom: 24px;
}

.vc-section__subtitle {
	font-family: var(--vc-font-body);
	font-size: 18px;
	line-height: 1.5;
	color: var(--vc-text-body);
}

.vc-products-carousel {
	position: relative;
}

.vc-products-track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.vc-products-track::-webkit-scrollbar {
	display: none;
}

.vc-products-track .vc-product-card {
	flex: 0 0 calc(25% - 18px);
	min-width: 280px;
	scroll-snap-align: start;
}

.vc-product-card {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
	background: var(--vc-white);
}

.vc-product-card__image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 340px;
	padding: 10px;
	background: var(--vc-bg-product);
	overflow: hidden;
	text-decoration: none;
}

.vc-product-card__badges {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.vc-product-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 12px;
	border-radius: 4px;
	font-family: var(--vc-font-heading);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.3;
	text-transform: none;
}

.vc-product-card__badge--gold {
	background: var(--vc-gold);
	color: #ffe0e4;
}

.vc-product-card__badge--teal {
	background: var(--vc-teal-dark);
	color: var(--vc-white);
}

.vc-product-card__badge--blue {
	background: var(--vc-blue-200);
	color: var(--vc-blue-700);
}

.vc-product-card__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.vc-product-card__body {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.vc-product-card__meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.vc-product-card__rating {
	display: flex;
	align-items: center;
}

.vc-stars {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

.vc-stars__item {
	display: block;
	flex-shrink: 0;
	color: var(--vc-gold);
}

.vc-stars__item.is-empty {
	color: var(--vc-border-light);
}

.vc-product-card__name {
	margin: 0;
	font-family: var(--vc-font-body);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.3;
	color: var(--vc-text);
}

.vc-product-card__name a {
	color: inherit;
	text-decoration: none;
}

.vc-product-card__name a:hover {
	text-decoration: underline;
}

.vc-product-card__pricing {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.vc-product-card__price-old {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #e40211;
	text-decoration: line-through;
}

.vc-product-card__price-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.vc-product-card__price-row .vc-product-card__price {
	margin: 0;
}

.vc-product-card__price {
	margin: 0;
	font-family: var(--vc-font-body);
	font-weight: 600;
	font-size: 20px;
	line-height: 1.3;
	color: var(--vc-text);
}

.vc-product-card__install {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--vc-text-muted);
}

.vc-product-card__sizes {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
}

.vc-product-card__sizes-label {
	font-family: var(--vc-font-body);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.5;
	color: var(--vc-text);
	white-space: nowrap;
	flex-shrink: 0;
}

.vc-product-card__size-options {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-shrink: 0;
}

.vc-size-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	min-width: 24px;
	height: 22px;
	padding: 0;
	border: 1px solid var(--vc-text);
	border-radius: var(--vc-radius);
	font-family: var(--vc-font-body);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--vc-text);
	background: var(--vc-white);
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.vc-size-btn:hover,
.vc-size-btn.is-active {
	border-color: var(--vc-text);
	background: var(--vc-white);
	color: var(--vc-text);
}

.vc-product-card__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 16px 24px;
	border: 1px solid var(--vc-text);
	border-radius: var(--vc-radius);
	font-family: var(--vc-font-body);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.5;
	color: var(--vc-text);
	text-transform: lowercase;
	text-decoration: none;
	background: var(--vc-white);
	transition: background 0.2s ease, color 0.2s ease;
}

.vc-product-card__cta:hover {
	background: var(--vc-text);
	color: var(--vc-white);
}

.vc-carousel-nav {
	position: absolute;
	top: 170px;
	left: -35px;
	right: -35px;
	transform: none;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	z-index: 2;
}

.vc-reviews-carousel .vc-carousel-nav {
	top: 50%;
	left: -20px;
	right: -20px;
	transform: translateY(-50%);
}

.vc-carousel-btn {
	pointer-events: all;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--vc-white);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--vc-text);
	transition: background 0.2s;
}

.vc-carousel-btn:hover {
	background: var(--vc-teal);
	color: var(--vc-white);
}

.vc-carousel-btn svg {
	width: 24px;
	height: 24px;
}

.vc-carousel-btn--next svg {
	transform: rotate(-90deg);
}

.vc-carousel-btn--prev svg {
	transform: rotate(90deg);
}

/* ==========================================================================
   Reviews
   ========================================================================== */

.vc-reviews {
	padding: 64px 0 80px;
}

.vc-reviews__title {
	font-family: var(--vc-font-heading);
	font-weight: 600;
	font-size: 32px;
	color: var(--vc-text);
	margin-bottom: 24px;
}

.vc-reviews-carousel {
	position: relative;
}

.vc-reviews-track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.vc-reviews-track::-webkit-scrollbar {
	display: none;
}

.vc-reviews-track .vc-review-card {
	flex: 0 0 calc(25% - 18px);
	min-width: 260px;
	scroll-snap-align: start;
}

.vc-review-card {
	background: var(--vc-white);
	border: 1px solid var(--vc-border-light);
	border-radius: var(--vc-radius);
	padding: 24px;
	min-height: 325px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
}

.vc-review-card__stars {
	display: flex;
	gap: 0;
}

.vc-review-card__stars svg {
	width: 16px;
	height: 16px;
	color: var(--vc-gold);
}

.vc-review-card__stars svg.is-empty {
	color: var(--vc-border-light);
}

.vc-review-card__text {
	font-family: var(--vc-font-body);
	font-size: 16px;
	line-height: 1.5;
	color: var(--vc-text-body);
}

.vc-review-card__author {
	font-family: var(--vc-font-body);
	font-weight: 500;
	font-size: 14px;
	color: var(--vc-text);
}

/* ==========================================================================
   Newsletter
   ========================================================================== */

.vc-newsletter {
	padding: 120px 24px;
	text-align: center;
	background: #092342;
}

.vc-newsletter .vc-container {
	max-width: 750px;
}

.vc-newsletter__badge {
	font-family: var(--vc-font-heading);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--vc-gold);
	margin-bottom: 16px;
}

.vc-newsletter__badge strong {
	font-weight: 700;
}

.vc-newsletter__title {
	font-family: var(--vc-font-heading);
	font-weight: 500;
	font-size: 40px;
	line-height: normal;
	color: var(--vc-white);
	margin-bottom: 16px;
}

.vc-newsletter__desc {
	font-family: var(--vc-font-body);
	font-size: 18px;
	line-height: 1.5;
	color: #f4f4f6;
	max-width: 750px;
	margin: 0 auto 32px;
}

.vc-newsletter__form {
	display: flex;
	justify-content: center;
	gap: 8px;
	max-width: 452px;
	margin: 0 auto;
}

.vc-newsletter__input {
	flex: 1;
	min-width: 0;
	width: 338px;
	max-width: 338px;
	padding: 16px 24px;
	border: 1px solid rgba(209, 213, 219, 0.5);
	border-radius: var(--vc-radius);
	font-family: var(--vc-font-body);
	font-size: 16px;
	color: #f4f4f6;
	background: transparent;
	outline: none;
}

.vc-newsletter__input::placeholder {
	color: #f4f4f6;
	opacity: 0.85;
}

.vc-newsletter__input:focus {
	border-color: var(--vc-gold);
}

.vc-newsletter__submit {
	padding: 16px 24px;
	background: var(--vc-gold);
	color: var(--vc-white);
	border-radius: var(--vc-radius);
	font-family: var(--vc-font-body);
	font-weight: 500;
	font-size: 16px;
	transition: background 0.2s;
	flex-shrink: 0;
}

.vc-newsletter__submit:hover {
	background: #a0884f;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.vc-site-footer {
	position: relative;
	overflow: hidden;
}

.vc-footer-main {
	padding: 80px 0 48px;
}

.vc-footer-grid {
	display: grid;
	grid-template-columns: 235px 1fr 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.vc-footer-brand__logo {
	max-width: 235px;
	margin-bottom: 24px;
	display: block;
}

.vc-footer-social {
	display: flex;
	align-items: center;
	gap: 12px;
}

.vc-footer-social span {
	font-family: var(--vc-font-heading);
	font-weight: 500;
	font-size: 18px;
	color: var(--vc-text-body);
}

.vc-footer-social__icons {
	display: flex;
	gap: 6px;
}

.vc-footer-social__icon {
	width: 32px;
	height: 32px;
	border-radius: 4.5px;
	background: var(--vc-teal);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--vc-white);
	transition: background 0.2s;
}

.vc-footer-social__icon:hover {
	background: var(--vc-navy);
}

.vc-footer-social__icon svg {
	width: 14px;
	height: 14px;
}

.vc-footer-col h3 {
	font-family: var(--vc-font-heading);
	font-weight: 500;
	font-size: 18px;
	color: var(--vc-text-body);
	margin-bottom: 16px;
}

.vc-footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.vc-footer-col a {
	font-family: var(--vc-font-heading);
	font-weight: 500;
	font-size: 14px;
	color: var(--vc-text-body);
	transition: color 0.2s;
}

.vc-footer-col a:hover,
.vc-footer-col a.is-active {
	color: var(--vc-teal);
}

.vc-footer-contact li {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--vc-font-heading);
	font-weight: 500;
	font-size: 14px;
	color: var(--vc-text-body);
}

.vc-footer-contact svg {
	width: 14px;
	height: 14px;
	color: var(--vc-teal);
	flex-shrink: 0;
}

.vc-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 48px;
	border-top: 1px solid var(--vc-border-light);
}

.vc-footer-payments {
	display: flex;
	align-items: center;
	gap: 6px;
}

.vc-footer-payments span {
	font-family: var(--vc-font-body);
	font-weight: 500;
	font-size: 14px;
	color: var(--vc-text-body);
}

.vc-footer-payments__icons {
	display: flex;
	gap: 2px;
}

.vc-footer-payments__icons img {
	height: 26px;
	width: auto;
	border: 0.65px solid var(--vc-border-light);
	border-radius: 2.6px;
	background: var(--vc-white);
	padding: 4px 6px;
}

.vc-footer-security img {
	height: 31px;
	width: auto;
}

.vc-footer-credit {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--vc-font-body);
	font-weight: 500;
	font-size: 14px;
	color: var(--vc-text-body);
}

.vc-footer-credit__logo {
	width: 56px;
	height: 18px;
	display: block;
}

.vc-footer-watermark {
	position: relative;
	height: 191px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 0 var(--vc-gutter);
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1200px) {
	:root {
		--vc-gutter: 48px;
	}

	.vc-products-track .vc-product-card,
	.vc-reviews-track .vc-review-card {
		flex: 0 0 calc(50% - 12px);
	}

	.vc-footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 900px) {
	.vc-header-main {
		flex-wrap: wrap;
		gap: 16px;
	}

	.vc-header-main__left {
		flex-wrap: wrap;
		gap: 16px;
		width: 100%;
	}

	.vc-search {
		width: 100%;
	}

	.vc-header-actions {
		width: 100%;
		justify-content: flex-end;
	}

	.vc-nav-secondary {
		overflow-x: auto;
		gap: 24px;
		justify-content: flex-start;
	}

	.vc-nav-secondary::-webkit-scrollbar {
		display: none;
	}

	.vc-hero {
		height: auto;
		min-height: 420px;
	}

	.vc-hero__models {
		position: relative;
		left: auto;
		top: auto;
		transform: none;
		width: 100%;
		height: 320px;
		margin-top: 16px;
	}

	.vc-hero__text {
		position: relative;
		left: auto;
		top: auto;
		width: auto;
		padding: 24px var(--vc-gutter) 0;
		text-align: center;
	}

	.vc-hero__promo {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		transform: none;
		margin: 16px auto 24px;
	}

	.vc-categories {
		flex-direction: column;
		padding-bottom: 64px;
	}

	.vc-category-banner {
		flex: none;
		width: 100%;
		height: min(64vw, var(--vc-category-banner-h));
	}

	.vc-brand-strip__stage {
		height: 220px;
	}

	.vc-brand-strip__model {
		left: 50%;
		transform: translateX(-50%);
		width: 640px;
		height: 426px;
		top: -36px;
	}

	.vc-brand-strip__wordmark {
		top: 150px;
		width: 1600px;
		height: 206px;
		left: 50%;
		transform: translateX(-50%);
	}

	.vc-section {
		padding: 64px 0;
	}

	.vc-carousel-nav {
		display: none;
	}
}

@media (max-width: 600px) {
	:root {
		--vc-gutter: 20px;
	}

	.vc-products-track .vc-product-card,
	.vc-reviews-track .vc-review-card {
		flex: 0 0 85%;
	}

	.vc-footer-grid {
		grid-template-columns: 1fr;
	}

	.vc-footer-bottom {
		flex-direction: column;
		gap: 24px;
		text-align: center;
	}

	.vc-newsletter__title {
		font-size: 28px;
	}

	.vc-newsletter__form {
		flex-direction: column;
	}

	.vc-brand-strip__stage {
		height: 180px;
	}

	.vc-brand-strip__model {
		width: 520px;
		height: 346px;
		top: -28px;
	}

	.vc-brand-strip__wordmark {
		top: 120px;
		width: 1200px;
		height: 154px;
	}
}

/* ==========================================================================
   Product detail page (Figma — Detalhes)
   ========================================================================== */

.vc-page-product {
	--vc-product-font: 'Lato', var(--vc-font-body);
}

.vc-product-page {
	background: var(--vc-white);
}

.vc-product-breadcrumb {
	padding-top: 32px;
	padding-bottom: 64px;
}

.vc-product-breadcrumb__list {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	list-style: none;
}

.vc-product-breadcrumb__item a {
	font-size: 14px;
	color: #9ca3af;
}

.vc-product-breadcrumb__item--current {
	font-size: 14px;
	font-weight: 500;
	color: var(--vc-text-muted);
}

.vc-product-breadcrumb__separator {
	width: 1px;
	height: 9px;
	background: #d1d5db;
}

.vc-product-detail {
	padding-bottom: 48px;
}

.vc-product-detail__layout {
	display: grid;
	grid-template-columns: minmax(0, 643px) minmax(0, 519px);
	justify-content: space-between;
	gap: 54px;
	align-items: start;
}

.vc-product-gallery {
	display: flex;
	gap: 8px;
	background: #fbfaf9;
	border-radius: var(--vc-radius);
	min-height: 540px;
	overflow: hidden;
}

.vc-product-gallery__thumbs {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-shrink: 0;
	align-self: flex-start;
}

.vc-product-gallery__thumb {
	position: relative;
	width: 64px;
	height: 64px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: var(--vc-radius);
	overflow: hidden;
	background: var(--vc-bg-product);
	cursor: pointer;
}

.vc-product-gallery__thumb.is-active {
	border-color: var(--vc-primary-500);
}

.vc-product-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vc-product-gallery__main {
	position: relative;
	flex: 1;
	min-height: 540px;
	background: var(--vc-bg-product);
	border-radius: 4px;
	overflow: hidden;
}

.vc-product-gallery__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.vc-product-gallery__slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.vc-product-gallery__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vc-product-summary {
	display: flex;
	flex-direction: column;
	gap: 24px;
	font-family: var(--vc-product-font);
}

.vc-product-summary__head {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.vc-product-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.vc-product-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 8px;
	border-radius: 2px;
	font-size: 12px;
	line-height: 1;
	text-transform: uppercase;
}

.vc-product-badge--gold {
	background: var(--vc-gold);
	color: #fbfaf9;
}

.vc-product-badge--teal {
	background: var(--vc-teal-dark);
	color: var(--vc-white);
}

.vc-product-summary__title {
	margin: 0;
	font-family: var(--vc-font-heading);
	font-size: 40px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--vc-text);
}

.vc-product-summary__rating {
	display: flex;
	align-items: center;
	gap: 16px;
}

.vc-product-summary__stars img {
	display: block;
	width: 108px;
	height: 20px;
}

.vc-product-summary__review-link {
	font-size: 14px;
	color: var(--vc-text-muted);
	text-decoration: underline;
}

.vc-product-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.vc-product-option {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.vc-product-option__label {
	margin: 0;
	font-family: var(--vc-font-body);
	font-size: 14px;
	color: var(--vc-primary-700);
}

.vc-product-swatches {
	display: flex;
	gap: 4px;
}

.vc-product-swatch {
	width: 40px;
	height: 24px;
	padding: 0;
	border: 1px solid transparent;
	border-radius: 2px;
	background: var(--vc-swatch-color, #8c7376);
	cursor: pointer;
}

.vc-product-swatch.is-active {
	border-color: #000;
}

.vc-product-size-grid {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
}

.vc-product-size-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 8px;
	border: 1px solid var(--vc-text-muted);
	border-radius: 12px;
	font-family: var(--vc-product-font);
	font-size: 14px;
	color: var(--vc-text-muted);
	background: transparent;
	cursor: pointer;
	transition: all 0.2s ease;
}

.vc-product-size-btn.is-active {
	border-color: var(--vc-primary-500);
	background: rgba(140, 115, 118, 0.16);
	color: var(--vc-primary-500);
}

.vc-product-variation-select {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.vc-product-price-block {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.vc-product-price-block__regular {
	margin: 0;
	font-size: 16px;
	color: #9ca3af;
	text-decoration: line-through;
}

.vc-product-price-block__current {
	margin: 0;
	font-size: 24px;
	color: #000;
}

.vc-product-price-block__installment {
	margin: 0;
	font-size: 16px;
	color: var(--vc-text-muted);
}

.vc-product-purchase {
	display: flex;
	gap: 8px;
	align-items: stretch;
}

.vc-product-qty {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	width: 100px;
	flex-shrink: 0;
	padding: 8px;
	background: #f0f0f0;
	border-radius: 6px;
}

.vc-product-qty .quantity {
	display: contents;
}

.vc-product-qty__btn {
	font-family: var(--vc-product-font);
	font-size: 16px;
	font-weight: 700;
	color: #1e2023;
	line-height: 1;
}

.vc-product-qty__input,
.vc-product-qty input.qty {
	width: 24px;
	padding: 0;
	border: 0;
	background: transparent;
	font-family: var(--vc-product-font);
	font-size: 16px;
	text-align: center;
	color: #1e2023;
	-moz-appearance: textfield;
}

.vc-product-qty__input::-webkit-outer-spin-button,
.vc-product-qty__input::-webkit-inner-spin-button,
.vc-product-qty input.qty::-webkit-outer-spin-button,
.vc-product-qty input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.vc-product-add-btn,
.vc-page-product .vc-product-purchase .single_add_to_cart_button.vc-product-add-btn,
.vc-page-product .vc-product-purchase .vc-product-add-btn.button.alt {
	display: flex;
	flex: 1 0 0;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 51px;
	padding: 16px 0;
	border: 0;
	border-radius: 6px;
	background: #048d8b;
	box-shadow: none;
	font-family: var(--vc-product-font);
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	color: #e6e3d0;
	text-align: center;
	text-transform: none;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.vc-product-add-btn:hover,
.vc-page-product .vc-product-purchase .single_add_to_cart_button.vc-product-add-btn:hover,
.vc-page-product .vc-product-purchase .vc-product-add-btn.button.alt:hover {
	opacity: 0.92;
	background: #048d8b;
	color: #e6e3d0;
}

.vc-product-add-btn:focus,
.vc-page-product .vc-product-purchase .single_add_to_cart_button.vc-product-add-btn:focus,
.vc-page-product .vc-product-purchase .vc-product-add-btn.button.alt:focus {
	outline: 2px solid #048d8b;
	outline-offset: 2px;
	background: #048d8b;
	color: #e6e3d0;
}

.vc-product-add-btn:disabled,
.vc-product-add-btn.disabled,
.vc-page-product .vc-product-purchase .single_add_to_cart_button.vc-product-add-btn:disabled,
.vc-page-product .vc-product-purchase .single_add_to_cart_button.vc-product-add-btn.disabled {
	opacity: 0.5;
	cursor: not-allowed;
	background: #048d8b;
	color: #e6e3d0;
}

.vc-product-stock {
	margin: 0;
	font-size: 16px;
	color: var(--vc-text-muted);
}

.vc-product-shipping {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.vc-product-shipping__label {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: var(--vc-primary-700);
}

.vc-product-shipping__form {
	display: flex;
	gap: 8px;
}

.vc-product-shipping__input {
	flex: 1;
	padding: 16px;
	border: 0;
	border-radius: 6px;
	background: #f0f0f0;
	font-family: var(--vc-product-font);
	font-size: 14px;
	color: var(--vc-text-muted);
}

.vc-product-shipping__btn {
	flex-shrink: 0;
	padding: 16px 24px;
	border: 1px solid var(--vc-primary-400);
	border-radius: 6px;
	background: transparent;
	font-family: var(--vc-product-font);
	font-size: 14px;
	font-weight: 500;
	color: var(--vc-primary-400);
	cursor: pointer;
}

.vc-product-shipping__result {
	font-size: 14px;
	color: var(--vc-text-muted);
}

.vc-product-divider {
	height: 89px;
	background: #f5f5f5;
}

.vc-product-tabs {
	padding-top: 71px;
	padding-bottom: 64px;
}

.vc-product-related {
	padding: 64px 100px 88px;
	background: var(--vc-white);
}

.vc-product-related__inner {
	max-width: 1240px;
	margin: 0 auto;
}

.vc-product-related__title {
	margin: 0 0 32px;
	font-family: var(--vc-font-heading);
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2;
	color: #000;
}

.vc-product-related__carousel .vc-products-track {
	display: flex;
	gap: 25px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.vc-product-related__carousel .vc-products-track::-webkit-scrollbar {
	display: none;
}

.vc-product-related__carousel .vc-product-card {
	flex: 0 0 calc(33.333% - 17px);
	min-width: 320px;
	max-width: 397px;
	scroll-snap-align: start;
}

.vc-product-related__dots {
	display: flex;
	gap: 8px;
	margin-top: 40px;
}

.vc-product-related__dots span {
	width: 8px;
	height: 8px;
	border-radius: var(--vc-radius);
	background: #f1efe4;
}

.vc-product-related__dots span.is-active {
	background: var(--vc-primary-500);
}

.vc-marquee--band {
	margin: 0;
}

.vc-page-product + .vc-marquee--band,
.vc-product-page + .vc-marquee--band {
	margin-top: 0;
}

.vc-product-tabs__nav {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 16px;
}

.vc-product-tabs__btn {
	padding: 16px 32px;
	border: 1px solid #d1d5db;
	border-radius: var(--vc-radius);
	background: var(--vc-white);
	font-family: var(--vc-product-font);
	font-size: 16px;
	line-height: 1.5;
	color: var(--vc-primary-700);
	cursor: pointer;
	transition: all 0.2s ease;
}

.vc-product-tabs__btn.is-active {
	border-color: var(--vc-navy-tab);
	background: var(--vc-navy-tab);
	color: var(--vc-white);
}

.vc-product-tabs__panel {
	border: 1px solid #e9e9e9;
	border-radius: var(--vc-radius);
	padding: 32px;
}

.vc-product-tabs__content {
	font-family: var(--vc-product-font);
	font-size: 16px;
	line-height: 1.5;
	color: var(--vc-text-muted);
}

.vc-product-tabs__content p {
	margin: 0 0 1em;
}

.vc-product-tabs__content p:last-child {
	margin-bottom: 0;
}

.vc-product-specs {
	display: grid;
	gap: 12px;
	margin: 0;
}

.vc-product-specs__row {
	display: grid;
	grid-template-columns: minmax(0, 220px) 1fr;
	gap: 16px;
}

.vc-product-specs__row dt {
	margin: 0;
	font-weight: 500;
	color: var(--vc-primary-700);
}

.vc-product-specs__row dd {
	margin: 0;
}

.vc-product-payments {
	margin: 0;
	padding-left: 20px;
}

.vc-product-payments li + li {
	margin-top: 8px;
}

@media (max-width: 1200px) {
	.vc-product-detail__layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.vc-product-gallery {
		min-height: 420px;
	}

	.vc-product-gallery__main {
		min-height: 420px;
	}

	.vc-product-related {
		padding-left: var(--vc-gutter);
		padding-right: var(--vc-gutter);
	}
}

@media (max-width: 768px) {
	.vc-product-breadcrumb {
		padding-bottom: 32px;
	}

	.vc-product-summary__title {
		font-size: 28px;
	}

	.vc-product-tabs__nav {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.vc-product-purchase {
		flex-direction: column;
	}

	.vc-product-qty {
		width: 100%;
	}

	.vc-product-related__title {
		font-size: 28px;
	}

	.vc-product-related {
		padding: 48px 24px 64px;
	}

	.vc-product-related__carousel .vc-product-card {
		flex: 0 0 85%;
		min-width: 280px;
	}

	.vc-product-specs__row {
		grid-template-columns: 1fr;
		gap: 4px;
	}
}

/* ==========================================================================
   Vitrine / category archive (Figma 8909:6532)
   ========================================================================== */

.vc-vitrine-page {
	background: var(--vc-white);
	padding-bottom: 48px;
}

.vc-vitrine-breadcrumb {
	padding-top: 32px;
	padding-bottom: 32px;
}

.vc-vitrine-breadcrumb__list {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	list-style: none;
}

.vc-vitrine-breadcrumb__item a {
	font-size: 14px;
	color: #9ca3af;
}

.vc-vitrine-breadcrumb__item--current {
	font-size: 14px;
	font-weight: 500;
	color: var(--vc-text-muted);
}

.vc-vitrine-breadcrumb__separator {
	width: 1px;
	height: 9px;
	background: #d1d5db;
}

.vc-vitrine-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 32px;
}

.vc-vitrine-toolbar__info {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	min-width: 0;
}

.vc-vitrine-toolbar__title {
	margin: 0;
	font-family: var(--vc-font-heading);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
	color: #374151;
}

.vc-vitrine-toolbar__count {
	display: flex;
	gap: 6px;
	margin: 0;
	font-family: var(--vc-font-heading);
	font-size: 16px;
	line-height: 1.5;
	color: #9ca3af;
}

.vc-vitrine-toolbar__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.vc-vitrine-toolbar__btn,
.vc-vitrine-toolbar__sort {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 56px;
	padding: 8px 24px;
	border: 1px solid #e5e7eb;
	border-radius: 9999px;
	background: var(--vc-white);
	font-family: var(--vc-font-heading);
	font-size: 14px;
	color: #4b5563;
	cursor: pointer;
}

.vc-vitrine-toolbar__sort {
	position: relative;
}

.vc-vitrine-toolbar__sort-label {
	color: #4b5563;
	font-weight: 400;
}

.vc-vitrine-toolbar__sort-toggle {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 0;
	border: 0;
	background: transparent;
	font-family: var(--vc-font-heading);
	font-size: 14px;
	font-weight: 500;
	color: #374151;
	cursor: pointer;
}

.vc-vitrine-toolbar__sort-toggle svg {
	width: 24px;
	height: 24px;
}

.vc-vitrine-toolbar__sort-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 20;
	min-width: 180px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	border: 1px solid #e5e7eb;
	border-radius: var(--vc-radius);
	background: var(--vc-white);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.vc-vitrine-toolbar__sort-menu a {
	display: block;
	padding: 10px 16px;
	font-family: var(--vc-font-heading);
	font-size: 14px;
	color: #374151;
	text-decoration: none;
}

.vc-vitrine-toolbar__sort-menu a:hover,
.vc-vitrine-toolbar__sort-menu a.is-active {
	background: #f9fafb;
	color: var(--vc-teal-dark);
}

.vc-vitrine-grid {
	margin-bottom: 32px;
}

.vc-vitrine-grid__inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px 10px;
}

.vc-vitrine-grid__inner .vc-product-card {
	width: 100%;
}

.vc-vitrine-pagination {
	margin-bottom: 32px;
}

.vc-vitrine-pagination__list {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

.vc-vitrine-pagination__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border: 1px solid #e5e7eb;
	border-radius: var(--vc-radius);
	font-family: var(--vc-font-heading);
	font-size: 16px;
	color: #374151;
	text-decoration: none;
	transition: all 0.2s ease;
}

.vc-vitrine-pagination__item:hover,
.vc-vitrine-pagination__item.is-active {
	background: var(--vc-primary-500);
	border-color: var(--vc-primary-500);
	color: var(--vc-white);
}

.vc-vitrine-seo {
	margin-bottom: 24px;
}

.vc-vitrine-seo__box {
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	overflow: hidden;
}

.vc-vitrine-seo__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 24px;
	border: 0;
	background: var(--vc-white);
	font-family: var(--vc-font-heading);
	font-size: 18px;
	font-weight: 600;
	color: #111827;
	cursor: pointer;
	text-align: left;
}

.vc-vitrine-seo__toggle svg {
	flex-shrink: 0;
	color: var(--vc-teal-dark);
	transition: transform 0.2s ease;
}

.vc-vitrine-seo__box.is-open .vc-vitrine-seo__toggle svg {
	transform: rotate(180deg);
}

.vc-vitrine-seo__content {
	padding: 0 24px 24px;
	font-family: var(--vc-font-body);
	font-size: 16px;
	line-height: 1.5;
	color: var(--vc-text-muted);
}

.vc-vitrine-empty {
	padding: 64px 0;
	text-align: center;
}

.vc-vitrine-empty__text {
	margin: 0 0 16px;
	font-size: 18px;
	color: var(--vc-text-muted);
}

.vc-vitrine-empty__link {
	font-weight: 500;
	color: var(--vc-teal-dark);
	text-decoration: underline;
}

@media (max-width: 1200px) {
	.vc-vitrine-grid__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.vc-vitrine-toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.vc-vitrine-toolbar__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.vc-vitrine-toolbar__btn,
	.vc-vitrine-toolbar__sort {
		width: 100%;
		justify-content: center;
	}

	.vc-vitrine-grid__inner {
		grid-template-columns: 1fr;
	}

	.vc-vitrine-pagination__list {
		justify-content: center;
	}
}
