.crb-bar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	max-width: 640px;
	margin: 0 auto 20px;
	padding: 12px 44px;
	background: var(--cr-accent, #ffcc00);
	color: #0a0a0a;
	border-radius: 10px;
	font-family: var(--cr-font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
	box-sizing: border-box;
}

.crb-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-align: center;
	text-decoration: none;
	color: inherit;
	flex-wrap: wrap;
}

.crb-icon {
	font-size: 18px;
	line-height: 1;
	flex-shrink: 0;
}

.crb-text {
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.crb-arrow {
	font-weight: 800;
	transition: transform 0.15s ease;
}
.crb-link:hover .crb-arrow {
	transform: translateX(3px);
}

.crb-close {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.12);
	color: #0a0a0a;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.crb-close:hover {
	background: rgba(0, 0, 0, 0.22);
}

@media (max-width: 480px) {
	.crb-bar {
		padding: 12px 38px;
		border-radius: 8px;
	}
	.crb-text {
		font-size: 13px;
	}
}
