/* ============================================================
   Store v3 checkout design system.
   Scoped under .v3-store so it never leaks into the site theme.
   Re-brand per client by overriding the variables below in the
   site stylesheet, e.g.
     .v3-store { --v3-accent: #b5892b; --v3-btn-bg: #1c2b39; }
   ============================================================ */
.v3-store {
	--v3-text: #333333;
	--v3-muted: #737373;
	--v3-border: #d9d9d9;
	--v3-bg: #ffffff;
	--v3-sidebar-bg: #fafafa;
	--v3-accent: #2a6ab0;      /* links + input focus */
	--v3-btn-bg: #2a2a2a;      /* primary action buttons */
	--v3-btn-text: #ffffff;
	--v3-error: #b42d2d;
	--v3-radius: 5px;

	color: var(--v3-text);
	background: var(--v3-bg);
	font-size: 14px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

/* ---------------- layout shell: form left, summary right ---------------- */
.v3-store .v3-shell {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 15px;
}
.v3-store .v3-main {
	flex: 1 1 540px;
	max-width: 660px;
	padding: 40px 40px 60px 0;
}
.v3-store .v3-sidebar {
	flex: 1 1 320px;
	position: sticky;
	top: 20px;
	background: var(--v3-sidebar-bg);
	border-left: 1px solid var(--v3-border);
	padding: 40px 24px 40px 40px;
	align-self: stretch;
}
@media (max-width: 991px) {
	.v3-store .v3-main { padding-right: 0; max-width: 100%; }
	.v3-store .v3-sidebar {
		position: static;
		order: -1;
		width: 100%;
		flex-basis: 100%;
		border-left: 0;
		border: 1px solid var(--v3-border);
		border-radius: 8px;
		padding: 20px;
		margin: 20px 0 10px;
	}
}

/* ---------------- breadcrumb steps ---------------- */
.v3-store .v3-breadcrumb {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 0 28px;
	font-size: 12px;
	color: var(--v3-muted);
}
.v3-store .v3-breadcrumb li { display: flex; align-items: center; }
.v3-store .v3-breadcrumb li + li::before {
	content: "\203A"; /* › */
	margin: 0 9px;
	color: var(--v3-muted);
}
.v3-store .v3-breadcrumb a { color: var(--v3-accent); text-decoration: none; }
.v3-store .v3-breadcrumb .active { color: var(--v3-text); font-weight: 600; }

/* ---------------- sections + typography ---------------- */
.v3-store .v3-section { margin-bottom: 34px; }
.v3-store .v3-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 14px;
}
.v3-store .v3-section-head h2 {
	font-size: 17px;
	font-weight: 600;
	margin: 0;
	color: var(--v3-text);
}
.v3-store .v3-section-head .v3-aside-link,
.v3-store a.v3-link { color: var(--v3-accent); font-size: 13px; text-decoration: underline; cursor: pointer; }
.v3-store .v3-note { color: var(--v3-muted); font-size: 12px; }

/* ---------------- inputs ---------------- */
.v3-store .v3-field { margin-bottom: 12px; }
.v3-store .v3-grid { display: flex; flex-wrap: wrap; margin: 0 -6px; }
.v3-store .v3-grid .v3-field { padding: 0 6px; flex: 1 1 100%; }
.v3-store .v3-grid .v3-col-6 { flex: 1 1 50%; max-width: 50%; }
.v3-store .v3-grid .v3-col-4 { flex: 1 1 33.333%; max-width: 33.333%; }
@media (max-width: 575px) {
	.v3-store .v3-grid .v3-col-6, .v3-store .v3-grid .v3-col-4 { flex-basis: 100%; max-width: 100%; }
}
.v3-store input.form-control,
.v3-store select.form-control,
.v3-store textarea.form-control {
	width: 100%;
	height: 48px;
	padding: 12px 14px;
	font-size: 14px;
	color: var(--v3-text);
	background: #fff;
	border: 1px solid var(--v3-border);
	border-radius: var(--v3-radius);
	box-shadow: none;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.v3-store textarea.form-control { height: auto; min-height: 90px; }
.v3-store input.form-control::placeholder,
.v3-store textarea.form-control::placeholder { color: var(--v3-muted); }
.v3-store input.form-control:focus,
.v3-store select.form-control:focus,
.v3-store textarea.form-control:focus {
	border-color: var(--v3-accent);
	box-shadow: 0 0 0 1px var(--v3-accent);
	outline: none;
}
.v3-store label.v3-label { font-size: 12px; color: var(--v3-muted); margin-bottom: 4px; display: block; }
.v3-store .v3-check { display: flex; align-items: center; gap: 9px; font-size: 13px; margin: 10px 0; }
.v3-store .v3-check input { width: 17px; height: 17px; accent-color: var(--v3-btn-bg); flex: 0 0 auto; margin: 0; }

/* ---------------- buttons ---------------- */
.v3-store .v3-btn,
.v3-store .btn-primary {
	display: inline-block;
	background: var(--v3-btn-bg);
	color: var(--v3-btn-text);
	border: 0;
	border-radius: var(--v3-radius);
	padding: 15px 28px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	transition: opacity .15s ease;
}
.v3-store .v3-btn:hover, .v3-store .btn-primary:hover { opacity: .85; color: var(--v3-btn-text); text-decoration: none; }
.v3-store .v3-btn[disabled], .v3-store .btn-primary[disabled] { opacity: .5; cursor: not-allowed; }
.v3-store .v3-btn-ghost {
	background: transparent;
	color: var(--v3-accent);
	border: 0;
	font-size: 13px;
	cursor: pointer;
	padding: 15px 5px;
	text-decoration: underline;
}
.v3-store .v3-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

/* ---------------- order summary sidebar ---------------- */
.v3-store .v3-summary-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 9px 0;
}
.v3-store .v3-thumb {
	position: relative;
	flex: 0 0 auto;
	width: 64px;
	height: 64px;
	border: 1px solid var(--v3-border);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}
.v3-store .v3-thumb img { width: 100%; height: 100%; object-fit: cover; }
.v3-store .v3-thumb .v3-qty-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	min-width: 21px;
	height: 21px;
	padding: 0 6px;
	border-radius: 11px;
	background: var(--v3-muted);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 21px;
	text-align: center;
	z-index: 2;
}
.v3-store .v3-thumb { overflow: visible; }
.v3-store .v3-thumb .v3-thumb-clip { width: 100%; height: 100%; border-radius: 8px; overflow: hidden; }
.v3-store .v3-summary-item .v3-item-info { flex: 1 1 auto; min-width: 0; }
.v3-store .v3-summary-item .v3-item-title { font-size: 14px; font-weight: 600; margin: 0; }
.v3-store .v3-summary-item .v3-item-meta { font-size: 12px; color: var(--v3-muted); margin: 1px 0 0; }
.v3-store .v3-summary-item .v3-item-price { font-size: 14px; white-space: nowrap; }

.v3-store .v3-summary-sep { border: 0; border-top: 1px solid var(--v3-border); margin: 16px 0; }

.v3-store .v3-coupon { display: flex; gap: 10px; }
.v3-store .v3-coupon input.form-control { flex: 1 1 auto; }
.v3-store .v3-coupon .v3-btn { padding: 0 22px; height: 48px; flex: 0 0 auto; }
.v3-store .v3-coupon-msg { font-size: 12px; margin: 6px 0 0; }
.v3-store .v3-coupon-msg.text-success { color: #2e7d32; }
.v3-store .v3-coupon-tag {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #efefef;
	border-radius: var(--v3-radius);
	padding: 6px 12px;
	font-size: 13px;
}

.v3-store .v3-totals { font-size: 14px; }
.v3-store .v3-totals .v3-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 4px 0;
}
.v3-store .v3-totals .v3-row .v3-row-label { color: var(--v3-text); }
.v3-store .v3-totals .v3-row .v3-row-note { color: var(--v3-muted); font-size: 12px; }
.v3-store .v3-totals .v3-row-total { padding-top: 12px; font-size: 16px; font-weight: 600; }
.v3-store .v3-totals .v3-row-total .v3-currency { font-size: 11px; color: var(--v3-muted); font-weight: 400; margin-right: 8px; }

/* ---------------- step-2 recap box ---------------- */
.v3-store .v3-recap {
	border: 1px solid var(--v3-border);
	border-radius: var(--v3-radius);
	margin-bottom: 34px;
}
.v3-store .v3-recap .v3-recap-row {
	display: flex;
	align-items: baseline;
	gap: 16px;
	padding: 13px 16px;
}
.v3-store .v3-recap .v3-recap-row + .v3-recap-row { border-top: 1px solid var(--v3-border); }
.v3-store .v3-recap .v3-recap-label { flex: 0 0 70px; color: var(--v3-muted); font-size: 13px; }
.v3-store .v3-recap .v3-recap-value { flex: 1 1 auto; font-size: 14px; }
.v3-store .v3-recap .v3-recap-change { flex: 0 0 auto; }

/* ---------------- payment card (used by gateway includes) ---------------- */
.v3-store .card { border: 1px solid var(--v3-border); border-radius: var(--v3-radius); box-shadow: none !important; }
.v3-store .card-header { background: transparent; border-bottom: 1px solid var(--v3-border); font-weight: 600; }
.v3-store .card-footer { background: transparent; border-top: 1px solid var(--v3-border); }
.v3-store .alert { border-radius: var(--v3-radius); font-size: 13px; }

/* ---------------- login reveal ---------------- */
.v3-store .v3-login-panel { display: none; margin-bottom: 22px; }
.v3-store .v3-login-panel.open { display: block; }

/* ---------------- cart page ---------------- */
.v3-store .v3-cart-shell { max-width: 900px; margin: 0 auto; padding: 40px 15px 60px; }
.v3-store .v3-cart-title { font-size: 26px; font-weight: 600; margin-bottom: 6px; }
.v3-store .v3-cart-head, .v3-store .v3-cart-line {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 16px 0;
}
.v3-store .v3-cart-head {
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--v3-muted);
	border-bottom: 1px solid var(--v3-border);
	padding: 8px 0;
}
.v3-store .v3-cart-line { border-bottom: 1px solid var(--v3-border); }
.v3-store .v3-cart-line .v3-thumb { width: 88px; height: 88px; }
.v3-store .v3-cart-prod { flex: 1 1 auto; min-width: 0; }
.v3-store .v3-cart-prod .v3-item-title { font-size: 15px; font-weight: 600; margin: 0; }
.v3-store .v3-cart-qty { flex: 0 0 110px; }
.v3-store .v3-cart-qty select.form-control { height: 42px; }
.v3-store .v3-cart-price { flex: 0 0 110px; text-align: right; white-space: nowrap; }
.v3-store .v3-remove {
	background: none;
	border: 0;
	color: var(--v3-muted);
	font-size: 13px;
	text-decoration: underline;
	cursor: pointer;
	padding: 4px 0 0;
}
.v3-store .v3-remove:hover { color: var(--v3-error); }
.v3-store .v3-cart-footer { display: flex; justify-content: flex-end; margin-top: 22px; }
.v3-store .v3-cart-totals { width: 100%; max-width: 330px; text-align: right; }
.v3-store .v3-cart-totals .v3-row { display: flex; justify-content: space-between; padding: 3px 0; }
.v3-store .v3-cart-totals .v3-btn { margin-top: 16px; } 
@media (max-width: 575px) {
	.v3-store .v3-cart-head { display: none; }
	.v3-store .v3-cart-line { flex-wrap: wrap; }
	.v3-store .v3-cart-price { flex-basis: auto; margin-left: auto; }
}

/* ---------------- misc ---------------- */
.v3-store .v3-error-banner {
	background: #fdf1f1;
	border: 1px solid #f3c6c6;
	color: var(--v3-error);
	border-radius: var(--v3-radius);
	padding: 12px 16px;
	font-size: 13px;
	margin-bottom: 22px;
}
.v3-store .v3-footer-links { border-top: 1px solid var(--v3-border); margin-top: 40px; padding-top: 14px; font-size: 12px; }
.v3-store .v3-footer-links a { color: var(--v3-accent); margin-right: 16px; }

/* ---------------- order confirmation (finalize) ---------------- */
.v3-store.v3-thankyou .v3-main { padding-top: 50px; }
.v3-store .v3-thanks h1 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 16px;
	color: var(--v3-text);
}
.v3-store .v3-thanks > .v3-note { font-size: 13px; line-height: 1.6; margin-bottom: 8px; }
.v3-store .v3-addr-block { margin-top: 28px; }
.v3-store .v3-addr-block h3 { font-size: 15px; font-weight: 600; margin: 0 0 10px; }
.v3-store .v3-addr-row { display: flex; gap: 14px; font-size: 13px; padding: 3px 0; }
.v3-store .v3-addr-row .v3-addr-label { flex: 0 0 80px; color: var(--v3-muted); }

.v3-store .v3-receipt-col { flex: 1 1 360px; padding: 50px 0 60px; }
.v3-store .v3-receipt {
	background: #fff;
	border: 1px solid var(--v3-border);
	border-radius: 12px;
	padding: 26px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
}
.v3-store .v3-receipt h2 { font-size: 17px; font-weight: 600; margin: 0 0 18px; }
.v3-store .v3-receipt-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 26px;
	border-bottom: 1px solid var(--v3-border);
	padding-bottom: 16px;
	margin-bottom: 8px;
}
.v3-store .v3-receipt-meta .v3-meta-label {
	display: block;
	font-size: 10px;
	letter-spacing: .6px;
	text-transform: uppercase;
	color: var(--v3-muted);
	margin-bottom: 2px;
}
.v3-store .v3-receipt-meta .v3-meta-value { font-size: 13px; font-weight: 600; }
@media (max-width: 991px) {
	.v3-store .v3-receipt-col { flex-basis: 100%; padding: 10px 0 40px; }
	.v3-store.v3-thankyou .v3-main { padding-top: 24px; }
}
@media print {
	.v3-store .v3-btn, .v3-store .v3-link { display: none !important; }
	.v3-store .v3-receipt { box-shadow: none; }
}

/* ============================================================
   Products roll page (v3-catalog)
   ============================================================ */
.v3-store.v3-catalog { padding: 30px 0 60px; }
.v3-catalog .v3-cat-shell { max-width: 1280px; margin: 0 auto; padding: 0 15px; }
.v3-catalog .v3-cat-heading {
	font-size: 28px;
	font-weight: 700;
	text-align: center;
	margin: 10px 0 26px;
	color: var(--v3-text);
}
.v3-catalog .v3-cat-layout { display: flex; align-items: flex-start; gap: 34px; }
.v3-catalog .v3-cat-layout.v3-nofilters { display: block; }
.v3-catalog .v3-cat-main { flex: 1 1 auto; min-width: 0; }
.v3-catalog .v3-cat-main.v3-loading { opacity: .45; pointer-events: none; transition: opacity .15s ease; }

/* ---------------- filter sidebar ---------------- */
.v3-catalog .v3-cat-filters {
	flex: 0 0 250px;
	position: sticky;
	top: 20px;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	padding-right: 6px;
}
.v3-catalog .v3-filters-heading { font-size: 17px; font-weight: 700; margin: 0 0 6px; }
.v3-catalog .v3-filter-group { border-top: 1px solid var(--v3-border); padding: 4px 0 10px; }
.v3-catalog .v3-filter-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: var(--v3-text);
	margin: 0;
	padding: 10px 0 4px;
}
.v3-catalog a.v3-filter-title { cursor: pointer; text-decoration: none; }
.v3-catalog .v3-caret { font-size: 11px; color: var(--v3-muted); transition: transform .15s ease; }
.v3-catalog .v3-collapse-toggle.v3-collapsed .v3-caret { transform: rotate(-90deg); }
.v3-catalog .v3-filter-body.v3-collapsed { display: none; }
.v3-catalog .v3-filter-body .v3-check { margin: 7px 0; }
.v3-catalog .v3-check-child { margin-left: 18px; }
.v3-catalog .v3-check:hover span { color: var(--v3-accent); }
.v3-catalog .v3-price-inputs { display: flex; align-items: center; gap: 6px; margin: 6px 0 4px; }
.v3-catalog .v3-price-inputs .form-control { height: 38px; padding: 6px 8px; font-size: 13px; }
.v3-catalog .v3-price-inputs span { color: var(--v3-muted); font-size: 12px; }
.v3-catalog .v3-price-inputs .v3-btn-ghost { padding: 6px 4px; }
.v3-catalog .v3-filter-actions { display: flex; flex-direction: column; gap: 4px; padding-top: 14px; }
.v3-catalog .v3-filter-actions .v3-btn-cart { width: 100%; }
.v3-catalog .v3-filters-toggle { display: none; }

/* ---------------- toolbar / chips ---------------- */
.v3-catalog .v3-cat-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 14px;
}
.v3-catalog .v3-cat-count { font-size: 13px; color: var(--v3-muted); }
.v3-catalog .v3-cat-sort { display: flex; align-items: center; gap: 8px; font-size: 13px; margin: 0; }
.v3-catalog .v3-cat-sort select.form-control { height: 38px; padding: 6px 10px; font-size: 13px; width: auto; }
.v3-catalog .v3-cat-chips { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.v3-catalog .v3-cat-empty {
	border: 1px dashed var(--v3-border);
	border-radius: 8px;
	padding: 50px 20px;
	text-align: center;
}

/* ---------------- product grid / cards ---------------- */
.v3-catalog .v3-cat-grid {
	display: grid;
	grid-template-columns: repeat(var(--v3-cols, 3), minmax(0, 1fr));
	gap: 22px;
}
.v3-catalog .v3-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--v3-border);
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow .15s ease;
}
.v3-catalog .v3-card:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, .09); }
.v3-catalog .v3-card-img { display: block; position: relative; }
.v3-catalog .v3-card-img > span {
	display: block;
	width: 100%;
	padding-bottom: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: var(--v3-sidebar-bg);
}
.v3-catalog .v3-card-sold {
	position: absolute;
	left: 10px;
	bottom: 10px;
	background: var(--v3-error);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .5px;
	text-transform: uppercase;
	padding: 4px 9px;
	border-radius: 3px;
}
.v3-catalog .v3-card-fav {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 1px 4px rgba(0, 0, 0, .18);
	font-size: 17px;
	line-height: 1;
	color: var(--v3-text);
	cursor: pointer;
}
.v3-catalog .v3-card-fav.v3-fav-on { color: var(--v3-error); }
.v3-catalog .v3-card-edit {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	font-size: 16px;
	color: var(--v3-text);
	background: rgba(255, 255, 255, .92);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}
.v3-catalog .v3-card-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 14px 16px 16px;
}
.v3-catalog .v3-card-title { font-size: 14px; font-weight: 600; line-height: 1.35; margin: 0 0 6px; }
.v3-catalog .v3-card-title a { color: var(--v3-text); text-decoration: none; }
.v3-catalog .v3-card-title a:hover { color: var(--v3-accent); }
.v3-catalog .v3-card-price { font-size: 15px; font-weight: 700; margin: 0 0 6px; color: var(--v3-text); }
.v3-catalog .v3-card-desc { font-size: 12px; color: var(--v3-muted); line-height: 1.5; margin: 0 0 10px; }
.v3-catalog .v3-card-actions { margin-top: auto; }
.v3-catalog .v3-card-optlabel { display: block; font-size: 12px; color: var(--v3-muted); margin: 0 0 8px; }
.v3-catalog .v3-card-optlabel select.form-control { height: 38px; padding: 6px 8px; font-size: 13px; margin-top: 3px; }
.v3-catalog .v3-btn-cart { width: 100%; padding: 12px 10px; text-align: center; }
.v3-catalog .v3-card-actions .v3-btn-ghost { display: block; width: 100%; text-align: center; padding: 8px 5px; }
.v3-catalog .v3-card-links { display: flex; justify-content: center; gap: 16px; padding-top: 8px; font-size: 12px; }
.v3-catalog .v3-card-rating {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	margin: 0 0 8px;
	cursor: pointer;
	text-decoration: none;
}

/* star display: outline row with a gold overlay clipped to --v3-fill */
.v3-store .v3-stars {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	letter-spacing: 1px;
	color: #c9c9c9;
}
.v3-store .v3-stars::before { content: "\2605\2605\2605\2605\2605"; }
.v3-store .v3-stars::after {
	content: "\2605\2605\2605\2605\2605";
	position: absolute;
	top: 0;
	left: 0;
	width: var(--v3-fill, 0%);
	overflow: hidden;
	white-space: nowrap;
	color: #e8a33d;
}

/* ---------------- pagination ---------------- */
.v3-catalog .v3-cat-pages {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
	padding: 0;
	margin: 30px 0 0;
}
.v3-catalog .v3-cat-pages a,
.v3-catalog .v3-cat-pages span {
	display: inline-block;
	min-width: 36px;
	text-align: center;
	padding: 8px 10px;
	font-size: 13px;
	border: 1px solid var(--v3-border);
	border-radius: var(--v3-radius);
	color: var(--v3-text);
	text-decoration: none;
	background: #fff;
}
.v3-catalog .v3-cat-pages a:hover { border-color: var(--v3-accent); color: var(--v3-accent); }
.v3-catalog .v3-cat-pages .v3-page-current {
	background: var(--v3-btn-bg);
	color: var(--v3-btn-text);
	border-color: var(--v3-btn-bg);
}

/* ---------------- reviews / questions modal ---------------- */
body.v3-modal-open { overflow: hidden; }
.v3-store .v3-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(20, 20, 20, .55);
	padding: 30px 15px;
	overflow-y: auto;
}
.v3-store .v3-modal.v3-open { display: block; }
.v3-store .v3-modal-box {
	position: relative;
	max-width: 640px;
	margin: 20px auto;
	background: #fff;
	border-radius: 10px;
	padding: 26px 28px 30px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
}
.v3-store .v3-modal-box h2 { font-size: 18px; font-weight: 700; margin: 0 34px 14px 0; }
.v3-store .v3-modal-close {
	position: absolute;
	top: 14px;
	right: 16px;
	border: 0;
	background: transparent;
	font-size: 26px;
	line-height: 1;
	color: var(--v3-muted);
	cursor: pointer;
}
.v3-store .v3-modal-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--v3-border); margin-bottom: 16px; }
.v3-store .v3-modal-tab {
	padding: 9px 16px;
	font-size: 13px;
	font-weight: 600;
	color: var(--v3-muted);
	cursor: pointer;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	text-decoration: none;
}
.v3-store .v3-modal-tab.v3-active { color: var(--v3-text); border-bottom-color: var(--v3-btn-bg); }
.v3-store .v3-modal-summary { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.v3-store .v3-review { border-top: 1px solid var(--v3-border); padding: 13px 0; }
.v3-store .v3-review-title { font-size: 14px; font-weight: 600; margin: 6px 0 3px; }
.v3-store .v3-review-text { font-size: 13px; line-height: 1.55; margin: 4px 0 6px; white-space: pre-line; }
.v3-store .v3-review .v3-note { margin: 0; }
.v3-store .v3-review-response {
	background: var(--v3-sidebar-bg);
	border-left: 3px solid var(--v3-accent);
	border-radius: 0 6px 6px 0;
	font-size: 13px;
	padding: 9px 12px;
	margin-top: 8px;
}
.v3-store .v3-modal-form { border-top: 1px solid var(--v3-border); margin-top: 16px; padding-top: 16px; }
.v3-store .v3-modal-form h3 { font-size: 15px; font-weight: 600; margin: 0 0 12px; }
.v3-store .v3-star-pick { display: flex; gap: 2px; margin-bottom: 12px; }
.v3-store .v3-star-pick button {
	border: 0;
	background: transparent;
	font-size: 26px;
	line-height: 1;
	color: #c9c9c9;
	cursor: pointer;
	padding: 0 2px;
}
.v3-store .v3-star-pick button.v3-fav-on { color: #e8a33d; }
.v3-store .v3-form-msg { font-size: 13px; color: var(--v3-error); min-height: 18px; margin: 4px 0 10px; }
.v3-store .v3-form-msg.v3-form-ok { color: #2c7a3d; }

/* ---------------- quick view (cfg.enableQuickView) ---------------- */
.v3-catalog .v3-card-img > .v3-card-qv {
	position: absolute;
	width: auto;
	left: 50%;
	bottom: 12px;
	transform: translateX(-50%);
	z-index: 2;
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .95);
	box-shadow: 0 1px 6px rgba(0, 0, 0, .22);
	font-size: 12px;
	font-weight: 600;
	color: var(--v3-text);
	cursor: pointer;
	white-space: nowrap;
	opacity: 0;
	transition: opacity .15s ease;
}
.v3-catalog .v3-card:hover .v3-card-qv,
.v3-catalog .v3-card-qv:focus { opacity: 1; }
@media (hover: none) {
	.v3-catalog .v3-card-qv { opacity: 1; }
}
.v3-store .v3-qv-box { max-width: 780px; }
.v3-store .v3-qv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.v3-store .v3-qv-main {
	width: 100%;
	padding-bottom: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: var(--v3-sidebar-bg);
	border-radius: var(--v3-radius);
}
.v3-store .v3-qv-thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.v3-store .v3-qv-thumb {
	width: 52px;
	height: 52px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: var(--v3-radius);
	background-position: center;
	background-size: cover;
	cursor: pointer;
}
.v3-store .v3-qv-thumb.v3-active { border-color: var(--v3-accent); }
.v3-store .v3-qv-info h2 { font-size: 20px; font-weight: 700; margin: 0 30px 10px 0; }
.v3-store .v3-qv-price { font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.v3-store .v3-qv-price s { color: var(--v3-muted); font-weight: 400; margin-right: 6px; }
.v3-store .v3-qv-sold { color: var(--v3-error); font-weight: 700; margin: 0 0 10px; }
.v3-store .v3-qv-desc { font-size: 13px; color: var(--v3-muted); line-height: 1.6; margin: 0 0 14px; }
.v3-store .v3-qv-form .v3-btn-cart { width: 100%; padding: 12px 10px; text-align: center; }
.v3-store .v3-qv-qty { width: 90px; display: block; margin-top: 3px; }
.v3-store .v3-qv-full { display: block; width: 100%; text-align: center; margin-top: 10px; }

/* ---------------- add-to-cart toast (cfg.ajaxAddToCart) ---------------- */
.v3-toast {
	position: fixed;
	left: 50%;
	bottom: 28px;
	transform: translate(-50%, 12px);
	z-index: 10001;
	max-width: min(92vw, 480px);
	background: #1f1f1f;
	color: #fff;
	font-size: 13px;
	line-height: 1.45;
	padding: 12px 18px;
	border-radius: 8px;
	box-shadow: 0 8px 26px rgba(0, 0, 0, .3);
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
}
.v3-toast.v3-open {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
	transition: opacity .2s ease, transform .2s ease;
}
.v3-toast a { color: #fff; font-weight: 700; text-decoration: underline; }
.v3-toast.v3-toast-err { background: var(--v3-error); }

/* ---------------- product badges (cfg.badge*) ---------------- */
.v3-catalog .v3-card-img > .v3-card-badges {
	position: absolute;
	top: 10px;
	left: 10px;
	width: auto;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	z-index: 2;
	background: none;
}
.v3-store .v3-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .4px;
	text-transform: uppercase;
	padding: 4px 9px;
	border-radius: 3px;
	color: #fff;
	background: var(--v3-accent);
}
.v3-store .v3-badge-new { background: #2c7a3d; }
.v3-store .v3-badge-sale { background: var(--v3-error); }
.v3-store .v3-badge-best { background: #b8860b; }
.v3-store .v3-badge-low { background: #d9822b; }

/* ---------------- second image on hover (cfg.cardHoverSecondImage) ---------------- */
.v3-catalog .v3-card-img > .v3-card-img2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity .25s ease;
	z-index: 1;
}
.v3-catalog .v3-card:hover .v3-card-img2 { opacity: 1; }

/* ---------------- infinite scroll (cfg.infiniteScroll) ---------------- */
.v3-catalog .v3-scroll-sentinel { text-align: center; padding: 26px 0 10px; }

/* ---------------- promo banner (cfg.promoBannerText) ---------------- */
.v3-store .v3-promo-banner {
	background: var(--v3-btn-bg);
	color: var(--v3-btn-text);
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	padding: 11px 16px;
	border-radius: var(--v3-radius);
	margin-bottom: 18px;
}
.v3-store .v3-promo-banner a { color: inherit; text-decoration: underline; }

/* ---------------- mini-cart drawer (cfg.enableMiniCart) ---------------- */
.v3-minicart-fab {
	position: fixed;
	right: var(--v3-minicart-right, 24px);
	bottom: var(--v3-minicart-bottom, 24px);
	z-index: 9990;
	width: 56px;
	height: 56px;
	border: 0;
	border-radius: 50%;
	background: var(--v3-btn-bg);
	color: var(--v3-btn-text);
	box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.v3-minicart-badge {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 21px;
	height: 21px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--v3-error);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 21px;
	text-align: center;
}
.v3-minicart-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 10001;
	background: rgba(20, 20, 20, .45);
}
.v3-minicart-overlay.v3-open { display: block; }
.v3-minicart {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 10002;
	width: 400px;
	max-width: 94vw;
	background: #fff;
	box-shadow: -12px 0 40px rgba(0, 0, 0, .2);
	display: flex;
	flex-direction: column;
	transform: translateX(105%);
	transition: transform .25s ease;
}
.v3-minicart.v3-open { transform: translateX(0); }
.v3-minicart-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid var(--v3-border);
}
.v3-minicart-head h2 { font-size: 17px; font-weight: 700; margin: 0; }
.v3-minicart-head .v3-modal-close { position: static; }
.v3-minicart-body { flex: 1 1 auto; overflow-y: auto; padding: 6px 20px; }
.v3-minicart-empty { padding: 26px 0; text-align: center; }
.v3-minicart-line {
	display: flex;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid var(--v3-border);
}
.v3-minicart-thumb {
	flex: 0 0 62px;
	height: 62px;
	border-radius: var(--v3-radius);
	background-position: center;
	background-size: cover;
	background-color: var(--v3-sidebar-bg);
}
.v3-minicart-info { flex: 1 1 auto; min-width: 0; }
.v3-minicart-title {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--v3-text);
	text-decoration: none;
	margin-bottom: 2px;
}
.v3-minicart-info .v3-note { margin: 0 0 4px; font-size: 12px; }
.v3-minicart-qtyrow { display: flex; align-items: center; gap: 8px; }
.v3-mc-qty {
	width: 26px;
	height: 26px;
	border: 1px solid var(--v3-border);
	border-radius: var(--v3-radius);
	background: #fff;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
}
.v3-mc-qtyval { font-size: 13px; min-width: 18px; text-align: center; }
.v3-mc-remove {
	border: 0;
	background: none;
	font-size: 12px;
	color: var(--v3-muted);
	text-decoration: underline;
	cursor: pointer;
	margin-left: 6px;
}
.v3-minicart-price { font-size: 13px; font-weight: 700; white-space: nowrap; }
.v3-minicart-foot { border-top: 1px solid var(--v3-border); padding: 14px 20px 18px; }
.v3-minicart-foot .v3-btn { display: block; width: 100%; text-align: center; margin-top: 8px; padding: 12px 10px; }
.v3-minicart-subtotal { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 4px; }

/* ---------------- free shipping progress (cfg.freeShippingBar) ---------------- */
.v3-freeship { margin-bottom: 12px; }
.v3-freeship-msg { font-size: 13px; margin: 0 0 6px; }
.v3-freeship-msg.v3-freeship-met { color: #2c7a3d; font-weight: 600; }
.v3-freeship-track {
	height: 7px;
	border-radius: 999px;
	background: var(--v3-sidebar-bg);
	overflow: hidden;
}
.v3-freeship-fill {
	height: 100%;
	border-radius: 999px;
	background: #2c7a3d;
	transition: width .3s ease;
}

/* ---------------- keyword typeahead (cfg.enableTypeahead) ---------------- */
.v3-catalog .v3-ta-anchor { position: relative; }
.v3-typeahead {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 60;
	background: #fff;
	border: 1px solid var(--v3-border);
	border-radius: var(--v3-radius);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .14);
	max-height: 360px;
	overflow-y: auto;
}
.v3-typeahead.v3-open { display: block; }
.v3-ta-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	text-decoration: none;
	color: var(--v3-text);
}
.v3-ta-item:hover { background: var(--v3-sidebar-bg); }
.v3-ta-thumb {
	flex: 0 0 40px;
	height: 40px;
	border-radius: var(--v3-radius);
	background-position: center;
	background-size: cover;
	background-color: var(--v3-sidebar-bg);
}
.v3-ta-info { display: flex; flex-direction: column; min-width: 0; }
.v3-ta-title { font-size: 13px; font-weight: 600; line-height: 1.3; }
.v3-ta-info .v3-note { margin: 0; font-size: 12px; }

/* ---------------- responsive ---------------- */
@media (max-width: 991px) {
	.v3-catalog .v3-cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
	.v3-catalog .v3-cat-layout { display: block; }
	.v3-catalog .v3-filters-toggle { display: inline-block; margin-bottom: 12px; text-decoration: none; border: 1px solid var(--v3-border); border-radius: var(--v3-radius); padding: 10px 18px; }
	.v3-catalog .v3-cat-filters {
		display: none;
		position: static;
		max-height: none;
		border: 1px solid var(--v3-border);
		border-radius: 8px;
		padding: 16px;
		margin-bottom: 18px;
	}
	.v3-catalog .v3-cat-filters.v3-open { display: block; }
}
@media (max-width: 575px) {
	.v3-catalog .v3-cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
	.v3-catalog .v3-card-body { padding: 10px 12px 12px; }
	.v3-store .v3-modal-box { padding: 20px 16px 22px; }
	.v3-store .v3-qv-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   Product detail page (.v3-pdp) — productDetail_v3.cfm
   ============================================================ */
.v3-pdp .v3-pdp-shell {
	max-width: 1160px;
	margin: 0 auto;
	padding: 30px 15px 60px;
}
.v3-pdp .v3-pdp-top {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
	gap: 44px;
	align-items: start;
	margin-bottom: 44px;
}

/* ---------------- gallery ---------------- */
.v3-pdp .v3-pdp-gallery { position: sticky; top: 20px; }
.v3-pdp .v3-pdp-stage {
	position: relative;
	border: 1px solid var(--v3-border);
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.v3-pdp .v3-pdp-stage img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}
.v3-pdp .v3-pdp-sold {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	background: var(--v3-error);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 4px;
}
.v3-pdp .v3-pdp-edit {
	position: absolute;
	top: 10px;
	right: 48px;
	z-index: 3;
	font-size: 18px;
	text-decoration: none;
}
.v3-pdp .v3-pdp-fav {
	position: absolute;
	top: 8px;
	right: 10px;
	z-index: 3;
	border: 1px solid var(--v3-border);
	background: #fff;
	border-radius: 50%;
	width: 34px;
	height: 34px;
	font-size: 17px;
	line-height: 1;
	cursor: pointer;
	color: var(--v3-muted);
}
.v3-pdp .v3-pdp-fav.v3-fav-on { color: var(--v3-error); border-color: var(--v3-error); }
.v3-pdp .v3-pdp-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}
.v3-pdp .v3-pdp-thumb {
	width: 68px;
	height: 68px;
	padding: 3px;
	border: 1px solid var(--v3-border);
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
	opacity: .75;
	transition: opacity .15s, border-color .15s;
}
.v3-pdp .v3-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; display: block; }
.v3-pdp .v3-pdp-thumb:hover { opacity: 1; }
.v3-pdp .v3-pdp-thumb.v3-active { opacity: 1; border-color: var(--v3-accent); box-shadow: 0 0 0 1px var(--v3-accent); }

/* ---------------- buy box ---------------- */
.v3-pdp .v3-pdp-brand {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--v3-muted);
	margin: 0 0 6px;
}
.v3-pdp .v3-pdp-title {
	font-size: 28px;
	line-height: 1.25;
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--v3-text);
}
.v3-pdp .v3-pdp-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}
.v3-pdp .v3-pdp-rating { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; text-decoration: none; }
.v3-pdp .v3-pdp-pricerow {
	display: flex;
	align-items: baseline;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.v3-pdp .v3-pdp-price { font-size: 30px; font-weight: 700; color: var(--v3-text); }
.v3-pdp .v3-pdp-was { font-size: 17px; color: var(--v3-muted); text-decoration: line-through; }
.v3-pdp .v3-pdp-total { font-size: 14px; }
.v3-pdp .v3-pdp-stock { font-size: 13px; font-weight: 600; margin: 0 0 14px; }
.v3-pdp .v3-pdp-stock-in { color: #2c7a3d; }
.v3-pdp .v3-pdp-stock-low { color: #b06a00; }
.v3-pdp .v3-pdp-stock-out { color: var(--v3-error); }
.v3-pdp .v3-pdp-short { margin-bottom: 20px; color: var(--v3-text); font-size: 14px; }

.v3-pdp .v3-pdp-form { border-top: 1px solid var(--v3-border); padding-top: 18px; }
.v3-pdp .v3-pdp-optlabel { display: block; margin-bottom: 14px; }
.v3-pdp .v3-pdp-optlabel > span {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--v3-muted);
	margin-bottom: 5px;
}
.v3-pdp .v3-pdp-buyrow {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 18px;
}
.v3-pdp .v3-pdp-qty {
	display: inline-flex;
	align-items: stretch;
	border: 1px solid var(--v3-border);
	border-radius: var(--v3-radius);
	overflow: hidden;
}
.v3-pdp .v3-qty-btn {
	width: 42px;
	border: 0;
	background: var(--v3-sidebar-bg);
	font-size: 17px;
	cursor: pointer;
	color: var(--v3-text);
}
.v3-pdp .v3-qty-btn:hover { background: var(--v3-border); }
.v3-pdp .v3-pdp-qty input {
	width: 58px;
	height: 46px;
	border: 0;
	border-left: 1px solid var(--v3-border);
	border-right: 1px solid var(--v3-border);
	text-align: center;
	font-size: 15px;
	-moz-appearance: textfield;
}
.v3-pdp .v3-pdp-qty input::-webkit-outer-spin-button,
.v3-pdp .v3-pdp-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.v3-pdp .v3-pdp-addbtn { flex: 1 1 auto; min-width: 200px; text-align: center; text-decoration: none; }
.v3-pdp .v3-pdp-cats { margin-top: 16px; }

/* ---------------- tabs ---------------- */
.v3-pdp .v3-pdp-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	border-bottom: 2px solid var(--v3-border);
	margin-bottom: 22px;
}
.v3-pdp .v3-pdp-tab {
	border: 0;
	background: transparent;
	padding: 11px 18px;
	font-size: 14px;
	font-weight: 600;
	color: var(--v3-muted);
	cursor: pointer;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
}
.v3-pdp .v3-pdp-tab:hover { color: var(--v3-text); }
.v3-pdp .v3-pdp-tab.v3-active { color: var(--v3-text); border-bottom-color: var(--v3-accent); }
.v3-pdp .v3-pdp-panel { display: none; margin-bottom: 40px; }
.v3-pdp .v3-pdp-panel.v3-active { display: block; }
.v3-pdp .v3-pdp-video { position: relative; padding-bottom: 56.25%; height: 0; margin-top: 20px; }
.v3-pdp .v3-pdp-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: 8px; }
.v3-pdp .v3-pdp-specs { width: 100%; max-width: 720px; border-collapse: collapse; }
.v3-pdp .v3-pdp-specs th,
.v3-pdp .v3-pdp-specs td {
	text-align: left;
	padding: 10px 14px;
	border-bottom: 1px solid var(--v3-border);
	font-size: 14px;
	vertical-align: top;
}
.v3-pdp .v3-pdp-specs th { width: 38%; color: var(--v3-muted); font-weight: 600; }
.v3-pdp .v3-pdp-specs tr:nth-child(odd) { background: var(--v3-sidebar-bg); }
.v3-pdp .v3-pdp-docs { list-style: none; padding: 0; margin: 0; }
.v3-pdp .v3-pdp-docs li { padding: 8px 0; border-bottom: 1px solid var(--v3-border); }

/* ---------------- related products ---------------- */
.v3-pdp .v3-pdp-related h2 { font-size: 19px; font-weight: 700; margin: 0 0 16px; }
.v3-pdp .v3-pdp-rel-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}
.v3-pdp .v3-pdp-rel-card {
	display: block;
	border: 1px solid var(--v3-border);
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	color: var(--v3-text);
	background: #fff;
	transition: box-shadow .15s, transform .15s;
}
.v3-pdp .v3-pdp-rel-card:hover { box-shadow: 0 6px 18px rgba(0,0,0,.08); transform: translateY(-2px); }
.v3-pdp .v3-pdp-rel-img {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	background-size: cover;
	background-position: center;
	background-color: var(--v3-sidebar-bg);
}
.v3-pdp .v3-pdp-rel-title { display: block; padding: 10px 12px 2px; font-size: 13px; font-weight: 600; }
.v3-pdp .v3-pdp-rel-price { display: block; padding: 0 12px 12px; font-size: 13px; color: var(--v3-muted); }

/* ---------------- responsive ---------------- */
@media (max-width: 991px) {
	.v3-pdp .v3-pdp-top { grid-template-columns: 1fr; gap: 24px; }
	.v3-pdp .v3-pdp-gallery { position: static; }
	.v3-pdp .v3-pdp-rel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
	.v3-pdp .v3-pdp-title { font-size: 22px; }
	.v3-pdp .v3-pdp-price { font-size: 24px; }
	.v3-pdp .v3-pdp-tab { padding: 10px 12px; font-size: 13px; }
	.v3-pdp .v3-pdp-addbtn { min-width: 100%; }
}

/* ---------------- PDP trust row (cfg.trustRowItems) ---------------- */
.v3-pdp .v3-trust-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 10px 16px;
	border: 1px solid var(--v3-border);
	border-radius: var(--v3-radius);
	padding: 14px 16px;
	margin: 18px 0 6px;
}
.v3-pdp .v3-trust-item { display: flex; gap: 8px; align-items: flex-start; }
.v3-pdp .v3-trust-check {
	flex: 0 0 auto;
	color: #2c7a3d;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.4;
}
.v3-pdp .v3-trust-title { font-size: 13px; font-weight: 600; margin: 0; }
.v3-pdp .v3-trust-item .v3-note { margin: 1px 0 0; font-size: 12px; }

/* ---------------- PDP lightbox slideshow ---------------- */
.v3-pdp .v3-pdp-stage img.v3-zoomable { cursor: zoom-in; }
.v3-pdp .v3-pdp-expand {
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 3;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--v3-border);
	border-radius: 50%;
	background: rgba(255,255,255,.92);
	color: var(--v3-muted);
	cursor: pointer;
	transition: color .15s, box-shadow .15s;
}
.v3-pdp .v3-pdp-expand:hover { color: var(--v3-text); box-shadow: 0 2px 8px rgba(0,0,0,.15); }

body.v3-lb-lock { overflow: hidden; }

.v3-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	flex-direction: column;
	opacity: 0;
	transition: opacity .25s ease;
}
.v3-lightbox[hidden] { display: none; }
.v3-lightbox.v3-lb-open { opacity: 1; }
.v3-lb-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 12, 16, .92);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	cursor: zoom-out;
}
.v3-lb-chrome {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
}
.v3-lb-counter {
	color: rgba(255,255,255,.75);
	font-size: 13px;
	letter-spacing: .5px;
	font-variant-numeric: tabular-nums;
}
.v3-lb-close, .v3-lb-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 50%;
	background: rgba(255,255,255,.08);
	color: #fff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	transition: background .15s;
}
.v3-lb-close { margin-left: auto; font-size: 26px; }
.v3-lb-close:hover, .v3-lb-nav:hover { background: rgba(255,255,255,.22); }
.v3-lb-viewport {
	position: relative;
	z-index: 1;
	flex: 1;
	min-height: 0;
	overflow: hidden;
}
.v3-lb-track { display: flex; height: 100%; }
.v3-lb-track.v3-lb-anim { transition: transform .35s cubic-bezier(.22, .61, .36, 1); }
.v3-lb-slide {
	flex: 0 0 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 72px;
	min-width: 0;
}
.v3-lb-slide img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 6px;
	box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.v3-lb-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}
.v3-lb-prev { left: 16px; }
.v3-lb-next { right: 16px; }
/* gentle zoom-in of the image area while the overlay fades up */
.v3-lightbox .v3-lb-viewport { transform: scale(.96); transition: transform .25s ease; }
.v3-lightbox.v3-lb-open .v3-lb-viewport { transform: scale(1); }
.v3-lb-thumbs {
	position: relative;
	z-index: 2;
	display: flex;
	gap: 8px;
	justify-content: safe center;
	overflow-x: auto;
	padding: 12px 16px 18px;
}
.v3-lb-thumb {
	flex: 0 0 auto;
	width: 56px;
	height: 56px;
	padding: 2px;
	border: 2px solid transparent;
	border-radius: 8px;
	background: none;
	cursor: pointer;
	opacity: .5;
	transition: opacity .15s, border-color .15s;
}
.v3-lb-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 5px; display: block; }
.v3-lb-thumb:hover { opacity: .85; }
.v3-lb-thumb.v3-active { opacity: 1; border-color: #fff; }
@media (max-width: 575px) {
	.v3-lb-slide { padding: 6px 10px; }
	.v3-lb-nav { width: 38px; height: 38px; }
	.v3-lb-prev { left: 8px; }
	.v3-lb-next { right: 8px; }
	.v3-lb-thumb { width: 46px; height: 46px; }
}
