.rc-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	background: #1a1a1a;
	color: #e5e5e5;
	font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	transform: translateY(100%);
	transition: transform .35s ease;
	box-shadow: 0 -2px 16px rgba(0,0,0,.25);
}

.rc-banner.is-visible {
	transform: translateY(0);
}

.rc-banner__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 24px;
}

.rc-banner__text {
	margin: 0 0 16px;
	font-size: 14px;
	color: #ccc;
}

.rc-banner__text a {
	color: #fff;
	text-decoration: underline;
}

.rc-banner__actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}

.rc-banner__btn {
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	padding: 10px 22px;
	border-radius: 4px;
	transition: background .2s, color .2s;
}

.rc-btn--accept {
	background: #fff;
	color: #1a1a1a;
}

.rc-btn--accept:hover {
	background: #e0e0e0;
}

.rc-btn--reject {
	background: transparent;
	color: #ccc;
	border: 1px solid #555;
}

.rc-btn--reject:hover {
	border-color: #999;
	color: #fff;
}

.rc-btn--settings {
	background: transparent;
	color: #aaa;
	text-decoration: underline;
	padding: 10px 8px;
}

.rc-btn--settings:hover {
	color: #fff;
}

.rc-modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 100000;
	background: rgba(0,0,0,.6);
	justify-content: center;
	align-items: center;
}

.rc-modal-overlay.is-open {
	display: flex;
}

.rc-modal {
	background: #fff;
	color: #222;
	border-radius: 8px;
	max-width: 600px;
	width: 92vw;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: 0 8px 40px rgba(0,0,0,.3);
	font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

.rc-modal__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px 12px;
	border-bottom: 1px solid #e5e5e5;
}

.rc-modal__title {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
}

.rc-modal__close {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 22px;
	color: #666;
	padding: 0;
	line-height: 1;
}

.rc-modal__close:hover {
	color: #000;
}

.rc-modal__body {
	padding: 16px 24px 24px;
}

.rc-modal__intro {
	font-size: 13px;
	color: #555;
	margin: 0 0 18px;
	line-height: 1.5;
}

.rc-cat {
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	margin-bottom: 10px;
	overflow: hidden;
}

.rc-cat__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	background: #fafafa;
	cursor: pointer;
}

.rc-cat__label {
	font-weight: 700;
	font-size: 14px;
}

.rc-cat__toggle {
	position: relative;
	width: 42px;
	height: 22px;
	border-radius: 11px;
	background: #ccc;
	border: none;
	cursor: pointer;
	transition: background .2s;
	flex-shrink: 0;
}

.rc-cat__toggle.is-on {
	background: #1a1a1a;
}

.rc-cat__toggle::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	transition: transform .2s;
}

.rc-cat__toggle.is-on::after {
	transform: translateX(20px);
}

.rc-cat__toggle.is-locked {
	opacity: .5;
	cursor: not-allowed;
}

.rc-cat__desc {
	padding: 0 16px 12px;
	font-size: 12px;
	color: #777;
	line-height: 1.5;
	display: none;
}

.rc-cat.is-expanded .rc-cat__desc {
	display: block;
}

.rc-cat__cookies {
	padding: 0 16px 12px;
	display: none;
}

.rc-cat.is-expanded .rc-cat__cookies {
	display: block;
}

.rc-cat__cookie-item {
	font-size: 11px;
	color: #888;
	padding: 4px 0;
	border-top: 1px solid #f0f0f0;
}

.rc-cat__cookie-item span {
	font-weight: 600;
	color: #555;
}

.rc-modal__footer {
	display: flex;
	gap: 10px;
	padding: 16px 24px;
	border-top: 1px solid #e5e5e5;
	justify-content: flex-end;
}

.rc-modal__btn {
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	padding: 10px 22px;
	border-radius: 4px;
}

.rc-modal__btn--save {
	background: #1a1a1a;
	color: #fff;
}

.rc-modal__btn--save:hover {
	background: #333;
}

.rc-modal__btn--all {
	background: transparent;
	border: 1px solid #ccc;
	color: #333;
}

.rc-modal__btn--all:hover {
	border-color: #999;
}

@media (max-width: 600px) {
	.rc-banner__inner {
		padding: 16px;
	}
	.rc-banner__actions {
		flex-direction: column;
	}
	.rc-banner__btn {
		width: 100%;
		text-align: center;
	}
	.rc-modal {
		max-height: 90vh;
		border-radius: 8px 8px 0 0;
	}
	.rc-modal__footer {
		flex-direction: column;
	}
	.rc-modal__btn {
		width: 100%;
		text-align: center;
	}
}
