/* Paximum Currency Switcher */
.pcs-row{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:16px;
	flex-wrap:wrap;
}
.pcs-switcher{
	display:inline-flex;
	align-items:center;
	gap:8px;
	font-size:14px;
	line-height:1.2;
	white-space:nowrap;
}
.pcs-label{opacity:.75}
.pcs-select{
	appearance:none;-webkit-appearance:none;
	background:#fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M0 0l5 6 5-6z' fill='%23888'/></svg>") no-repeat right 10px center;
	border:1px solid #d5d5d5;border-radius:8px;
	padding:7px 30px 7px 12px;
	font-size:14px;color:#222;cursor:pointer;font-weight:600;
	min-width:96px;
}
.pcs-select:hover{border-color:#aaa}
.pcs-select:focus{outline:none;border-color:#c8102e;box-shadow:0 0 0 3px rgba(200,16,46,.12)}

/* Başlıksız (yedek) yerleşim */
.pcs-standalone{
	justify-content:flex-end;
	margin:0 0 14px;
}

/* Desteklenmeyen para birimi uyarısı */
.pcs-note{
	display:none;
	width:100%;
	margin:8px 0 0;
	padding:8px 12px;
	background:#fff4f4;
	border:1px solid #f3c2c2;
	border-radius:8px;
	color:#a12030;
	font-size:13px;
}

@media (max-width:600px){
	.pcs-row{justify-content:space-between}
	.pcs-switcher{font-size:13px}
}
