/**
 * Venues Page — AiraKonnect Theme
 * Exact clone of React site design.
 * Values mapped from Tailwind tokens:
 *   premium-shadow → box-shadow 0 20px 60px -15px rgba(0,0,0,0.1), 0 8px 20px -5px rgba(0,0,0,0.06)
 *   secondary      → #1e293b
 *   muted-fg       → #94a3b8
 *   border         → #334155
 *   orange-glow    → box-shadow 0 0 20px rgba(59,130,246,0.3)
 *   rounded-3xl    → border-radius: 1.5rem
 */

/* ─── Filter Bar ──────────────────────────────────── */
.ak-venues-filter-bar {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	background:#0f172a;
	border: 1px solid #334155;
	border-radius: 2rem;
	padding: 1rem 1.25rem;
	position: sticky;
	top: 5.5rem;
	z-index: 40;
	box-shadow: 0 20px 60px -15px rgba(0,0,0,0.1), 0 8px 20px -5px rgba(0,0,0,0.06);
	margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
	.ak-venues-filter-bar {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 1.5rem;
	}
}

.ak-filter-tabs {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	flex: 1;
}
.ak-filter-tabs::-webkit-scrollbar { display: none; }

.ak-filter-tab {
	padding: 0.5rem 1.5rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
	border: none;
	background: rgba(30,41,59,0.6);
	color: #94a3b8;
	transition: all 0.2s ease;
	font-family: 'Outfit', sans-serif;
	letter-spacing: 0;
}

.ak-filter-tab:hover {
	background: #1e293b;
	color: #f8fafc;
}

.ak-filter-tab.active {
	background: #3b82f6;
	color: #ffffff;
	box-shadow: 0 0 20px rgba(59,130,246,0.3);
}

/* Search input */
.ak-search-wrap {
	position: relative;
	width: 100%;
	flex-shrink: 0;
}

@media (min-width: 1024px) {
	.ak-search-wrap { width: 24rem; }
}

.ak-search-icon {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	pointer-events: none;
}

.ak-search-input {
	width: 100%;
	height: 3rem;
	padding: 0 1rem 0 3rem;
	border-radius: 9999px;
	border: none;
	background: rgba(30,41,59,0.5);
	font-size: 0.875rem;
	font-family: 'Outfit', sans-serif;
	outline: none;
	color: #f8fafc;
}

.ak-search-input::placeholder { color: #999; }

.ak-search-input:focus {
	outline: 2px solid rgba(59,130,246,0.4);
	outline-offset: 0;
	background: rgba(30,41,59,0.8);
}


/* ─── Venue Grid ──────────────────────────────────── */
.ak-venues-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	min-height: 200px;
}

@media (max-width: 1024px) {
	.ak-venues-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
	.ak-venues-grid { grid-template-columns: 1fr; }
}


/* ─── Venue Card ──────────────────────────────────── */
.ak-venue-card {
	border-radius: 1.5rem;          /* rounded-3xl */
	overflow: hidden;
	border: none;
	box-shadow: 0 20px 60px -15px rgba(0,0,0,0.1), 0 8px 20px -5px rgba(0,0,0,0.06); /* premium-shadow */
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 100%;
	background:#0f172a;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	text-decoration: none;
	color: inherit;
}

.ak-venue-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 28px 72px -12px rgba(0,0,0,0.15), 0 12px 28px -8px rgba(0,0,0,0.08);
}

/* Image wrapper: aspect-[4/3] */
.ak-venue-img-wrap {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.ak-venue-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Category Badge — top-left over image */
.ak-venue-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(30, 41, 59, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 9999px;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: #f8fafc;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	line-height: 1;
}

.ak-venue-badge svg { color: #3b82f6; flex-shrink: 0; }

/* Ad preview overlay on hover */
.ak-ad-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.2);
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ak-venue-card:hover .ak-ad-overlay { opacity: 1; }

.ak-ad-preview {
	width: 50%;
	aspect-ratio: 9 / 16;
	background: #000;
	border-radius: 0.5rem;
	border: 2px solid rgba(255,255,255,0.2);
	box-shadow: 0 0 40px rgba(0,0,0,0.6);
	overflow: hidden;
}

.ak-ad-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Card Content: p-6 space-y-4 flex-grow flex flex-col */
.ak-venue-body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 1rem;
}

/* Name + Location */
.ak-venue-name {
	font-size: 1.25rem;
	font-weight: 700;
	color: #f8fafc;
	margin: 0 0 0.25rem;
	font-family: 'Outfit', sans-serif;
	transition: color 0.2s ease;
	line-height: 1.3;
}

.ak-venue-card:hover .ak-venue-name { color: #3b82f6; }

.ak-venue-location {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.875rem;
	color: #94a3b8;
	margin: 0;
}

.ak-venue-location svg { flex-shrink: 0; color: #999; }

/* Stats grid: grid-cols-2 gap-4 pt-4 border-t */
.ak-venue-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #334155;
}

.ak-stat-item { display: flex; flex-direction: column; gap: 0.25rem; }

.ak-stat-label {
	font-size: 0.625rem;    /* text-[10px] */
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #999999;
}

.ak-stat-value {
	font-size: 0.75rem;     /* text-xs */
	font-weight: 700;
	color: #f8fafc;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.ak-stat-value svg { color: #3b82f6; flex-shrink: 0; }

/* Price row: bg-secondary/50 p-3 rounded-xl */
.ak-venue-price-row {
	background: rgba(30,41,59,0.6);
	border-radius: 0.75rem;
	padding: 0.75rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ak-price-label {
	font-size: 0.625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #999999;
	margin-bottom: 0.125rem;
}

.ak-price-value {
	font-size: 0.875rem;
	font-weight: 900;
	color: #3b82f6;
	font-family: 'Outfit', sans-serif;
}

.ak-price-value small {
	font-size: 0.625rem;
	font-weight: 400;
	color: #999999;
}

.ak-slot-badge {
	font-size: 0.7rem;
	font-weight: 700;
	padding: 0.25rem 0.625rem;
	border-radius: 0.375rem;
	border: 1px solid rgba(59,130,246,0.3);
	color: #3b82f6;
	background: rgba(59,130,246,0.05);
	white-space: nowrap;
}

/* CTA link: mt-auto */
.ak-venue-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #3b82f6;
	font-weight: 700;
	font-size: 0.875rem;
	text-decoration: none;
	margin-top: auto;
	padding-top: 0.5rem;
	transition: gap 0.2s ease;
	background: none;
	border: none;
	cursor: pointer;
	font-family: 'Outfit', sans-serif;
}

.ak-venue-cta:hover { gap: 0.75rem; }


/* ─── Empty State ─────────────────────────────────── */
.ak-venues-empty {
	display: none;
	text-align: center;
	padding: 5rem 1rem;
}

.ak-venues-empty.visible { display: block; }

.ak-empty-icon {
	width: 5rem;
	height: 5rem;
	background: #1e293b;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

.ak-empty-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #f8fafc;
	margin: 0 0 0.5rem;
	font-family: 'Outfit', sans-serif;
}

.ak-empty-desc { color: #94a3b8; margin: 0 0 1.5rem; font-size: 1rem; }

.ak-clear-btn {
	background: transparent;
	border: 2px solid #334155;
	padding: 0.75rem 2rem;
	border-radius: 9999px;
	font-weight: 700;
	cursor: pointer;
	font-family: 'Outfit', sans-serif;
	font-size: 1rem;
	color: #f8fafc;
	transition: border-color 0.2s, background 0.2s;
}

.ak-clear-btn:hover { border-color: #f8fafc; background: #f8fafc; color: #fff; }


/* ─── Skeleton Loader ─────────────────────────────── */
.ak-venue-skeleton {
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 20px 60px -15px rgba(0,0,0,0.07);
	background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%);
	background-size: 400% 100%;
	animation: ak-shimmer 1.4s infinite linear;
}

.ak-venue-skeleton-img { aspect-ratio: 4/3; }
.ak-venue-skeleton-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.ak-venue-skeleton-line { height: 0.875rem; border-radius: 0.5rem; background: rgba(0,0,0,0.07); }
.ak-venue-skeleton-line.short { width: 55%; }

@keyframes ak-shimmer {
	0%   { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}


/* ─── Card Fade-in Animation ──────────────────────── */
.ak-venue-card {
	animation: ak-card-in 0.3s ease both;
}

@keyframes ak-card-in {
	from { opacity: 0; transform: scale(0.95); }
	to   { opacity: 1; transform: scale(1); }
}


/* ═══════════════════════════════════════════════════
   VENUE SELECTION STRIP & SIDEBAR
   Add to Selection / Cart styles
   ═══════════════════════════════════════════════════ */

/* ─── Floating Bottom Strip ─────────────────────── */
.ak-selection-strip {
	position: fixed;
	bottom: 1.25rem;
	left: 50%;
	width: 90%;
	max-width: 1100px;
	transform: translateX(-50%) translateY(calc(100% + 2rem));
	background: rgba(15, 23, 42, 0.95);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(59,130,246,0.25);
	border-radius: 2rem;
	box-shadow: 0 -8px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(59,130,246,0.08);
	z-index: 10000;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	padding: 0.875rem 1.5rem;
}
.ak-selection-strip.visible {
	transform: translateX(-50%) translateY(0);
}
.ak-selection-strip-inner {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.ak-selection-strip-left {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	color: #f8fafc;
	font-family: 'Outfit', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	padding: 0.375rem 0.5rem;
	border-radius: 0.75rem;
	transition: background 0.2s;
}
.ak-selection-strip-left:hover {
	background: rgba(59,130,246,0.1);
}
.ak-selection-strip-icon {
	color: #3b82f6;
	flex-shrink: 0;
}
.ak-selection-strip-actions {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	flex-shrink: 0;
}
.ak-strip-flash {
	animation: ak-strip-flash 0.6s ease;
}
@keyframes ak-strip-flash {
	0% { background: #0f172a; }
	40% { background: rgba(59,130,246,0.2); }
	100% { background: #0f172a; }
}

/* Small outline button in strip */
.ak-selection-btn-outline-sm {
	padding: 0.625rem 1.25rem;
	border-radius: 0.75rem;
	background: rgba(30,41,59,0.6);
	border: 1px solid rgba(255,255,255,0.1);
	color: #f8fafc;
	font-family: 'Outfit', sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(8px);
}
.ak-selection-btn-outline-sm:hover {
	border-color: rgba(239,68,68,0.4);
	background: rgba(239,68,68,0.1);
	color: #fca5a5;
	transform: translateY(-1px);
}

/* Small WhatsApp button in strip */
.ak-selection-btn-whatsapp-sm {
	padding: 0.625rem 1.25rem;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, #25D366, #128C7E);
	color: #fff;
	font-family: 'Outfit', sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 12px rgba(37,211,102,0.3);
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}
.ak-selection-btn-whatsapp-sm::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
	opacity: 0;
	transition: opacity 0.3s;
}
.ak-selection-btn-whatsapp-sm:hover::before {
	opacity: 1;
}
.ak-selection-btn-whatsapp-sm:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(37,211,102,0.4);
}

/* Mobile strip */
@media (max-width: 640px) {
	.ak-selection-strip {
		width: calc(100% - 2rem);
		max-width: none;
		bottom: 1rem;
		padding: 0.75rem 1rem;
		border-radius: 1.5rem;
	}
	.ak-selection-strip-inner { flex-wrap: wrap; gap: 0.5rem; }
	.ak-selection-strip-left { font-size: 0.875rem; }
	.ak-selection-btn-outline-sm,
	.ak-selection-btn-whatsapp-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
}

/* ─── Overlay ─────────────────────────────────────── */
.ak-selection-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.5);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 10001;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.ak-selection-overlay.open {
	opacity: 1;
	visibility: visible;
}

/* ─── Sidebar ─────────────────────────────────────── */
.ak-selection-sidebar {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 420px;
	height: 100vh;
	background: #0f172a;
	border-left: 1px solid rgba(59,130,246,0.15);
	z-index: 10002;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	box-shadow: -20px 0 60px -15px rgba(0,0,0,0.4);
}
.ak-selection-sidebar.open {
	transform: translateX(0);
}

/* Header */
.ak-selection-sidebar-header {
	padding: 1.5rem;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.ak-selection-sidebar-header h3 {
	margin: 0;
	font-family: 'Outfit', sans-serif;
	font-size: 1.25rem;
	font-weight: 800;
	color: #f8fafc;
	letter-spacing: -0.02em;
}
.ak-selection-close {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: rgba(30,41,59,0.6);
	border: 1px solid rgba(255,255,255,0.08);
	color: #94a3b8;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, color 0.2s;
	flex-shrink: 0;
}
.ak-selection-close:hover {
	background: rgba(59,130,246,0.15);
	color: #f8fafc;
}

/* List */
.ak-selection-list {
	flex: 1;
	overflow-y: auto;
	padding: 1rem;
}
.ak-selection-item {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	background: rgba(30,41,59,0.5);
	border: 1px solid rgba(255,255,255,0.04);
	border-radius: 1rem;
	padding: 0.75rem;
	margin-bottom: 0.75rem;
	transition: border-color 0.2s, transform 0.2s;
	animation: ak-item-in 0.35s ease both;
}
.ak-selection-item:hover {
	border-color: rgba(59,130,246,0.2);
	transform: translateY(-1px);
}
@keyframes ak-item-in {
	from { opacity: 0; transform: translateX(15px); }
	to   { opacity: 1; transform: translateX(0); }
}
.ak-selection-item-thumb {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 0.75rem;
	overflow: hidden;
	flex-shrink: 0;
	background: rgba(30,41,59,0.8);
}
.ak-selection-item-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.ak-selection-item-info {
	flex: 1;
	min-width: 0;
}
.ak-selection-item-title {
	font-family: 'Outfit', sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	color: #f8fafc;
	text-decoration: none;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 0.25rem;
	transition: color 0.2s;
}
.ak-selection-item-title:hover {
	color: #3b82f6;
}
.ak-selection-item-location {
	font-size: 0.75rem;
	color: #64748b;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ak-selection-item-location svg {
	flex-shrink: 0;
	color: #3b82f6;
}
.ak-selection-item-remove {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: rgba(239,68,68,0.08);
	border: 1px solid rgba(239,68,68,0.15);
	color: #ef4444;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.2s, transform 0.2s;
}
.ak-selection-item-remove:hover {
	background: rgba(239,68,68,0.2);
	transform: scale(1.1);
}

/* Footer */
.ak-selection-sidebar-footer {
	padding: 1.5rem;
	border-top: 1px solid rgba(255,255,255,0.08);
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	background: linear-gradient(to top, rgba(15,23,42,0.8), rgba(15,23,42,0.3));
	backdrop-filter: blur(10px);
	box-sizing: border-box;
}
.ak-selection-btn-outline {
	width: 100%;
	padding: 1rem 1.25rem;
	border-radius: 1rem;
	background: rgba(30,41,59,0.4);
	border: 1.5px solid rgba(255,255,255,0.12);
	color: #cbd5e1;
	font-family: 'Outfit', sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	backdrop-filter: blur(8px);
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}
.ak-selection-btn-outline::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(239,68,68,0.15), rgba(239,68,68,0.05));
	opacity: 0;
	transition: opacity 0.3s;
}
.ak-selection-btn-outline:hover::before {
	opacity: 1;
}
.ak-selection-btn-outline:hover {
	border-color: rgba(239,68,68,0.5);
	color: #fca5a5;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(239,68,68,0.2);
}
.ak-selection-btn-outline:active {
	transform: translateY(0);
}
.ak-selection-btn-whatsapp {
	width: 100%;
	padding: 1rem 1.25rem;
	border-radius: 1rem;
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
	color: #fff;
	font-family: 'Outfit', sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 6px 20px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0);
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	white-space: normal;
	text-align: center;
	line-height: 1.3;
}
.ak-selection-btn-whatsapp::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
	opacity: 0;
	transition: opacity 0.3s;
}
.ak-selection-btn-whatsapp::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255,255,255,0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}
.ak-selection-btn-whatsapp:hover::before {
	opacity: 1;
}
.ak-selection-btn-whatsapp:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(37,211,102,0.5), 0 0 0 4px rgba(37,211,102,0.15);
}
.ak-selection-btn-whatsapp:hover::after {
	width: 300px;
	height: 300px;
}
.ak-selection-btn-whatsapp:active {
	transform: translateY(-1px);
}

/* ─── Toggle Buttons (Add to Selection) ───────────── */
.ak-btn-add,
.ak-btn-added {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	font-family: 'Outfit', sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
	line-height: 1;
}
.ak-btn-add {
	background: rgba(59,130,246,0.1);
	color: #3b82f6;
	border: 1px solid rgba(59,130,246,0.2);
}
.ak-btn-add:hover {
	background: rgba(59,130,246,0.2);
	border-color: rgba(59,130,246,0.4);
}
.ak-btn-added {
	background: rgba(34,197,94,0.1);
	color: #22c55e;
	border: 1px solid rgba(34,197,94,0.25);
}
.ak-btn-added:hover {
	background: rgba(239,68,68,0.1);
	color: #ef4444;
	border-color: rgba(239,68,68,0.3);
}

/* ─── Single Page Hero Buttons (identical dimensions, different looks) ─── */

/* Add to Selection Hero — highlighted, prominent button */
.ak-btn-add-hero.ak-btn-add,
.ak-btn-add-hero.ak-btn-added {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 9999px;
	font-weight: 700;
	font-size: 1rem;
	font-family: 'Outfit', sans-serif;
	cursor: pointer;
	transition: all 0.3s;
	justify-content: center;
	box-sizing: border-box;
	margin: 0;
}

/* "Add to Selection" — SOLID BLUE (highlighted, primary action) */
.ak-btn-add-hero.ak-btn-add {
	background: #3b82f6;
	color: #fff;
	border: 2px solid #3b82f6;
	box-shadow: 0 8px 25px rgba(59,130,246,0.4);
}
.ak-btn-add-hero.ak-btn-add:hover {
	background: #2563eb;
	border-color: #2563eb;
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(59,130,246,0.5);
}

/* "Added" — solid green (success state) */
.ak-btn-add-hero.ak-btn-added {
	background: #22c55e;
	color: #fff;
	border: 2px solid #22c55e;
	box-shadow: 0 8px 25px rgba(34,197,94,0.4);
}
.ak-btn-add-hero.ak-btn-added:hover {
	transform: translateY(-2px);
	background: #16a34a;
	border-color: #16a34a;
	box-shadow: 0 12px 35px rgba(34,197,94,0.5);
}

/* Card action row */
.ak-venue-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: auto;
	padding-top: 0.5rem;
}

/* Mobile sidebar */
@media (max-width: 480px) {
	.ak-selection-sidebar { max-width: 100%; }
	.ak-selection-sidebar-footer { 
		flex-direction: column; 
		gap: 0.75rem;
		padding: 1.25rem;
	}
	.ak-selection-btn-outline,
	.ak-selection-btn-whatsapp {
		width: 100%;
		padding: 0.875rem 1rem;
		font-size: 0.875rem;
	}
}
