/**
 * Site-Wide Inline Currency Selector
 * Shoptimizer Child Theme
 */

.oghemp-currency-selector {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 12px 0;
}

.oghemp-currency-selector-label {
	font-size: 13px;
	font-weight: 600;
	color: #333;
	white-space: nowrap;
}

.oghemp-currency-select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6"><path fill="%23555" d="M0 0l5 6 5-6z"/></svg>') no-repeat right 10px center;
	background-size: 10px 6px;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 7px 30px 7px 12px;
	font-size: 14px;
	color: #222;
	cursor: pointer;
	line-height: 1.3;
	min-width: 150px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.oghemp-currency-select:hover,
.oghemp-currency-select:focus {
	border-color: #7ac142;
	box-shadow: 0 0 0 2px rgba(122, 193, 66, 0.15);
	outline: none;
}

/* Product page context */
.single-product .oghemp-currency-selector {
	margin: 6px 0 14px;
}

/* Cart page context */
.woocommerce-cart .oghemp-currency-selector {
	margin-bottom: 18px;
}

/* Shop / archive context (above product grid) */
.woocommerce-shop .oghemp-currency-selector,
.woocommerce .oghemp-currency-selector {
	justify-content: flex-end;
	margin: 0 0 14px;
}

@media (max-width: 480px) {
	.oghemp-currency-selector {
		flex-wrap: wrap;
	}
	.oghemp-currency-select {
		flex: 1;
		min-width: 0;
	}
}