.wvlg-wrap {
	--wvlg-primary: #E2BE6C;
	--wvlg-bg: #171c2e;
	--wvlg-card-bg: #171c2e;
	--wvlg-card-border: #2a3050;
	--wvlg-text: #ffffff;
	--wvlg-muted: #b7bcd6;
	--wvlg-btn-bg: #1f2540;
	--wvlg-btn-border: #3a4066;
	font-family: 'Inter', sans-serif;
}

.wvlg-grid {
	display: grid;
	grid-template-columns: repeat(var(--wvlg-columns, 3), 1fr);
	gap: 24px;
	margin: 0 0 24px 0;
}

@media (max-width: 900px) {
	.wvlg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.wvlg-grid { grid-template-columns: 1fr; }
}

.wvlg-card {
	background: var(--wvlg-card-bg);
	border: 1px solid var(--wvlg-card-border);
	border-radius: 14px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	transition: border-color .2s ease, transform .2s ease;
}

.wvlg-card:hover {
	border-color: var(--wvlg-primary);
}

.wvlg-card-image {
	display: block;
	background: #000000;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 18px;
	max-width: 160px;
}

.wvlg-card-image img {
	display: block;
	width: 100%;
	height: auto;
}

.wvlg-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.wvlg-card-title {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: var(--wvlg-text);
	text-decoration: none;
	margin-bottom: 8px;
	line-height: 1.3;
}

.wvlg-card-title:hover {
	color: var(--wvlg-primary);
}

.wvlg-card-desc {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: var(--wvlg-muted);
	line-height: 1.5;
	margin-bottom: 18px;
}

.wvlg-card-desc p {
	margin: 0;
}

.wvlg-select-label {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: var(--wvlg-primary);
	margin-bottom: 10px;
}

.wvlg-variation-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.wvlg-variation-btn {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--wvlg-text);
	background: var(--wvlg-btn-bg);
	border: 1px solid var(--wvlg-btn-border);
	border-radius: 8px;
	padding: 8px 14px;
	cursor: pointer;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.wvlg-variation-btn:hover {
	border-color: var(--wvlg-primary);
}

.wvlg-variation-btn.wvlg-active {
	background: var(--wvlg-primary);
	border-color: var(--wvlg-primary);
	color: #171c2e;
}

.wvlg-variation-btn:disabled {
	opacity: .4;
	cursor: not-allowed;
}

.wvlg-card-footer {
	margin-top: auto;
	border-top: 1px solid var(--wvlg-card-border);
	padding-top: 16px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.wvlg-price {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: var(--wvlg-text);
	flex-basis: 100%;
}

.wvlg-price ins {
	text-decoration: none;
}

.wvlg-categories {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: var(--wvlg-muted);
}

.wvlg-categories a {
	color: var(--wvlg-primary);
	text-decoration: none;
}

.wvlg-add-to-cart {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 14px;
	background: var(--wvlg-primary);
	color: #171c2e;
	border: none;
	border-radius: 8px;
	padding: 10px 18px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: opacity .15s ease, transform .1s ease;
}

.wvlg-add-to-cart:hover {
	opacity: .9;
}

.wvlg-add-to-cart:active {
	transform: scale(.97);
}

.wvlg-add-to-cart.wvlg-added {
	background: #3fbf6a;
	color: #ffffff;
}

.wvlg-add-to-cart:disabled {
	opacity: .5;
	cursor: not-allowed;
}

.wvlg-cart-icon {
	font-size: 14px;
}

.wvlg-no-products {
	color: var(--wvlg-muted);
	font-family: 'Inter', sans-serif;
}

.wvlg-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 10px 0 30px;
}

.wvlg-page-btn {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	background: var(--wvlg-btn-bg);
	border: 1px solid var(--wvlg-btn-border);
	color: var(--wvlg-text);
	border-radius: 8px;
	min-width: 38px;
	height: 38px;
	cursor: pointer;
	transition: background .15s ease, color .15s ease;
}

.wvlg-page-btn:hover {
	border-color: var(--wvlg-primary);
}

.wvlg-page-btn.wvlg-active {
	background: var(--wvlg-primary);
	color: #171c2e;
	border-color: var(--wvlg-primary);
}

.wvlg-grid.wvlg-loading {
	opacity: .5;
	pointer-events: none;
}

.wvlg-toast {
	position: fixed;
	bottom: 24px;
	right: 24px;
	background: #171c2e;
	border: 1px solid var(--wvlg-primary);
	color: #ffffff;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	padding: 12px 18px;
	border-radius: 8px;
	z-index: 99999;
	box-shadow: 0 8px 24px rgba(0,0,0,.4);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .25s ease, transform .25s ease;
}

.wvlg-toast.wvlg-show {
	opacity: 1;
	transform: translateY(0);
}
