/**
 * WooCommerce overrides — Vertex
 * @package Vertex
 */

.woocommerce .vertex-wc-wrap {
	padding-block: var(--section-space-y);
}

.woocommerce .vertex-wc-wrap .woocommerce-breadcrumb {
	display: none;
}

.woocommerce .vertex-shop .woocommerce-result-count,
.woocommerce .vertex-shop .woocommerce-ordering,
.woocommerce .vertex-page-hero--inline .woocommerce-result-count,
.woocommerce .vertex-page-hero--inline .woocommerce-ordering {
	margin: 0;
}

.woocommerce ul.products {
	display: grid;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.woocommerce ul.products.columns-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

.woocommerce ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	background: var(--color-secondary);
	color: var(--color-neutral-lightest);
	border-radius: var(--radius-sm);
	font-weight: var(--fw-medium);
	border: 0;
	padding: 0.65rem 1.25rem;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
	background: var(--color-secondary-dark);
	color: var(--color-neutral-lightest);
}

.woocommerce table.shop_table {
	border-radius: var(--radius-sm);
	border-collapse: collapse;
	width: 100%;
}

.woocommerce-cart .woocommerce table.shop_table {
	display: block;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
	.woocommerce-cart .woocommerce table.shop_table {
		display: table;
		overflow-x: visible;
	}
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	padding: 0.75rem;
	border-bottom: 1px solid var(--color-neutral-light);
	white-space: nowrap;
}

@media (min-width: 768px) {
	.woocommerce table.shop_table th,
	.woocommerce table.shop_table td {
		white-space: normal;
	}
}

.woocommerce-cart .cart-collaterals {
	margin-top: 2rem;
}

@media (min-width: 768px) {
	.woocommerce-cart .woocommerce {
		display: grid;
		grid-template-columns: 1fr 340px;
		gap: 2rem;
		align-items: start;
	}

	.woocommerce-cart .cart-collaterals {
		margin-top: 0;
	}
}

.vertex-cart-page__woocommerce .woocommerce ul.woocommerce-error,
.vertex-cart-page__woocommerce .woocommerce ul.woocommerce-message,
.vertex-cart-page__woocommerce .woocommerce ul.woocommerce-info,
.vertex-cart-page__woocommerce .woocommerce .woocommerce-error,
.vertex-cart-page__woocommerce .woocommerce .woocommerce-message,
.vertex-cart-page__woocommerce .woocommerce .woocommerce-info {
	margin: 0 0 1.5rem;
	padding: 1rem 1rem 1rem 3rem;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-neutral-light);
	background: var(--color-neutral-lightest);
	color: var(--color-neutral-darkest);
}

.vertex-cart-page__woocommerce .woocommerce .woocommerce-message {
	border-color: rgba(39, 82, 157, 0.35);
}

.vertex-cart-page__woocommerce .woocommerce .woocommerce-info {
	border-color: rgba(157, 157, 157, 0.45);
}

.vertex-cart-page__woocommerce .woocommerce .woocommerce-error {
	border-color: rgba(234, 81, 46, 0.55);
}

.vertex-cart-page__woocommerce .woocommerce {
	display: block;
}

@media (min-width: 768px) {
	.vertex-cart-page__woocommerce .woocommerce {
		display: grid;
		grid-template-columns: 1fr 340px;
		gap: 2rem;
		align-items: start;
	}
}

.vertex-cart-page__woocommerce .woocommerce table.shop_table {
	border: 1px solid var(--color-neutral-light);
	border-radius: var(--radius-sm);
	background: var(--color-neutral-lightest);
	overflow: hidden;
}

.vertex-cart-page__woocommerce .woocommerce table.shop_table th {
	font-weight: var(--fw-semibold);
	color: var(--color-primary);
	background: var(--color-neutral-light);
}

.vertex-cart-page__woocommerce .woocommerce table.shop_table td {
	vertical-align: middle;
}

.vertex-cart-page__woocommerce .woocommerce .product-remove a.remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: var(--radius-full);
	background: var(--color-neutral-light);
	color: var(--color-primary);
	font-size: 18px;
	line-height: 1;
}

.vertex-cart-page__woocommerce .woocommerce .product-remove a.remove:hover {
	background: rgba(244, 119, 38, 0.18);
	color: var(--color-secondary-dark);
	text-decoration: none;
}

.vertex-cart-page__woocommerce .woocommerce .quantity .qty {
	width: 92px;
	padding: 0.45rem 0.6rem;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-neutral-dark);
}

.vertex-cart-page__woocommerce .woocommerce .actions .coupon {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.vertex-cart-page__woocommerce .woocommerce .actions .coupon #coupon_code {
	min-width: min(260px, 100%);
	padding: 0.5rem 0.75rem;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-neutral-dark);
}

.vertex-cart-page__woocommerce .woocommerce .cart-collaterals .cart_totals {
	border: 1px solid var(--color-neutral-light);
	border-radius: var(--radius-sm);
	background: var(--color-neutral-lightest);
	padding: 1.25rem;
}

.vertex-cart-page__woocommerce .woocommerce .cart-collaterals .cart_totals h2 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.vertex-cart-page__woocommerce .woocommerce .wc-proceed-to-checkout a.checkout-button {
	width: 100%;
	text-align: center;
	padding: 0.85rem 1.25rem;
}

.woocommerce-checkout .vertex-checkout-grid {
	margin-top: 2rem;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	width: 100%;
	float: none;
}

.vertex-cart-breadcrumb {
	background: #ffffff;
	border-bottom: 1px solid #f1f1f1;
}

.vertex-cart-breadcrumb__nav {
	max-width: 1440px;
	margin: 0 auto;
	padding: 16px 104px;
	display: flex;
	align-items: center;
}

.vertex-cart-breadcrumb__link {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4285714285714286;
	color: #9d9d9d;
	text-decoration: none;
}

.vertex-cart-breadcrumb__link:hover {
	text-decoration: underline;
}

.vertex-cart-breadcrumb__sep {
	padding: 0 12px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4285714285714286;
	color: #9d9d9d;
}

.vertex-cart-breadcrumb__current {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4285714285714286;
	color: #181818;
}

.vertex-cart-section {
	background: #ffffff;
}

.vertex-cart-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.vertex-cart-title {
	margin: 32px 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.1111111111111112;
	color: #181818;
}

.vertex-cart-page__woocommerce .woocommerce {
	margin: 0;
	display: block;
}

.vertex-cart-page__woocommerce .vertex-cart-grid {
	display: grid;
	grid-template-columns: 808.66px 389.34px;
	gap: 32px;
	align-items: start;
	justify-content: center;
}

@media (max-width: 1200px) {
	.vertex-cart-page__woocommerce .vertex-cart-grid {
		grid-template-columns: 1fr;
	}
}

.vertex-cart-page__woocommerce .vertex-cart-card {
	background: #ffffff;
	border: 1px solid #f1f1f1;
	border-radius: 16px;
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
	padding: 0 0 24px;
}

.vertex-cart-page__woocommerce .vertex-cart-card__row {
	padding: 24px;
}

.vertex-cart-page__woocommerce .vertex-cart-card__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #f1f1f1;
}

.vertex-cart-page__woocommerce .vertex-cart-card__title {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: #181818;
}

.vertex-cart-page__woocommerce .vertex-cart-clear {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #9d9d9d;
	text-decoration: none;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4285714285714286;
}

.vertex-cart-page__woocommerce .vertex-cart-clear:hover {
	text-decoration: underline;
}

.vertex-cart-page__woocommerce .vertex-cart-clear__icon {
	color: #9d9d9d;
}

.vertex-cart-page__woocommerce .vertex-cart-items {
	display: flex;
	flex-direction: column;
}

.vertex-cart-page__woocommerce .vertex-cart-item {
	display: flex;
	gap: 24px;
	padding: 24px;
	border-bottom: 1px solid #f1f1f1;
}

.vertex-cart-page__woocommerce .vertex-cart-item:last-child {
	border-bottom: 0;
}

.vertex-cart-page__woocommerce .vertex-cart-item__image {
	width: 128px;
	height: 128px;
	border-radius: 8px;
	overflow: hidden;
	background: #ffffff;
	flex: 0 0 128px;
}

.vertex-cart-page__woocommerce .vertex-cart-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vertex-cart-page__woocommerce .vertex-cart-item__content {
	display: grid;
	grid-template-columns: 1fr auto auto;
	flex: 1;
	align-items: center;
	gap: 24px;
}

.vertex-cart-page__woocommerce .vertex-cart-item__meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.vertex-cart-page__woocommerce .vertex-cart-item__meta-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.vertex-cart-page__woocommerce .vertex-cart-item__name {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5555555555555556;
	color: #181818;
}

.vertex-cart-page__woocommerce .vertex-cart-item__sku {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4285714285714286;
	color: #9d9d9d;
}

.vertex-cart-page__woocommerce .vertex-cart-item__link {
	color: #181818;
	text-decoration: none;
}

.vertex-cart-page__woocommerce .vertex-cart-item__link:hover {
	text-decoration: underline;
}

.vertex-cart-page__woocommerce .vertex-cart-item__controls {
	display: flex;
	align-items: center;
	gap: 16px;
}

.vertex-cart-page__woocommerce .vertex-qty {
	display: flex;
	align-items: center;
	border: 1px solid #f1f1f1;
	border-radius: 8px;
	overflow: hidden;
}

.vertex-cart-page__woocommerce .vertex-qty__btn {
	appearance: none;
	border: 0;
	background: transparent;
	padding: 6.25px 16px 6.75px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	color: #181818;
	cursor: pointer;
}

.vertex-cart-page__woocommerce .vertex-qty__input {
	width: 64px;
	border: 0;
	border-left: 1px solid #f1f1f1;
	border-right: 1px solid #f1f1f1;
	padding: 8px 0;
	text-align: center;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #181818;
}

.vertex-cart-page__woocommerce .vertex-qty__input:focus {
	outline: none;
}

.vertex-cart-page__woocommerce .vertex-cart-item__remove-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #9d9d9d;
	text-decoration: none;
}

.vertex-cart-page__woocommerce .vertex-cart-item__remove-link:hover {
	color: #181818;
}

.vertex-cart-page__woocommerce .vertex-cart-item__total {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3333333333333333;
	color: #13284c;
	white-space: nowrap;
	text-align: right;
}

.vertex-cart-page__woocommerce .vertex-cart-item__total-sub {
	margin-top: 4px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4285714285714286;
	color: #9d9d9d;
}

.vertex-cart-page__woocommerce .vertex-cart-item__total-sub--strike {
	text-decoration: line-through;
}

.vertex-cart-page__woocommerce .vertex-cart-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 0 0;
}

.vertex-cart-page__woocommerce .vertex-cart-actions__link {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	color: #9d9d9d;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.vertex-cart-page__woocommerce .vertex-cart-actions__link:hover {
	text-decoration: underline;
}

.vertex-cart-page__woocommerce .vertex-cart-save {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 0;
	background: transparent;
	color: #f47726;
	padding: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	cursor: pointer;
}

.vertex-cart-page__woocommerce .vertex-cart-actions__icon,
.vertex-cart-page__woocommerce .vertex-cart-save__icon {
	flex: 0 0 auto;
	display: block;
}

.vertex-cart-page__woocommerce .vertex-cart-save__icon {
	width: 16px;
	height: 16px;
}

.vertex-cart-page__woocommerce .vertex-cart-actions__icon {
	width: 14px;
	height: 16px;
}

.vertex-cart-page__woocommerce .vertex-cart-checkout__icon {
	width: 15.75px;
	height: 18px;
	flex: 0 0 auto;
	display: block;
}

.vertex-cart-page__woocommerce .vertex-cart-keep-shopping__icon {
	width: 14px;
	height: 16px;
	flex: 0 0 auto;
	display: block;
}

.vertex-cart-page__woocommerce .vertex-cart-save:hover {
	text-decoration: underline;
}

.vertex-cart-page__woocommerce .vertex-cart-totals {
	background: #ffffff;
	border: 1px solid #f1f1f1;
	border-radius: 16px;
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
	padding: 25px;
	width: 389.34px;
	box-sizing: border-box;
}

.vertex-cart-page__woocommerce .vertex-cart-totals__title {
	margin: 0 0 16px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: #181818;
}

.vertex-cart-page__woocommerce .vertex-cart-totals__lines {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.vertex-cart-page__woocommerce .vertex-cart-totals__row {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.vertex-cart-page__woocommerce .vertex-cart-totals__label {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #181818;
}

.vertex-cart-page__woocommerce .vertex-cart-totals__value {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	color: #181818;
	white-space: nowrap;
}

.vertex-cart-page__woocommerce .vertex-cart-totals__value--positive {
	color: #16a34a;
}

.vertex-cart-page__woocommerce .vertex-cart-coupon {
	margin-top: 16px;
	border-top: 1px solid #f1f1f1;
	padding-top: 16px;
}

.vertex-cart-page__woocommerce .vertex-cart-coupon__summary {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #181818;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.vertex-cart-page__woocommerce .vertex-cart-coupon__summary::-webkit-details-marker {
	display: none;
}

.vertex-cart-page__woocommerce .vertex-cart-coupon__chevron {
	transition: transform 180ms ease;
}

.vertex-cart-page__woocommerce .vertex-cart-coupon[open] .vertex-cart-coupon__chevron {
	transform: rotate(180deg);
}

.vertex-cart-page__woocommerce .vertex-cart-coupon__form {
	display: flex;
	gap: 8px;
	margin-top: 12px;
}

.vertex-cart-page__woocommerce .vertex-cart-coupon__input {
	flex: 1;
	border: 1px solid #f1f1f1;
	border-radius: 8px;
	padding: 14px 16px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2102272510528564;
	color: #181818;
}

.vertex-cart-page__woocommerce .vertex-cart-coupon__input::placeholder {
	color: #9d9d9d;
}

.vertex-cart-page__woocommerce .vertex-cart-coupon__btn {
	border: 0;
	border-radius: 8px;
	background: #13284c;
	color: #ffffff;
	padding: 13px 24px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	cursor: pointer;
}

.vertex-cart-page__woocommerce .vertex-cart-shipping {
	margin-top: 16px;
	border-top: 1px solid #f1f1f1;
	padding-top: 25px;
}

.vertex-cart-page__woocommerce .vertex-cart-shipping__title {
	margin: 0 0 16px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #181818;
}

.vertex-cart-page__woocommerce .vertex-cart-shipping__form {
	display: flex;
	gap: 8px;
}

.vertex-cart-page__woocommerce .vertex-cart-shipping__input {
	flex: 1;
	border: 1px solid #f1f1f1;
	border-radius: 8px;
	padding: 14px 16px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2102272510528564;
	color: #181818;
}

.vertex-cart-page__woocommerce .vertex-cart-shipping__input::placeholder {
	color: #9d9d9d;
}

.vertex-cart-page__woocommerce .vertex-cart-shipping__btn {
	border: 0;
	border-radius: 8px;
	background: #13284c;
	color: #ffffff;
	padding: 13px 24px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	cursor: pointer;
}

.vertex-cart-page__woocommerce .vertex-cart-shipping__help {
	display: inline-block;
	margin-top: 12px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4285714285714286;
	color: #27529d;
	text-decoration: none;
}

.vertex-cart-page__woocommerce .vertex-cart-shipping__help:hover {
	text-decoration: underline;
}

.vertex-cart-page__woocommerce .vertex-cart-shipping__methods {
	margin-top: 16px;
}

.vertex-cart-page__woocommerce .vertex-cart-total {
	border-top: 1px solid #f1f1f1;
	margin-top: 24px;
	padding-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.vertex-cart-page__woocommerce .vertex-cart-total__note {
	margin: -12px 0 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4285714285714286;
	color: #9d9d9d;
}

.vertex-cart-page__woocommerce .vertex-cart-total__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.vertex-cart-page__woocommerce .vertex-cart-total__label {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: #181818;
}

.vertex-cart-page__woocommerce .vertex-cart-total__value {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	color: #13284c;
	white-space: nowrap;
}

.vertex-cart-page__woocommerce .vertex-cart-checkout {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border-radius: 12px;
	background: #f47726;
	color: #ffffff;
	text-decoration: none;
	padding: 16px 0;
	margin-top: 16px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5555555555555556;
	width: 339.34px;
	box-sizing: border-box;
}

.vertex-cart-page__woocommerce .vertex-cart-keep-shopping {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border-radius: 12px;
	border: 2px solid #f1f1f1;
	color: #181818;
	text-decoration: none;
	padding: 16px 0;
	margin-top: 16px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	width: 339.34px;
	box-sizing: border-box;
}

.vertex-cart-page__woocommerce .vertex-cart-notes {
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vertex-cart-page__woocommerce .vertex-cart-notes__item {
	display: flex;
	align-items: center;
}

.vertex-cart-page__woocommerce .vertex-cart-notes__icon {
	margin-right: 8px;
	flex: 0 0 auto;
	display: block;
}

.vertex-cart-page__woocommerce .vertex-cart-notes__text {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4285714285714286;
	color: #9d9d9d;
}

.woocommerce .cross-sells {
	max-width: 1440px;
	margin: 0 auto;
	padding: 48px 80px;
	background: #ffffff;
}

.woocommerce .cross-sells > h2 {
	margin: 0 0 32px;
	padding: 0 24px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	color: #181818;
}

.woocommerce .cross-sells ul.products {
	padding: 0 24px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin: 0;
}

@media (max-width: 1200px) {
	.woocommerce .cross-sells ul.products {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 680px) {
	.woocommerce .cross-sells ul.products {
		grid-template-columns: 1fr;
	}
}

.woocommerce .cross-sells ul.products li.product {
	border: 1px solid #f1f1f1;
	border-radius: 12px;
	background: #ffffff;
	overflow: hidden;
}

.woocommerce .cross-sells ul.products li.product a img {
	width: 100%;
	height: 192px;
	object-fit: cover;
	background: #f9fafb;
	margin: 0;
}

.woocommerce .cross-sells ul.products li.product .woocommerce-loop-product__title {
	padding: 20px 20px 0;
	margin: 0 0 8px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	color: #181818;
}

.woocommerce .cross-sells ul.products li.product .price {
	padding: 0 20px 12px;
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4285714285714286;
	color: #9d9d9d;
}

.woocommerce .cross-sells ul.products li.product a.button {
	display: block;
	margin: 0 20px 20px;
	border-radius: 8px;
	background: #f47726;
	color: #ffffff;
	padding: 14px 73.91999816894531px 10px 45px;
	text-align: center;
}

@media (min-width: 768px) {
	.woocommerce div.product {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		align-items: start;
	}

	.woocommerce div.product .woocommerce-tabs,
	.woocommerce div.product .related.products {
		grid-column: 1 / -1;
	}
}

@media (min-width: 1024px) {
	.vertex-checkout-grid {
		display: grid;
		grid-template-columns: 1fr 380px;
		gap: 2rem;
		align-items: start;
	}
}

.woocommerce .col2-set {
	display: grid;
	gap: 2rem;
}

@media (min-width: 768px) {
	.woocommerce .col2-set {
		grid-template-columns: 1fr 1fr;
	}
}

.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 {
	width: 100%;
	float: none;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-neutral-dark);
	padding: 0.5rem 0.75rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	background: var(--scaffold-alt-b);
	padding: 1rem;
	border-radius: var(--radius-sm);
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.woocommerce-account .vertex-account-layout {
		display: grid;
		grid-template-columns: 220px 1fr;
		gap: 2rem;
		align-items: start;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		margin-bottom: 0;
	}
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
	margin-bottom: 0.35rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: block;
	padding: 0.5rem 0.65rem;
	border-radius: var(--radius-sm);
	font-size: var(--fs-small);
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
	background: var(--color-primary);
	color: var(--color-neutral-lightest);
}

.woocommerce .vertex-product-page.vertex-wc-wrap {
	padding-block: 0;
}

/* Single product: align breadcrumb + body with logo visual edge (without touching header). */
.single-product .vertex-breadcrumb .container,
.single-product .vertex-product-page .container {
	padding-inline-start: max(0px, calc(var(--container-padding-x) - 24px)) !important;
	padding-inline-end: var(--container-padding-x) !important;
}

.vertex-product-section {
	padding-block: 48px;
}

.vertex-product-section--hero {
	padding-top: 24px;
}

.vertex-product-card {
	background: #fff;
	border-radius: 16px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.vertex-product-card__title {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.2;
	color: #181818;
}

.vertex-product-hero {
	display: grid;
	grid-template-columns: 592px 592px;
	gap: 48px;
	justify-content: start;
	align-items: start;
}

.vertex-product-gallery__main {
	height: 500px;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
}

.vertex-product-gallery__main-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vertex-product-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-top: 16px;
}

.vertex-product-gallery__thumb {
	height: 96px;
	background: #fff;
	border: 2px solid rgba(0, 0, 0, 0);
	border-radius: 8px;
	padding: 0;
	overflow: hidden;
	cursor: pointer;
	display: block;
}

.vertex-product-gallery__thumb.is-active {
	border-color: #13284c;
}

.vertex-product-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vertex-product-summary {
	width: 592px;
}

.vertex-product-badges {
	width: 592px;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.vertex-product-badge {
	border-radius: 9999px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	padding: 4px 12px;
}

.vertex-product-badge--cat {
	background: rgba(0, 61, 122, 0.1);
	color: #13284c;
}

.vertex-product-badge--stock {
	background: rgba(34, 197, 94, 0.1);
	color: #16a34a;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 4px 12px;
}

.vertex-product-badge__icon svg {
	display: block;
}

.vertex-product-title {
	margin: 0 0 12px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	font-size: 36px;
	line-height: 40px;
	color: #181818;
}

.vertex-product-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.vertex-product-sku {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #9d9d9d;
}

.vertex-product-reviews {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #9d9d9d;
}

.vertex-product-reviews__stars {
	position: relative;
	width: 90px;
	height: 16px;
	display: inline-block;
}

.vertex-product-reviews__stars-base,
.vertex-product-reviews__stars-fill {
	position: absolute;
	inset: 0;
	display: flex;
	gap: 0;
}

.vertex-product-reviews__stars-base {
	color: #e5e7eb;
}

.vertex-product-reviews__stars-fill {
	color: #facc15;
	overflow: hidden;
	width: calc((var(--rating) / 5) * 100%);
}

.vertex-product-reviews__star svg {
	display: block;
	width: 18px;
	height: 16px;
}

.vertex-product-excerpt {
	margin: 0 0 24px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #181818;
}

.vertex-product-excerpt p {
	margin: 0;
}

.vertex-product-cart {
	border-top: 1px solid #f1f1f1;
	padding-top: 24px;
}

.vertex-product-qty-row {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 40px;
}

.vertex-product-qty-label {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #181818;
}

.vertex-product-page .vertex-qty {
	width: 135px;
	height: 30px;
	border: 1px solid #f1f1f1;
	border-radius: 8px;
	display: flex;
	align-items: stretch;
	overflow: hidden;
}

.vertex-product-page .vertex-qty__btn {
	width: 45px;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #181818;
}

.vertex-product-page .vertex-qty__btn svg {
	width: 45px;
	height: 30px;
	display: block;
}

.vertex-product-page .vertex-qty__sep {
	width: 1px;
	background: #f1f1f1;
	display: block;
}

.vertex-product-page .vertex-qty__input {
	width: 43px;
	border: 0;
	outline: none;
	text-align: center;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #000;
	padding: 0;
}

.vertex-product-qty-availability {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #9d9d9d;
}

.vertex-product-cta-row {
	display: flex;
	gap: 16px;
	width: 592px;
}

.vertex-product-btn {
	border-radius: 12px;
	padding: 16px 24px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
	text-align: center;
	text-decoration: none;
	border: 0;
	cursor: pointer;
}

.vertex-product-btn--quote {
	flex: 1 1 0;
	background: #f47726;
	color: #fff;
}

.vertex-product-btn--buy {
	flex: 0 0 auto;
	background: #13284c;
	color: #fff;
}

.vertex-product-actions-row {
	display: flex;
	gap: 12px;
	width: 592px;
	margin-top: 24px;
}

.vertex-product-action-btn {
	flex: 1 1 0;
	border: 2px solid #f1f1f1;
	border-radius: 8px;
	padding: 12px 16px;
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
}

.vertex-product-action-btn__icon {
	display: inline-flex;
	align-items: center;
}

.vertex-product-action-btn__icon svg {
	display: block;
	width: 18px;
	height: 16px;
	color: #181818;
}

.vertex-product-action-btn__text {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #181818;
}

.vertex-product-info-row {
	width: 592px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 24px;
}

.vertex-product-info-box {
	background: #fff;
	border-radius: 8px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.vertex-product-info-box__icon {
	color: #f47726;
}

.vertex-product-info-box__icon svg {
	display: block;
	width: 30px;
	height: 24px;
}

.vertex-product-info-box__text {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	color: #9d9d9d;
}

.vertex-product-description p {
	margin: 0 0 16px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #181818;
}

.vertex-product-description p:last-child {
	margin-bottom: 0;
}

.vertex-product-specs__row {
	display: grid;
	grid-template-columns: 402.98px 765.02px;
	border-bottom: 1px solid #f1f1f1;
}

.vertex-product-specs__label {
	padding: 16px 32px 16px 1px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	color: #181818;
}

.vertex-product-specs__value {
	padding: 16px 1px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: #9d9d9d;
}

.vertex-product-apps {
	position: relative;
	height: 108px;
}

.vertex-product-apps__item {
	position: absolute;
	display: inline-flex;
	align-items: center;
	height: 48px;
	padding: 12px 20px;
	border-radius: 9999px;
	background: rgba(0, 61, 122, 0.1);
	color: #13284c;
}

.vertex-product-apps__icon {
	display: inline-flex;
	padding-right: 8px;
}

.vertex-product-apps__icon img {
	display: block;
	width: 18px;
	height: 16px;
}

.vertex-product-apps__text {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #13284c;
}

.vertex-product-apps__item--pos-1 {
	left: 0;
	top: 0;
}

.vertex-product-apps__item--pos-2 {
	left: 243.3px;
	top: 0;
}

.vertex-product-apps__item--pos-3 {
	left: 465.27px;
	top: 0;
}

.vertex-product-apps__item--pos-4 {
	left: 707.94px;
	top: 0;
}

.vertex-product-apps__item--pos-5 {
	left: 0;
	top: 60px;
}

.vertex-product-apps__item--pos-6 {
	left: 286.19px;
	top: 60px;
}

.vertex-product-packaging {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vertex-product-packaging__item {
	display: flex;
	align-items: flex-start;
}

.vertex-product-packaging__icon {
	padding-top: 4px;
	padding-right: 12px;
	display: inline-flex;
}

.vertex-product-packaging__icon svg {
	display: block;
	width: 16px;
	height: 16px;
}

.vertex-product-packaging__text {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #181818;
}

.vertex-product-video__embed {
	background: #111827;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 1168 / 500;
}

.vertex-product-video__embed iframe,
.vertex-product-video__embed video {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
}

.vertex-product-video__caption {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	color: #9d9d9d;
}

.vertex-product-video__error {
	margin: 12px 0 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: #9d9d9d;
}

@media (max-width: 1200px) {
	.vertex-product-hero {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.vertex-product-summary,
	.vertex-product-badges,
	.vertex-product-cta-row,
	.vertex-product-actions-row,
	.vertex-product-info-row {
		width: 100%;
	}

	.vertex-product-apps {
		height: auto;
		display: flex;
		flex-wrap: wrap;
		gap: 12px;
	}

	.vertex-product-apps__item {
		position: static;
	}

	.vertex-product-specs__row {
		grid-template-columns: 1fr;
	}

	.vertex-product-specs__label,
	.vertex-product-specs__value {
		padding: 16px 0;
	}
}

.vertex-product-related {
	background: #ffffff;
	padding: 48px 80px;
}

.vertex-product-related__inner {
	max-width: 1440px;
	margin-inline: auto;
	padding: 0 24px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.vertex-product-related__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.vertex-product-related__title {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
	color: #181818;
}

.vertex-product-related__all {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.vertex-product-related__all-text {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #f47726;
}

.vertex-product-related__all-icon {
	padding-left: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.vertex-product-related__all:focus-visible {
	outline: 2px solid #f47726;
	outline-offset: 4px;
	border-radius: 8px;
}

.vertex-product-related__grid {
	display: grid;
	grid-template-columns: repeat(4, 288px);
	gap: 24px;
	justify-content: center;
	align-items: stretch;
}

.vertex-related-card {
	border: 1px solid #f1f1f1;
	border-radius: 12px;
	background: #ffffff;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.vertex-related-card__media {
	position: relative;
	width: 288px;
	height: 192px;
	background: #f9fafb;
	overflow: hidden;
}

.vertex-related-card__media-link {
	display: block;
	width: 100%;
	height: 100%;
}

.vertex-related-card__img {
	width: 100%;
	height: 100%;
	object-fit: fill;
	display: block;
}

.vertex-related-card__stock {
	position: absolute;
	left: 12px;
	top: 12px;
	background: #22c55e;
	border-radius: 9999px;
	padding: 4px 12px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	color: #ffffff;
}

.vertex-related-card__body {
	width: 288px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.vertex-related-card__title {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #181818;
}

.vertex-related-card__price {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
	color: #13284c;
}

.vertex-related-card__price .amount {
	font-weight: 700;
}

.vertex-related-card__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 73.91999816894531px 10px;
	background: #f47726;
	border-radius: 8px;
	text-decoration: none;
	width: 100%;
	box-sizing: border-box;
}

.vertex-related-card__btn:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

.vertex-related-card__btn:hover {
	opacity: 0.92;
}

.vertex-related-card__btn-icon {
	width: 18px;
	height: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.vertex-related-card__btn-text {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #ffffff;
}

.vertex-product-faq {
	background: #ffffff;
	padding: 64px 0;
}

.vertex-product-faq__inner {
	max-width: 1280px;
	width: min(100%, 1280px);
	margin-inline: auto;
}

.vertex-product-faq__bg {
	border-radius: 16px;
	background: linear-gradient(175deg, rgba(19, 40, 76, 1) 0%, rgba(39, 82, 157, 1) 100%);
	padding: 48px 232px;
}

.vertex-product-faq__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.vertex-product-faq__icon svg {
	display: block;
	width: 60px;
	height: 60px;
}

.vertex-product-faq__title {
	margin: 16px 0 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
	color: #ffffff;
}

.vertex-product-faq__text {
	margin: 16px 0 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	color: #ffffff;
}

.vertex-product-faq__actions {
	margin-top: 32px;
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 15.989999771118164px;
}

.vertex-product-faq__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	padding: 15.5px 32px 16.5px;
	text-decoration: none;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
}

.vertex-product-faq__btn-icon {
	padding-right: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.vertex-product-faq__btn-icon svg {
	display: block;
}

.vertex-product-faq__btn--whatsapp {
	background: #22c55e;
	color: #ffffff;
}

.vertex-product-faq__btn--contact {
	background: #ffffff;
	color: #13284c;
}

.vertex-product-faq__btn:hover {
	opacity: 0.92;
}

.vertex-product-faq__btn:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 4px;
}

@media (max-width: 1200px) {
	.vertex-product-related {
		padding: 48px 16px;
	}

	.vertex-product-related__inner {
		padding: 0;
	}

	.vertex-product-related__grid {
		grid-template-columns: repeat(2, 288px);
	}

	.vertex-product-faq {
		padding: 64px 16px;
	}

	.vertex-product-faq__bg {
		padding: 48px 24px;
	}
}

@media (max-width: 680px) {
	.vertex-product-related__grid {
		grid-template-columns: 288px;
	}

	.vertex-product-faq__actions {
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	.vertex-product-section {
		padding-block: 32px;
	}

	.vertex-product-card {
		padding: 20px;
		gap: 16px;
	}

	.vertex-product-card__title {
		font-size: 26px;
		line-height: 1.25;
		text-align: center;
	}

	.vertex-product-hero {
		gap: 24px;
	}

	.vertex-product-gallery__main {
		height: clamp(240px, 66vw, 360px);
	}

	.vertex-product-gallery__thumbs {
		gap: 8px;
		margin-top: 12px;
	}

	.vertex-product-gallery__thumb {
		height: 72px;
	}

	.vertex-product-summary {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.vertex-product-badges {
		justify-content: center;
		flex-wrap: wrap;
	}

	.vertex-product-title {
		font-size: clamp(26px, 7vw, 32px);
		line-height: 1.2;
	}

	.vertex-product-meta {
		justify-content: center;
		flex-wrap: wrap;
		row-gap: 8px;
	}

	.vertex-product-excerpt {
		font-size: 15px;
		line-height: 1.6;
		text-align: center;
	}

	.vertex-product-cart {
		width: 100%;
	}

	.vertex-product-qty-row {
		flex-direction: column;
		align-items: center;
		gap: 10px;
		margin-bottom: 24px;
	}

	.vertex-product-cta-row {
		flex-direction: column;
		gap: 12px;
	}

	.vertex-product-btn {
		width: 100%;
		padding: 14px 18px;
		font-size: 17px;
		line-height: 1.35;
	}

	.vertex-product-actions-row {
		flex-direction: column;
		gap: 10px;
		margin-top: 16px;
	}

	.vertex-product-action-btn {
		width: 100%;
	}

	.vertex-product-info-row {
		grid-template-columns: 1fr;
		gap: 10px;
		margin-top: 16px;
	}

	.vertex-product-info-box {
		padding: 14px;
	}

	.vertex-product-specs__label,
	.vertex-product-specs__value {
		padding: 12px 0;
		text-align: center;
	}

	.vertex-product-apps {
		justify-content: center;
	}

	.vertex-product-apps__item {
		width: 100%;
		justify-content: center;
	}

	.vertex-product-related {
		padding: 32px 12px;
	}

	.vertex-product-related__inner {
		gap: 20px;
	}

	.vertex-product-related__header {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}

	.vertex-product-related__title {
		font-size: 24px;
		line-height: 1.25;
	}

	.vertex-product-related__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 16px;
		justify-content: stretch;
	}

	.vertex-related-card__media,
	.vertex-related-card__body {
		width: 100%;
	}

	.vertex-related-card__btn {
		padding: 12px 16px;
	}

	.vertex-product-faq {
		padding: 40px 12px;
	}

	.vertex-product-faq__bg {
		padding: 24px 16px;
	}

	.vertex-product-faq__title {
		font-size: 24px;
		line-height: 1.25;
	}

	.vertex-product-faq__text {
		font-size: 16px;
		line-height: 1.5;
	}

	.vertex-product-faq__actions {
		width: 100%;
		flex-direction: column;
		gap: 10px;
	}

	.vertex-product-faq__btn {
		width: 100%;
		padding: 14px 16px;
		font-size: 16px;
		line-height: 1.35;
	}
}

@media (max-width: 480px) {
	.vertex-product-section {
		padding-block: 24px;
	}

	.vertex-product-card {
		padding: 16px;
		gap: 14px;
	}

	.vertex-product-card__title {
		font-size: 22px;
	}

	.vertex-product-title {
		font-size: 24px;
	}

	.vertex-product-gallery__main {
		height: clamp(220px, 70vw, 280px);
	}

	.vertex-product-gallery__thumb {
		height: 62px;
	}

	.vertex-product-page .vertex-qty {
		width: 144px;
	}

	.vertex-product-qty-label,
	.vertex-product-qty-availability {
		text-align: center;
	}

	.vertex-product-info-box__text {
		font-size: 13px;
		line-height: 1.35;
	}
}
