/*
Theme Name: StyleBF
Theme URI: https://stylebyfluent.com
Author: StyleByFluent
Author URI: https://stylebyfluent.com
Description: A beautiful WordPress theme for fashion and lifestyle affiliate website. Features elegant design with category sections, blog layouts, and newsletter integration.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stylebf
Tags: blog, e-commerce, fashion, lifestyle, custom-menu, featured-images, footer-widgets, sticky-post, translation-ready

StyleBF WordPress Theme, Copyright 2025
StyleBF is distributed under the terms of the GNU GPL
*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--cream: #FFFEF9;
	--dark: #1A1A1A;
	--rose: #D4A5A5;
	--gold: #C9A66B;
	--sage: #9DAB86;
	--terracotta: #C07855;
	--white: #FFFFFF;
	--light: #F8F6F3;
	--border: #E8E5E0;
}

body {
	font-family: 'Montserrat', sans-serif;
	color: var(--dark);
	background-color: var(--cream);
	line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
	line-height: 1.2;
}

/* Header & Navigation */
header {
	background: var(--white);
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.top-bar {
	background: var(--dark);
	color: var(--white);
	text-align: center;
	padding: 10px 20px;
	font-size: 13px;
	letter-spacing: 1px;
}

nav {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 50px;
}

.logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 36px;
	font-weight: 700;
	color: var(--dark);
	text-decoration: none;
	letter-spacing: 2px;
}

.nav-links {
	display: flex;
	gap: 45px;
	list-style: none;
	align-items: center;
}

.nav-links > li {
	position: relative;
}

.nav-links a {
	color: var(--dark);
	text-decoration: none;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: color 0.3s ease;
	display: block;
	padding: 10px 0;
}

.nav-links a:hover {
	color: var(--gold);
}

.dropdown > a::after {
	content: ' ▾';
	font-size: 10px;
	margin-left: 5px;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--white);
	min-width: 280px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.12);
	border-radius: 0;
	padding: 20px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-15px);
	transition: all 0.4s ease;
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu li {
	list-style: none;
}

.dropdown-menu a {
	padding: 12px 30px;
	font-size: 13px;
	color: var(--dark);
	text-transform: none;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.dropdown-menu a:hover {
	background: var(--light);
	color: var(--gold);
	padding-left: 35px;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 26px;
	cursor: pointer;
	color: var(--dark);
}

/* Hero Section */
.hero {
	position: relative;
	height: 650px;
	background: linear-gradient(135deg, var(--rose) 0%, var(--sage) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
	opacity: 0.3;
}

.hero-content {
	text-align: center;
	max-width: 900px;
	padding: 50px;
	position: relative;
	z-index: 2;
	animation: fadeInUp 1s ease;
}

.hero h1 {
	font-size: 72px;
	color: var(--white);
	margin-bottom: 25px;
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-tagline {
	font-size: 22px;
	color: var(--white);
	margin-bottom: 40px;
	font-style: italic;
	font-weight: 300;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
	padding: 18px 45px;
	border-radius: 0;
	text-decoration: none;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	transition: all 0.4s ease;
	display: inline-block;
}

.btn-primary {
	background: var(--gold);
	color: var(--white);
	box-shadow: 0 6px 20px rgba(201, 166, 107, 0.4);
}

.btn-primary:hover {
	background: var(--terracotta);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(192, 120, 85, 0.5);
}

.btn-secondary {
	background: var(--white);
	color: var(--dark);
	border: 2px solid var(--white);
}

.btn-secondary:hover {
	background: transparent;
	color: var(--white);
}

        /* Blog Section */
        .blog-section {
            max-width: 1400px;
            margin: 100px auto;
            padding: 0 50px;
        }

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

        .section-header h2 {
            font-size: 56px;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gold);
        }

        .section-header p {
            font-size: 16px;
            color: #666;
            margin-top: 25px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .blog-card {
            background: var(--white);
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            text-decoration: none;
            display: block;
            color: inherit;
            position: relative;
        }

        .blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--terracotta);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

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

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.12);
        }

        .blog-image {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, var(--rose), var(--sage));
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 70px;
            color: var(--white);
        }

        .blog-content {
            padding: 30px;
        }

        .blog-category {
            display: inline-block;
            background: var(--gold);
            color: var(--white);
            padding: 6px 16px;
            border-radius: 0;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .blog-title {
            font-size: 24px;
            font-family: 'Cormorant Garamond', serif;
            margin-bottom: 15px;
            color: var(--dark);
            line-height: 1.3;
        }

        .blog-excerpt {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .read-more {
            color: var(--terracotta);
            font-weight: 600;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        .blog-card:hover .read-more {
            color: var(--gold);
        }


/* Newsletter Section */
.newsletter {
	background: var(--dark);
	padding: 90px 50px;
	text-align: center;
	color: var(--white);
	margin-top: 100px;
	position: relative;
}

.newsletter::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--gold), var(--terracotta));
}

.newsletter h2 {
	font-size: 48px;
	margin-bottom: 20px;
	color: var(--white);
}

.newsletter p {
	font-size: 18px;
	margin-bottom: 40px;
	opacity: 0.9;
	letter-spacing: 0.5px;
}

.newsletter-form {
	max-width: 550px;
	margin: 0 auto;
	display: flex;
	gap: 15px;
	border: 2px solid rgba(255,255,255,0.2);
	padding: 8px;
	background: rgba(255,255,255,0.05);
}

.newsletter-input {
	flex: 1;
	padding: 16px 25px;
	border: none;
	background: var(--white);
	font-size: 14px;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.5px;
}

.newsletter-input:focus {
	outline: 2px solid var(--gold);
}

.newsletter-btn {
	padding: 16px 40px;
	background: var(--gold);
	color: var(--white);
	border: none;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	cursor: pointer;
	transition: all 0.4s ease;
}

.newsletter-btn:hover {
	background: var(--terracotta);
}

/* Footer */
footer {
	background: #0D0D0D;
	color: var(--white);
	padding: 80px 50px 40px;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
	margin-bottom: 50px;
}

.footer-section h3 {
	font-size: 22px;
	margin-bottom: 25px;
	color: var(--white);
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 14px;
}

.footer-section a {
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	font-size: 14px;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.footer-section a:hover {
	color: var(--gold);
	padding-left: 5px;
}

.social-icons {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-icon {
	width: 45px;
	height: 45px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	text-decoration: none;
	font-size: 20px;
	transition: all 0.4s ease;
}

.social-icon:hover {
	background: var(--gold);
	border-color: var(--gold);
	transform: translateY(-5px);
}

.footer-bottom {
	text-align: center;
	padding-top: 40px;
	border-top: 1px solid rgba(255,255,255,0.1);
	font-size: 13px;
	color: rgba(255,255,255,0.5);
	letter-spacing: 0.5px;
	line-height: 1.8;
}


 /* Category Sections */
.category-section {
	max-width: 1400px;
	margin: 100px auto;
	padding: 0 50px;
}

.category-header {
	text-align: center;
	margin-bottom: 60px;
}

.category-header h2 {
	font-size: 56px;
	color: var(--dark);
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.category-header h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: var(--gold);
}

.category-header p {
	font-size: 16px;
	color: #666;
	margin-top: 25px;
	font-style: italic;
}

.subcategory-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.subcategory-card {
	background: var(--white);
	border-radius: 0;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	transition: all 0.4s ease;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	display: block;
	position: relative;
}

.subcategory-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gold);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

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

.subcategory-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.subcategory-image {
	width: 100%;
	height: 300px;
	background: linear-gradient(135deg, var(--light), var(--border));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 60px;
	position: relative;
	overflow: hidden;
}

.subcategory-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0);
	transition: background 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.subcategory-card:hover .subcategory-overlay {
	background: rgba(0,0,0,0.2);
}

.subcategory-content {
	padding: 30px 25px;
	text-align: center;
}

.subcategory-title {
	font-size: 20px;
	font-family: 'Cormorant Garamond', serif;
	margin-bottom: 10px;
	color: var(--dark);
	font-weight: 600;
}

.subcategory-description {
	font-size: 13px;
	color: #666;
	line-height: 1.6;
	letter-spacing: 0.3px;
}

.view-all-btn {
	text-align: center;
	margin-top: 50px;
}

.btn-view-all {
	display: inline-block;
	padding: 16px 50px;
	background: var(--dark);
	color: var(--white);
	text-decoration: none;
	border-radius: 0;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	transition: all 0.4s ease;
	border: 2px solid var(--dark);
}

.btn-view-all:hover {
	background: var(--gold);
	border-color: var(--gold);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(201, 166, 107, 0.4);
}




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

/* Responsive Design */
@media (max-width: 1200px) {
	.subcategory-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

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

	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	nav {
		padding: 20px 25px;
	}

	.logo {
		font-size: 28px;
	}

	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--white);
		flex-direction: column;
		padding: 30px;
		box-shadow: 0 10px 40px rgba(0,0,0,0.15);
		gap: 0;
	}

	.nav-links.active {
		display: flex;
	}

	.dropdown-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		padding-left: 20px;
		display: none;
		background: var(--light);
		margin-top: 10px;
	}

	.dropdown.active .dropdown-menu {
		display: block;
	}

	.mobile-menu-btn {
		display: block;
	}

	.hero {
		height: 500px;
	}

	.hero h1 {
		font-size: 48px;
	}

	.hero-tagline {
		font-size: 18px;
	}

	.category-section, .blog-section {
		margin: 60px auto;
		padding: 0 25px;
	}

	.category-header h2, .section-header h2 {
		font-size: 42px;
	}

	.subcategory-grid, .blog-grid {
		grid-template-columns: 1fr;
	}

	.newsletter {
		padding: 60px 25px;
	}

	.newsletter h2 {
		font-size: 36px;
	}

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

	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	footer {
		padding: 60px 25px 30px;
	}
}



/* Hero Section - Category Specific */
.category-hero {
	position: relative;
	height: 450px;
	background: linear-gradient(135deg, #D4A5A5 0%, #C9A66B 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.category-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
	opacity: 0.3;
}

.category-hero-content {
	text-align: center;
	max-width: 800px;
	padding: 50px;
	position: relative;
	z-index: 2;
}

.category-hero h1 {
	font-size: 64px;
	color: var(--white);
	margin-bottom: 20px;
	font-weight: 700;
}

.category-hero-description {
	font-size: 20px;
	color: var(--white);
	font-style: italic;
	opacity: 0.95;
}

/* Page Hero - Cremation Jewelry Specific */
.page-hero {
	background: linear-gradient(135deg, #D4A5A5 0%, #C9A66B 100%);
	padding: 80px 50px;
	text-align: center;
	color: var(--white);
}

.page-hero h1 {
	font-size: 64px;
	margin-bottom: 15px;
	color: var(--white);
}

.page-hero p {
	font-size: 18px;
	opacity: 0.95;
	max-width: 700px;
	margin: 0 auto;
}

/* Filter Section */
.filter-bar {
	background: var(--white);
	padding: 25px 30px;
	border-radius: 0;
	box-shadow: 0 2px 15px rgba(0,0,0,0.06);
	margin-bottom: 40px;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	align-items: center;
}

.search-box {
	flex: 1;
	min-width: 250px;
	position: relative;
}

.search-box input {
	width: 100%;
	padding: 14px 45px 14px 20px;
	border: 2px solid var(--border);
	font-size: 14px;
	font-family: 'Montserrat', sans-serif;
	transition: border-color 0.3s ease;
}

.search-box input:focus {
	outline: none;
	border-color: var(--gold);
}

.search-box::after {
	content: '🔍';
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	pointer-events: none;
}

.sort-dropdown {
	position: relative;
}

.sort-dropdown select {
	padding: 14px 45px 14px 20px;
	border: 2px solid var(--border);
	background: var(--white);
	font-size: 13px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	letter-spacing: 0.5px;
	cursor: pointer;
	appearance: none;
	min-width: 200px;
	transition: border-color 0.3s ease;
}

.sort-dropdown select:focus {
	outline: none;
	border-color: var(--gold);
}

.sort-dropdown::after {
	content: '▾';
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: var(--dark);
}

/* Deals Section */
.deals-section {
	max-width: 1400px;
	margin: 80px auto;
	padding: 0 50px;
}

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

.section-title h2 {
	font-size: 48px;
	color: var(--dark);
	margin-bottom: 10px;
}

.section-title p {
	font-size: 16px;
	color: #666;
}

/* Deal Cards Grid */
.deals-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
	margin-bottom: 50px;
}

.deal-card {
	background: var(--white);
	border: 1px solid var(--border);
	overflow: hidden;
	transition: all 0.4s ease;
	position: relative;
}

.deal-card:hover {
	box-shadow: 0 12px 35px rgba(0,0,0,0.12);
	transform: translateY(-5px);
}

.deal-image {
	width: 100%;
	height: 320px;
	background: linear-gradient(135deg, var(--light), var(--border));
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 80px;
	position: relative;
}

.deal-badges {
	position: absolute;
	top: 15px;
	left: 15px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.badge {
	background: var(--gold);
	color: var(--white);
	padding: 6px 14px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.badge.discount {
	background: var(--terracotta);
}

.badge.shipping {
	background: var(--sage);
}

.deal-content {
	padding: 25px;
}

.deal-brand {
	font-size: 12px;
	color: var(--gold);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.deal-title {
	font-size: 18px;
	font-family: 'Cormorant Garamond', serif;
	color: var(--dark);
	margin-bottom: 15px;
	line-height: 1.4;
	font-weight: 600;
}

.deal-pricing {
	margin-bottom: 12px;
}

.price-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.retail-price {
	font-size: 14px;
	color: #999;
	text-decoration: line-through;
}

.deal-price {
	font-size: 26px;
	font-weight: 700;
	color: var(--terracotta);
	font-family: 'Cormorant Garamond', serif;
}

.savings {
	font-size: 13px;
	color: var(--sage);
	font-weight: 600;
}

.stock-status {
	font-size: 13px;
	color: var(--sage);
	font-weight: 600;
	margin-bottom: 15px;
}

.view-deal-btn {
	display: block;
	width: 100%;
	padding: 14px;
	background: var(--dark);
	color: var(--white);
	text-align: center;
	text-decoration: none;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	transition: all 0.4s ease;
	border: 2px solid var(--dark);
}

.view-deal-btn:hover {
	background: var(--gold);
	border-color: var(--gold);
}

/* Load More Button */
.load-more-section {
	text-align: center;
	margin-top: 50px;
}

.load-more-btn {
	display: inline-block;
	padding: 16px 60px;
	background: var(--white);
	color: var(--dark);
	border: 2px solid var(--dark);
	text-decoration: none;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	transition: all 0.4s ease;
	cursor: pointer;
}

.load-more-btn:hover {
	background: var(--dark);
	color: var(--white);
}

/* Content Section */
.content-section {
	max-width: 1200px;
	margin: 100px auto;
	padding: 60px 50px;
	background: var(--white);
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.content-section h2 {
	font-size: 42px;
	color: var(--dark);
	margin-bottom: 25px;
	text-align: center;
}

.content-section h3 {
	font-size: 28px;
	color: var(--dark);
	margin-top: 35px;
	margin-bottom: 15px;
}

.content-section p {
	font-size: 15px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 20px;
}

.content-section ul {
	margin: 20px 0;
	padding-left: 30px;
}

.content-section ul li {
	font-size: 15px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
	.deals-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.page-hero h1 {
		font-size: 42px;
	}

	.deals-grid {
		grid-template-columns: 1fr;
	}

	.deals-section {
		padding: 0 25px;
		margin: 60px auto;
	}

	.content-section {
		padding: 40px 25px;
		margin: 60px auto;
	}
}


/* Page Header */
.page-header {
	background: linear-gradient(135deg, var(--rose) 0%, var(--sage) 100%);
	padding: 100px 50px;
	text-align: center;
	position: relative;
}

.page-header::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
	opacity: 0.3;
}

.page-header-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.page-header h1 {
	font-size: 64px;
	color: var(--white);
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.page-header p {
	font-size: 20px;
	color: var(--white);
	font-style: italic;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* About Content */
.about-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 50px;
}

.about-section {
	margin-bottom: 80px;
}

.about-section h2 {
	font-size: 48px;
	color: var(--dark);
	margin-bottom: 30px;
	position: relative;
	display: inline-block;
}

.about-section h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 80px;
	height: 3px;
	background: var(--gold);
}

.about-section p {
	font-size: 16px;
	line-height: 1.9;
	color: #333;
	margin-bottom: 20px;
	letter-spacing: 0.3px;
}

.about-section p.lead {
	font-size: 20px;
	color: var(--dark);
	font-style: italic;
	margin-bottom: 30px;
	line-height: 1.7;
}

/* Story Timeline */
.story-timeline {
	position: relative;
	padding-left: 60px;
	margin: 60px 0;
}

.story-timeline::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--gold);
}

.timeline-item {
	position: relative;
	margin-bottom: 40px;
}

.timeline-item::before {
	content: '';
	position: absolute;
	left: -50px;
	top: 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--gold);
	border: 3px solid var(--cream);
}

.timeline-item h3 {
	font-size: 24px;
	color: var(--dark);
	margin-bottom: 10px;
	font-family: 'Cormorant Garamond', serif;
}

.timeline-item p {
	font-size: 15px;
	color: #555;
	line-height: 1.8;
}

/* Values Grid */
.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 50px;
}

.value-card {
	background: var(--white);
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	transition: all 0.4s ease;
}

.value-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.value-icon {
	font-size: 56px;
	margin-bottom: 20px;
}

.value-card h3 {
	font-size: 24px;
	color: var(--dark);
	margin-bottom: 15px;
	font-family: 'Cormorant Garamond', serif;
}

.value-card p {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 0;
}

/* Quote Section */
.quote-section {
	background: var(--light);
	padding: 80px 50px;
	text-align: center;
	margin: 80px 0;
}

.quote-section blockquote {
	max-width: 900px;
	margin: 0 auto;
	font-size: 28px;
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	color: var(--dark);
	line-height: 1.6;
	position: relative;
}

.quote-section blockquote::before {
	content: '"';
	font-size: 80px;
	color: var(--gold);
	position: absolute;
	top: -20px;
	left: -40px;
	font-family: Georgia, serif;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, var(--gold), var(--terracotta));
	padding: 80px 50px;
	text-align: center;
	margin-top: 80px;
}

.cta-section h2 {
	font-size: 42px;
	color: var(--white);
	margin-bottom: 20px;
}

.cta-section p {
	font-size: 18px;
	color: var(--white);
	margin-bottom: 30px;
	opacity: 0.95;
}




/* Blog Posts Section */
.blog-posts-section {
	max-width: 1400px;
	margin: 80px auto;
	padding: 0 50px;
}

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

.section-title h2 {
	font-size: 48px;
	color: var(--dark);
	margin-bottom: 10px;
}

.section-title p {
	font-size: 16px;
	color: #666;
}

/* Blog Posts Grid */
.blog-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
	margin-bottom: 50px;
}

/* Enhanced Blog Card for Blog Page */
.blog-post-card {
	background: var(--white);
	border-radius: 0;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	transition: all 0.4s ease;
	text-decoration: none;
	display: block;
	color: inherit;
	position: relative;
}

.blog-post-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--terracotta);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

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

.blog-post-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.blog-post-image {
	width: 100%;
	height: 320px;
	background: linear-gradient(135deg, var(--rose), var(--sage));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 80px;
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.blog-post-content {
	padding: 30px;
}

.blog-post-category {
	display: inline-block;
	background: var(--gold);
	color: var(--white);
	padding: 6px 16px;
	border-radius: 0;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.blog-post-meta {
	display: flex;
	gap: 15px;
	font-size: 12px;
	color: #999;
	margin-bottom: 15px;
	align-items: center;
}

.blog-post-date,
.blog-post-read-time {
	display: flex;
	align-items: center;
	gap: 5px;
}

.blog-post-title {
	font-size: 24px;
	font-family: 'Cormorant Garamond', serif;
	margin-bottom: 15px;
	color: var(--dark);
	line-height: 1.3;
	font-weight: 600;
}

.blog-post-excerpt {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 20px;
}

.read-more-link {
	color: var(--terracotta);
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.blog-post-card:hover .read-more-link {
	color: var(--gold);
}



/* Responsive */
@media (max-width: 1024px) {
	.blog-posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {

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

	.blog-posts-section {
		padding: 0 25px;
		margin: 60px auto;
	}

	.blog-post-image {
		height: 280px;
	}
}
		

        /* Contact Content */
        .contact-wrapper {
            max-width: 1200px;
            margin: 100px auto;
            padding: 0 50px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }

        /* Contact Info */
        .contact-info {
            animation: fadeInLeft 0.8s ease;
        }

        .contact-info h2 {
            font-size: 48px;
            color: var(--dark);
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .contact-info h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--gold);
        }

        .contact-info p {
            font-size: 16px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 40px;
            letter-spacing: 0.3px;
        }

        .contact-method {
            margin-bottom: 35px;
            padding: 30px;
            background: var(--white);
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
        }

        .contact-method:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }

        .contact-method-icon {
            font-size: 32px;
            margin-bottom: 15px;
        }

        .contact-method h3 {
            font-size: 22px;
            color: var(--dark);
            margin-bottom: 10px;
            font-family: 'Cormorant Garamond', serif;
        }

        .contact-method p {
            font-size: 15px;
            color: #666;
            margin-bottom: 0;
        }

        .contact-method a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .contact-method a:hover {
            color: var(--terracotta);
        }

        .social-connect {
            margin-top: 50px;
        }

        .social-connect h3 {
            font-size: 24px;
            color: var(--dark);
            margin-bottom: 20px;
            font-family: 'Cormorant Garamond', serif;
        }

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

        .social-icon {
            width: 50px;
            height: 50px;
            background: var(--light);
            border: 2px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            text-decoration: none;
            font-size: 22px;
            transition: all 0.4s ease;
        }

        .social-icon:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--white);
            transform: translateY(-5px);
        }

        /* Contact Form */
        .contact-form-wrapper {
            animation: fadeInRight 0.8s ease;
        }

        .contact-form {
            background: var(--white);
            padding: 50px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid var(--border);
            background: var(--cream);
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            color: var(--dark);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: var(--white);
        }

        .form-group textarea {
            min-height: 180px;
            resize: vertical;
        }

        .form-group select {
            cursor: pointer;
        }

        .submit-btn {
            width: 100%;
            padding: 18px 40px;
            background: var(--gold);
            color: var(--white);
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .submit-btn:hover {
            background: var(--terracotta);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(201, 166, 107, 0.4);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* Success Message */
        .success-message {
            display: none;
            background: var(--sage);
            color: var(--white);
            padding: 20px;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .success-message.show {
            display: block;
            animation: slideDown 0.5s ease;
        }

        /* FAQ Quick Links */
        .faq-links {
            background: var(--light);
            padding: 60px 50px;
            text-align: center;
            margin-top: 100px;
        }

        .faq-links h2 {
            font-size: 42px;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .faq-links p {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }

        .faq-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .faq-card {
            background: var(--white);
            padding: 30px 25px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .faq-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .faq-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .faq-card h3 {
            font-size: 20px;
            color: var(--dark);
            margin-bottom: 10px;
            font-family: 'Cormorant Garamond', serif;
        }

        .faq-card p {
            font-size: 13px;
            color: #666;
            margin-bottom: 0;
        }


        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

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

        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .faq-grid {
                grid-template-columns: repeat(2, 1fr);
            }

        }
		
@media (max-width: 768px) {
			.contact-wrapper {
                margin: 60px auto;
                padding: 0 25px;
            }

            .contact-info h2 {
                font-size: 36px;
            }

            .contact-form {
                padding: 35px 25px;
            }

            .faq-links {
                padding: 50px 25px;
            }

            .faq-links h2 {
                font-size: 32px;
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }
}		

      /* FAQ Content */
        .faq-content {
            max-width: 1000px;
            margin: 100px auto;
            padding: 0 50px;
        }

        .faq-intro {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-intro p {
            font-size: 18px;
            color: #555;
            line-height: 1.8;
        }

        .faq-categories {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 80px;
        }

        .faq-category-card {
            background: var(--white);
            padding: 30px 25px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .faq-category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .category-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .faq-category-card h3 {
            font-size: 20px;
            color: var(--dark);
            font-family: 'Cormorant Garamond', serif;
        }

        .faq-section {
            margin-bottom: 60px;
        }

        .faq-section-title {
            font-size: 42px;
            color: var(--dark);
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
        }

        .faq-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--gold);
        }

        .faq-item {
            background: var(--white);
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: var(--light);
        }

        .faq-question h3 {
            font-size: 18px;
            color: var(--dark);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            margin: 0;
        }

        .faq-toggle {
            font-size: 24px;
            color: var(--gold);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer-content {
            padding: 0 30px 25px 30px;
            color: #555;
            line-height: 1.8;
            font-size: 15px;
        }

        .faq-answer-content p {
            margin-bottom: 15px;
        }

        .faq-answer-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .faq-answer-content li {
            margin-bottom: 8px;
        }

        .faq-answer-content a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
        }

        .faq-answer-content a:hover {
            color: var(--terracotta);
        }

/* Contact CTA */
        .contact-cta {
            background: var(--light);
            padding: 60px 50px;
            text-align: center;
            margin-top: 80px;
            border-top: 4px solid var(--gold);
        }

        .contact-cta h2 {
            font-size: 36px;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .contact-cta p {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }


 /* Responsive Design */
        @media (max-width: 1024px) {
            .faq-categories {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }


@media (max-width: 768px) {
.faq-content {
                margin: 60px auto;
                padding: 0 25px;
            }

            .faq-categories {
                grid-template-columns: 1fr;
            }

            .faq-section-title {
                font-size: 32px;
            }

            .faq-question {
                padding: 20px;
            }

            .faq-question h3 {
                font-size: 16px;
            }

            .faq-answer-content {
                padding: 0 20px 20px 20px;
            }

            .contact-cta {
                padding: 50px 25px;
            }
}


<!-- Additional CSS for Blog Post Page -->

    .blog-post-hero {
        position: relative;
        padding: 120px 50px 80px;
        background: linear-gradient(135deg, var(--rose) 0%, var(--sage) 100%);
        text-align: center;
    }

    .blog-post-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.3;
    }

    .blog-post-hero-content {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .blog-category-badge {
        display: inline-block;
        background: var(--gold);
        color: var(--white);
        padding: 8px 20px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .blog-post-title {
        font-size: 56px;
        color: var(--white);
        margin-bottom: 25px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    }

    .blog-post-meta {
        display: flex;
        justify-content: center;
        gap: 30px;
        color: var(--white);
        font-size: 14px;
        opacity: 0.95;
    }

    .blog-post-meta span {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .blog-post-content {
        max-width: 900px;
        margin: 80px auto;
        padding: 0 50px;
    }

    .blog-post-intro {
        font-size: 20px;
        line-height: 1.8;
        color: var(--dark);
        margin-bottom: 50px;
        font-style: italic;
        text-align: center;
    }

    .blog-post-content h2 {
        font-size: 42px;
        color: var(--dark);
        margin: 60px 0 25px 0;
        position: relative;
        padding-bottom: 15px;
    }

    .blog-post-content h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 3px;
        background: var(--gold);
    }

    .blog-post-content h3 {
        font-size: 32px;
        color: var(--dark);
        margin: 40px 0 20px 0;
    }

    .blog-post-content p {
        font-size: 17px;
        line-height: 1.9;
        color: #555;
        margin-bottom: 25px;
    }

    .blog-post-content ul,
    .blog-post-content ol {
        margin: 25px 0;
        padding-left: 30px;
    }

    .blog-post-content li {
        font-size: 17px;
        line-height: 1.9;
        color: #555;
        margin-bottom: 15px;
    }

    .blog-post-content strong {
        color: var(--dark);
        font-weight: 600;
    }

    .product-feature {
        background: var(--white);
        padding: 40px;
        margin: 40px 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        border-left: 5px solid var(--gold);
    }

    .product-feature-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 25px;
        gap: 30px;
    }

    .product-number {
        font-size: 72px;
        font-family: 'Cormorant Garamond', serif;
        color: var(--gold);
        line-height: 1;
        font-weight: 700;
        opacity: 0.3;
    }

    .product-feature h3 {
        font-size: 28px;
        color: var(--dark);
        margin: 0 0 15px 0;
    }

    .product-price {
        font-size: 24px;
        color: var(--rose-gold);
        font-weight: 700;
        margin-bottom: 20px;
    }

    .product-description {
        font-size: 16px;
        color: #666;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .product-features-list {
        margin: 20px 0;
        padding-left: 0;
        list-style: none;
    }

    .product-features-list li {
        padding-left: 25px;
        position: relative;
        margin-bottom: 10px;
        font-size: 15px;
    }

    .product-features-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--gold);
        font-weight: bold;
    }

    .product-cta {
        display: inline-block;
        padding: 15px 35px;
        background: var(--gold);
        color: var(--white);
        text-decoration: none;
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        transition: all 0.4s ease;
        margin-top: 10px;
    }

    .product-cta:hover {
        background: var(--terracotta);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(201, 166, 107, 0.4);
    }

    .blog-highlight-box {
        background: var(--light);
        padding: 30px;
        margin: 40px 0;
        border-left: 4px solid var(--terracotta);
    }

    .blog-highlight-box p {
        margin-bottom: 15px;
        font-size: 16px;
    }

    .blog-highlight-box p:last-child {
        margin-bottom: 0;
    }

    .blog-conclusion {
        background: var(--white);
        padding: 50px;
        margin: 60px 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        text-align: center;
    }

    .blog-conclusion h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .blog-conclusion h2::after {
        display: none;
    }

    .blog-share {
        margin-top: 60px;
        padding-top: 40px;
        border-top: 2px solid var(--border);
        text-align: center;
    }

    .blog-share h3 {
        font-size: 20px;
        margin-bottom: 20px;
        color: var(--dark);
    }

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

    .share-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 25px;
        background: var(--light);
        color: var(--dark);
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid var(--border);
    }

    .share-btn:hover {
        background: var(--gold);
        color: var(--white);
        border-color: var(--gold);
    }

    .related-posts {
        max-width: 1400px;
        margin: 80px auto;
        padding: 0 50px;
    }

    .related-posts h2 {
        font-size: 42px;
        text-align: center;
        margin-bottom: 50px;
        color: var(--dark);
    }

    @media (max-width: 768px) {
        .blog-post-hero {
            padding: 80px 25px 60px;
        }

        .blog-post-title {
            font-size: 36px;
        }

        .blog-post-meta {
            flex-direction: column;
            gap: 10px;
        }

        .blog-post-content {
            margin: 50px auto;
            padding: 0 25px;
        }

        .blog-post-intro {
            font-size: 18px;
        }

        .blog-post-content h2 {
            font-size: 32px;
        }

        .blog-post-content h3 {
            font-size: 26px;
        }

        .product-feature {
            padding: 25px 20px;
        }

        .product-feature-header {
            flex-direction: column;
        }

        .product-number {
            font-size: 48px;
        }

        .blog-conclusion {
            padding: 35px 25px;
        }

        .share-buttons {
            flex-direction: column;
        }

        .share-btn {
            width: 100%;
            justify-content: center;
        }
    }
