/* Page Title */
.page-title {
	text-align: center;
	padding: 60px 20px 20px;
}

.page-title h1 {
	font-size: 48px;
	font-weight: 700;
	color: #333;
	margin-bottom: 10px;
}

.subtitle {
	font-size: 20px;
	color: #666;
	font-weight: 600;
	margin-bottom: 8px;
}

.access-info {
	font-size: 16px;
	color: #ee6f5e;
	font-weight: 500;
}

/* Bundle Info Card */
.bundle-info {
	max-width: 900px;
	margin: 40px auto;
	padding: 0 20px;
}

.bundle-card {
	background: linear-gradient(135deg, #52833f 0%, #42692f 100%);
	color: #fff;
	padding: 40px;
	border-radius: 12px;
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
	align-items: center;
	box-shadow: 0 8px 24px rgba(82, 131, 63, 0.3);
}

.bundle-details h2 {
	font-size: 24px;
	margin-bottom: 20px;
}

.bundle-details ol {
	margin-left: 20px;
	font-size: 16px;
	line-height: 1.8;
}

.bundle-details li {
	margin-bottom: 12px;
}

.bundle-price {
	text-align: center;
	padding: 20px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 8px;
}

.bundle-price .price {
	font-size: 64px;
	font-weight: 900;
	margin-bottom: 10px;
}

.bundle-price .savings {
	font-size: 18px;
	background: #FFD700;
	color: #333;
	padding: 8px 16px;
	border-radius: 20px;
	display: inline-block;
	font-weight: 700;
}

/* Film Selection */
.films-selection {
	max-width: 1200px;
	margin: 60px auto;
	padding: 0 20px;
}

.films-selection > h2 {
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #333;
}

.selection-count {
	text-align: center;
	font-size: 20px;
	margin-bottom: 40px;
	color: #666;
}

.selection-count span {
	color: #ee6f5e;
	font-weight: 700;
	font-size: 24px;
}

/* Films Grid */
.films-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.film-card {
	position: relative;
}

.film-label {
	display: block;
	cursor: pointer;
}

.film-checkbox {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.film-content {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	border: 3px solid transparent;
}

/* Checkmark overlay */
.checkmark {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 50px;
	height: 50px;
	background: #52833f;  /* Changed from coral to green */
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	font-weight: 900;
	opacity: 0;
	transform: scale(0);
	transition: all 0.3s;
}

.film-checkbox:checked + .film-content {
	border-color: #52833f;  /* Changed from coral to green */
	box-shadow: 0 8px 24px rgba(82, 131, 63, 0.3);
	transform: translateY(-4px);
}

.film-poster {
	width: 100%;
	aspect-ratio: 2/3;
	overflow: hidden;
	position: relative;
}

.film-poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Checkmark overlay */
.checkmark {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 50px;
	height: 50px;
	background: #ee6f5e;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	font-weight: 900;
	opacity: 0;
	transform: scale(0);
	transition: all 0.3s;
}

.film-checkbox:checked + .film-content .checkmark {
	opacity: 1;
	transform: scale(1);
}

.film-info {
	padding: 20px;
}

.film-info h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #333;
}

.film-info .duration {
	font-size: 14px;
	color: #888;
}

/* Placeholder styling */
.film-poster.placeholder {
	background: linear-gradient(135deg, #ee6f5e 0%, #f28276 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.placeholder-text {
	font-size: 28px;
	font-weight: 900;
	text-align: center;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 3px;
	padding: 20px;
}

/* Submit Section */
.submit-section {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.bundle-submit-btn {
	width: 100%;
	padding: 20px;
	background: #ee6f5e;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
	margin-bottom: 20px;
}

.bundle-submit-btn:hover:not(:disabled) {
	background: #dc5847;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(238, 111, 94, 0.4);
}

.bundle-submit-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
	opacity: 0.6;
}

.error-message {
	color: #d32f2f;
	font-size: 16px;
	font-weight: 600;
	min-height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
	.page-title h1 {
		font-size: 36px;
	}

	.bundle-card {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 30px 20px;
	}

	.bundle-price .price {
		font-size: 48px;
	}

	.films-selection > h2 {
		font-size: 24px;
	}

	.films-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}