/* Additional styles for blog posts, cart, and other components */

/* Global Heading Styles - Orange, Larger, Bold */
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--primary-color) !important;
	font-weight: bold !important;
	font-size: 1.2em !important;
}

h1 {
	font-size: 3.5em !important;
}

h2 {
	font-size: 2.5em !important;
}

/* Bigger h1 and h2 for web view only */
@media (max-width: 769px) {
	h1 {
		font-size: 2.5em !important;
	}
	h2 {
		font-size: 2em !important;
	}
}

h3 {
	font-size: 1.5em !important;
}

h4 {
	font-size: 1.3em !important;
}

/* Blog Post Styles */
.blog-post {
	max-width: 800px;
	margin: 0 auto;
}

.post-header {
	text-align: center;
	margin-bottom: 2rem;
}

.post-header h1 {
	font-size: 1.8rem;
	color: var(--text-light);
	margin-bottom: 1rem;
	font-weight: 500;
}

.post-meta {
	display: flex;
	justify-content: center;
	gap: 2rem;
	color: var(--text-dark);
	font-size: 0.9rem;
}

.post-meta span {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.post-image {
	margin-bottom: 2rem;
	border-radius: 15px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.post-content {
	line-height: 1.8;
	font-size: 1.1rem;
}

.post-content p {
	margin-bottom: 1.5rem;
}

.post-content h3 {
	color: var(--text-light);
	margin: 2rem 0 1rem;
	font-size: 1.1rem;
	font-weight: 500;
}

.post-footer {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
}

.post-tags {
	margin-bottom: 2rem;
}

.tag {
	display: inline-block;
	background: var(--bg-light);
	color: var(--text-dark);
	padding: 0.3rem 0.8rem;
	border-radius: 20px;
	font-size: 0.8rem;
	margin-right: 0.5rem;
	margin-bottom: 0.5rem;
}

.post-share h4 {
	margin-bottom: 1rem;
	color: var(--text-light);
}

.share-buttons {
	display: flex;
	gap: 1rem;
}

.share-btn {
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.share-btn.facebook {
	background: #3b5998;
}
.share-btn.twitter {
	background: #1da1f2;
}
.share-btn.linkedin {
	background: #0077b5;
}
.share-btn.copy {
	background: var(--primary-color);
}

.share-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.related-posts {
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
}

.related-posts h3 {
	color: var(--text-light);
	margin-bottom: 2rem;
	text-align: center;
}

.related-posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.related-post {
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.related-post:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.related-post img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.related-post-content {
	padding: 1.5rem;
}

.related-post h4 {
	margin-bottom: 0.5rem;
}

.related-post h4 a {
	color: var(--text-light);
	text-decoration: none;
	transition: var(--transition);
}

.related-post h4 a:hover {
	color: var(--primary-color);
}

.blog-navigation {
	text-align: center;
	margin-top: 3rem;
}

/* Cart Styles */
.cart-container {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 3rem;
	margin-top: 2rem;
}

.empty-cart {
	text-align: center;
	padding: 3rem;
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 15px;
}

.empty-cart h2 {
	color: var(--text-light);
	margin-bottom: 1rem;
}

.empty-cart p {
	color: var(--text-dark);
	margin-bottom: 2rem;
}

.cart-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 15px;
	box-shadow: var(--shadow);
	margin-bottom: 1rem;
}

.cart-item img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 10px;
}

.cart-item-details {
	flex: 1;
}

.cart-item-details h3 {
	color: var(--text-light);
	margin-bottom: 0.5rem;
}

.cart-item-details p {
	color: var(--primary-color);
	font-weight: bold;
	font-size: 1.1rem;
}

.cart-item-controls {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.quantity-controls {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.quantity-btn {
	background: var(--primary-color);
	color: white;
	border: none;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	transition: var(--transition);
}

.quantity-btn:hover {
	background: #e55a00;
}

.quantity-display {
	min-width: 30px;
	text-align: center;
	font-weight: bold;
	color: var(--text-light);
}

.remove-item {
	background: #dc3545;
	color: white;
	border: none;
	padding: 8px 12px;
	border-radius: 8px;
	cursor: pointer;
	transition: var(--transition);
}

.remove-item:hover {
	background: #c82333;
}

.order-summary {
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	padding: 2rem;
	border-radius: 15px;
	box-shadow: var(--shadow);
	height: fit-content;
	position: sticky;
	top: 100px;
}

.order-summary h3 {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	text-align: center;
}

.summary-line {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	color: var(--text-light);
}

.summary-line.total {
	border-top: 2px solid var(--border-color);
	padding-top: 1rem;
	font-weight: bold;
	font-size: 1.2rem;
	color: var(--text-light);
}

/* Contact Page Styles */
.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-top: 2rem;
}

.contact-form-section,
.contact-info-section {
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	padding: 2rem;
	border-radius: 15px;
	box-shadow: var(--shadow);
}

.contact-details {
	margin-top: 2rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 2rem;
}

.contact-icon {
	background: var(--primary-color);
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-text h3 {
	color: var(--text-light);
	margin-bottom: 0.5rem;
}

.contact-text p {
	color: var(--text-dark);
	margin-bottom: 0.5rem;
}

.contact-text small {
	color: var(--text-dark);
}

.map-container {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

/* About Page Styles */
.about-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 3rem;
	align-items: center;
}

.about-text {
	font-size: 1.1rem;
	line-height: 1.8;
}

.about-text h3 {
	color: var(--text-light);
	margin-bottom: 1rem;
}

.about-text p {
	margin-bottom: 1.5rem;
	color: var(--text-dark);
}

.about-stats {
	display: grid;
	gap: 2rem;
}

.stat {
	text-align: center;
	padding: 1.5rem;
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 15px;
}

.stat h4 {
	font-size: 2rem;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.stat p {
	color: var(--text-light);
	font-weight: 600;
}

.expertise-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.expertise-item {
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	padding: 2rem;
	border-radius: 15px;
	box-shadow: var(--shadow);
}

.expertise-item h3 {
	color: var(--text-light);
	margin-bottom: 1rem;
}

.expertise-item p {
	color: var(--text-dark);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.stat-item {
	text-align: center;
	padding: 2rem 1rem;
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 15px;
	box-shadow: var(--shadow);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.stat-label {
	color: var(--text-light);
	font-weight: 600;
}

.commitment-content {
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.8;
}

.commitment-content p {
	margin-bottom: 1.5rem;
	color: var(--text-dark);
}

/* Newsletter Styles */
.newsletter-signup {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.newsletter-form {
	margin-top: 2rem;
}

.newsletter-form .form-group {
	display: flex;
	gap: 1rem;
	max-width: 400px;
	margin: 0 auto;
}

.newsletter-form input {
	flex: 1;
	padding: 12px;
	border: 2px solid var(--border-color);
	border-radius: 25px;
	font-size: 1rem;
}

.newsletter-form button {
	padding: 12px 24px;
	border-radius: 25px;
	white-space: nowrap;
}

/* Policy Pages Styles */
.policy-content {
	max-width: 800px;
	margin: 0 auto;
}

.policy-text {
	font-size: 1rem;
	line-height: 1.7;
}

.policy-text h2 {
	color: var(--primary-color);
	margin: 2rem 0 1rem;
	font-size: 1.3rem;
	font-weight: 500;
}

.policy-text h3 {
	color: var(--text-light);
	margin: 1.5rem 0 0.5rem;
	font-size: 1.1rem;
	font-weight: 500;
}

.policy-text p {
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.policy-text ul {
	margin: 1rem 0 1rem 2rem;
	color: var(--text-dark);
}

.policy-text li {
	margin-bottom: 0.5rem;
}

.contact-details {
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	padding: 1.5rem;
	border-radius: 10px;
	margin: 1.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	.cart-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.contact-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.cart-item {
		flex-direction: column;
		text-align: center;
	}

	.cart-item img {
		width: 80px;
		height: 80px;
	}

	.post-meta {
		flex-direction: column;
		gap: 0.5rem;
	}

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

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

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

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

/* Card Icon Styles */
.card-icon {
	text-align: center;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
}

.card-icon i {
	font-size: 3rem;
	color: var(--primary-color);
}

/* Testimonial Styles */
.testimonial {
	text-align: center;
	padding: 2rem;
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 15px;
	box-shadow: var(--shadow);
	max-width: 600px;
	margin: 0 auto;
}

.testimonial p {
	font-size: 1.1rem;
	font-style: italic;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
}

.testimonial-author {
	color: var(--text-light);
}

.testimonial-author strong {
	display: block;
	margin-bottom: 0.5rem;
}

.testimonial-author span {
	color: var(--primary-color);
	font-size: 0.9rem;
}
