.cb {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #fff;
	box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
	z-index: 1050;
	padding: 1.2rem 0;
	transform: translateY(100%);
	transition: transform 0.5s ease-in-out;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cb.show {
	transform: translateY(0);
}

.cb-title {
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 0.5rem;
}

.cb-text {
	color: #34495e;
	font-size: 0.95rem;
	margin-bottom: 1rem;
	line-height: 1.5;
}

.cb-btn {
	border-radius: 50px;
	padding: 0.5rem 1.5rem;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s;
}

.cb-btn-accept {
	background: #3498db;
	border: none;
	color: white;
}

.cb-btn-accept:hover {
	background: #2980b9;
	transform: translateY(-2px);
	color: white;
}

.cb-btn-settings {
	background: transparent;
	border: 1px solid #95a5a6;
	color: #7f8c8d;
}

.cb-btn-settings:hover {
	background: #f8f9fa;
	color: #2c3e50;
}

.cb-btn-reject {
	background: transparent;
	border: 1px solid #e74c3c;
	color: #e74c3c;
}

.cb-btn-reject:hover {
	background: #e74c3c;
	color: white;
}

.cb-settings {
	display: none;
	margin-top: 1.5rem;
	padding: 1.5rem;
	background: #f8f9fa;
	border-radius: 10px;
}

.cb-settings.show {
	display: block;
	animation: cb-fadeIn 0.5s;
}

.cb-form-check {
	margin-bottom: 1rem;
	padding-left: 2.5em;
	display: flex;
	align-items: flex-start;
}

.cb-form-check-input {
	width: 1.2em;
	height: 1.2em;
	margin-top: 0.2em;
	flex-shrink: 0;
}

.cb-form-check-label {
	margin-left: 0.5rem;
	color: #2c3e50;
	font-weight: 500;
}

.cb-form-check-label .d-block {
	margin-bottom: 0.2rem;
}

.cb-form-check-input:checked {
	background-color: #3498db;
	border-color: #3498db;
}

.cb-type {
	font-size: 0.85rem;
	color: #7f8c8d;
	margin-top: 0.3rem;
}

@keyframes cb-fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.cb-privacy-links {
	margin-top: 1rem;
	font-size: 0.85rem;
}

.cb-privacy-links a {
	color: #3498db;
	text-decoration: none;
}

.cb-privacy-links a:hover {
	text-decoration: underline;
}

.cb-close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	background: transparent;
	border: none;
	font-size: 1.2rem;
	color: #7f8c8d;
	cursor: pointer;
}

.cb-close-btn:hover {
	color: #2c3e50;
}