/* Merch Orders — frontend */

.mo-app {
	--mo-accent: #0071e3;
	--mo-bg: #ffffff;
	--mo-surface: #f5f5f7;
	--mo-text: #1d1d1f;
	--mo-muted: #6e6e73;
	--mo-line: rgba(0, 0, 0, .10);
	--mo-radius: 20px;
	--mo-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 30px rgba(0,0,0,.06);

	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--mo-text);
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 8px 16px 140px;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}

.mo-app *,
.mo-app *::before,
.mo-app *::after { box-sizing: border-box; }

/* ---------- Hero ---------- */

.mo-hero { text-align: center; padding: 24px 0 8px; }

.mo-hero-title {
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: -.02em;
	margin: 0 0 10px;
}

.mo-hero-sub {
	font-size: clamp(15px, 1.6vw, 19px);
	color: var(--mo-muted);
	margin: 0 auto;
	max-width: 620px;
	line-height: 1.45;
}

.mo-closed {
	background: var(--mo-surface);
	border-radius: var(--mo-radius);
	padding: 32px;
	text-align: center;
	font-size: 17px;
	color: var(--mo-muted);
	margin-top: 24px;
}

/* ---------- Steps ---------- */

.mo-steps {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
	margin: 28px 0 24px;
}

.mo-step {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--mo-muted);
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--mo-surface);
	transition: all .25s ease;
}

.mo-step i {
	font-style: normal;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(0,0,0,.12);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 11px;
	font-weight: 600;
}

.mo-step.is-active { color: var(--mo-text); background: rgba(0,0,0,.06); }
.mo-step.is-active i { background: var(--mo-accent); }
.mo-step.is-done i { background: #34c759; }

/* ---------- Panels ---------- */

.mo-panel { display: none; animation: mo-fade .35s ease; }
.mo-panel.is-active { display: block; }

@keyframes mo-fade {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: none; }
}

/* ---------- Pastiglia carrello sempre visibile ---------- */

.mo-cartchip {
	position: sticky;
	top: 8px;
	z-index: 20;
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--mo-bg);
	border: 1px solid var(--mo-line);
	border-radius: 999px;
	box-shadow: 0 4px 20px rgba(0,0,0,.10);
	padding: 8px 8px 8px 8px;
	margin: 0 0 20px;
}

.mo-cartchip-open {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	min-width: 0;
	background: transparent;
	border: 0;
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	color: var(--mo-text);
	cursor: pointer;
	padding: 4px 6px;
	text-align: left;
}

.mo-cartchip.is-empty .mo-cartchip-open { cursor: default; }

.mo-cartchip-icon { position: relative; display: inline-flex; flex: none; }
.mo-cartchip-icon svg { width: 26px; height: 26px; color: var(--mo-accent); }

.mo-cartchip-count {
	position: absolute;
	top: -6px;
	right: -8px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--mo-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	display: grid;
	place-items: center;
}

.mo-cartchip.is-empty .mo-cartchip-icon svg { color: var(--mo-muted); }
.mo-cartchip.is-empty .mo-cartchip-count { display: none; }
.mo-cartchip.is-empty .mo-cartchip-total { color: var(--mo-muted); font-weight: 400; }

.mo-cartchip-total { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mo-cartchip #mo-cartchip-go { flex: none; padding: 10px 22px; }

@media (max-width: 640px) {
	.mo-cartchip { top: 6px; }
	.mo-cartchip #mo-cartchip-go { padding: 10px 18px; }
}

/* ---------- Filtri ---------- */

.mo-filterbar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 28px;
	align-items: center;
	margin: 0 0 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--mo-line);
}

.mo-filtergroup { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.mo-filterlabel {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--mo-muted);
}

/* Tendina con freccia disegnata via CSS, per avere lo stesso aspetto ovunque. */
.mo-select { position: relative; display: inline-flex; }

.mo-select::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	width: 8px;
	height: 8px;
	margin-top: -6px;
	border-right: 1.6px solid var(--mo-muted);
	border-bottom: 1.6px solid var(--mo-muted);
	transform: rotate(45deg);
	pointer-events: none;
}

.mo-select select {
	appearance: none;
	-webkit-appearance: none;
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	color: var(--mo-text);
	background: var(--mo-bg);
	border: 1px solid var(--mo-line);
	border-radius: 999px;
	padding: 10px 42px 10px 18px;
	cursor: pointer;
	min-width: 168px;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.mo-select select:hover { border-color: rgba(0,0,0,.28); }

.mo-select select:focus {
	outline: none;
	border-color: var(--mo-accent);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--mo-accent) 18%, transparent);
}

.mo-filterreset {
	border: 0;
	background: transparent;
	color: var(--mo-accent);
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	padding: 8px 4px;
}

.mo-filterreset:hover { text-decoration: underline; }

.mo-empty { text-align: center; color: var(--mo-muted); padding: 40px 0; font-size: 16px; }

/* ---------- Catalogo ---------- */

.mo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 20px;
	width: 100%;
}

.mo-card {
	background: var(--mo-bg);
	border: 1px solid var(--mo-line);
	border-radius: var(--mo-radius);
	box-shadow: var(--mo-shadow);
	padding: 22px;
}

.mo-product { display: flex; flex-direction: column; }

.mo-product-media {
	position: relative;
	border-radius: 16px;
	background: var(--mo-surface);
	aspect-ratio: 4 / 3;
	overflow: hidden;
	display: grid;
	place-items: center;
	margin-bottom: 16px;
}

.mo-product-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mo-product-media svg { width: 64px; height: 64px; opacity: .25; }

.mo-product-name { font-size: 20px; font-weight: 600; letter-spacing: -.01em; margin: 0 0 4px; }
.mo-product-desc { font-size: 14px; color: var(--mo-muted); line-height: 1.45; margin: 0 0 12px; }
.mo-product-price { font-size: 20px; font-weight: 600; margin: 0 0 16px; }

.mo-opt-label {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--mo-muted);
	margin: 0 0 8px;
}

/* ---------- Galleria foto ---------- */

.mo-slides {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform .35s cubic-bezier(.4,0,.2,1);
}

.mo-slides img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; }

.mo-slide-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: rgba(255,255,255,.9);
	color: var(--mo-text);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	opacity: 0;
	transition: opacity .2s ease, background .2s ease;
	box-shadow: 0 2px 10px rgba(0,0,0,.15);
	font-family: inherit;
}

.mo-product-media:hover .mo-slide-nav,
.mo-slide-nav:focus { opacity: 1; }

.mo-slide-prev { left: 10px; }
.mo-slide-next { right: 10px; }
.mo-slide-nav:hover { background: #fff; }

.mo-dots {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 6px;
}

.mo-dots .mo-dot {
	width: 7px;
	height: 7px;
	border: 0;
	padding: 0;
	border-radius: 50%;
	background: rgba(255,255,255,.65);
	box-shadow: 0 1px 3px rgba(0,0,0,.35);
	cursor: pointer;
	transition: transform .2s ease, background .2s ease;
}

.mo-dots .mo-dot.is-on { background: #fff; transform: scale(1.35); }

/* Su touch le frecce restano sempre visibili: non c'è hover. */
@media (hover: none) {
	.mo-slide-nav { opacity: .85; }
}

/* Logo di certificazione appoggiato sulla foto del capo. */
.mo-badge-overlay {
	position: absolute;
	z-index: 2;
	top: 10px;
	right: 10px;
	background: rgba(255,255,255,.92);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	border-radius: 12px;
	padding: 5px 7px;
	line-height: 0;
	box-shadow: 0 2px 10px rgba(0,0,0,.12);
}

.mo-badge-overlay img { height: 30px; width: auto; display: block; }

.mo-badgechip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--mo-surface);
	border-radius: 999px;
	padding: 6px 14px 6px 8px;
	margin: -8px 0 16px;
	font-size: 12px;
	font-weight: 600;
	color: var(--mo-muted);
}

.mo-badgechip img { height: 22px; width: auto; display: block; border-radius: 4px; }

.mo-opt-label { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }

.mo-chartlink {
	border: 0;
	background: transparent;
	color: var(--mo-accent);
	font-family: inherit;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
	cursor: pointer;
	padding: 0;
}

.mo-chartlink:hover { text-decoration: underline; }

.mo-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }

/* ---------- Pannello tabella taglie ---------- */

.mo-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(0,0,0,.45);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.mo-modal.is-open { display: flex; animation: mo-fade .2s ease; }

.mo-modal-box {
	position: relative;
	background: var(--mo-bg);
	border-radius: var(--mo-radius);
	padding: 28px;
	max-width: 760px;
	width: 100%;
	max-height: 88vh;
	overflow-y: auto;
	box-shadow: 0 24px 60px rgba(0,0,0,.3);
}

.mo-modal-box h3 { margin: 0 0 4px; font-size: 20px; font-weight: 600; }
.mo-modal-sub { margin: 0 0 18px; font-size: 13px; color: var(--mo-muted); }
.mo-modal-box img { width: 100%; height: auto; display: block; border-radius: 10px; }

.mo-modal-close {
	position: absolute;
	top: 14px;
	right: 16px;
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 50%;
	background: var(--mo-surface);
	color: var(--mo-text);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	font-family: inherit;
}

.mo-modal-close:hover { background: rgba(0,0,0,.1); }

.mo-pill {
	appearance: none;
	border: 1px solid var(--mo-line);
	background: var(--mo-bg);
	color: var(--mo-text);
	border-radius: 999px;
	padding: 9px 16px;
	font-size: 14px;
	font-weight: 500;
	font-family: inherit;
	cursor: pointer;
	transition: transform .15s ease, border-color .2s ease, background .2s ease, color .2s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	line-height: 1;
}

.mo-pill:hover { border-color: rgba(0,0,0,.28); }
.mo-pill:active { transform: scale(.96); }

.mo-pill.is-selected {
	background: var(--mo-accent);
	border-color: var(--mo-accent);
	color: #fff;
	box-shadow: 0 4px 14px color-mix(in srgb, var(--mo-accent) 35%, transparent);
}

.mo-swatch {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1px solid rgba(0,0,0,.18);
	flex: none;
}

.mo-pill.is-selected .mo-swatch { border-color: rgba(255,255,255,.7); }

.mo-product-foot {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	padding-top: 4px;
}

.mo-qty {
	display: inline-flex;
	align-items: center;
	background: var(--mo-surface);
	border-radius: 999px;
	padding: 4px;
	gap: 2px;
}

.mo-qty button {
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	color: var(--mo-text);
	font-family: inherit;
}

.mo-qty button:hover { background: rgba(0,0,0,.06); }
.mo-qty span { min-width: 26px; text-align: center; font-weight: 600; font-size: 15px; }

/* ---------- Bottoni ---------- */

.mo-btn {
	appearance: none;
	border: 0;
	border-radius: 999px;
	padding: 12px 24px;
	font-size: 15px;
	font-weight: 500;
	font-family: inherit;
	cursor: pointer;
	transition: transform .15s ease, opacity .2s ease, background .2s ease;
	white-space: nowrap;
}

.mo-btn:active { transform: scale(.97); }

.mo-btn-primary { background: var(--mo-accent); color: #fff; }
.mo-btn-primary:hover { opacity: .9; }
.mo-btn-primary[disabled] { opacity: .4; cursor: not-allowed; }

.mo-btn-ghost { background: var(--mo-surface); color: var(--mo-text); }
.mo-btn-ghost:hover { background: rgba(0,0,0,.08); }

.mo-btn-add { flex: 1; }
.mo-btn-add.is-added { background: #34c759; }

.mo-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.mo-actions .mo-btn-primary { margin-left: auto; }

/* ---------- Form ---------- */

.mo-form { max-width: 620px; margin: 0 auto; }
.mo-card h3 { font-size: 22px; font-weight: 600; letter-spacing: -.01em; margin: 0 0 20px; }

.mo-field { position: relative; margin-bottom: 14px; }

.mo-field input,
.mo-field textarea {
	width: 100%;
	border: 1px solid var(--mo-line);
	border-radius: 14px;
	background: var(--mo-bg);
	padding: 24px 16px 10px;
	font-size: 16px;
	font-family: inherit;
	color: var(--mo-text);
	transition: border-color .2s ease, box-shadow .2s ease;
	resize: vertical;
}

.mo-field input:focus,
.mo-field textarea:focus {
	outline: none;
	border-color: var(--mo-accent);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--mo-accent) 18%, transparent);
}

.mo-field label {
	position: absolute;
	left: 17px;
	top: 17px;
	font-size: 16px;
	color: var(--mo-muted);
	pointer-events: none;
	transition: all .18s ease;
}

.mo-field input:focus + label,
.mo-field input:not(:placeholder-shown) + label,
.mo-field textarea:focus + label,
.mo-field textarea:not(:placeholder-shown) + label {
	top: 8px;
	font-size: 11px;
	letter-spacing: .04em;
	text-transform: uppercase;
	font-weight: 600;
}

.mo-privacy { font-size: 12px; color: var(--mo-muted); line-height: 1.5; margin: 4px 0 0; }

.mo-error {
	background: #fff1f0;
	color: #b3261e;
	border-radius: 12px;
	padding: 12px 14px;
	font-size: 14px;
	margin-top: 14px;
}

/* ---------- Riepilogo ---------- */

.mo-panel[data-panel="3"] .mo-card,
.mo-panel[data-panel="4"] .mo-card { max-width: 720px; margin: 0 auto; }

.mo-sline {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--mo-line);
}

.mo-sline-main { flex: 1; min-width: 0; }
.mo-sline-name { font-weight: 600; font-size: 16px; }
.mo-sline-meta { font-size: 13px; color: var(--mo-muted); display: flex; align-items: center; gap: 6px; margin-top: 3px; }
.mo-sline-price { font-weight: 600; white-space: nowrap; }

.mo-sline-remove {
	border: 0;
	background: transparent;
	color: var(--mo-muted);
	font-size: 20px;
	cursor: pointer;
	line-height: 1;
	padding: 4px 6px;
	border-radius: 50%;
}

.mo-sline-remove:hover { background: var(--mo-surface); color: #b3261e; }

.mo-summary-total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 18px 0 4px;
	font-size: 20px;
}

.mo-summary-total strong { font-size: 26px; letter-spacing: -.02em; }

.mo-summary-customer {
	background: var(--mo-surface);
	border-radius: 14px;
	padding: 14px 16px;
	font-size: 14px;
	line-height: 1.6;
	margin-top: 16px;
	color: var(--mo-muted);
}

.mo-summary-customer strong { color: var(--mo-text); }

/* ---------- Barra carrello ---------- */

.mo-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background: rgba(255,255,255,.82);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
	border-top: 1px solid var(--mo-line);
	padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
}

.mo-bar-inner {
	max-width: 1320px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 14px;
}

.mo-bar-info {
	display: flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	border: 0;
	font-family: inherit;
	font-size: 16px;
	cursor: pointer;
	color: var(--mo-text);
	padding: 4px;
}

.mo-bar-count {
	background: var(--mo-accent);
	color: #fff;
	border-radius: 999px;
	min-width: 26px;
	height: 26px;
	padding: 0 8px;
	display: grid;
	place-items: center;
	font-size: 13px;
	font-weight: 600;
}

.mo-bar-total { font-weight: 600; }
.mo-bar-caret { color: var(--mo-muted); font-size: 12px; transition: transform .2s ease; }
.mo-bar.is-open .mo-bar-caret { transform: rotate(180deg); }
.mo-bar-inner .mo-btn { margin-left: auto; }

.mo-bar-cart {
	max-width: 1320px;
	margin: 10px auto 0;
	max-height: 44vh;
	overflow-y: auto;
	border-top: 1px solid var(--mo-line);
	padding-top: 6px;
}

/* ---------- Conferma / pagamento ---------- */

.mo-done { text-align: center; }

.mo-check { width: 68px; height: 68px; margin: 4px auto 18px; }
.mo-check svg { width: 100%; height: 100%; stroke: #34c759; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.mo-check circle { stroke-dasharray: 160; stroke-dashoffset: 160; animation: mo-stroke .7s cubic-bezier(.65,0,.45,1) forwards; }
.mo-check path { stroke-dasharray: 48; stroke-dashoffset: 48; animation: mo-stroke .4s cubic-bezier(.65,0,.45,1) .5s forwards; }

@keyframes mo-stroke { to { stroke-dashoffset: 0; } }

.mo-order-ref { font-size: 15px; color: var(--mo-muted); margin: 0 0 22px; }

.mo-pay {
	text-align: left;
	background: var(--mo-surface);
	border-radius: 16px;
	padding: 18px 20px;
	margin-bottom: 14px;
}

.mo-pay h4 { margin: 0 0 12px; font-size: 16px; font-weight: 600; }
.mo-pay-row { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 15px; flex-wrap: wrap; }
.mo-pay-row span { color: var(--mo-muted); min-width: 108px; font-size: 13px; }
.mo-pay-row b { font-weight: 600; word-break: break-all; }

.mo-copy {
	border: 1px solid var(--mo-line);
	background: var(--mo-bg);
	border-radius: 999px;
	font-size: 12px;
	padding: 5px 12px;
	cursor: pointer;
	font-family: inherit;
	color: var(--mo-accent);
	font-weight: 500;
}

.mo-copy:hover { background: rgba(0,0,0,.04); }

.mo-pay-amount { font-size: 24px; font-weight: 700; letter-spacing: -.02em; }

.mo-paypal-btn {
	display: inline-block;
	background: #ffc439;
	color: #003087;
	font-weight: 700;
	text-decoration: none;
	border-radius: 999px;
	padding: 12px 28px;
	margin-top: 8px;
}

.mo-paynote { font-size: 14px; color: var(--mo-muted); line-height: 1.5; }

.mo-done-lines { text-align: left; margin-bottom: 18px; }

.mo-dline {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 9px 0;
	border-bottom: 1px solid var(--mo-line);
	font-size: 15px;
}

.mo-dline b { white-space: nowrap; }

.mo-mailed {
	font-size: 14px;
	color: var(--mo-muted);
	background: var(--mo-surface);
	border-radius: 12px;
	padding: 12px 14px;
	margin: 16px 0 0;
}

.mo-actions-end { justify-content: center; }
.mo-actions-end .mo-btn-primary { margin-left: 0; min-width: 160px; }

@media print {
	.mo-steps, .mo-bar, .mo-actions, .mo-copy, .mo-paypal-btn { display: none !important; }
	.mo-app { padding: 0; }
	.mo-card { border: 0; box-shadow: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 640px) {
	.mo-app { padding: 4px 12px 150px; }
	.mo-grid { grid-template-columns: 1fr; gap: 16px; }
	.mo-card { padding: 18px; border-radius: 18px; }
	.mo-steps { gap: 4px; }
	.mo-step { padding: 6px 10px; font-size: 12px; }
	.mo-step i { width: 18px; height: 18px; font-size: 10px; }
	.mo-actions { flex-direction: column-reverse; }
	.mo-actions .mo-btn { width: 100%; margin-left: 0; }
	.mo-bar-info { font-size: 15px; }
}

/* ---------- Dark mode ---------- */

@media (prefers-color-scheme: dark) {
	.mo-app {
		--mo-bg: #1c1c1e;
		--mo-surface: #2c2c2e;
		--mo-text: #f5f5f7;
		--mo-muted: #a1a1a6;
		--mo-line: rgba(255,255,255,.14);
		--mo-shadow: 0 1px 2px rgba(0,0,0,.4), 0 8px 30px rgba(0,0,0,.35);
	}
	.mo-bar { background: rgba(28,28,30,.85); }
	.mo-error { background: rgba(179,38,30,.18); color: #ff8a80; }
	.mo-qty button:hover, .mo-btn-ghost:hover, .mo-copy:hover { background: rgba(255,255,255,.08); }
}
