.cookie-banner,
.cookie-modal {
  font-family: 'Montserrat', sans-serif;
}

.cookie-banner {
	position: fixed;
	bottom: 0;
	width: 100%;
	background: #222;
	color: #fff;
	padding: 20px;
	z-index: 9999;
	display: flex;
	justify-content: center;
}

.cookie-content {
	max-width: 1200px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cookie-buttons {
	display: flex;
	gap: 16px;
}

.cookie-buttons .btn,
.modal-actions .btn {
  font-family: 'Montserrat', sans-serif;
}

.btn {
	padding: 12px 20px;
	border: none;
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
}

.btn:hover {
	background-color: rgb(239, 125, 0);
	color: black;
	transform: scale(1.05);
}

.btn.primary {
	background: #555;
	color: white;
}

.btn.secondary {
	background: #555;
	color: white;
}

.btn.link {
	background: rgb(239, 125, 0);
	color: black;
}

.hidden {
	display: none;
}

/* MODAL */

.cookie-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	z-index: 10000;
	display: none;
	justify-content: center;
	align-items: center;
}

.modal-content {
	background: white;
	padding: 20px;
	width: 400px;
	border-radius: 6px;
}

.cookie-option {
	margin: 10px 0;
}

.modal-actions {
	display: flex;
	justify-content: space-between;
	margin-top: 15px;
}

.cookie-modal.active {
	display: flex;
}

input[type="checkbox"] {
	accent-color: rgb(239, 125, 0);
	transition: all 0.15s ease;
}

input[type="checkbox"]:hover {
	accent-color: rgb(239, 125, 0);
	transform: scale(1.1);
}

.disabled-checkbox {
	pointer-events: none;
	opacity: 0.8;
}

/* MOBILE BANNER LAYOUT */
@media (max-width: 768px) {
  .cookie-banner .cookie-content {
	flex-direction: column;
	align-items: stretch;
	padding: 10px 10px;
	max-height: none;
	text-align: center;
	gap: 15px;
  }

  .cookie-banner .cookie-buttons {
	display: flex;
	gap: 10px;
  }

  .cookie-banner .cookie-buttons .btn {
	width: 100%;
  }
}