/* ===============================
   COOKIE CONSENT BANNER start
   =============================== */

/* ===============================
   COOKIE CONSENT – CARD STYLE
   =============================== */

.cookie-consent {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 19999;
	display: none;
	width: 100%;
	/* max-width: 520px; */
	padding: 0 16px;
	/* font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; */
}

/* Card */
.cookie-card {
	background: #ffffff;
	border-radius: 18px;
	padding: 22px;
	box-shadow: 0 20px 50px rgba(26, 167, 255, 0.2);
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

/* Icon */
.cookie-icon {
	font-size: 28px;
	line-height: 1;
}

/* Content */
.cookie-content h4 {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 700;
	/* color: #1aa7ff; */
}

.cookie-content p {
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	/* color: #1aa7ff; */
}

.cookie-links {
	margin-top: 8px;
}

.cookie-links a {
	font-size: 12px;
	color: #1aa7ff;
	text-decoration: underline;
}

/* Actions */
.cookie-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-left: auto;
}

/* Buttons */
.cookie-actions .btn-secondary {
	background: #f1f7ff;
	border: 1px solid #1aa7ff;
	color: #1aa7ff;
	padding: 10px 16px;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.cookie-actions .btn-secondary:hover {
	background: #ffffff;
}

/* Primary CTA */
.cookie-actions .btn-primary {
	background: linear-gradient(180deg, #ffeb38 0%, #ffc738 100%);
	border: none;
	color: #000000;
	padding: 10px 16px;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(255, 199, 56, 0.45);
	transition: all 0.25s ease;
}

.cookie-actions .btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(255, 199, 56, 0.6);
}

/* ===============================
   MOBILE
   =============================== */

@media (max-width: 576px) {
	.cookie-card {
		flex-direction: column;
	}

	.cookie-actions {
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
	}

	.cookie-actions button {
		width: 48%;
	}
}

/* ===============================
   COOKIE CONSENT BANNER end
   =============================== */

/* ===============================
   COOKIE POLICY MODAL start
   =============================== */

.cookie-policy-modal {
	position: fixed;
	inset: 0;
	background: rgba(26, 167, 255, 0.25);
	backdrop-filter: blur(6px);
	z-index: 110000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	/* font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; */
}

/* Card */
.cookie-policy-card {
	background: #ffffff;
	max-width: 720px;
	width: 100%;
	border-radius: 20px;
	padding: 28px;
	box-shadow: 0 25px 60px rgba(26, 167, 255, 0.35);
	position: relative;
	max-height: 85vh;
	overflow-y: auto;
}

/* Close button */
.policy-close {
	position: absolute;
	top: 0px;
	right: 15px;
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: #1aa7ff;
}

/* Headings */
.cookie-policy-card .heading2 {
	margin-top: 0;
	/* color: #1aa7ff; */
	font-size: 22px;
	font-weight: 800;
}

.policy-updated {
	font-size: 13px;
	color: #1aa7ff;
	margin-bottom: 18px;
}

.cookie-policy-card .heading3 {
	margin-top: 22px;
	font-size: 16px;
	/* color: #1aa7ff; */
	font-weight: 700;
}

/* Text */
.cookie-policy-card p,
.cookie-policy-card li {
	font-size: 14px;
	line-height: 1.7;
	/* color: #1aa7ff; */
}

.cookie-policy-card ul {
	padding-left: 18px;
}

/* Highlight note */
.policy-note {
	background: #f1f7ff;
	padding: 14px;
	border-radius: 12px;
	margin: 18px 0;
	font-weight: 600;
}

/* Contact */
.policy-contact {
	background: linear-gradient(180deg, #ffeb38 0%, #ffc738 100%);
	padding: 14px;
	border-radius: 14px;
	color: #ffffff;
	font-weight: 700;
	margin-top: 12px;
}

/* Mobile */
@media (max-width: 576px) {
	.cookie-policy-card {
		padding: 10px;
	}
}

/* ===============================
   COOKIE POLICY MODAL end
   =============================== */
