/**
 * Cheetah Chews - Custom Styles
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
	--cc-gold: #DAA520;
	--cc-yellow: #F4C430;
	--cc-red: #A31621;
	--cc-dark: #1a1a1a;
	--cc-light: #f8f8f8;
	--cc-white: #ffffff;
}

/* ============================================
   Global Styles
   ============================================ */
body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: var(--cc-dark);
	line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	line-height: 1.2;
}

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 100;
}

.site-logo img {
	max-height: 60px;
	width: auto;
}

.nav-menu {
	display: flex;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu a {
	color: var(--cc-gold);
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	transition: color 0.2s ease;
}

.nav-menu a:hover {
	color: var(--cc-yellow);
}

.cart-icon {
	color: var(--cc-gold);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 80vh;
	overflow: hidden;
}

.hero-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 4rem;
	background-color: var(--cc-light);
}

.hero-headline {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 1.5rem;
	color: var(--cc-dark);
}

.hero-headline .accent {
	color: var(--cc-red);
}

.hero-subheadline {
	font-size: 1.125rem;
	color: #555;
	margin-bottom: 2rem;
	line-height: 1.7;
}

.hero-cta {
	display: inline-block;
	background-color: var(--cc-yellow);
	color: var(--cc-dark);
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.125rem;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	width: fit-content;
}

.hero-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(244, 196, 48, 0.4);
}

.hero-microcopy {
	font-size: 0.875rem;
	color: #777;
	margin-top: 0.75rem;
}

.hero-supporting {
	font-size: 1rem;
	color: #555;
	margin-top: 2rem;
	line-height: 1.7;
}

.hero-image {
	position: relative;
	overflow: hidden;
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* ============================================
   Buttons
   ============================================ */
.wp-block-button__link,
.button,
button[type="submit"] {
	background-color: var(--cc-yellow) !important;
	color: var(--cc-dark) !important;
	border-radius: 50px !important;
	padding: 0.875rem 1.75rem !important;
	font-weight: 600 !important;
	border: none !important;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wp-block-button__link:hover,
.button:hover,
button[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(244, 196, 48, 0.4);
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits-section {
	padding: 5rem 2rem;
	background-color: var(--cc-white);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.benefit-card {
	text-align: center;
	padding: 2rem;
}

.benefit-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.benefit-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.benefit-description {
	color: #666;
	line-height: 1.6;
}

/* ============================================
   Products Section
   ============================================ */
.products-section {
	padding: 5rem 2rem;
	background-color: var(--cc-light);
}

.products-section h2 {
	text-align: center;
	margin-bottom: 3rem;
}

/* WooCommerce Product Grid */
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.woocommerce ul.products li.product {
	background: var(--cc-white);
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce ul.products li.product:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.25rem;
}

.woocommerce ul.products li.product .price {
	color: var(--cc-dark);
	font-weight: 600;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
	padding: 5rem 2rem;
	background-color: var(--cc-white);
}

.testimonial-card {
	background: var(--cc-light);
	border-radius: 12px;
	padding: 2rem;
	max-width: 600px;
	margin: 0 auto;
}

.testimonial-text {
	font-size: 1.125rem;
	font-style: italic;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.testimonial-author {
	font-weight: 600;
	color: var(--cc-dark);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
	padding: 5rem 2rem;
	background-color: var(--cc-dark);
	color: var(--cc-white);
	text-align: center;
}

.cta-section h2 {
	color: var(--cc-white);
	margin-bottom: 1rem;
}

.cta-section p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2rem;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
	background-color: var(--cc-dark);
	color: var(--cc-white);
	padding: 3rem 2rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-section h4 {
	color: var(--cc-gold);
	margin-bottom: 1rem;
}

.footer-section a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

.footer-section a:hover {
	color: var(--cc-yellow);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	margin-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
	.hero-section {
		grid-template-columns: 1fr;
	}

	.hero-content {
		padding: 3rem 2rem;
		order: 2;
	}

	.hero-image {
		order: 1;
		min-height: 50vh;
	}

	.hero-headline {
		font-size: 2.25rem;
	}
}

@media (max-width: 768px) {
	.site-header {
		flex-wrap: wrap;
		gap: 1rem;
	}

	.nav-menu {
		gap: 1rem;
		font-size: 0.875rem;
	}

	.hero-content {
		padding: 2rem 1.5rem;
	}

	.hero-headline {
		font-size: 1.875rem;
	}

	.benefits-section,
	.products-section,
	.testimonials-section,
	.cta-section {
		padding: 3rem 1.5rem;
	}
}

@media (max-width: 480px) {
	.nav-menu {
		gap: 0.75rem;
	}

	.hero-headline {
		font-size: 1.625rem;
	}

	.hero-cta {
		width: 100%;
		text-align: center;
	}
}
