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

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

.subtitle {
	font-size: 18px;
	color: #666;
	font-weight: 400;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Production Carousel */
.production-carousel {
	max-width: 1000px;
	margin: 60px auto;
	padding: 0 20px;
}

.production-carousel h2 {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-bottom: 10px;
}

.carousel-subtitle {
	text-align: center;
	font-size: 18px;
	color: #666;
	margin-bottom: 40px;
}

.carousel-container-production {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}

.carousel-wrapper {
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.carousel-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.carousel-slide-production {
	min-width: 100%;
	aspect-ratio: 4/3;
}

.carousel-slide-production img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 24px;
	font-weight: 700;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s;
	color: #333;
}

.carousel-btn:hover {
	background: #fff;
	transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
	left: -25px;
}

.carousel-btn.next {
	right: -25px;
}

/* Carousel Dots */
.carousel-dots-production {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 25px;
	flex-wrap: wrap;
}

.dot-production {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ddd;
	cursor: pointer;
	transition: all 0.3s;
}

.dot-production.active {
	background: #52833f;
	transform: scale(1.3);
}

.dot-production:hover {
	background: #ee6f5e;
}

/* Investment Info */
.donate-info {
	max-width: 800px;
	margin: 60px auto;
	padding: 0 20px;
}

.info-card {
	background: #f8f8f8;
	padding: 40px;
	border-radius: 12px;
	text-align: center;
}

.info-card h2 {
	font-size: 28px;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
}

.info-card p {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 25px;
}

.info-card ul {
	list-style: none;
	padding: 0;
	text-align: left;
	max-width: 500px;
	margin: 0 auto;
}

.info-card li {
	font-size: 16px;
	padding: 10px 0;
	color: #555;
}

/* Action Buttons */
.action-buttons {
	max-width: 600px;
	margin: 60px auto;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.action-btn {
	display: block;
	padding: 20px 40px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	transition: all 0.3s;
}

.action-btn.primary {
	background: #52833f;
	color: white;
}

.action-btn.primary:hover {
	background: #42692f;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(82, 131, 63, 0.3);
}

.action-btn.secondary {
	background: #FF6B00;
	color: white;
}

.action-btn.secondary:hover {
	background: #e55e00;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

/* Stripe Donation Section */
.stripe-donate {
	max-width: 600px;
	margin: -20px auto 40px;
	padding: 0 20px;
}

.stripe-card {
	background: #f8f8f8;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
}

.stripe-intro {
	font-size: 16px;
	color: #555;
	margin-bottom: 24px;
	line-height: 1.6;
	font-weight: bold;
}

.preset-amounts {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.amount-btn {
	background: #fff;
	border: 2px solid #ddd;
	color: #333;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.amount-btn:hover {
	border-color: #52833f;
	color: #52833f;
}

.amount-btn.selected {
	border-color: #52833f;
	background: #52833f;
	color: #fff;
}

.custom-amount-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-bottom: 20px;
}

.dollar-sign {
	font-size: 1.2rem;
	color: #666;
	font-weight: 600;
}

.custom-amount-wrapper input {
	background: #fff;
	border: 2px solid #ddd;
	color: #333;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 1rem;
	width: 160px;
	text-align: center;
}

.custom-amount-wrapper input::placeholder {
	color: #aaa;
}

.custom-amount-wrapper input:focus {
	outline: none;
	border-color: #52833f;
}

.pay-now-btn {
	background: #ee6f5e;
	color: #fff;
	border: none;
	padding: 16px 32px;
	border-radius: 8px;
	font-size: 1.05rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	max-width: 320px;
}

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

.pay-now-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

/* Thank You Section */
.thank-you {
	max-width: 800px;
	margin: 60px auto 80px;
	padding: 40px 20px;
	text-align: center;
	background: #FFF9E6;
	border-radius: 12px;
}

.thank-you p {
	font-size: 18px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 0;
}

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

	.production-carousel h2 {
		font-size: 28px;
	}

	.carousel-btn {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
	
	.carousel-btn.prev {
		left: 10px;
	}
	
	.carousel-btn.next {
		right: 10px;
	}

	.info-card {
		padding: 30px 20px;
	}

	.info-card h2 {
		font-size: 24px;
	}

	.action-btn {
		padding: 16px 30px;
		font-size: 16px;
	}

	.stripe-card {
		padding: 24px 18px;
	}

	.preset-amounts {
		gap: 8px;
	}

	.amount-btn {
		padding: 8px 16px;
		font-size: 0.9rem;
	}
}