/* Vectoro — Categorii Produse */

.vectoro-cats {
	width: 100%;
}

.vectoro-cats__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.vectoro-cats__header-text {
	min-width: 0;
}

.vectoro-cats__overline {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	line-height: 1.4;
	color: #9a9a9a;
}

.vectoro-cats__title {
	margin: 0;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #2b2b2b;
}

.vectoro-cats__view-all {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	margin-bottom: 6px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.3;
	color: #6b6b6b;
	text-decoration: none;
	transition: color 0.25s ease;
}

.vectoro-cats__view-all:hover,
.vectoro-cats__view-all:focus {
	color: #2b2b2b;
}

.vectoro-cats__view-all-icon,
.vectoro-cats__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	flex-shrink: 0;
	transition: transform 0.25s ease, color 0.25s ease;
}

.vectoro-cats__view-all-icon i,
.vectoro-cats__arrow i {
	display: block;
	line-height: 1;
}

.vectoro-cats__view-all-icon svg,
.vectoro-cats__arrow svg {
	display: block;
	width: 1em;
	height: 1em;
}

.vectoro-cats__view-all:hover .vectoro-cats__view-all-icon {
	transform: translateX(4px);
}

.vectoro-cats__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.vectoro-cats__card {
	display: block;
	color: inherit;
	text-decoration: none;
	overflow: hidden;
}

.vectoro-cats__card:hover,
.vectoro-cats__card:focus {
	color: inherit;
}

.vectoro-cats__media {
	position: relative;
	width: 100%;
	padding-bottom: 125%;
	overflow: hidden;
	background: #eceae6;
}

.vectoro-cats__media img,
.vectoro-cats__media-placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vectoro-cats__media-placeholder {
	background: linear-gradient(135deg, #e8e4de 0%, #d9d4cc 100%);
}

.vectoro-cats--zoom .vectoro-cats__media img {
	transition: transform 0.55s ease;
}

.vectoro-cats--zoom .vectoro-cats__card:hover .vectoro-cats__media img {
	transform: scale(1.04);
}

.vectoro-cats__body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 24px;
	background: #f4f1ec;
	transition: background-color 0.25s ease;
}

.vectoro-cats__body-text {
	min-width: 0;
}

.vectoro-cats__card-title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	color: #2b2b2b;
	transition: color 0.25s ease;
}

.vectoro-cats__card-desc {
	margin: 6px 0 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	color: #8a8a8a;
	transition: color 0.25s ease;
}

.vectoro-cats__arrow {
	color: #2b2b2b;
}

.vectoro-cats__card:hover .vectoro-cats__arrow {
	transform: translateX(4px);
}

.vectoro-cats__empty {
	padding: 40px 24px;
	text-align: center;
	color: #8a8a8a;
	background: #f7f5f2;
	border: 1px dashed #d5d0c8;
}

@media (max-width: 1024px) {
	.vectoro-cats__title {
		font-size: 28px;
	}
}

@media (max-width: 767px) {
	.vectoro-cats__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.vectoro-cats__view-all {
		margin-bottom: 0;
	}

	.vectoro-cats__title {
		font-size: 24px;
	}

	.vectoro-cats__grid {
		grid-template-columns: 1fr;
	}
}

/* Vectoro — Avantaje */

.vectoro-adv {
	width: 100%;
}

.vectoro-adv__header {
	margin-bottom: 48px;
}

.vectoro-adv__overline {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	line-height: 1.4;
	color: #9a9a9a;
}

.vectoro-adv__title {
	margin: 0;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #2b2b2b;
}

.vectoro-adv__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 40px;
}

.vectoro-adv__item {
	text-align: center;
}

.vectoro-adv__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	line-height: 0;
	color: #1a1a1a;
	font-size: 36px;
}

.vectoro-adv__icon i {
	display: block;
	line-height: 1;
}

.vectoro-adv__icon svg {
	display: block;
	width: 1em;
	height: 1em;
}

.vectoro-adv__item-title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	color: #1a1a1a;
}

.vectoro-adv__item-desc {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: #8a8a8a;
}

.vectoro-adv__empty {
	padding: 40px 24px;
	text-align: center;
	color: #8a8a8a;
	background: #f7f5f2;
	border: 1px dashed #d5d0c8;
}

@media (max-width: 1024px) {
	.vectoro-adv__title {
		font-size: 28px;
	}
}

@media (max-width: 767px) {
	.vectoro-adv__title {
		font-size: 24px;
	}

	.vectoro-adv__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* Vectoro — Produse */

.vectoro-prods {
	width: 100%;
}

.vectoro-prods__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 40px;
}

.vectoro-prods__header-text {
	min-width: 0;
}

.vectoro-prods__overline {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	line-height: 1.4;
	color: #8a96a3;
}

.vectoro-prods__title {
	margin: 0;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #2b2b2b;
}

.vectoro-prods__view-all {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	margin-bottom: 6px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.3;
	color: #6b6b6b;
	text-decoration: none;
	transition: color 0.25s ease;
}

.vectoro-prods__view-all:hover,
.vectoro-prods__view-all:focus {
	color: #2b2b2b;
}

.vectoro-prods__view-all-icon {
	display: inline-flex;
	line-height: 0;
	transition: transform 0.25s ease;
}

.vectoro-prods__view-all-icon i,
.vectoro-prods__view-all-icon svg {
	display: block;
	line-height: 1;
}

.vectoro-prods__view-all-icon svg {
	width: 1em;
	height: 1em;
}

.vectoro-prods__view-all:hover .vectoro-prods__view-all-icon {
	transform: translateX(4px);
}

.vectoro-prods__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.vectoro-prods__card {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.vectoro-prods__media {
	position: relative;
	display: block;
	width: 100%;
	padding-bottom: 125%;
	overflow: hidden;
	background: #eceae6;
}

.vectoro-prods__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vectoro-prods--zoom .vectoro-prods__media img {
	transition: transform 0.55s ease;
}

.vectoro-prods--zoom .vectoro-prods__card:hover .vectoro-prods__media img {
	transform: scale(1.04);
}

.vectoro-prods__body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px;
	background: #f4f1ec;
	transition: background-color 0.25s ease;
}

.vectoro-prods__info {
	min-width: 0;
	flex: 1;
}

.vectoro-prods__name {
	display: block;
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	color: #2b2b2b;
	text-decoration: none;
}

.vectoro-prods__name:hover,
.vectoro-prods__name:focus {
	color: #2b2b2b;
}

.vectoro-prods__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px;
	line-height: 1.3;
}

.vectoro-prods__price-prefix {
	font-size: 14px;
	font-weight: 400;
	color: #8a8a8a;
}

.vectoro-prods__price-value {
	font-size: 15px;
	font-weight: 700;
	color: #2b2b2b;
}

.vectoro-prods__price-value .woocommerce-Price-amount,
.vectoro-prods__price-value .amount {
	font-weight: inherit;
	color: inherit;
}

.vectoro-prods__cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #d9d9d9;
	color: #555555;
	text-decoration: none;
	line-height: 0;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.vectoro-prods__cart:hover,
.vectoro-prods__cart:focus {
	background: #c8c8c8;
	color: #2b2b2b;
	transform: scale(1.04);
}

.vectoro-prods__cart i,
.vectoro-prods__cart svg {
	display: block;
	line-height: 1;
}

.vectoro-prods__cart svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.vectoro-prods__empty {
	padding: 40px 24px;
	text-align: center;
	color: #8a8a8a;
	background: #f7f5f2;
	border: 1px dashed #d5d0c8;
}

@media (max-width: 1024px) {
	.vectoro-prods__title {
		font-size: 28px;
	}
}

@media (max-width: 767px) {
	.vectoro-prods__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.vectoro-prods__view-all {
		margin-bottom: 0;
	}

	.vectoro-prods__title {
		font-size: 24px;
	}

	.vectoro-prods__grid {
		grid-template-columns: 1fr;
	}
}

/* Vectoro — Promote */

.vectoro-promote {
	--vectoro-promote-content: 34%;
	--vectoro-promote-stats: 22%;
	--vectoro-promote-image: 26%;
	display: flex;
	align-items: stretch;
	width: 100%;
	min-height: 480px;
	background-color: #e8e2d9;
	overflow: hidden;
}

.vectoro-promote__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
	width: var(--vectoro-promote-content);
	flex-shrink: 0;
	padding: 48px;
	background-size: cover;
	background-position: center;
}

.vectoro-promote__content::before {
	content: none;
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
}

.vectoro-promote__overline {
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	line-height: 1.4;
	color: #fff;
}

.vectoro-promote__title {
	margin: 0 0 20px;
	font-size: 34px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: #2b2b2b;
}

.vectoro-promote__desc {
	margin: 0 0 28px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.55;
	color: #5c5c5c;
	max-width: 34em;
}

.vectoro-promote__btn {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 10px;
	padding: 14px 22px;
	background: #2b2b2b;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
	text-decoration: none;
	border: none;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.vectoro-promote__btn:hover,
.vectoro-promote__btn:focus {
	background: #1a1a1a;
	color: #fff;
}

.vectoro-promote__btn-icon {
	display: inline-flex;
	line-height: 0;
	transition: transform 0.25s ease;
}

.vectoro-promote__btn-icon i,
.vectoro-promote__btn-icon svg {
	display: block;
	line-height: 1;
}

.vectoro-promote__btn-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.vectoro-promote__btn:hover .vectoro-promote__btn-icon {
	transform: translateX(3px);
}

.vectoro-promote__visual {
	display: flex;
	flex: 1;
	min-width: 0;
	align-items: stretch;
}

.vectoro-promote__image {
	position: relative;
	flex: 1;
	min-width: 0;
	overflow: hidden;
	background: #d8d2c8;
}

.vectoro-promote__image img,
.vectoro-promote__image-placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}

.vectoro-promote__image-placeholder {
	background: linear-gradient(135deg, #ddd7cd 0%, #cfc8bc 100%);
}

.vectoro-promote__stats {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: var(--vectoro-promote-stats);
	flex-shrink: 0;
	gap: 28px;
	padding: 40px 24px;
	background-color: rgba(232, 226, 217, 0.92);
	text-align: center;
}

.vectoro-promote__stat {
	width: 100%;
}

.vectoro-promote__stat-number {
	margin: 0 0 6px;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #2b2b2b;
}

.vectoro-promote__stat-label {
	margin: 0;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
	color: #5c5c5c;
}

.vectoro-promote--no-stats .vectoro-promote__visual {
	width: auto;
}

/* Layout 2 */

.vectoro-promote--layout-2 {
	background-color: #2a2a2a;
}

.vectoro-promote--layout-2 .vectoro-promote__content {
	background-color: #2a2a2a;
	color: #fff;
}

.vectoro-promote--layout-2 .vectoro-promote__content::before {
	content: "";
}

.vectoro-promote--layout-2 .vectoro-promote__title {
	color: #fff;
}

.vectoro-promote--layout-2 .vectoro-promote__desc {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.85);
	max-width: 28em;
}

.vectoro-promote--layout-2 .vectoro-promote__image {
	flex: 0 0 var(--vectoro-promote-image);
	width: var(--vectoro-promote-image);
}

.vectoro-promote__brand-panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	flex: 1;
	min-width: 0;
	padding: 40px 36px;
	background-color: #2a2a2a;
	background-size: cover;
	background-position: center;
	text-align: center;
}

.vectoro-promote__brand {
	margin-bottom: 16px;
}

.vectoro-promote__brand-text {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 48px;
	font-weight: 400;
	font-style: italic;
	line-height: 1.15;
	color: #fff;
	letter-spacing: 0.01em;
}

.vectoro-promote__brand-logo {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.vectoro-promote__tagline {
	max-width: 18em;
	margin: 0 auto;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1.5;
	color: #fff;
}

@media (max-width: 1024px) {
	.vectoro-promote {
		--vectoro-promote-content: 38%;
		--vectoro-promote-stats: 26%;
		--vectoro-promote-image: 28%;
		min-height: 420px;
	}

	.vectoro-promote__title {
		font-size: 28px;
	}

	.vectoro-promote__stat-number {
		font-size: 28px;
	}

	.vectoro-promote__brand-text {
		font-size: 36px;
	}
}

@media (max-width: 767px) {
	.vectoro-promote {
		flex-direction: column;
		min-height: 0;
	}

	.vectoro-promote__content {
		width: 100%;
		padding: 36px 24px;
	}

	.vectoro-promote__title {
		font-size: 26px;
	}

	.vectoro-promote__visual {
		flex-direction: column;
		width: 100%;
	}

	.vectoro-promote__image {
		position: relative;
		width: 100%;
		min-height: 320px;
	}

	.vectoro-promote--layout-2 .vectoro-promote__image {
		flex: none;
		width: 100%;
		min-height: 320px;
	}

	.vectoro-promote__stats {
		width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-around;
		gap: 24px 16px;
		padding: 28px 20px;
	}

	.vectoro-promote__stat {
		flex: 1 1 30%;
		min-width: 90px;
	}

	.vectoro-promote__brand-panel {
		width: 100%;
		padding: 48px 24px;
	}

	.vectoro-promote__brand-text {
		font-size: 40px;
	}
}




