/*
Theme Name: Kadence Child - Booyah Books
Description: Custom child theme for Booyah Books - "Stories that spark connection. Books that build hearts."
Template: kadence
Version: 1.0.0
*/

/* Import parent theme styles */
@import url('../kadence/style.css');

/* Booyah Books Custom Styles */
:root {
	/* Brand Colors - Green & Gold */
	--booyah-primary-green: #2d5016;
	--booyah-light-green: #4a7c59;
	--booyah-accent-green: #7fb069;
	--booyah-gold: #d4af37;
	--booyah-light-gold: #f4e4bc;
	--booyah-cream: #fff8e7;
	--booyah-warm-white: #fefefe;
	--booyah-soft-gray: #f5f5f5;
	--booyah-text-dark: #1a1a1a;
	--booyah-text-light: #6c757d;

	/* Typography */
	--booyah-font-primary: 'Quicksand', sans-serif;
	--booyah-font-accent: 'Playfair Display', serif;
	--booyah-font-body: 'Open Sans', sans-serif;
	--booyah-font-display: 'DM Serif Display', serif; /* Added for display headings */
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&family=DM+Serif+Display:wght@400&display=swap');

/* Global Typography */
body {
	font-family: var(--booyah-font-body);
	color: var(--booyah-text-dark);
	line-height: 1.7;
	background-color: var(--booyah-warm-white);
}

/* Establish base text colors for all content */
body {
	color: var(--booyah-text-dark);
}

/* Ensure content areas inherit proper colors */
.entry-content,
.site-content,
.page-content,
.main-content,
.kb-row-layout-wrap,
.kt-row-layout-inner {
	color: var(--booyah-text-dark);
}

/* Fix any dark text on dark backgrounds */
.booyah-section-alt {
	background: var(--booyah-cream);
	color: var(--booyah-text-dark);
}

/* Fix text visibility on all pages */
.entry-content,
.page-content,
.site-content,
.content-area,
.main-content,
.kb-row-layout-wrap,
.kt-row-layout-inner {
	color: var(--booyah-text-dark);
}

/* Fix specific page sections */
.hero-section p,
.hero-section span,
.hero-section div:not(.booyah-btn-primary) {
	color: var(--booyah-text-dark);
}

/* Ensure all page templates have proper text color */
.page-template-default .entry-content,
.page-template-page-home .entry-content,
.page-template-page-about .entry-content,
.page-template-page-books .entry-content,
.page-template-page-blog .entry-content,
.page-template-page-freebies .entry-content {
	color: var(--booyah-text-dark);
}

.booyah-section-alt * {
	color: var(--booyah-text-dark);
}

.booyah-section-alt h1,
.booyah-section-alt h2,
.booyah-section-alt h3,
.booyah-section-alt h4,
.booyah-section-alt h5,
.booyah-section-alt h6 {
	color: var(--booyah-primary-green);
}

h1,
h2 {
	font-family: var(
		--booyah-font-display
	); /* Use DM Serif Display for main headings */
	font-weight: 400; /* DM Serif Display is typically 400 weight */
	color: var(--booyah-primary-green);
	line-height: 1.3;
}

h3,
h4,
h5,
h6 {
	font-family: var(--booyah-font-primary); /* Quicksand for subheadings */
	font-weight: 600;
	color: var(--booyah-primary-green);
	line-height: 1.3;
}

.accent-font {
	font-family: var(
		--booyah-font-accent
	); /* Playfair Display for specific accents */
}

/* Sticky Top Bar CTA */
.booyah-top-bar {
	background: linear-gradient(
		135deg,
		var(--booyah-gold),
		var(--booyah-light-gold)
	);
	color: var(--booyah-primary-green);
	padding: 12px 0;
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	font-weight: 600;
	font-size: 14px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.booyah-top-bar:hover {
	background: linear-gradient(
		135deg,
		var(--booyah-light-gold),
		var(--booyah-gold)
	);
	transform: translateY(1px);
}

.booyah-top-bar a {
	color: var(--booyah-primary-green);
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

/* Floating Button */
.booyah-floating-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: linear-gradient(
		135deg,
		var(--booyah-accent-green),
		var(--booyah-light-green)
	);
	color: var(--booyah-text-dark);
	border: none;
	border-radius: 50px;
	padding: 15px 25px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(127, 176, 105, 0.4);
	z-index: 9998;
	transition: all 0.3s ease;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
}

.booyah-floating-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 25px rgba(127, 176, 105, 0.6);
	color: var(--booyah-text-dark);
}

/* Hero Section */
.booyah-hero {
	background: linear-gradient(
		135deg,
		var(--booyah-cream) 0%,
		var(--booyah-light-gold) 100%
	);
	padding: 120px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.booyah-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="var(--booyah-gold)" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>');
	opacity: 0.3;
}

.booyah-hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.booyah-hero h1 {
	font-family: var(
		--booyah-font-display
	); /* Use DM Serif Display for hero H1 */
	font-size: 3.5rem;
	font-weight: 400; /* DM Serif Display is typically 400 weight */
	color: var(--booyah-primary-green);
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.booyah-hero .tagline {
	font-size: 1.4rem;
	color: var(--booyah-light-green);
	font-style: italic;
	margin-bottom: 30px;
	font-family: var(--booyah-font-accent);
}

.booyah-hero .description {
	font-size: 1.1rem;
	color: var(--booyah-text-dark);
	margin-bottom: 40px;
	line-height: 1.8;
}

/* Buttons */
.booyah-btn {
	display: inline-block;
	padding: 15px 30px;
	border-radius: 30px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	font-size: 16px;
	margin: 10px;
}

.booyah-btn-primary {
	background: linear-gradient(
		135deg,
		var(--booyah-primary-green),
		var(--booyah-light-green)
	);
	color: var(--booyah-text-dark);
}

.booyah-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
	color: var(--booyah-text-dark);
}

.booyah-btn-secondary {
	background: transparent;
	color: var(--booyah-gold);
	border-color: var(--booyah-gold);
}

.booyah-btn-secondary:hover {
	background: var(--booyah-gold);
	color: var(--booyah-primary-green);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3); /* Added shadow with gold variable */
}

/* Section Styling */
.booyah-section {
	padding: 80px 0;
}

.booyah-section-alt {
	background-color: var(--booyah-soft-gray);
}

.booyah-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	color: var(--booyah-text-dark);
}

.booyah-section-title {
	text-align: center;
	margin-bottom: 60px;
}

.booyah-section-title h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	font-family: var(
		--booyah-font-display
	); /* Use DM Serif Display for section titles */
}

.booyah-section-title p {
	font-size: 1.2rem;
	color: var(--booyah-text-dark);
	max-width: 600px;
	margin: 0 auto;
}

/* Cards */
.booyah-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.booyah-card {
	background: white;
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 3px solid transparent;
}

.booyah-card:hover {
	transform: translateY(-10px);
	border-color: var(--booyah-light-gold);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* Keep existing shadow */
}

.booyah-card-icon {
	font-size: 3rem;
	margin-bottom: 20px;
	color: var(--booyah-gold);
}

.booyah-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--booyah-primary-green);
}

.booyah-card p {
	color: var(--booyah-text-light);
	line-height: 1.6;
}

/* Footer Enhancements */
.site-footer {
	background: linear-gradient(
		135deg,
		var(--booyah-primary-green),
		var(--booyah-light-green)
	);
	color: var(--booyah-warm-white); /* Use warm white for text */
	padding: 60px 0 30px;
}

.site-footer h3 {
	color: var(--booyah-light-gold);
	margin-bottom: 20px;
}

.site-footer a {
	color: var(--booyah-cream);
	transition: color 0.3s ease;
}

.site-footer a:hover {
	color: var(--booyah-gold);
}

/* Responsive Design */
@media (max-width: 992px) {
	.booyah-container {
		padding: 0 15px;
	}
	.booyah-section {
		padding: 60px 0;
	}
	.booyah-section-title {
		margin-bottom: 40px;
	}
	.booyah-section-title h2 {
		font-size: 2.2rem;
	}
	.booyah-section-title p {
		font-size: 1.1rem;
	}
	.booyah-hero h1 {
		font-size: 3rem;
	}
	.booyah-hero .tagline {
		font-size: 1.3rem;
	}
	.booyah-hero .description {
		font-size: 1rem;
	}
	.booyah-btn {
		padding: 12px 25px;
		font-size: 15px;
	}
	.booyah-cards {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 25px;
	}
	.booyah-card {
		padding: 30px 20px;
	}
	.booyah-card h3 {
		font-size: 1.4rem;
	}
	.site-footer {
		padding: 40px 0 20px;
	}
	.blog-posts-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 25px;
	}
}

@media (max-width: 768px) {
	.booyah-hero h1 {
		font-size: 2.5rem;
	}
	.booyah-hero .tagline {
		font-size: 1.2rem;
	}
	.booyah-hero .description {
		font-size: 1rem;
	}
	.booyah-floating-btn {
		bottom: 20px;
		right: 20px;
		padding: 12px 20px;
		font-size: 13px;
	}
	.booyah-top-bar {
		font-size: 13px;
		padding: 10px 0;
	}
	.booyah-cards {
		grid-template-columns: 1fr; /* Stack cards on smaller screens */
		gap: 20px;
	}
	.booyah-section {
		padding: 40px 0;
	}
	.booyah-section-title h2 {
		font-size: 2rem;
	}
	.booyah-section-title p {
		font-size: 1rem;
	}
	.hero-buttons {
		flex-direction: column; /* Stack hero buttons */
		gap: 10px;
	}
	.book-purchase-buttons {
		flex-direction: column; /* Stack book purchase buttons */
		gap: 10px;
	}
	.blog-posts-grid {
		grid-template-columns: 1fr; /* Stack blog posts */
		gap: 20px;
	}
	.newsletter-form {
		flex-direction: column; /* Stack newsletter form inputs */
		gap: 10px;
	}
	/* Adjust grid for two-column layouts that should stack */
	div[style*='grid-template-columns: 1fr 1fr'],
	div[style*='grid-template-columns: 1fr 2fr'],
	div[style*='grid-template-columns: 2fr 1fr'] {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

@media (max-width: 576px) {
	.booyah-hero h1 {
		font-size: 2rem;
	}
	.booyah-hero .tagline {
		font-size: 1rem;
	}
	.booyah-section-title h2 {
		font-size: 1.8rem;
	}
	.booyah-btn {
		padding: 10px 20px;
		font-size: 14px;
	}
	.booyah-card {
		padding: 25px 15px;
	}
	.booyah-card h3 {
		font-size: 1.3rem;
	}
	.booyah-card-icon {
		font-size: 2.5rem;
	}
	.site-footer {
		padding: 30px 0 15px;
	}
}

/* Animation Classes */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Heart and Nature Icons */
.booyah-icon-heart::before {
	content: '💝';
}

.booyah-icon-book::before {
	content: '📚';
}

.booyah-icon-family::before {
	content: '👨‍👩‍👧‍👦';
}

.booyah-icon-growth::before {
	content: '🌱';
}

.booyah-icon-lamb::before {
	content: '🐑';
}

/* ===== STUNNING BOOKS PAGE REDESIGN ===== */

/* Hero Section for Books Page */
.booyah-hero-books {
	position: relative;
	min-height: 100vh;
	background: linear-gradient(
		135deg,
		var(--booyah-primary-green) 0%,
		var(--booyah-light-green) 50%,
		var(--booyah-accent-green) 100%
	);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	color: var(--booyah-text-dark);
}

.booyah-hero-books * {
	color: var(--booyah-text-dark);
}

.booyah-hero-books h1,
.booyah-hero-books .tagline,
.booyah-hero-books .description {
	color: var(--booyah-text-dark);
}

.booyah-hero-books::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="books" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><text x="10" y="15" text-anchor="middle" fill="rgba(255,255,255,0.1)" font-size="12">📚</text></pattern></defs><rect width="100" height="100" fill="url(%23books)"/></svg>');
	animation: float 20s ease-in-out infinite;
}

.booyah-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

.booyah-hero-books .booyah-container {
	position: relative;
	z-index: 2;
	text-align: center;
}

.hero-badge {
	display: inline-block;
	background: var(--booyah-gold);
	color: var(--booyah-primary-green);
	padding: 8px 20px;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 20px;
	animation: pulse 2s infinite;
}

.booyah-hero-books h1 {
	font-size: 4rem;
	font-family: var(--booyah-font-display);
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	line-height: 1.2;
}

.booyah-hero-books .tagline {
	font-size: 1.4rem;
	margin-bottom: 20px;
	color: var(--booyah-light-gold);
	font-style: italic;
}

.booyah-hero-books .description {
	font-size: 1.1rem;
	max-width: 800px;
	margin: 0 auto 40px;
	line-height: 1.6;
	opacity: 0.95;
}

.hero-stats {
	display: flex;
	justify-content: center;
	gap: 60px;
	margin-top: 50px;
}

.stat-item {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 3rem;
	font-weight: 700;
	color: var(--booyah-gold);
	font-family: var(--booyah-font-display);
}

.stat-label {
	font-size: 1rem;
	color: var(--booyah-cream);
	margin-top: 5px;
}

.hero-scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: var(--booyah-cream);
	animation: bounce 2s infinite;
}

.scroll-arrow {
	font-size: 1.5rem;
	margin-top: 10px;
}

/* Enhanced Interactive Filter Bar */
.books-filter-bar {
	background: linear-gradient(
		135deg,
		var(--booyah-cream) 0%,
		var(--booyah-light-gold) 100%
	);
	padding: 35px 0 40px;
	box-shadow: 0 8px 32px rgba(45, 80, 22, 0.1);
	border-radius: 0 0 25px 25px;
	margin-bottom: 40px;
	position: relative;
	overflow: hidden;
}

.books-filter-bar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0,10 Q25,0 50,10 T100,10 V20 H0 Z" fill="rgba(45,80,22,0.03)"/></svg>');
	background-size: 200px 20px;
	background-repeat: repeat-x;
	background-position: bottom;
}

.filter-controls-wrapper {
	display: flex;
	flex-direction: column;
	gap: 30px;
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.search-controls {
	display: flex;
	justify-content: center;
	margin-bottom: 5px;
}

.search-input-wrapper {
	position: relative;
	max-width: 500px;
	width: 100%;
}

.book-search-input {
	width: 100%;
	padding: 18px 25px 18px 55px;
	font-size: 1.1rem;
	border: 3px solid var(--booyah-light-green);
	border-radius: 50px;
	background: white;
	color: var(--booyah-primary-green);
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
}

.book-search-input::placeholder {
	color: var(--booyah-text-light);
	font-style: italic;
}

.book-search-input:focus {
	outline: none;
	border-color: var(--booyah-primary-green);
	box-shadow: 0 8px 30px rgba(45, 80, 22, 0.15);
	transform: translateY(-2px);
}

.clear-search-btn {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--booyah-light-green);
	color: white;
	border: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: bold;
	transition: all 0.3s ease;
}

.clear-search-btn:hover {
	background: var(--booyah-primary-green);
	transform: translateY(-50%) scale(1.1);
}

.clear-search-btn.visible {
	display: flex;
}

.filter-controls {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	align-items: flex-end;
	justify-content: center;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 25px;
	box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
}

.filter-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 180px;
	flex: 1;
	max-width: 250px;
}

.filter-group label {
	font-weight: 600;
	color: var(--booyah-primary-green);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
	text-align: center;
}

.filter-select {
	padding: 15px 20px;
	font-size: 1rem;
	border: 3px solid var(--booyah-light-green);
	border-radius: 15px;
	background: white;
	color: var(--booyah-primary-green);
	cursor: pointer;
	transition: all 0.3s ease;
	appearance: none;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%234A7C59"><path d="M7 10l5 5 5-5z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 20px;
}

.filter-select:focus {
	outline: none;
	border-color: var(--booyah-primary-green);
	box-shadow: 0 4px 20px rgba(45, 80, 22, 0.1);
	transform: translateY(-2px);
}

.filter-select:hover {
	border-color: var(--booyah-primary-green);
}

.clear-filters-btn,
.clear-all-filters {
	padding: 12px 20px;
	background: var(--booyah-gold);
	color: white;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
	align-self: flex-end;
	white-space: nowrap;
}

.clear-all-filters {
	flex-basis: 100%;
	align-self: center;
	margin-top: 10px;
}

.clear-filters-btn:hover,
.clear-all-filters:hover {
	background: var(--booyah-primary-green);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

.filter-btn {
	background: transparent;
	border: 2px solid var(--booyah-light-green);
	color: var(--booyah-primary-green);
	padding: 10px 20px;
	border-radius: 25px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--booyah-primary-green);
	color: var(--booyah-text-dark);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
}

/* Books Results Info and View Controls */
.books-results-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	padding: 20px 30px;
	background: white;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
	border-left: 5px solid var(--booyah-primary-green);
}

#books-count {
	color: var(--booyah-primary-green);
	font-weight: 700;
	font-size: 1.2rem;
}

.view-toggle {
	display: flex;
	gap: 5px;
	background: var(--booyah-cream);
	padding: 5px;
	border-radius: 12px;
	border: 2px solid var(--booyah-light-green);
}

.view-btn {
	background: transparent;
	border: none;
	padding: 12px 15px;
	border-radius: 8px;
	cursor: pointer;
	color: var(--booyah-primary-green);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.view-btn:hover {
	background: rgba(45, 80, 22, 0.1);
	transform: scale(1.05);
}

.view-btn.active {
	background: var(--booyah-primary-green);
	color: white;
	box-shadow: 0 2px 8px rgba(45, 80, 22, 0.3);
}

/* Premium Books Grid */
.books-collection {
	padding: 80px 0;
	background: linear-gradient(to bottom, var(--booyah-cream), white);
}

.books-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 40px;
	padding: 0;
}

.book-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	position: relative;
}

.book-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.book-card-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.book-cover-container {
	position: relative;
	padding: 30px 30px 20px;
	background: linear-gradient(
		135deg,
		var(--booyah-cream),
		var(--booyah-light-gold)
	);
}

.book-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 5px 12px;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 600;
	z-index: 10;
}

.book-badge.new {
	background: #ff6b6b;
	color: var(--booyah-text-dark);
}

.book-badge.bestseller {
	background: var(--booyah-gold);
	color: var(--booyah-primary-green);
}

.book-cover-wrapper {
	position: relative;
	text-align: center;
}

.book-cover-image {
	max-width: 200px;
	height: 280px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.book-cover-placeholder {
	width: 200px;
	height: 280px;
	background: var(--booyah-soft-gray);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	margin: 0 auto;
}

.book-cover-overlay {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 280px;
	background: rgba(45, 80, 22, 0.9);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.3s ease;
}

.book-card:hover .book-cover-overlay {
	opacity: 1;
}

.quick-view-btn {
	background: white;
	color: var(--booyah-primary-green);
	padding: 12px 24px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.quick-view-btn:hover {
	background: var(--booyah-gold);
	transform: scale(1.05);
}

.book-details {
	padding: 30px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.book-meta {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}

.book-series,
.book-age {
	background: var(--booyah-light-green);
	color: var(--booyah-text-dark);
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 0.8rem;
	font-weight: 500;
}

.book-age {
	background: var(--booyah-gold);
	color: var(--booyah-primary-green);
	font-weight: 600;
}

.book-title {
	margin: 0 0 10px 0;
	font-size: 1.4rem;
	font-family: var(--booyah-font-accent);
	line-height: 1.3;
}

.book-title a {
	color: var(--booyah-primary-green);
	text-decoration: none;
	transition: color 0.3s ease;
}

.book-title a:hover {
	color: var(--booyah-light-green);
}

.book-author {
	color: #666666;
	font-style: italic;
	margin-bottom: 15px;
}

.book-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.stars {
	display: flex;
	gap: 2px;
}

.star {
	color: #ddd;
	font-size: 1.2rem;
}

.star.filled {
	color: var(--booyah-gold);
}

.rating-text {
	font-size: 0.9rem;
	color: #666666;
}

.book-excerpt {
	color: var(--booyah-text-dark);
	line-height: 1.6;
	margin-bottom: 20px;
	flex-grow: 1;
}

.book-price-section {
	margin-bottom: 20px;
}

.book-price {
	display: flex;
	align-items: center;
	gap: 10px;
}

.price-current {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--booyah-primary-green);
}

.price-original {
	font-size: 1rem;
	color: #888888;
	text-decoration: line-through;
}

.book-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.btn-buy-amazon,
.btn-buy-direct,
.btn-learn-more {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	text-align: center;
}

.btn-buy-amazon {
	background: #ff9500;
	color: var(--booyah-text-dark);
}

.btn-buy-amazon:hover {
	background: #e6850e;
	color: var(--booyah-text-dark);
	transform: translateY(-2px);
}

.btn-buy-direct {
	background: var(--booyah-primary-green);
	color: var(--booyah-text-dark);
}

.btn-buy-direct:hover {
	background: var(--booyah-light-green);
	color: var(--booyah-text-dark);
	transform: translateY(-2px);
}

.btn-learn-more {
	background: transparent;
	color: var(--booyah-primary-green);
	border: 2px solid var(--booyah-primary-green);
}

.btn-learn-more:hover {
	background: var(--booyah-primary-green);
	color: var(--booyah-text-dark);
}

/* Advanced Filters */
.advanced-filters {
	margin-top: 50px;
	padding: 40px;
	background: white;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.filter-section {
	margin-bottom: 30px;
}

.filter-section h4 {
	color: var(--booyah-primary-green);
	margin-bottom: 15px;
	font-family: var(--booyah-font-accent);
}

/* Enhanced Quick Filter Chips */
.quick-filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	margin-top: 10px;
}

.filter-chip {
	background: white;
	border: 3px solid var(--booyah-light-green);
	color: var(--booyah-primary-green);
	padding: 15px 25px;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 700;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 15px rgba(45, 80, 22, 0.08);
	position: relative;
	overflow: hidden;
}

.filter-chip::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.4),
		transparent
	);
	transition: left 0.5s;
}

.filter-chip:hover::before {
	left: 100%;
}

.filter-chip:hover,
.filter-chip.active {
	background: var(--booyah-primary-green);
	color: white;
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(45, 80, 22, 0.25);
	border-color: var(--booyah-primary-green);
}

.filter-chip:active {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

/* Legacy filter chips support */
.filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* Enhanced Book Grid Layout */
.enhanced-books-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 30px;
}

.enhanced-book-item {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(45, 80, 22, 0.1);
	transition: all 0.4s ease;
	opacity: 0;
	transform: translateY(30px);
	border: 2px solid transparent;
}

.enhanced-book-item.animate-in {
	opacity: 1;
	transform: translateY(0);
}

.enhanced-book-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(45, 80, 22, 0.2);
	border-color: var(--booyah-light-green);
}

.enhanced-book-item .book-cover {
	position: relative;
	aspect-ratio: 3/4;
	overflow: hidden;
}

.enhanced-book-item .book-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.enhanced-book-item:hover .book-cover img {
	transform: scale(1.05);
}

.enhanced-book-item .book-info {
	padding: 25px;
}

.enhanced-book-item .book-title {
	color: var(--booyah-primary-green);
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.3;
}

.enhanced-book-item .book-author {
	color: var(--booyah-text-light);
	font-size: 1rem;
	margin-bottom: 15px;
	font-style: italic;
}

.enhanced-book-item .book-meta {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 15px;
}

/* Enhanced No Results State */
#no-books-found {
	text-align: center;
	padding: 80px 40px;
	background: linear-gradient(
		135deg,
		var(--booyah-cream),
		var(--booyah-light-gold)
	);
	border-radius: 20px;
	margin: 40px 0;
	box-shadow: 0 8px 30px rgba(45, 80, 22, 0.1);
}

.no-books-icon {
	font-size: 4rem;
	margin-bottom: 20px;
	opacity: 0.7;
	animation: gentle-bounce 2s ease-in-out infinite;
}

@keyframes gentle-bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

#no-books-found h3 {
	color: var(--booyah-primary-green);
	font-size: 2rem;
	margin-bottom: 15px;
	font-weight: 700;
}

#no-books-found p {
	color: var(--booyah-text-light);
	font-size: 1.1rem;
	line-height: 1.6;
	max-width: 500px;
	margin: 0 auto 30px;
}

/* Filter Animation Enhancements */
.books-filter-bar {
	animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Loading State Enhancements */
#books-loading {
	text-align: center;
	padding: 60px 20px;
	color: var(--booyah-primary-green);
	font-size: 1.2rem;
	font-weight: 600;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid var(--booyah-light-gold);
	border-top: 4px solid var(--booyah-primary-green);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 20px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Focus and Accessibility Enhancements */
.book-search-input:focus,
.filter-select:focus {
	animation: gentle-glow 2s ease-in-out;
}

@keyframes gentle-glow {
	0%,
	100% {
		box-shadow: 0 4px 20px rgba(45, 80, 22, 0.1);
	}
	50% {
		box-shadow: 0 8px 30px rgba(45, 80, 22, 0.25);
	}
}

/* Staggered Animation for Filter Chips */
.filter-chip:nth-child(1) {
	animation-delay: 0.1s;
}
.filter-chip:nth-child(2) {
	animation-delay: 0.2s;
}
.filter-chip:nth-child(3) {
	animation-delay: 0.3s;
}
.filter-chip:nth-child(4) {
	animation-delay: 0.4s;
}
.filter-chip:nth-child(5) {
	animation-delay: 0.5s;
}
.filter-chip:nth-child(6) {
	animation-delay: 0.6s;
}

.quick-filter-chips .filter-chip {
	animation: fadeInUp 0.6s ease-out both;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Floating Action Buttons - Fixed Design */
.floating-action-buttons {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
}

.fab-container {
	position: relative;
}

.fab-toggle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--booyah-primary-green),
		var(--booyah-light-green)
	);
	border: none;
	color: var(--booyah-text-dark);
	font-size: 1.5rem;
	cursor: pointer;
	box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
	transition: all 0.3s ease;
	position: relative;
	z-index: 1001;
}

.fab-toggle:hover {
	transform: scale(1.1);
	box-shadow: 0 12px 35px rgba(45, 80, 22, 0.4);
}

.fab-close {
	display: none;
	font-size: 2rem;
}

.fab-container.open .fab-icon {
	display: none;
}

.fab-container.open .fab-close {
	display: block;
}

.fab-menu {
	position: absolute;
	bottom: 80px;
	right: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease;
	pointer-events: none;
}

.fab-container.open .fab-menu {
	opacity: 1;
	transform: translateY(0);
	pointer-events: all;
}

.fab-item {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: white;
	color: var(--booyah-primary-green);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 1.2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	position: relative;
}

.fab-item:hover {
	transform: scale(1.1);
	background: var(--booyah-gold);
}

.fab-item::before {
	content: attr(data-tooltip);
	position: absolute;
	right: 60px;
	background: var(--booyah-primary-green);
	color: var(--booyah-text-dark);
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 0.8rem;
	white-space: nowrap;
	opacity: 0;
	transform: translateX(10px);
	transition: all 0.3s ease;
	pointer-events: none;
}

.fab-item:hover::before {
	opacity: 1;
	transform: translateX(0);
}

/* No Books Found State */
.no-books-found {
	text-align: center;
	padding: 80px 20px;
	color: #666666;
}

.no-books-icon {
	font-size: 4rem;
	margin-bottom: 20px;
}

.no-books-found h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: var(--booyah-primary-green);
}

.no-books-found p {
	color: #666666;
}

/* Animations */
@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

/* Responsive Design for Books Page */
@media (max-width: 992px) {
	.filter-controls {
		gap: 20px;
		padding: 20px;
	}

	.filter-group {
		min-width: 160px;
		flex: 1 1 calc(33.33% - 20px);
	}

	.clear-all-filters {
		margin-top: 10px;
	}
}

@media (max-width: 768px) {
	.booyah-hero-books h1 {
		font-size: 2.5rem;
	}

	.hero-stats {
		flex-direction: column;
		gap: 30px;
	}

	.stat-number {
		font-size: 2rem;
	}

	/* Enhanced Mobile Filter Styles */
	.books-filter-bar {
		padding: 25px 0 30px;
		border-radius: 0 0 15px 15px;
	}

	.filter-controls-wrapper {
		gap: 20px;
		padding: 0 15px;
	}

	.search-input-wrapper {
		max-width: 100%;
	}

	.book-search-input {
		font-size: 1rem;
		padding: 15px 20px 15px 45px;
	}

	.filter-controls {
		flex-direction: column;
		gap: 20px;
		padding: 20px;
	}

	.filter-group {
		min-width: unset;
		max-width: unset;
		width: 100%;
	}

	.filter-group label {
		text-align: left;
		font-size: 0.85rem;
	}

	.filter-select {
		padding: 12px 15px;
		font-size: 0.95rem;
	}

	.clear-all-filters {
		margin-top: 15px;
		padding: 14px 25px;
	}

	.book-search-input {
		padding: 15px 20px 15px 45px;
		font-size: 1rem;
	}

	.filter-controls {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.filter-group {
		width: 100%;
	}

	.filter-select {
		padding: 12px 15px;
		font-size: 0.9rem;
	}

	.clear-all-filters {
		grid-column: 1;
		padding: 12px 20px;
		font-size: 0.9rem;
	}

	.books-results-info {
		flex-direction: column;
		gap: 15px;
		text-align: center;
		padding: 15px 20px;
	}

	.quick-filter-chips {
		gap: 10px;
	}

	.filter-chip {
		padding: 12px 20px;
		font-size: 0.9rem;
		border-width: 2px;
	}

	.books-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.book-card {
		max-width: 400px;
		margin: 0 auto;
	}

	.floating-action-buttons {
		bottom: 20px;
		right: 20px;
	}

	.fab-toggle {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
	}

	.fab-item {
		width: 45px;
		height: 45px;
		font-size: 1rem;
	}
}

/* ===== CUSTOM FOOTER DESIGN ===== */
.site-footer {
	background: linear-gradient(
		135deg,
		var(--booyah-primary-green),
		var(--booyah-light-green)
	);
	color: var(--booyah-text-dark);
	padding: 60px 0 20px;
	margin-top: 80px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
	margin-bottom: 40px;
}

.footer-brand h3 {
	font-family: var(--booyah-font-display);
	font-size: 2rem;
	color: var(--booyah-gold);
	margin-bottom: 15px;
}

.footer-brand p {
	font-style: italic;
	margin-bottom: 25px;
	opacity: 0.9;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 1.2rem;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: var(--booyah-gold);
	transform: translateY(-3px);
}

.footer-links {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
	gap: 30px;
	align-items: flex-start;
}

.footer-column h4 {
	color: var(--booyah-light-gold);
	margin-bottom: 20px;
	font-family: var(--booyah-font-accent);
}

.footer-column ul {
	list-style: none;
	padding: 0;
}

.footer-column li {
	margin-bottom: 10px;
}

.footer-column a {
	color: var(--booyah-text-dark);
	text-decoration: none;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.footer-column a:hover {
	opacity: 1;
	color: var(--booyah-light-gold);
	padding-left: 5px;
}

.newsletter-form {
	display: flex;
	margin-top: 15px;
}

.newsletter-form input {
	flex: 1;
	padding: 12px 15px;
	border: none;
	border-radius: 25px 0 0 25px;
	background: rgba(255, 255, 255, 0.9);
	color: var(--booyah-primary-green);
}

.newsletter-form button {
	padding: 12px 20px;
	border: none;
	border-radius: 0 25px 25px 0;
	background: var(--booyah-gold);
	color: var(--booyah-primary-green);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.newsletter-form button:hover {
	background: var(--booyah-light-gold);
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	opacity: 0.8;
}

.footer-bottom p {
	color: var(--booyah-text-dark);
}

/* Blog Hero Fix */
.blog-hero {
	position: relative;
	z-index: 1;
}

/* Freebies Page Overlap Fix */
.page-template-page-freebies .booyah-hero {
	margin-top: 80px;
	padding-top: 120px;
}

/* Responsive Footer */
@media (max-width: 992px) {
	.footer-links {
		grid-template-columns: repeat(3, 1fr);
		gap: 25px;
	}
}
@media (max-width: 768px) {
	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-links {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}
@media (max-width: 576px) {
	.footer-links {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.newsletter-form {
		flex-direction: column;
		gap: 10px;
	}

	.newsletter-form input,
	.newsletter-form button {
		border-radius: 25px;
	}
}

/* ===== ADDITIONAL STUNNING ENHANCEMENTS ===== */

/* List View for Books */
.books-grid.list-view {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.books-grid.list-view .book-card {
	display: flex;
	flex-direction: row;
	max-width: none;
	height: auto;
}

.books-grid.list-view .book-card-inner {
	flex-direction: row;
	width: 100%;
}

.books-grid.list-view .book-cover-container {
	flex: 0 0 200px;
	padding: 20px;
}

.books-grid.list-view .book-details {
	flex: 1;
	padding: 20px;
}

/* Quick View Modal */
.quick-view-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.quick-view-content {
	background: white;
	border-radius: 20px;
	max-width: 800px;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
}

.modal-close {
	position: absolute;
	top: 15px;
	right: 20px;
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	color: #666666;
	z-index: 10;
}

.modal-close:hover {
	color: var(--booyah-primary-green);
}

.quick-view-inner {
	display: flex;
	padding: 40px;
	gap: 40px;
}

.quick-view-image {
	flex: 0 0 250px;
}

.quick-view-details {
	flex: 1;
}

/* Sticky Filter Bar Enhancement */
.books-filter-bar.sticky-active {
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
}

/* Touch Active States for Mobile */
.touch-active {
	transform: scale(0.98);
	transition: transform 0.1s ease;
}

/* Loading States */
.loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--booyah-primary-green);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--booyah-text-dark);
}

.loading-spinner {
	width: 50px;
	height: 50px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-top: 3px solid white;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Enhanced Button Hover Effects */
.booyah-btn.hover-effect {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Testimonial Enhancements */
.testimonial.active {
	opacity: 1;
	transform: scale(1);
}

.testimonial {
	opacity: 0.7;
	transform: scale(0.95);
	transition: all 0.5s ease;
}

/* Focus States for Accessibility */
.filter-btn:focus,
.filter-chip:focus,
.fab-toggle:focus {
	outline: 3px solid var(--booyah-gold);
	outline-offset: 2px;
}

/* Print Styles */
@media print {
	.floating-action-buttons,
	.books-filter-bar,
	.fab-container {
		display: none;
	}

	.book-card {
		break-inside: avoid;
		margin-bottom: 20px;
	}
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
	.book-card {
		border: 2px solid var(--booyah-primary-green);
	}

	.filter-btn,
	.filter-chip {
		border-width: 3px;
	}
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms;
		animation-iteration-count: 1;
		transition-duration: 0.01ms;
	}

	.parallax-element {
		transform: none;
	}
}

/* ===== COMPREHENSIVE CONTRAST FIXES ===== */

/* Hero Sections - Ensure all text is white */
.booyah-hero,
.booyah-hero-books,
.freebies-hero,
.blog-hero {
	color: var(--booyah-text-dark);
}

.booyah-hero *,
.booyah-hero-books *,
.freebies-hero *,
.blog-hero * {
	color: var(--booyah-text-dark);
}

.booyah-hero h1,
.booyah-hero h2,
.booyah-hero h3,
.booyah-hero .tagline,
.booyah-hero .description,
.booyah-hero-books h1,
.booyah-hero-books h2,
.booyah-hero-books h3,
.booyah-hero-books .tagline,
.booyah-hero-books .description {
	color: var(--booyah-text-dark);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Regular Sections - Dark text on light backgrounds */
.booyah-section h1,
.booyah-section h2,
.booyah-section h3,
.booyah-section h4,
.booyah-section h5,
.booyah-section h6 {
	color: var(--booyah-primary-green);
}

/* Ensure buttons have proper contrast */
.booyah-btn {
	color: var(--booyah-text-dark);
	text-decoration: none;
	font-weight: 600;
}

.booyah-btn-primary {
	background: var(--booyah-primary-green);
	color: var(--booyah-text-dark);
}

.booyah-btn-secondary {
	background: var(--booyah-gold);
	color: var(--booyah-primary-green);
	font-weight: 700;
}

.booyah-btn-tertiary {
	background: transparent;
	color: var(--booyah-primary-green);
	border: 2px solid var(--booyah-primary-green);
}

/* Links in content areas */
.booyah-section a {
	color: var(--booyah-light-gold);
}

.booyah-section a:hover {
	color: var(--booyah-gold);
}

/* Card content */
.booyah-card h3,
.booyah-card h4 {
	color: var(--booyah-primary-green);
}

.booyah-card p,
.booyah-card li {
	color: var(--booyah-text-dark);
}

/* Footer - All white text */
.site-footer,
.site-footer * {
	color: var(--booyah-cream);
}

.site-footer h3,
.site-footer h4 {
	color: var(--booyah-gold);
}

/* Form elements */
input,
textarea,
select {
	color: var(--booyah-text-dark);
	background: white;
}

input::placeholder,
textarea::placeholder {
	color: #888888;
}

/* ===== TESTIMONIALS STYLING ===== */

.booyah-testimonials-container {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}

.testimonials-carousel {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	background: linear-gradient(
		135deg,
		var(--booyah-cream),
		var(--booyah-light-gold)
	);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-item {
	display: none;
	padding: 40px;
	text-align: center;
	animation: fadeInUp 0.6s ease;
}

.testimonial-item.active {
	display: block;
}

.testimonial-item:first-child {
	display: block;
}

.testimonial-content {
	max-width: 600px;
	margin: 0 auto;
}

.testimonial-quote {
	position: relative;
	font-size: 1.2rem;
	line-height: 1.7;
	color: var(--booyah-text-dark);
	font-style: italic;
	margin-bottom: 25px;
	padding: 0 40px;
}

.quote-mark {
	font-size: 3rem;
	color: var(--booyah-gold);
	font-family: serif;
	line-height: 0;
	position: absolute;
}

.quote-mark:first-child {
	top: -10px;
	left: 10px;
}

.quote-mark:last-child {
	bottom: -40px;
	right: 10px;
}

.testimonial-rating {
	margin: 20px 0;
}

.testimonial-rating .star {
	font-size: 1.2rem;
	margin: 0 2px;
	filter: grayscale(100%);
	transition: filter 0.3s ease;
}

.testimonial-rating .star.filled {
	filter: none;
}

.testimonial-author {
	margin-top: 25px;
}

.testimonial-author strong {
	color: var(--booyah-primary-green);
	font-size: 1.1rem;
	font-weight: 600;
	display: block;
	margin-bottom: 5px;
}

.author-role {
	color: var(--booyah-text-light);
	font-size: 0.9rem;
	font-style: italic;
}

.testimonial-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

.testimonial-nav button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: var(--booyah-primary-green);
	color: var(--booyah-text-dark);
	font-size: 1.2rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-nav button:hover {
	background: var(--booyah-light-green);
	transform: scale(1.1);
}

.testimonial-dots {
	display: flex;
	gap: 10px;
}

.testimonial-dots .dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(45, 80, 22, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
	background: var(--booyah-primary-green);
	transform: scale(1.2);
}

.testimonial-dots .dot:hover {
	background: var(--booyah-light-green);
	transform: scale(1.1);
}

/* Newsletter Signup Enhanced */
.booyah-newsletter-signup {
	background: linear-gradient(
		135deg,
		var(--booyah-cream),
		var(--booyah-light-gold)
	);
	padding: 40px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	margin: 40px 0;
}

.newsletter-content {
	max-width: 500px;
	margin: 0 auto;
}

.newsletter-icon {
	font-size: 3rem;
	margin-bottom: 20px;
	animation: bounce 2s infinite;
}

.newsletter-content h3 {
	color: var(--booyah-primary-green);
	margin-bottom: 15px;
	font-family: var(--booyah-font-accent);
}

.newsletter-content p {
	color: var(--booyah-text-dark);
	margin-bottom: 25px;
}

.popup-newsletter-form,
.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
	max-width: 400px;
	margin: 0 auto;
}

.newsletter-form input {
	padding: 15px 20px;
	border: 2px solid var(--booyah-light-green);
	border-radius: 50px;
	font-size: 16px;
	text-align: center;
	background: white;
	color: var(--booyah-text-dark);
	transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
	outline: none;
	border-color: var(--booyah-primary-green);
}

.newsletter-form button {
	padding: 15px 30px;
	background: var(--booyah-primary-green);
	color: var(--booyah-text-dark);
	border: none;
	border-radius: 50px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

.newsletter-form button:hover {
	background: var(--booyah-light-green);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

.newsletter-content small {
	color: var(--booyah-text-light);
	margin-top: 15px;
	display: block;
}

/* Book Filtering Enhancements */
.book-filters {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 10px 20px;
	background: white;
	color: var(--booyah-primary-green);
	border: 2px solid var(--booyah-primary-green);
	border-radius: 25px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--booyah-primary-green);
	color: var(--booyah-text-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

/* Blog Post Cards Enhancement */
.blog-posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.blog-post-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.blog-post-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	border-color: var(--booyah-light-green);
}

.blog-post-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image {
	transform: scale(1.05);
}

.blog-post-card h3 {
	padding: 20px 20px 10px;
	font-size: 1.3rem;
	line-height: 1.4;
}

.blog-post-card h3 a {
	color: var(--booyah-primary-green);
	text-decoration: none;
	transition: color 0.3s ease;
}

.blog-post-card h3 a:hover {
	color: var(--booyah-light-green);
}

.blog-post-card p {
	padding: 0 20px 15px;
	color: var(--booyah-text-light);
	line-height: 1.6;
}

.blog-post-card .booyah-btn-link {
	margin: 0 20px 20px;
	display: inline-block;
	color: var(--booyah-primary-green);
	text-decoration: none;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 20px;
	border: 2px solid var(--booyah-primary-green);
	transition: all 0.3s ease;
	background: transparent;
}

.blog-post-card .booyah-btn-link:hover {
	background: var(--booyah-primary-green);
	color: var(--booyah-text-dark);
}

/* Animated Elements */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Responsive Testimonials */
@media (max-width: 768px) {
	.testimonial-item {
		padding: 30px 20px;
	}

	.testimonial-quote {
		font-size: 1.1rem;
		padding: 0 20px;
	}

	.quote-mark {
		font-size: 2rem;
	}

	.quote-mark:first-child {
		top: -5px;
		left: 5px;
	}

	.quote-mark:last-child {
		bottom: -25px;
		right: 5px;
	}

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

	.newsletter-form {
		flex-direction: column;
	}

	.book-filters {
		justify-content: center;
		gap: 10px;
	}

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

/* ====== BLOG SYSTEM STYLES ====== */

/* Blog Hero Section */
.blog-hero {
	background: linear-gradient(
		135deg,
		var(--booyah-primary-green) 0%,
		var(--booyah-light-green) 100%
	);
	color: var(--booyah-warm-white);
	padding: 4rem 0;
	text-align: center;
	margin-bottom: 3rem;
}

.blog-hero .hero-content h1 {
	font-family: 'DM Serif Display', serif;
	font-size: 3rem;
	margin-bottom: 1rem;
	font-weight: 400;
}

.blog-hero .hero-subtitle {
	font-size: 1.25rem;
	opacity: 0.9;
	margin-bottom: 0;
}

/* Blog Category Filters */
.blog-filters {
	background: var(--booyah-cream);
	padding: 2rem 0;
	margin-bottom: 3rem;
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}

.filter-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}

.filter-tab {
	padding: 0.75rem 1.5rem;
	background: var(--booyah-warm-white);
	color: var(--booyah-primary-green);
	text-decoration: none;
	border-radius: 25px;
	font-weight: 500;
	font-size: 0.9rem;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.filter-tab:hover {
	background: var(--booyah-light-green);
	color: var(--booyah-warm-white);
	text-decoration: none;
}

.filter-tab.active {
	background: var(--booyah-primary-green);
	color: var(--booyah-warm-white);
	border-color: var(--booyah-gold);
}

/* Featured Posts Section */
.featured-posts-section {
	margin-bottom: 4rem;
}

.featured-posts-section .section-title {
	text-align: center;
	font-family: 'DM Serif Display', serif;
	font-size: 2.5rem;
	color: var(--booyah-primary-green);
	margin-bottom: 2rem;
	position: relative;
}

.featured-posts-section .section-title:after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: var(--booyah-gold);
	margin: 1rem auto 0;
	border-radius: 2px;
}

.featured-posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.featured-post-card {
	background: var(--booyah-warm-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(45, 80, 22, 0.1);
	transition: all 0.3s ease;
	position: relative;
}

.featured-post-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(45, 80, 22, 0.15);
}

.featured-post-card .post-thumbnail {
	position: relative;
	overflow: hidden;
}

.featured-post-card .post-thumbnail img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.featured-post-card:hover .post-thumbnail img {
	transform: scale(1.05);
}

.featured-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--booyah-gold);
	color: var(--booyah-primary-green);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.featured-post-card .post-content {
	padding: 2rem;
}

/* Regular Blog Grid */
.blog-posts-section {
	margin-bottom: 4rem;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.blog-post-card {
	background: var(--booyah-warm-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
	transition: all 0.3s ease;
	border: 1px solid rgba(45, 80, 22, 0.05);
	margin-bottom: 2rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.blog-post-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 35px rgba(45, 80, 22, 0.15);
	border-color: var(--booyah-accent-green);
}

.blog-post-card .post-thumbnail img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-post-card:hover .post-thumbnail img {
	transform: scale(1.03);
}

.blog-post-card .post-content {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* Post Meta Styling */
.post-meta,
.blog-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	font-size: 0.85rem;
	color: #666;
}

.post-date,
.blog-date {
	background: var(--booyah-light-gold);
	color: var(--booyah-primary-green);
	padding: 0.25rem 0.75rem;
	border-radius: 15px;
	font-weight: 500;
}

.post-categories,
.blog-categories {
	color: var(--booyah-light-green);
	font-weight: 500;
}

.post-categories a,
.blog-categories a {
	color: inherit;
	text-decoration: none;
}

.post-categories a:hover,
.blog-categories a:hover {
	color: var(--booyah-primary-green);
}

/* Post Titles */
.post-title,
.blog-title {
	margin-bottom: 1rem;
}

.post-title a,
.blog-title a {
	color: var(--booyah-primary-green);
	text-decoration: none;
	font-family: 'Quicksand', sans-serif;
	font-weight: 600;
	line-height: 1.3;
	transition: color 0.3s ease;
}

.post-title a:hover,
.blog-title a:hover {
	color: var(--booyah-light-green);
}

.featured-post-card .post-title {
	font-size: 1.5rem;
}

.blog-post-card .post-title {
	font-size: 1.25rem;
}

/* Post Excerpts */
.post-excerpt,
.blog-excerpt {
	color: #555;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

/* Better post title spacing */
.blog-post-card .post-title {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.blog-post-card .post-title a {
	color: var(--booyah-primary-green);
	text-decoration: none;
	line-height: 1.3;
}

/* Read More Buttons */
.read-more-btn,
.read-more-link {
	display: inline-block;
	background: var(--booyah-primary-green);
	color: var(--booyah-warm-white);
	padding: 0.75rem 1.5rem;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.read-more-btn:hover,
.read-more-link:hover {
	background: var(--booyah-light-green);
	color: var(--booyah-warm-white);
	text-decoration: none;
	transform: translateY(-2px);
}

.read-more-link-small {
	color: var(--booyah-primary-green);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9rem;
	border-bottom: 1px solid var(--booyah-primary-green);
	transition: all 0.3s ease;
}

.read-more-link-small:hover {
	color: var(--booyah-light-green);
	border-color: var(--booyah-light-green);
	text-decoration: none;
}

/* Blog Pagination */
.blog-pagination {
	text-align: center;
	margin-top: 3rem;
}

.blog-pagination .page-numbers {
	display: inline-block;
	padding: 0.75rem 1rem;
	margin: 0 0.25rem;
	background: var(--booyah-warm-white);
	color: var(--booyah-primary-green);
	text-decoration: none;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
	background: var(--booyah-primary-green);
	color: var(--booyah-warm-white);
	border-color: var(--booyah-primary-green);
}

/* No Posts Message */
.no-posts-message {
	text-align: center;
	padding: 4rem 2rem;
	background: var(--booyah-cream);
	border-radius: 12px;
	margin: 2rem 0;
}

.no-posts-message h3 {
	color: var(--booyah-primary-green);
	margin-bottom: 1rem;
	font-family: 'Quicksand', sans-serif;
}

.no-posts-message p {
	color: #666;
	margin-bottom: 2rem;
}

/* ====== HOMEPAGE BLOG SECTION ====== */

/* Latest Blog Section */
.latest-blog-section {
	background: var(--booyah-cream);
	padding: 4rem 0;
	margin-bottom: 3rem;
}

.latest-blog-section .section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.latest-blog-section .section-header h2 {
	font-family: 'DM Serif Display', serif;
	font-size: 2.5rem;
	color: var(--booyah-primary-green);
	margin-bottom: 1rem;
}

.latest-blog-section .section-header p {
	font-size: 1.1rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

/* Homepage Featured Posts */
.featured-blog-card {
	background: var(--booyah-warm-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(45, 80, 22, 0.1);
	transition: all 0.3s ease;
	margin-bottom: 2rem;
}

.featured-blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(45, 80, 22, 0.15);
}

.featured-blog-card .blog-thumbnail {
	position: relative;
	overflow: hidden;
}

.featured-blog-card .blog-thumbnail img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.featured-blog-card:hover .blog-thumbnail img {
	transform: scale(1.05);
}

.featured-blog-card .blog-content {
	padding: 2rem;
}

.blog-title {
	font-size: 1.4rem;
	margin-bottom: 1rem;
}

/* Latest Posts Compact Grid */
.latest-posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.latest-blog-card {
	display: flex;
	background: var(--booyah-warm-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 15px rgba(45, 80, 22, 0.08);
	transition: all 0.3s ease;
}

.latest-blog-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 25px rgba(45, 80, 22, 0.12);
}

.blog-thumbnail-small {
	flex: 0 0 100px;
}

.blog-thumbnail-small img {
	width: 100%;
	height: 100px;
	object-fit: cover;
}

.blog-content-compact {
	flex: 1;
	padding: 1rem;
	display: flex;
	flex-direction: column;
}

.blog-title-small {
	font-size: 1rem;
	margin-bottom: 0.5rem;
	flex: 1;
}

.blog-title-small a {
	color: var(--booyah-primary-green);
	text-decoration: none;
	font-weight: 600;
	line-height: 1.3;
}

.blog-title-small a:hover {
	color: var(--booyah-light-green);
}

.blog-content-compact .blog-meta {
	font-size: 0.75rem;
	margin-bottom: 0.5rem;
	gap: 0.5rem;
}

/* Blog CTA */
.blog-cta {
	text-align: center;
	margin-top: 2rem;
}

.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.btn-secondary {
	background: var(--booyah-light-green);
	color: var(--booyah-warm-white);
}

.btn-secondary:hover {
	background: var(--booyah-primary-green);
	color: var(--booyah-warm-white);
	text-decoration: none;
	transform: translateY(-2px);
}

/* ====== RESPONSIVE DESIGN ====== */

/* Mobile Styles */
@media (max-width: 768px) {
	.blog-hero .hero-content h1 {
		font-size: 2rem;
	}

	.blog-hero .hero-subtitle {
		font-size: 1.1rem;
	}

	.filter-tabs {
		justify-content: flex-start;
		overflow-x: auto;
		padding: 0 1rem;
	}

	.featured-posts-grid {
		grid-template-columns: 1fr;
	}

	.blog-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.latest-posts-grid {
		grid-template-columns: 1fr;
	}

	.latest-blog-card {
		flex-direction: column;
	}

	.blog-thumbnail-small {
		flex: none;
	}

	.blog-thumbnail-small img {
		height: 150px;
	}

	.featured-post-card .post-content,
	.featured-blog-card .blog-content {
		padding: 1.5rem;
	}

	.latest-blog-section .section-header h2 {
		font-size: 2rem;
	}
}

@media (max-width: 576px) {
	.blog-hero {
		padding: 2rem 0;
	}

	.blog-hero .hero-content h1 {
		font-size: 1.75rem;
	}

	.filter-tab {
		font-size: 0.8rem;
		padding: 0.5rem 1rem;
	}

	.featured-post-card .post-content,
	.blog-post-card .post-content,
	.featured-blog-card .blog-content {
		padding: 1rem;
	}

	.post-title,
	.blog-title {
		font-size: 1.1rem;
	}

	.featured-post-card .post-title {
		font-size: 1.3rem;
	}
}

/* ===== ENHANCED TESTIMONIALS GRID FOR ABOUT PAGE ===== */

.testimonials-grid-layout {
	margin: 40px 0;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.testimonial-grid-item {
	position: relative;
}

.testimonial-card {
	background: white;
	border-radius: 20px;
	padding: 30px;
	height: 100%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 3px solid transparent;
	display: flex;
	flex-direction: column;
	position: relative;
}

.testimonial-grid-item.featured .testimonial-card {
	border-color: var(--booyah-gold);
	background: linear-gradient(135deg, var(--booyah-cream), white);
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
}

.testimonial-rating {
	display: flex;
	gap: 2px;
}

.testimonial-rating .star {
	font-size: 1.1rem;
	filter: grayscale(100%);
	transition: filter 0.3s ease;
}

.testimonial-rating .star.filled {
	filter: none;
}

.featured-badge {
	background: var(--booyah-gold);
	color: var(--booyah-primary-green);
	padding: 4px 12px;
	border-radius: 15px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.testimonial-content {
	flex-grow: 1;
	margin-bottom: 25px;
}

.testimonial-content .testimonial-quote {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--booyah-text-dark);
	font-style: italic;
	position: relative;
}

.testimonial-content .testimonial-quote::before {
	content: '"';
	font-size: 4rem;
	color: var(--booyah-gold);
	font-family: serif;
	position: absolute;
	top: -20px;
	left: -15px;
	line-height: 1;
	opacity: 0.3;
}

.testimonial-footer {
	margin-top: auto;
}

.testimonial-footer .testimonial-author strong {
	color: var(--booyah-primary-green);
	font-size: 1.1rem;
	font-weight: 600;
	display: block;
	margin-bottom: 5px;
}

.testimonial-footer .author-role {
	color: var(--booyah-text-light);
	font-size: 0.9rem;
	font-style: italic;
}

/* Enhanced Carousel Styling Integration */
.booyah-testimonials-carousel-container .testimonials-carousel {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	background: linear-gradient(
		135deg,
		var(--booyah-cream),
		var(--booyah-light-gold)
	);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	min-height: 300px;
	display: flex;
	align-items: center;
}

.booyah-testimonials-carousel-container .testimonial-item {
	display: none;
	padding: 50px 40px;
	text-align: center;
	width: 100%;
	animation: fadeInTestimonial 0.6s ease;
}

.booyah-testimonials-carousel-container .testimonial-item.active {
	display: block;
}

.booyah-testimonials-carousel-container .testimonial-item:first-child {
	display: block;
}

.booyah-testimonials-carousel-container .testimonial-content {
	max-width: 700px;
	margin: 0 auto;
}

.booyah-testimonials-carousel-container .testimonial-quote {
	position: relative;
	font-size: 1.3rem;
	line-height: 1.7;
	color: var(--booyah-text-dark);
	font-style: italic;
	margin-bottom: 30px;
	padding: 0 50px;
}

.booyah-testimonials-carousel-container .quote-mark {
	font-size: 3.5rem;
	color: var(--booyah-gold);
	font-family: serif;
	line-height: 0;
	position: absolute;
	opacity: 0.6;
}

.booyah-testimonials-carousel-container .quote-mark:first-child {
	top: -15px;
	left: 15px;
}

.booyah-testimonials-carousel-container .quote-mark:last-child {
	bottom: -45px;
	right: 15px;
}

.booyah-testimonials-carousel-container .testimonial-rating {
	margin: 25px 0;
	justify-content: center;
}

.booyah-testimonials-carousel-container .testimonial-rating .star {
	font-size: 1.3rem;
	margin: 0 3px;
}

.booyah-testimonials-carousel-container .testimonial-author strong {
	color: var(--booyah-primary-green);
	font-size: 1.2rem;
	font-weight: 600;
	display: block;
	margin-bottom: 8px;
}

.booyah-testimonials-carousel-container .author-role {
	color: var(--booyah-text-light);
	font-size: 1rem;
	font-style: italic;
}

.booyah-testimonials-carousel-container .testimonial-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
	margin-top: 40px;
	padding: 0 20px;
}

.booyah-testimonials-carousel-container .testimonial-nav button {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border: none;
	background: var(--booyah-primary-green);
	color: var(--booyah-text-dark);
	font-size: 1.4rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.booyah-testimonials-carousel-container .testimonial-nav button:hover {
	background: var(--booyah-light-green);
	transform: scale(1.1);
}

.booyah-testimonials-carousel-container .testimonial-dots {
	display: flex;
	gap: 12px;
}

.booyah-testimonials-carousel-container .testimonial-dots .dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: rgba(45, 80, 22, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.booyah-testimonials-carousel-container .testimonial-dots .dot.active {
	background: var(--booyah-primary-green);
	transform: scale(1.3);
}

.booyah-testimonials-carousel-container .testimonial-dots .dot:hover {
	background: var(--booyah-light-green);
	transform: scale(1.2);
}

/* Strong Testimonials Plugin Integration */
.strong-testimonials-wrapper .strong-view {
	background: linear-gradient(
		135deg,
		var(--booyah-cream),
		var(--booyah-light-gold)
	);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.strong-testimonials-wrapper .wpmtst-testimonial {
	background: white;
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 20px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	border-left: 5px solid var(--booyah-gold);
}

.strong-testimonials-wrapper .testimonial-content {
	color: var(--booyah-text-dark);
	font-size: 1.1rem;
	line-height: 1.6;
	font-style: italic;
	margin-bottom: 20px;
}

.strong-testimonials-wrapper .testimonial-client {
	color: var(--booyah-primary-green);
	font-weight: 600;
}

/* Animations */
@keyframes fadeInTestimonial {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design for Testimonials */
@media (max-width: 992px) {
	.testimonials-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 25px;
	}

	.testimonial-card {
		padding: 25px;
	}

	.booyah-testimonials-carousel-container .testimonial-item {
		padding: 40px 30px;
	}

	.booyah-testimonials-carousel-container .testimonial-quote {
		font-size: 1.2rem;
		padding: 0 30px;
	}
}

@media (max-width: 768px) {
	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.testimonial-card {
		padding: 20px;
	}

	.booyah-testimonials-carousel-container .testimonial-item {
		padding: 30px 20px;
	}

	.booyah-testimonials-carousel-container .testimonial-quote {
		font-size: 1.1rem;
		padding: 0 20px;
	}

	.booyah-testimonials-carousel-container .quote-mark {
		font-size: 2.5rem;
	}

	.booyah-testimonials-carousel-container .quote-mark:first-child {
		top: -10px;
		left: 5px;
	}

	.booyah-testimonials-carousel-container .quote-mark:last-child {
		bottom: -30px;
		right: 5px;
	}

	.booyah-testimonials-carousel-container .testimonial-nav {
		gap: 15px;
		margin-top: 30px;
	}

	.booyah-testimonials-carousel-container .testimonial-nav button {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}
}

@media (max-width: 576px) {
	.testimonial-content .testimonial-quote::before {
		font-size: 3rem;
		top: -15px;
		left: -10px;
	}

	.testimonial-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.booyah-testimonials-carousel-container .testimonial-quote {
		font-size: 1rem;
	}

	.booyah-testimonials-carousel-container .testimonial-author strong {
		font-size: 1.1rem;
	}
}

/* Print Styles */
@media print {
	.no-print {
		display: none;
	}
	.top-bar,
	.floating-cta,
	.footer-section {
		display: none;
	}
	.blog-filters,
	.featured-badge,
	.read-more-btn,
	.read-more-link {
		display: none;
	}
	body {
		font-size: 12pt;
		line-height: 1.4;
		color: #000;
	}
	h1,
	h2,
	h3 {
		page-break-after: avoid;
	}
	.blog-post-card,
	.featured-post-card {
		break-inside: avoid;
	}
}

/* Dark Mode Support (Future Enhancement) */
@media (prefers-color-scheme: dark) {
	.book-card,
	.testimonials-carousel,
	.blog-post-card,
	.booyah-newsletter-signup {
		background: #2a2a2a;
		color: var(--booyah-text-dark);
	}

	.books-filter-bar {
		background: #1a1a1a;
	}

	.testimonial-quote,
	.newsletter-content p,
	.blog-post-card p {
		color: var(--booyah-text-dark);
	}
}

/* ===== INSTAGRAM FEED INTEGRATION & SOCIAL MEDIA STYLING ===== */

/* Enhanced Instagram Section for Homepage */
.booyah-instagram-section {
	background: white;
	padding: 60px 40px;
	border-radius: 25px;
	margin-top: 60px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.instagram-header {
	margin-bottom: 50px;
}

.instagram-title {
	font-family: var(--booyah-font-display);
	font-size: 2.5rem;
	color: var(--booyah-primary-green);
	margin-bottom: 15px;
}

.instagram-subtitle {
	font-size: 1.2rem;
	color: var(--booyah-text-light);
	margin-bottom: 25px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.instagram-handle {
	margin-bottom: 30px;
}

.instagram-handle-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #e1306c, #f56040, #f77737);
	color: var(--booyah-text-dark);
	padding: 12px 25px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(225, 48, 108, 0.3);
}

.instagram-handle-link:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
	color: var(--booyah-text-dark);
}

.instagram-icon {
	font-size: 1.3rem;
}

/* Instagram Feed Container */
.instagram-feed-container {
	margin: 40px 0;
	overflow: hidden;
}

/* Override Instagram Feed Plugin Styles */
#sb_instagram {
	background: transparent;
	border: none;
	border-radius: 20px;
	padding: 20px;
}

#sb_instagram .sbi_photo {
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#sb_instagram .sbi_photo:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#sb_instagram .sbi_photo img {
	transition: all 0.3s ease;
}

#sb_instagram .sbi_photo:hover img {
	filter: brightness(1.1);
}

/* Instagram Follow Button Styling */
#sb_instagram .sbi_follow_btn {
	background: var(--booyah-primary-green);
	color: var(--booyah-text-dark);
	border: none;
	padding: 12px 25px;
	border-radius: 25px;
	font-weight: 600;
	transition: all 0.3s ease;
	margin: 20px auto;
	display: block;
}

#sb_instagram .sbi_follow_btn:hover {
	background: var(--booyah-light-green);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
}

/* Instagram CTA Section */
.instagram-cta {
	margin-top: 40px;
	padding: 30px;
	background: linear-gradient(
		135deg,
		var(--booyah-cream),
		var(--booyah-light-gold)
	);
	border-radius: 20px;
}

.instagram-cta p {
	font-size: 1.1rem;
	color: var(--booyah-primary-green);
	margin-bottom: 20px;
	font-weight: 500;
}

.hashtag-buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.hashtag-btn {
	background: var(--booyah-primary-green);
	color: var(--booyah-text-dark);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 2px solid transparent;
}

.hashtag-btn:hover {
	background: var(--booyah-light-green);
	transform: translateY(-2px);
}

/* About Page Instagram Integration */
.about-instagram-section {
	background: white;
	padding: 40px;
	border-radius: 20px;
	margin-bottom: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.instagram-showcase {
	background: var(--booyah-soft-gray);
	padding: 30px;
	border-radius: 15px;
	margin: 20px 0;
}

.instagram-handle-large {
	margin: 30px 0;
}

.instagram-handle-link-large {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #e1306c, #f56040);
	color: var(--booyah-text-dark);
	padding: 15px 30px;
	border-radius: 35px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(225, 48, 108, 0.3);
}

.instagram-handle-link-large:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
	color: var(--booyah-text-dark);
}

.follow-arrow {
	font-size: 1.1rem;
	transition: transform 0.3s ease;
}

.instagram-handle-link-large:hover .follow-arrow {
	transform: translateX(5px);
}

/* Social Platform Cards */
.social-platforms-grid h4 {
	color: var(--booyah-primary-green);
	margin-bottom: 25px;
	font-family: var(--booyah-font-accent);
}

.social-platform-card {
	background: var(--booyah-cream);
	padding: 25px 20px;
	border-radius: 15px;
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.social-platform-card:hover {
	transform: translateY(-5px);
	border-color: var(--booyah-gold);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.platform-icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.platform-name {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--booyah-primary-green);
	margin-bottom: 8px;
}

.platform-desc {
	font-size: 0.9rem;
	color: var(--booyah-text-light);
	margin-bottom: 15px;
	line-height: 1.4;
}

.platform-btn {
	display: inline-block;
	background: var(--booyah-primary-green);
	color: var(--booyah-text-dark);
	padding: 8px 16px;
	border-radius: 20px;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.platform-btn:hover {
	background: var(--booyah-light-green);
	transform: translateY(-2px);
	color: var(--booyah-text-dark);
}

/* Social Sharing Buttons for Blog/Book Pages */
.booyah-social-sharing {
	background: var(--booyah-cream);
	padding: 30px;
	border-radius: 15px;
	margin: 40px 0;
	text-align: center;
}

.social-sharing-title {
	font-size: 1.3rem;
	color: var(--booyah-primary-green);
	margin-bottom: 20px;
	font-weight: 600;
}

.social-sharing-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.social-share-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	color: white;
	border: none;
	cursor: pointer;
	min-width: 130px;
	justify-content: center;
}

.social-share-btn .share-icon {
	width: 18px;
	height: 18px;
	fill: currentColor;
	flex-shrink: 0;
}

.social-share-btn:hover {
	transform: translateY(-2px);
	color: white;
}

.share-facebook {
	background: #1877f2;
	box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.share-facebook:hover {
	background: #166fe5;
	box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.share-twitter {
	background: #1da1f2;
	box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.share-twitter:hover {
	background: #0d8bd9;
	box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
}

.share-pinterest {
	background: #e60023;
	box-shadow: 0 4px 15px rgba(230, 0, 35, 0.3);
}

.share-pinterest:hover {
	background: #c50020;
	box-shadow: 0 6px 20px rgba(230, 0, 35, 0.4);
}

.share-email {
	background: var(--booyah-primary-green);
	box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.share-email:hover {
	background: var(--booyah-light-green);
	box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

.share-copy {
	background: #6c757d;
	box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.share-copy:hover {
	background: #5a6268;
	box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

/* Footer Social Media Enhancement */
.footer-social-enhanced {
	margin-top: 30px;
}

.footer-social-title {
	color: var(--booyah-light-gold);
	margin-bottom: 20px;
	font-size: 1.2rem;
}

.footer-social-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.footer-social-item {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.1);
	padding: 15px;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.footer-social-item:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.footer-social-icon {
	font-size: 1.5rem;
}

.footer-social-info h5 {
	color: var(--booyah-text-dark);
	margin: 0 0 5px 0;
	font-size: 1rem;
}

.footer-social-info span {
	color: var(--booyah-cream);
	font-size: 0.85rem;
	opacity: 0.8;
}

/* Responsive Design for Instagram Integration */
@media (max-width: 992px) {
	.booyah-instagram-section {
		padding: 40px 30px;
		margin-top: 40px;
	}

	.instagram-title {
		font-size: 2.2rem;
	}

	.about-instagram-section {
		padding: 30px 20px;
	}

	.social-platforms-grid > div {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}
}

@media (max-width: 768px) {
	.booyah-instagram-section {
		padding: 30px 20px;
		margin-top: 30px;
	}

	.instagram-title {
		font-size: 1.8rem;
	}

	.instagram-subtitle {
		font-size: 1rem;
	}

	.hashtag-buttons {
		justify-content: center;
	}

	.hashtag-btn {
		margin-bottom: 8px;
	}

	.social-sharing-buttons {
		flex-direction: column;
		align-items: center;
	}

	.social-share-btn {
		width: 200px;
		justify-content: center;
	}

	.social-platforms-grid > div {
		grid-template-columns: 1fr;
	}

	.instagram-handle-link,
	.instagram-handle-link-large {
		padding: 10px 20px;
		font-size: 1rem;
	}

	.footer-social-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	.instagram-cta {
		padding: 20px 15px;
	}

	.instagram-cta p {
		font-size: 1rem;
	}

	.hashtag-btn {
		padding: 6px 12px;
		font-size: 0.8rem;
	}

	.about-instagram-section {
		padding: 20px 15px;
	}

	.instagram-showcase {
		padding: 20px 15px;
	}

	.social-platform-card {
		padding: 20px 15px;
	}

	.platform-icon {
		font-size: 2rem;
	}
}

/* Instagram Feed Plugin Mobile Overrides */
@media (max-width: 768px) {
	#sb_instagram .sbi_photo {
		margin: 5px;
	}

	#sb_instagram {
		padding: 15px;
	}
}

/* Dark Mode Support for Instagram Integration */
@media (prefers-color-scheme: dark) {
	.booyah-instagram-section,
	.about-instagram-section {
		background: #2a2a2a;
		color: var(--booyah-text-light);
	}

	.instagram-title {
		color: var(--booyah-light-green);
	}

	.social-platform-card {
		background: #333;
		color: var(--booyah-text-dark);
	}

	.platform-name {
		color: var(--booyah-light-green);
	}
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
	.instagram-handle-link,
	.instagram-handle-link-large {
		border: 2px solid white;
	}

	.hashtag-btn,
	.social-share-btn {
		border: 2px solid white;
	}

	.social-platform-card {
		border: 2px solid var(--booyah-primary-green);
	}
}

/* Print Styles - Hide Social Media Elements */
@media print {
	.booyah-instagram-section,
	.about-instagram-section,
	.booyah-social-sharing,
	.social-platforms-grid,
	.instagram-cta,
	#sb_instagram {
		display: none;
	}
}

/* ===== PRESS KIT & MEDIA RESOURCES PAGE STYLING ===== */

/* Press Kit Assets Grid */
.press-kit-assets-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.asset-category-card {
	background: white;
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 3px solid transparent;
}

.asset-category-card:hover {
	transform: translateY(-10px);
	border-color: var(--booyah-light-gold);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.asset-icon {
	font-size: 3.5rem;
	margin-bottom: 20px;
	color: var(--booyah-gold);
}

.asset-category-card h3 {
	font-size: 1.4rem;
	margin-bottom: 15px;
	color: var(--booyah-primary-green);
	font-family: var(--booyah-font-primary);
}

.asset-category-card p {
	color: var(--booyah-text-light);
	margin-bottom: 25px;
	line-height: 1.6;
}

.asset-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.asset-download-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--booyah-cream);
	color: var(--booyah-primary-green);
	padding: 12px 18px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.asset-download-btn:hover {
	background: var(--booyah-primary-green);
	color: var(--booyah-text-dark);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
}

.asset-download-btn span {
	font-size: 1rem;
}

/* Media Mentions Grid */
.media-mentions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	margin-top: 40px;
}

.media-mention-card {
	background: white;
	border-radius: 15px;
	padding: 30px 25px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border-left: 5px solid var(--booyah-gold);
}

.media-mention-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mention-logo {
	font-size: 2.5rem;
	margin-bottom: 15px;
	color: var(--booyah-gold);
}

.media-mention-card h4 {
	font-size: 1.2rem;
	color: var(--booyah-primary-green);
	margin-bottom: 10px;
	font-weight: 600;
}

.media-mention-card p {
	color: var(--booyah-text-dark);
	font-style: italic;
	margin-bottom: 15px;
	line-height: 1.5;
}

.mention-date {
	color: var(--booyah-text-light);
	font-size: 0.9rem;
	font-weight: 500;
}

/* Press Contact Form Styling */
.press-contact-form input,
.press-contact-form select,
.press-contact-form textarea {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 16px;
	font-family: var(--booyah-font-body);
	color: var(--booyah-text-dark);
	background: white;
	transition: border-color 0.3s ease;
	box-sizing: border-box;
}

.press-contact-form input:focus,
.press-contact-form select:focus,
.press-contact-form textarea:focus {
	outline: none;
	border-color: var(--booyah-primary-green);
	box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.press-contact-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--booyah-primary-green);
	font-size: 0.95rem;
}

.press-contact-form textarea {
	resize: vertical;
	min-height: 120px;
}

.press-contact-form textarea::placeholder {
	color: #999;
	font-style: italic;
}

/* Press Kit Responsive Design */
@media (max-width: 992px) {
	.press-kit-assets-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 25px;
	}

	.asset-category-card {
		padding: 30px 25px;
	}

	.asset-icon {
		font-size: 3rem;
	}

	.media-mentions-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.press-kit-assets-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.asset-category-card {
		padding: 25px 20px;
	}

	.asset-category-card h3 {
		font-size: 1.3rem;
	}

	.asset-download-btn {
		padding: 10px 15px;
		font-size: 0.85rem;
	}

	.media-mentions-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.media-mention-card {
		padding: 25px 20px;
	}

	.mention-logo {
		font-size: 2rem;
	}

	/* Form adjustments for mobile */
	.press-contact-form > div[style*='grid-template-columns'] {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.press-contact-form {
		padding: 30px 20px;
	}
}

@media (max-width: 576px) {
	.asset-category-card {
		padding: 20px 15px;
	}

	.asset-icon {
		font-size: 2.5rem;
		margin-bottom: 15px;
	}

	.asset-category-card h3 {
		font-size: 1.2rem;
		margin-bottom: 12px;
	}

	.asset-download-btn {
		padding: 8px 12px;
		font-size: 0.8rem;
		gap: 6px;
	}

	.media-mention-card {
		padding: 20px 15px;
	}

	.media-mention-card h4 {
		font-size: 1.1rem;
	}

	.mention-logo {
		font-size: 1.8rem;
		margin-bottom: 12px;
	}

	.press-contact-form {
		padding: 25px 15px;
	}

	.press-contact-form input,
	.press-contact-form select,
	.press-contact-form textarea {
		padding: 10px 12px;
		font-size: 14px;
	}
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
	.asset-category-card,
	.media-mention-card {
		border: 2px solid var(--booyah-primary-green);
	}

	.asset-download-btn {
		border-width: 2px;
		border-color: var(--booyah-primary-green);
	}

	.press-contact-form input,
	.press-contact-form select,
	.press-contact-form textarea {
		border-width: 3px;
	}
}

/* Print Styles for Press Kit */
@media print {
	.press-kit-assets-grid,
	.press-contact-form,
	.booyah-btn {
		display: none;
	}

	.media-mentions-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.media-mention-card {
		break-inside: avoid;
		box-shadow: none;
		border: 1px solid #ccc;
	}

	.asset-category-card {
		break-inside: avoid;
		margin-bottom: 20px;
	}
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
	.asset-category-card,
	.media-mention-card {
		background: #2a2a2a;
		color: var(--booyah-text-dark);
	}

	.asset-category-card h3,
	.media-mention-card h4 {
		color: var(--booyah-light-green);
	}

	.asset-category-card p,
	.media-mention-card p {
		color: #e0e0e0;
	}

	.press-contact-form {
		background: #2a2a2a;
		color: var(--booyah-text-dark);
	}

	.press-contact-form input,
	.press-contact-form select,
	.press-contact-form textarea {
		background: #333;
		color: var(--booyah-text-dark);
		border-color: #555;
	}

	.press-contact-form label {
		color: var(--booyah-light-green);
	}
}

/* =========================
   ENHANCED ABOUT PAGE STYLES
   ========================= */

/* Founder Profile Sections */
.founder-profile-section {
	padding: 60px 0;
}

.founder-profile-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.founder-profile-grid.reverse {
	grid-template-columns: 2fr 1fr;
}

.founder-image-wrapper {
	position: relative;
	text-align: center;
}

.founder-photo {
	width: 100%;
	max-width: 300px;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(45, 80, 22, 0.15);
	transition: transform 0.3s ease;
	border: 4px solid var(--booyah-light-gold);
}

.founder-photo:hover {
	transform: scale(1.05);
}

.founder-quote-bubble {
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--booyah-primary-green);
	color: var(--booyah-text-light);
	padding: 0.8rem 1.2rem;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 500;
	white-space: nowrap;
	box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
	font-style: italic;
}

.founder-quote-bubble::before {
	content: '';
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid var(--booyah-primary-green);
}

.founder-content {
	padding: 2rem 0;
}

.founder-name {
	font-size: 2.5rem;
	color: var(--booyah-primary-green);
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.founder-title {
	font-size: 1.4rem;
	color: var(--booyah-light-green);
	margin-bottom: 2rem;
	font-weight: 500;
}

.founder-bio p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: var(--booyah-primary-green);
}

.founder-mission {
	background: linear-gradient(
		135deg,
		var(--booyah-cream),
		var(--booyah-light-gold)
	);
	padding: 1.5rem;
	border-radius: 15px;
	border-left: 4px solid var(--booyah-gold);
	font-weight: 500;
}

/* Union Section */
.union-section {
	background: linear-gradient(
		135deg,
		var(--booyah-cream) 0%,
		var(--booyah-light-gold) 100%
	);
	position: relative;
	overflow: hidden;
}

.union-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 200%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.1"/></svg>')
		repeat;
	animation: float 30s infinite linear;
	pointer-events: none;
}

.union-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	background: rgba(255, 255, 255, 0.9);
	padding: 3rem 2rem;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(45, 80, 22, 0.1);
}

.union-icon {
	font-size: 4rem;
	margin-bottom: 1.5rem;
}

.union-content h3 {
	font-size: 2.5rem;
	color: var(--booyah-primary-green);
	margin-bottom: 1.5rem;
}

.union-content .lead {
	font-size: 1.3rem;
	line-height: 1.6;
	color: var(--booyah-primary-green);
	margin-bottom: 2rem;
}

.union-values {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.union-value {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: white;
	padding: 1rem 1.5rem;
	border-radius: 25px;
	box-shadow: 0 4px 15px rgba(45, 80, 22, 0.08);
	font-weight: 500;
	color: var(--booyah-primary-green);
}

.union-value .value-icon {
	font-size: 1.5rem;
}

/* Core Values Grid */
.core-values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.value-card {
	background: white;
	padding: 2.5rem 2rem;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
	transition: all 0.3s ease;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.value-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--booyah-primary-green),
		var(--booyah-gold)
	);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.value-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(45, 80, 22, 0.15);
	border-color: var(--booyah-light-gold);
}

.value-card:hover::before {
	transform: scaleX(1);
}

.value-icon {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	display: block;
}

.value-card h3 {
	font-size: 1.5rem;
	color: var(--booyah-primary-green);
	margin-bottom: 1rem;
	font-weight: 600;
}

.value-card p {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--booyah-primary-green);
	opacity: 0.9;
}

.lilly-intro {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	margin: 2rem 0;
	flex-wrap: wrap;
}

.lilly-mascot-image {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 4px solid var(--booyah-gold);
	object-fit: cover;
}

.lilly-welcome {
	background: white;
	padding: 1.5rem 2rem;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(45, 80, 22, 0.1);
	font-size: 1.2rem;
	color: var(--booyah-primary-green);
	font-style: italic;
	position: relative;
	max-width: 400px;
}

.lilly-welcome::before {
	content: '';
	position: absolute;
	left: -10px;
	top: 50%;
	transform: translateY(-50%);
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 10px solid white;
}

.favorites-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin: 3rem 0;
}

.favorite-item {
	background: white;
	padding: 2rem 1.5rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 8px 25px rgba(45, 80, 22, 0.08);
	transition: all 0.3s ease;
	border: 2px solid var(--booyah-light-gold);
	cursor: pointer;
}

.favorite-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(45, 80, 22, 0.12);
	border-color: var(--booyah-gold);
}

.favorite-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.favorite-item h4 {
	font-size: 1.2rem;
	color: var(--booyah-primary-green);
	margin-bottom: 0.8rem;
	font-weight: 600;
}

.favorite-item p {
	font-size: 0.95rem;
	color: var(--booyah-light-green);
	line-height: 1.5;
	margin: 0;
}

.lilly-message {
	text-align: center;
	margin-top: 3rem;
	padding: 2rem;
	background: white;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(45, 80, 22, 0.1);
	position: relative;
}

.lilly-quote {
	font-size: 1.4rem;
	line-height: 1.6;
	color: var(--booyah-primary-green);
	font-style: italic;
	position: relative;
	margin: 0;
}

.lilly-quote::before,
.lilly-quote::after {
	content: '"';
	font-size: 3rem;
	color: var(--booyah-gold);
	position: absolute;
	font-family: serif;
}

.lilly-quote::before {
	top: -10px;
	left: -20px;
}

.lilly-quote::after {
	bottom: -40px;
	right: -20px;
}

.lilly-quote cite {
	display: block;
	margin-top: 1.5rem;
	font-size: 1.2rem;
	color: var(--booyah-light-green);
	font-style: normal;
	font-weight: 600;
}

/* Animation on Scroll */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.animate-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes float {
	0% {
		transform: translateX(-50px) translateY(-50px) rotate(0deg);
	}
	100% {
		transform: translateX(50px) translateY(50px) rotate(360deg);
	}
}

/* Responsive Design */
@media (max-width: 992px) {
	.founder-profile-grid,
	.founder-profile-grid.reverse {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.founder-profile-grid.reverse .founder-content {
		order: 2;
	}

	.founder-profile-grid.reverse .founder-image-wrapper {
		order: 1;
	}

	.union-values {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 768px) {
	.founder-profile-section {
		padding: 40px 0;
	}

	.founder-name {
		font-size: 2rem;
	}

	.founder-title {
		font-size: 1.2rem;
	}

	.founder-content {
		padding: 1rem 0;
	}

	.founder-bio p {
		font-size: 1rem;
	}

	.union-content {
		padding: 2rem 1rem;
	}

	.union-content h3 {
		font-size: 2rem;
	}

	.union-content .lead {
		font-size: 1.1rem;
	}

	.core-values-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.value-card {
		padding: 2rem 1.5rem;
	}

	.favorites-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 1rem;
	}

	.lilly-intro {
		flex-direction: column;
		text-align: center;
	}

	.lilly-welcome::before {
		display: none;
	}

	.lilly-quote {
		font-size: 1.2rem;
	}

	.lilly-quote::before,
	.lilly-quote::after {
		font-size: 2rem;
	}
}

@media (max-width: 576px) {
	.founder-quote-bubble {
		position: static;
		transform: none;
		margin-top: 1rem;
		display: inline-block;
	}

	.founder-quote-bubble::before {
		display: none;
	}

	.value-card,
	.favorite-item {
		padding: 1.5rem 1rem;
	}

	.lilly-message {
		padding: 1.5rem 1rem;
	}

	.union-values {
		gap: 1rem;
	}

	.union-value {
		padding: 0.8rem 1rem;
		font-size: 0.9rem;
	}
}
/* ================================
   CRITICAL TEXT VISIBILITY FIXES
   ================================ */

/* Ensure all text is dark by default on light backgrounds */
body,
body p,
body span,
body div,
body li,
body td,
body th,
.entry-content,
.entry-content *,
.page-content,
.page-content *,
.site-content,
.site-content * {
	color: var(--booyah-text-dark);
}

/* Keep headings in brand color */
h1,
h2,
h3,
h4,
h5,
h6,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	color: var(--booyah-primary-green);
}

/* Preserve button colors */
.booyah-btn-primary,
.booyah-btn-primary *,
.booyah-floating-btn,
.booyah-floating-btn *,
.wp-block-button__link,
.wp-block-button__link *,
button[type='submit'],
button[type='submit'] *,
.btn-primary,
.btn-primary * {
	color: var(--booyah-text-dark);
}

/* Fix link colors */
a:not(.booyah-btn):not(.wp-block-button__link):not(.btn) {
	color: var(--booyah-gold);
}

a:not(.booyah-btn):not(.wp-block-button__link):not(.btn):hover {
	color: var(--booyah-light-gold);
}

/* Contact info in footer */
.contact-info {
	margin-top: 1.5rem;
}

.contact-info p {
	margin: 0;
	color: var(--booyah-cream);
	opacity: 0.9;
}

.contact-info a {
	color: var(--booyah-warm-white);
	text-decoration: none;
	font-weight: 500;
}

.contact-info a:hover {
	color: var(--booyah-gold);
	text-decoration: underline;
}

/* ===== BOOKS PAGE STYLING ===== */

/* Books Grid */
.books-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
	padding: 0 0.5rem;
}

/* Book Card Styling */
.book-card {
	background: var(--booyah-warm-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(45, 80, 22, 0.08);
	transition: all 0.3s ease;
	border: 1px solid rgba(45, 80, 22, 0.05);
	display: flex;
	flex-direction: column;
	height: auto;
	max-width: 350px;
	margin: 0 auto;
	width: 100%;
}

.book-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(45, 80, 22, 0.12);
	border-color: var(--booyah-accent-green);
}

/* Book Cover */
.book-card .book-cover {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--booyah-cream) 0%, #fff 100%);
	padding: 1.5rem 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 3/4;
	max-height: 300px;
}

.book-card .book-cover img {
	object-fit: contain;
	border-radius: 6px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.book-card:hover .book-cover img {
	transform: scale(1.02);
}

/* Book Content */
.book-card .book-content {
	padding: 1.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

/* Book Meta (Age & Price) */
.book-meta {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.book-age,
.book-price {
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.35rem 0.7rem;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.book-age {
	background: linear-gradient(135deg, var(--booyah-gold), #f39c12);
	color: white;
}

.book-price {
	background: linear-gradient(
		135deg,
		var(--booyah-primary-green),
		var(--booyah-light-green)
	);
	color: white;
}

/* Book Title */
.book-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--booyah-primary-green);
	margin-bottom: 0.75rem;
	line-height: 1.3;
	font-family: var(--booyah-font-display);
}

/* Book Themes */
.book-themes {
	margin-bottom: 1rem;
}

.book-theme-tag {
	display: inline-block;
	background: var(--booyah-accent-green);
	color: white;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.3rem 0.8rem;
	border-radius: 15px;
	margin-right: 0.5rem;
	margin-bottom: 0.3rem;
	text-transform: capitalize;
}

/* Book Excerpt */
.book-excerpt {
	color: var(--booyah-text-light);
	line-height: 1.5;
	margin-bottom: 0.75rem;
	flex: 1;
	font-size: 0.9rem;
}

.book-excerpt p {
	margin: 0;
}

/* Book Testimonial */
.book-testimonial {
	background: var(--booyah-cream);
	padding: 0.85rem;
	border-radius: 8px;
	margin-bottom: 1rem;
	border-left: 3px solid var(--booyah-gold);
}

.book-testimonial p {
	margin: 0;
	font-style: italic;
	color: var(--booyah-text-dark);
	font-size: 0.85rem;
	line-height: 1.4;
}

/* Book Actions */
.book-actions {
	margin-top: auto;
	padding-top: 1rem;
}

.purchase-btn {
	display: inline-block;
	background: linear-gradient(
		135deg,
		var(--booyah-primary-green),
		var(--booyah-light-green)
	);
	color: white;
	text-decoration: none;
	padding: 0.75rem 1.25rem;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.85rem;
	text-align: center;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 3px 10px rgba(45, 80, 22, 0.2);
	width: 100%;
}

.purchase-btn:hover {
	background: linear-gradient(
		135deg,
		var(--booyah-light-green),
		var(--booyah-accent-green)
	);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
	color: white;
	text-decoration: none;
}

.coming-soon {
	display: inline-block;
	background: var(--booyah-text-light);
	color: white;
	padding: 0.75rem 1.25rem;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.85rem;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	opacity: 0.7;
	width: 100%;
}

/* No Books Message */
.no-books {
	text-align: center;
	padding: 3rem 2rem;
	color: var(--booyah-text-light);
	font-size: 1.1rem;
}

/* Responsive Design for Book Cards */
@media (max-width: 992px) {
	.books-grid {
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
		gap: 1.25rem;
	}
}

@media (max-width: 768px) {
	.books-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 1rem;
		padding: 0;
	}

	.book-card {
		max-width: 320px;
	}

	.book-card .book-content {
		padding: 1rem;
		gap: 0.5rem;
	}

	.book-card .book-cover {
		max-height: 280px;
		padding: 1rem 0.75rem;
		aspect-ratio: 3/4;
	}

	.book-card .book-cover img {
		max-height: 240px;
	}

	.book-title {
		font-size: 1.05rem;
		margin-bottom: 0.5rem;
	}

	.book-excerpt {
		font-size: 0.85rem;
		line-height: 1.4;
		margin-bottom: 0.5rem;
	}

	.book-testimonial {
		padding: 0.75rem;
		margin-bottom: 0.75rem;
	}

	.book-testimonial p {
		font-size: 0.8rem;
	}

	.purchase-btn,
	.coming-soon {
		padding: 0.65rem 1rem;
		font-size: 0.8rem;
	}
}

@media (max-width: 576px) {
	.books-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75rem;
	}

	.book-card {
		max-width: none;
		border-radius: 10px;
	}

	.book-card .book-cover {
		max-height: 220px;
		padding: 0.75rem 0.5rem;
		aspect-ratio: 3/4;
	}

	.book-card .book-cover img {
		max-height: 200px;
		border-radius: 4px;
	}

	.book-card .book-content {
		padding: 0.75rem;
	}

	.book-title {
		font-size: 0.95rem;
		line-height: 1.2;
	}

	.book-meta {
		margin-bottom: 0.5rem;
		gap: 0.25rem;
	}

	.book-age,
	.book-price {
		font-size: 0.65rem;
		padding: 0.25rem 0.5rem;
	}

	.book-themes {
		margin-bottom: 0.5rem;
	}

	.book-theme-tag {
		font-size: 0.65rem;
		padding: 0.2rem 0.5rem;
		margin-right: 0.25rem;
		margin-bottom: 0.25rem;
	}

	.book-excerpt {
		font-size: 0.8rem;
		line-height: 1.3;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.book-testimonial {
		padding: 0.6rem;
		margin-bottom: 0.6rem;
	}

	.book-testimonial p {
		font-size: 0.75rem;
		line-height: 1.3;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.purchase-btn,
	.coming-soon {
		padding: 0.6rem 0.8rem;
		font-size: 0.75rem;
		border-radius: 20px;
	}
}

@media (max-width: 400px) {
	.books-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 0 0.5rem;
	}

	.book-card {
		max-width: 100%;
	}

	.book-card .book-cover {
		max-height: 280px;
		aspect-ratio: 3/4;
	}

	.book-card .book-cover img {
		max-height: 250px;
	}
}

/* ===== BOOKS PAGE LAYOUT FIXES ===== */

/* Override all previous book card styles for clean layout */
.books-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
	gap: 30px !important;
	margin-top: 40px !important;
	padding: 0 !important;
}

.books-grid .book-card {
	display: flex !important;
	flex-direction: column !important;
	background: white !important;
	border-radius: 20px !important;
	overflow: hidden !important;
	box-shadow: 0 8px 30px rgba(45, 80, 22, 0.1) !important;
	transition: all 0.3s ease !important;
	border: 1px solid rgba(45, 80, 22, 0.05) !important;
	height: auto !important;
	min-height: 480px !important;
	max-width: none !important;
	margin: 0 !important;
	width: 100% !important;
}

.books-grid .book-card:hover {
	transform: translateY(-8px) !important;
	box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15) !important;
}

.books-grid .book-card .book-cover {
	flex: 0 0 auto !important;
	padding: 20px 20px 0 20px !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	height: 280px !important;
	overflow: hidden !important;
}

.books-grid .book-card .book-cover img {
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: cover !important;
	border-radius: 12px !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.books-grid .book-card .book-content {
	flex: 1 !important;
	padding: 20px !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 12px !important;
}

.books-grid .book-card .book-meta {
	display: flex !important;
	gap: 8px !important;
	flex-wrap: wrap !important;
	margin-bottom: 8px !important;
}

.books-grid .book-card .book-meta span {
	padding: 4px 12px !important;
	border-radius: 15px !important;
	font-size: 0.75rem !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
}

.books-grid .book-card .book-age {
	background: var(--booyah-gold) !important;
	color: white !important;
}

.books-grid .book-card .book-price {
	background: var(--booyah-primary-green) !important;
	color: white !important;
}

.books-grid .book-card .book-title {
	font-size: 1.2rem !important;
	font-weight: 700 !important;
	color: var(--booyah-primary-green) !important;
	margin: 0 !important;
	line-height: 1.3 !important;
	font-family: var(--booyah-font-display) !important;
}

.books-grid .book-card .book-themes {
	display: flex !important;
	gap: 6px !important;
	flex-wrap: wrap !important;
	margin-bottom: 10px !important;
}

.books-grid .book-card .book-theme-tag {
	background: var(--booyah-light-green) !important;
	color: white !important;
	padding: 3px 10px !important;
	border-radius: 12px !important;
	font-size: 0.7rem !important;
	font-weight: 500 !important;
}

.books-grid .book-card .book-excerpt {
	flex: 1 !important;
	font-size: 0.9rem !important;
	color: var(--booyah-text-light) !important;
	line-height: 1.5 !important;
	margin-bottom: 10px !important;
}

.books-grid .book-card .book-testimonial {
	margin-bottom: 15px !important;
	font-style: italic !important;
	color: var(--booyah-text-light) !important;
	font-size: 0.85rem !important;
	line-height: 1.4 !important;
	border-left: 3px solid var(--booyah-gold) !important;
	padding-left: 12px !important;
}

.books-grid .book-card .book-actions {
	margin-top: auto !important;
	display: flex !important;
	gap: 10px !important;
	flex-wrap: wrap !important;
}

.books-grid .book-card .purchase-btn,
.books-grid .book-card .coming-soon {
	padding: 10px 20px !important;
	border-radius: 25px !important;
	font-weight: 600 !important;
	font-size: 0.85rem !important;
	text-decoration: none !important;
	transition: all 0.3s ease !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
}

.books-grid .book-card .purchase-btn {
	background: var(--booyah-primary-green) !important;
	color: white !important;
	border: none !important;
}

.books-grid .book-card .purchase-btn:hover {
	background: var(--booyah-light-green) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3) !important;
}

.books-grid .book-card .coming-soon {
	background: var(--booyah-light-gold) !important;
	color: var(--booyah-primary-green) !important;
	cursor: default !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.books-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
		gap: 20px !important;
	}

	.books-grid .book-card {
		min-height: 450px !important;
	}

	.books-grid .book-card .book-cover {
		height: 240px !important;
		padding: 15px 15px 0 15px !important;
	}

	.books-grid .book-card .book-content {
		padding: 15px !important;
	}
}

@media (max-width: 576px) {
	.books-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 15px !important;
	}

	.books-grid .book-card {
		min-height: 400px !important;
	}

	.books-grid .book-card .book-cover {
		height: 200px !important;
		padding: 10px 10px 0 10px !important;
	}

	.books-grid .book-card .book-content {
		padding: 12px !important;
		gap: 8px !important;
	}

	.books-grid .book-card .book-title {
		font-size: 1rem !important;
	}
}

@media (max-width: 400px) {
	.books-grid {
		grid-template-columns: 1fr !important;
		gap: 20px !important;
	}
}

/* ===== BLOG PAGE STYLING ===== */

/* Blog Filter Buttons */
.blog-filters {
	text-align: center;
	margin-bottom: 40px;
}

.filter-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
}

/* Blog Posts Grid */
.blog-posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

/* Blog Post Cards */
.blog-post-card {
	background: var(--booyah-warm-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
	transition: all 0.3s ease;
	border: 1px solid rgba(45, 80, 22, 0.05);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.blog-post-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 35px rgba(45, 80, 22, 0.15);
	border-color: var(--booyah-accent-green);
}

.blog-post-card .post-thumbnail {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/9;
}

.blog-post-card .post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-post-card:hover .post-thumbnail img {
	transform: scale(1.05);
}

.blog-post-card .post-content {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-post-card .post-meta {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	font-size: 0.85rem;
	color: var(--booyah-text-light);
}

.blog-post-card .post-date {
	color: var(--booyah-gold);
	font-weight: 600;
}

.blog-post-card .post-categories a {
	color: var(--booyah-primary-green);
	text-decoration: none;
	font-weight: 500;
}

.blog-post-card .post-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--booyah-primary-green);
	margin-bottom: 1rem;
	line-height: 1.3;
	font-family: var(--booyah-font-display);
}

.blog-post-card .post-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.blog-post-card .post-title a:hover {
	color: var(--booyah-light-green);
}

.blog-post-card .post-excerpt {
	color: var(--booyah-text-dark);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex: 1;
}

.blog-post-card .post-excerpt p {
	margin: 0;
}

/* Featured Badge */
.featured-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: var(--booyah-gold);
	color: var(--booyah-primary-green);
	padding: 5px 12px;
	border-radius: 15px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Blog Pagination */
.blog-pagination {
	margin-top: 3rem;
	text-align: center;
}

.blog-pagination .page-numbers {
	display: inline-block;
	margin: 0 5px;
	padding: 10px 15px;
	background: var(--booyah-cream);
	color: var(--booyah-primary-green);
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
	background: var(--booyah-primary-green);
	color: white;
	transform: translateY(-2px);
}

.blog-pagination .prev,
.blog-pagination .next {
	font-weight: 600;
}

/* No Posts Message */
.no-posts-message {
	text-align: center;
	padding: 3rem 2rem;
	color: var(--booyah-text-light);
	font-size: 1.1rem;
}

.no-posts-message h3 {
	color: var(--booyah-primary-green);
	font-size: 2rem;
	margin-bottom: 1rem;
}

/* Responsive Design for Blog */
@media (max-width: 992px) {
	.blog-posts-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.blog-posts-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.blog-post-card .post-content {
		padding: 1.25rem;
	}

	.blog-post-card .post-title {
		font-size: 1.15rem;
	}

	.filter-tabs {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
}

@media (max-width: 576px) {
	.blog-posts-grid {
		gap: 1rem;
	}

	.blog-post-card .post-content {
		padding: 1rem;
	}

	.blog-post-card .post-title {
		font-size: 1.1rem;
	}
}

/* ===== BLOG IMAGE VISIBILITY FIX ===== */
.blog-post-card .post-thumbnail {
	display: block !important;
	position: relative;
	overflow: hidden;
	background: #f8f9fa;
	min-height: 280px;
	width: 100%;
}

.blog-post-card .post-thumbnail a {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	line-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
}

.blog-post-card .post-thumbnail img {
	width: 100% !important;
	height: 280px !important;
	object-fit: cover !important;
	object-position: top !important;
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.booyah-card .post-thumbnail {
	display: block !important;
	position: relative;
	overflow: hidden;
	background: #f8f9fa;
	min-height: 320px;
	width: 100%;
}

.booyah-card .post-thumbnail a {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	line-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
}

.booyah-card .post-thumbnail img {
	width: 100% !important;
	height: 320px !important;
	object-fit: cover !important;
	object-position: top !important;
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
}

/* ===== MOBILE RESPONSIVE IMAGE FIXES ===== */
@media (max-width: 768px) {
	.blog-post-card .post-thumbnail {
		min-height: 350px !important;
		height: 350px !important;
	}

	.blog-post-card .post-thumbnail a {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		width: 100% !important;
		height: 350px !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.blog-post-card .post-thumbnail img {
		height: 350px !important;
	}

	.booyah-card .post-thumbnail {
		min-height: 400px !important;
		height: 400px !important;
	}

	.booyah-card .post-thumbnail a {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		width: 100% !important;
		height: 400px !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.booyah-card .post-thumbnail img {
		height: 400px !important;
	}
}

@media (max-width: 480px) {
	.blog-post-card .post-thumbnail {
		min-height: 320px !important;
		height: 320px !important;
	}

	.blog-post-card .post-thumbnail a {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		width: 100% !important;
		height: 320px !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.blog-post-card .post-thumbnail img {
		height: 320px !important;
	}

	.booyah-card .post-thumbnail {
		min-height: 380px !important;
		height: 380px !important;
	}

	.booyah-card .post-thumbnail a {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		width: 100% !important;
		height: 380px !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.booyah-card .post-thumbnail img {
		height: 380px !important;
	}
}
