/*!
Theme Name: dmn
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: dmn
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

dmn is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.hero-slider {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
	margin-bottom: 2rem;
}

.slider-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.slider-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.slide {
	position: relative;
	min-width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.slide-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: white;
	max-width: 800px;
	padding: 0 2rem;
}

.slide-content-inner {
	animation: slideInUp 0.8s ease-out;
}

.slide-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-description {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	line-height: 1.6;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-button {
	display: inline-block;
	padding: 0.5rem 2rem;
	background-color: #00bf94;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 15px rgba(195, 143, 65, 0.3);
}

.slide-button:hover {
	background-color: #a67c35;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(195, 143, 65, 0.4);
	color: white;
}

/* Navigation Arrows */
.slider-navigation {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	z-index: 3;
	pointer-events: none;
}

.slider-prev,
.slider-next {
	position: absolute;
	top: 0;
	background: transparent;
	border: none;
	color: white;
	font-size: 3rem;
	width: auto;
	height: auto;
	cursor: pointer;
	transition: all 0.3s ease;
	pointer-events: auto;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	padding: 1rem;
}

.slider-prev:hover,
.slider-next:hover {
	color: #c38f41;
	transform: scale(1.2);
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}

.slider-prev {
	left: 2rem;
}

.slider-next {
	right: 2rem;
}

/* Dots Navigation */
.slider-dots {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
	z-index: 3;
}

.slider-dot {
	width: 2px !important;
	height: 2px !important;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.slider-dot.active {
	background: #c38f41;
}

.slider-dot:hover {
	background: rgba(255, 255, 255, 0.8);
}

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

/* Responsive Design */
@media (max-width: 768px) {
	.hero-slider {
		height: 400px;
	}

	.slide-title {
		font-size: 2.5rem;
	}

	.slide-description {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}

	.slide-button {
		padding: 0.8rem 1.5rem;
		font-size: 1rem;
	}

	.slider-prev,
	.slider-next {
		width: 40px;
		height: 40px;
		font-size: 1.5rem;
	}

	.slider-prev {
		left: 1rem;
	}

	.slider-next {
		right: 1rem;
	}

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

@media (max-width: 480px) {
	.hero-slider {
		height: 350px;
	}

	.slide-title {
		font-size: 2rem;
		margin-bottom: 0.8rem;
	}

	.slide-description {
		font-size: 0.9rem;
		margin-bottom: 1.2rem;
	}

	.slide-button {
		padding: 0.7rem 1.2rem;
		font-size: 0.9rem;
	}
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: #4169e1;
}

a:hover,
a:focus,
a:active {
	color: #191970;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

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

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/*--------------------------------------------------------------
# Header Styles
--------------------------------------------------------------*/

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Top Header */
.top-header {
	background-color: #0075c0;
	height: 50px;
	display: flex;
	align-items: center;
	font-size: 16px;
	justify-content: center;
}

.top-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1200px;
	padding: 0 15px;
}

.contact-info {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: flex-start;
}

.contact-info span {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #fff;
}

.contact-info i {
	font-size: 18px;
}

.contact-info a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-info a:hover {
	color: #c38f41;
}

.social-media {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: flex-end;
}

.social-link {
	color: #fff;
	text-decoration: none;
	font-size: 30px;
	transition: color 0.3s ease;
}

.social-link:hover {
	color: #c38f41;
}

/* Main Header */
.main-header {
	background-color: #fff;
	height: 110px;
	position: relative;
	z-index: 999;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}

.main-header.fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.main-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1200px;
	padding: 0 15px;
	gap: 20px;
}

.site-branding {
	display: flex;
	align-items: center;
}

.site-title {
	margin: 0;
	font-size: 32px;
	font-weight: bold;
}

.site-title a {
	color: #333;
	text-decoration: none;
}

.site-description {
	margin: 0;
	font-size: 14px;
	color: #666;
	margin-left: 10px;
}

.custom-logo-link {
	display: flex;
	align-items: center;
}

.custom-logo {
	max-height: 80px;
	width: auto;
}

/* Navigation */
.main-navigation {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.menu-toggle {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 24px;
	color: #333;
	padding: 10px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.menu-toggle:hover {
	color: #0075c0;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* Mobile Menu */
.menu-container {
	position: absolute;
	top: 100%;
	right: 0;
	background: #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	min-width: 250px;
	display: none;
	z-index: 1000;
}

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

/* Mobile menu container positioning */
@media (max-width: 767px) {
	.menu-container {
		position: fixed;
		top: 110px;
		right: 10px;
		left: 10px;
		width: auto;
		min-width: auto;
		max-height: calc(100vh - 120px);
		overflow-y: auto;
		border-radius: 8px;
	}
}

#primary-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

#primary-menu li {
	border-bottom: 1px solid #eee;
}

#primary-menu li:last-child {
	border-bottom: none;
}

#primary-menu a {
	display: block;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

#primary-menu a:hover {
	background-color: #f8f9fa;
	color: #0075c0;
}

/* Body padding adjustment when header becomes fixed */
body.header-fixed {
padding-top: 110px; /* Only main header height when fixed */
}

/* Mobile Styles */
@media (max-width: 767px) {
	.top-header-content {
		width: 250px;
		padding: 0 10px;
	}
	
	.top-header {
		font-size: 12px;
	}
	
	.contact-info {
		gap: 15px;
	}
	
	.contact-info span {
		font-size: 12px;
	}
	
	.contact-info .email {
		display: none;
	}
	
	.social-media {
		gap: 8px;
	}
	
	.social-link {
		font-size: 14px;
	}
	
	/* Mobile Header Layout */
	.main-header-content {
		width: 100%;
		padding: 0 10px;
		justify-content: space-between;
		position: relative;
		display: flex;
		align-items: center;
	}
	
	.site-branding {
		justify-content: flex-start;
		flex: 1;
		max-width: calc(100% - 60px);
	}
	
	.main-navigation {
		position: relative;
		right: auto;
		top: auto;
		transform: none;
		height: 40px;
		display: flex;
		align-items: center;
		flex-shrink: 0;
	}
	
	.menu-toggle {
		display: flex;
		padding: 8px;
		font-size: 20px;
		background: none;
		border: none;
		cursor: pointer;
		color: #333;
	}
	
	.site-title {
		font-size: 20px;
	}
	
	.site-description {
		display: none;
	}
	
	.custom-logo {
		height: 90px;
		width: auto;
		max-width: 200px;
	}
}

/* Tablet Styles */
@media (min-width: 768px) {
	.top-header-content {
		width: 768px;
	}
	
	.main-header-content {
		width: 768px;
	}
	
	.menu-toggle {
		display: none;
	}
	
	.menu-container {
		position: static;
		display: block;
		background: none;
		box-shadow: none;
		min-width: auto;
	}
	
	#primary-menu {
		display: flex;
		gap: 30px;
	}
	
	#primary-menu li {
		border-bottom: none;
	}
	
	#primary-menu a {
		padding: 10px 0;
		position: relative;
	}
	
	#primary-menu a:hover {
		background-color: transparent;
	}
	
	#primary-menu a:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0;
		height: 2px;
		background-color: #0075c0;
		transition: width 0.3s ease;
	}
	
	#primary-menu a:hover:after {
		width: 100%;
	}
}

/* Desktop Styles */
@media (min-width: 1024px) {
	.menu-toggle {
		display: none;
	}
	
	.menu-container {
		position: static;
		display: block;
		background: none;
		box-shadow: none;
		min-width: auto;
	}
	
	#primary-menu {
		display: flex;
		gap: 40px;
	}
	
	#primary-menu li {
		border-bottom: none;
	}
	
	#primary-menu a {
		padding: 10px 0;
		position: relative;
	}
	
	#primary-menu a:hover {
		background-color: transparent;
	}
	
	#primary-menu a:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0;
		height: 2px;
		background-color: #0075c0;
		transition: width 0.3s ease;
	}
	
	#primary-menu a:hover:after {
		width: 100%;
	}
	
	.site-title {
		font-size: 36px;
	}
	
	.custom-logo {
		max-height: 90px;
	}
}

/* About Us Section */
.about-us-section {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.about-us-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.about-us-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-logo {
	max-width: 100%;
	height: auto;
	max-height: 300px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.about-logo:hover {
	transform: scale(1.05);
}

.about-us-text {
	font-size: 18px;
	line-height: 1.8;
	color: #333;
}

.about-us-text p {
	margin-bottom: 20px;
}

.about-us-text p:last-child {
	margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	.about-us-section {
		padding: 60px 0;
	}
	
	.about-us-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	
	.about-logo {
		max-height: 200px;
	}
	
	.about-us-text {
		font-size: 16px;
	}
}

/* Vision & Mission Section */
.vision-mission-section {
	background-color: #0075c0;
	padding: 80px 0;
	color: white;
}

.vision-mission-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: flex-start;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.vision-item,
.mission-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.vision-icon,
.mission-icon {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
}

.vision-icon svg,
.mission-icon svg {
	width: 40px;
	height: 40px;
}

.vision-content h3,
.mission-content h3 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
	color: white;
	line-height: 1.2;
}

.vision-content p,
.mission-text p {
	font-size: 16px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 15px;
}

.mission-text p:last-child {
	margin-bottom: 0;
}

/* Responsive Design for Vision & Mission */
@media (max-width: 768px) {
	.vision-mission-section {
		padding: 60px 0;
	}
	
	.vision-mission-content {
		grid-template-columns: 1fr;
		gap: 50px;
		padding: 0 15px;
	}
	
	.vision-item,
	.mission-item {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}
	
	.vision-icon,
	.mission-icon {
		width: 70px;
		height: 70px;
		margin: 0 auto;
	}
	
	.vision-content h3,
	.mission-content h3 {
		font-size: 24px;
	}
	
	.vision-content p,
	.mission-text p {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.vision-mission-section {
		padding: 50px 0;
	}
	
	.vision-mission-content {
		gap: 40px;
		padding: 0 10px;
	}
	
	.vision-content h3,
	.mission-content h3 {
		font-size: 22px;
	}
	
	.vision-content p,
	.mission-text p {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.about-us-section {
		padding: 40px 0;
	}
	
	.about-us-content {
		gap: 30px;
		padding: 0 15px;
	}
	
	.about-logo {
		max-height: 150px;
	}
}

/* Product Catalog Section */
.product-catalog-section {
	padding: 80px 0;
	background-color: #f8f9fa;
}

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

.product-catalog-section .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
}

.product-catalog-section .section-description {
	font-size: 1.1rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Category Filter */
.category-filter {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 50px;
}

.filter-btn {
	padding: 12px 24px;
	border: 2px solid #0075c0;
	background-color: transparent;
	color: #0075c0;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
	background-color: #0075c0;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 117, 192, 0.3);
}

/* Products Grid */
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.product-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid #e9ecef;
}

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

.product-image {
	position: relative;
	height: 200px;
	overflow: hidden;
	background-color: #f8f9fa;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.05);
}

.product-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background-color: #f1f3f4;
}

.product-placeholder i {
	font-size: 60px;
	color: #ccc;
	opacity: 0.5;
}

.product-info {
	padding: 25px;
}

.product-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 8px;
	line-height: 1.3;
}

.product-subcategory {
	font-size: 0.9rem;
	color: #0075c0;
	font-weight: 600;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.product-description {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.5;
	margin-bottom: 20px;
}

.whatsapp-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background-color: #25d366;
	color: white;
	text-decoration: none;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
	background-color: #128c7e;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
	color: white;
	text-decoration: none;
}

.whatsapp-btn i {
	margin-right: 8px;
	flex-shrink: 0;
	font-size: 16px;
}

/* Latest News Section */
.latest-news-section {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.latest-news-section .section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 50px;
	position: relative;
}

.latest-news-section .section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: #007cba;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.news-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.news-image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
	transform: scale(1.05);
}

.news-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background-color: #e9ecef;
	color: #6c757d;
}

.news-placeholder i {
	font-size: 3rem;
	opacity: 0.5;
}

.news-content {
	padding: 25px;
}

.news-title {
	margin: 0 0 15px 0;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.4;
}

.news-title a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}

.news-title a:hover {
	color: #007cba;
}

.news-meta {
	margin-bottom: 15px;
}

.news-date {
	color: #6c757d;
	font-size: 0.9rem;
	font-weight: 500;
}

.news-excerpt {
	color: #666;
	line-height: 1.6;
	margin-bottom: 20px;
	font-size: 0.95rem;
}

.read-more-btn {
	display: inline-block;
	background-color: #007cba;
	color: white;
	padding: 10px 20px;
	border-radius: 25px;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: background-color 0.3s ease;
}

.read-more-btn:hover {
	background-color: #005a87;
	color: white;
	text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
	.latest-news-section {
		padding: 60px 0;
	}
	
	.latest-news-section .section-title {
		font-size: 2rem;
		margin-bottom: 40px;
	}
	
	.news-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0 20px;
	}
	
	.news-image {
		height: 180px;
	}
	
	.news-content {
		padding: 20px;
	}
}

/* Our Location Section */
.location-section {
	padding: 80px 0;
	background-color: #fff;
}

.location-section .section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 50px;
	position: relative;
}

.location-section .section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: #007cba;
}

.map-container {
	max-width: 1200px;
	margin: 0 auto;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
	width: 100%;
	height: 450px;
	border: none;
	display: block;
}

/* Responsive Design for Location */
@media (max-width: 768px) {
	.location-section {
		padding: 60px 20px;
	}
	
	.location-section .section-title {
		font-size: 2rem;
		margin-bottom: 40px;
	}
	
	.map-container iframe {
		height: 300px;
	}
}

/* Contact Section Styles */
.contact-section {
	background-color: #00bf94;
	padding: 80px 0;
	color: white;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.contact-text h2 {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 30px 0;
	color: white;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	color: white;
	font-size: 16px;
	line-height: 1.5;
}

.contact-item i {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.9);
	margin-top: 2px;
	flex-shrink: 0;
}

.contact-item span {
	color: rgba(255, 255, 255, 0.9);
}

.contact-form {
	background: rgba(255, 255, 255, 0.1);
	padding: 40px;
	border-radius: 12px;
	backdrop-filter: blur(10px);
}

.whatsapp-contact-form .form-group {
	margin-bottom: 20px;
}

.whatsapp-contact-form input,
.whatsapp-contact-form textarea {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	font-size: 16px;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.whatsapp-contact-form input::placeholder,
.whatsapp-contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.whatsapp-contact-form input:focus,
.whatsapp-contact-form textarea:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.8);
	background: rgba(255, 255, 255, 0.2);
}

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

.submit-btn {
	width: 100%;
	padding: 15px 30px;
	background: #25D366;
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.submit-btn:hover {
	background: #128C7E;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.submit-btn i {
	font-size: 20px;
}

@media (max-width: 768px) {
	.contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	
	.contact-text h2 {
		font-size: 2.5rem;
	}
	
	.contact-form {
		padding: 30px 20px;
	}
}

/* Animation for filtering */
.product-card.fade-in {
	animation: fadeIn 0.3s ease-in-out;
}

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

/* Single Post Styles */
.single-post-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
	background-color: #fff;
}

.single-post-main {
	max-width: 800px;
	margin: 0 auto;
}

/* Breadcrumb Styles */
.breadcrumb-nav {
	margin-bottom: 30px;
	padding: 15px 0;
	border-bottom: 1px solid #e9ecef;
}

.breadcrumb-content {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-size: 14px;
	color: #6c757d;
}

.breadcrumb-link {
	color: #007cba;
	text-decoration: none;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	gap: 5px;
}

.breadcrumb-link:hover {
	color: #005a87;
	text-decoration: none;
}

.breadcrumb-separator {
	margin: 0 10px;
	color: #adb5bd;
}

.breadcrumb-current {
	color: #495057;
	font-weight: 500;
}

/* Single Post Content Styling */
.single .post,
.single .page {
	margin: 0;
	padding: 0;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.single .entry-header {
	padding: 30px 40px 20px;
	border-bottom: 1px solid #e9ecef;
}

.single .entry-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	margin: 0 0 15px 0;
	line-height: 1.2;
}

.single .entry-meta {
	color: #6c757d;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.single .entry-content {
	padding: 30px 40px;
	line-height: 1.8;
	font-size: 16px;
	color: #333;
	margin: 0;
}

.single .entry-content p {
	margin-bottom: 20px;
}

.single .entry-content h2,
.single .entry-content h3,
.single .entry-content h4 {
	color: #333;
	margin: 30px 0 15px 0;
	font-weight: 600;
}

.single .entry-content h2 {
	font-size: 1.8rem;
}

.single .entry-content h3 {
	font-size: 1.5rem;
}

.single .entry-content h4 {
	font-size: 1.3rem;
}

.single .entry-footer {
	padding: 20px 40px 30px;
	border-top: 1px solid #e9ecef;
	background-color: #f8f9fa;
}

/* Post Navigation */
.single .post-navigation {
	margin: 40px 0;
	padding: 25px;
	background-color: #f8f9fa;
	border-radius: 8px;
}

.single .post-navigation .nav-links {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.single .post-navigation .nav-previous,
.single .post-navigation .nav-next {
	flex: 1;
	max-width: 45%;
}

.single .post-navigation a {
	display: block;
	padding: 15px 20px;
	background: #fff;
	border-radius: 6px;
	text-decoration: none;
	color: #333;
	transition: all 0.3s ease;
	border: 1px solid #e9ecef;
}

.single .post-navigation a:hover {
	background-color: #007cba;
	color: #fff;
	border-color: #007cba;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 124, 186, 0.2);
}

.single .post-navigation .nav-subtitle {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	opacity: 0.7;
	display: block;
	margin-bottom: 5px;
}

.single .post-navigation .nav-title {
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4;
}

/* Comments Section */
.single .comments-area {
	margin-top: 40px;
	padding: 30px;
	background-color: #f8f9fa;
	border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.single-post-container {
		padding: 20px 15px;
	}
	
	.breadcrumb-content {
		font-size: 13px;
	}
	
	.breadcrumb-separator {
		margin: 0 8px;
	}
	
	.single .entry-header {
		padding: 20px 25px 15px;
	}
	
	.single .entry-title {
		font-size: 2rem;
	}
	
	.single .entry-content {
		padding: 20px 25px;
		font-size: 15px;
	}
	
	.single .entry-footer {
		padding: 15px 25px 20px;
	}
	
	.single .post-navigation {
		margin: 30px 0;
		padding: 20px;
	}
	
	.single .post-navigation .nav-links {
		flex-direction: column;
		gap: 15px;
	}
	
	.single .post-navigation .nav-previous,
	.single .post-navigation .nav-next {
		max-width: 100%;
	}
	
	.single .comments-area {
		margin-top: 30px;
		padding: 20px;
	}
}

/* Floating WhatsApp Button */
.whatsapp-float {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
}

.whatsapp-float-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	color: white;
	border-radius: 50%;
	text-decoration: none;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.whatsapp-float-btn:hover {
	background-color: #128c7e;
	transform: scale(1.1);
	box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
	color: white;
	text-decoration: none;
}

.whatsapp-float-btn i {
	font-size: 28px;
	z-index: 2;
}

.whatsapp-tooltip {
	position: absolute;
	right: 70px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #333;
	color: white;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 14px;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	pointer-events: none;
}

.whatsapp-tooltip::after {
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	border: 6px solid transparent;
	border-left-color: #333;
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
	opacity: 1;
	visibility: visible;
}

/* Pulse animation */
.whatsapp-float-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #25d366;
	border-radius: 50%;
	animation: whatsapp-pulse 2s infinite;
	z-index: 1;
}

@keyframes whatsapp-pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	70% {
		transform: scale(1.3);
		opacity: 0;
	}
	100% {
		transform: scale(1.3);
		opacity: 0;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.whatsapp-float {
		bottom: 15px;
		right: 15px;
	}
	
	.whatsapp-float-btn {
		width: 55px;
		height: 55px;
	}
	
	.whatsapp-float-btn i {
		font-size: 24px;
	}
	
	.whatsapp-tooltip {
		display: none;
	}
}

/* Contact Page Specific Styles */
.page-template-page-contact .contact-section {
	margin-top: 0;
	padding-top: 40px;
}

.map-section {
	padding: 60px 0;
	background-color: #f8f9fa;
}

.map-section h2 {
	text-align: center;
	margin-bottom: 40px;
	font-size: 2.5rem;
	color: #333;
	font-weight: 700;
}

.map-container {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
	width: 100%;
	height: 450px;
	border: none;
}

/* Contact Section Shortcode Enhancements */
.contact-section .container {
	max-width: 1200px;
}

.contact-section .contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.contact-section .contact-text h2 {
	font-size: 2.5rem;
	margin-bottom: 30px;
	color: #333;
	font-weight: 700;
}

.contact-section .contact-details {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-section .contact-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background-color: #f8f9fa;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.contact-section .contact-item:hover {
	background-color: #e9ecef;
	transform: translateY(-2px);
}

.contact-section .contact-item i {
	font-size: 20px;
	color: #007cba;
	width: 24px;
	text-align: center;
}

.contact-section .contact-item span {
	font-size: 16px;
	color: #555;
	font-weight: 500;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
	.contact-section .contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.contact-section .contact-text h2 {
		font-size: 2rem;
		text-align: center;
	}
	
	.map-section h2 {
		font-size: 2rem;
	}
	
	.map-container iframe {
		height: 300px;
	}
}

/* Page Layout Styles */
.page-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.page-main {
	padding: 40px 0;
}

.page-content-wrapper {
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 40px;
	margin-bottom: 30px;
}

/* Page Content Styling */
.page .post {
	margin-bottom: 0;
}

.page .entry-header {
	margin-bottom: 30px;
	border-bottom: 2px solid #f0f0f0;
	padding-bottom: 20px;
}

.page .entry-title {
	font-size: 2.5rem;
	color: #310e36;
	margin-bottom: 0;
	font-weight: 700;
	line-height: 1.2;
}

.page .entry-content {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #333;
}

.page .entry-content h1,
.page .entry-content h2,
.page .entry-content h3,
.page .entry-content h4,
.page .entry-content h5,
.page .entry-content h6 {
	color: #310e36;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

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

.page .entry-content ul,
.page .entry-content ol {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.page .entry-content li {
	margin-bottom: 0.5rem;
}

.page .entry-footer {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #f0f0f0;
}

/* Comments Section */
.page .comments-area {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 2px solid #f0f0f0;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
	.page-container {
		padding: 0 15px;
	}
	
	.page-main {
		padding: 20px 0;
	}
	
	.page-content-wrapper {
		padding: 25px 20px;
		border-radius: 0;
		box-shadow: none;
		border-top: 1px solid #f0f0f0;
		border-bottom: 1px solid #f0f0f0;
	}
	
	.page .entry-title {
		font-size: 2rem;
	}
	
	.page .entry-content {
		font-size: 1rem;
	}
}

/* Products Page Specific Styles */
.page-header {
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 2px solid #f0f0f0;
}

.page-title {
	font-size: 2.5rem;
	color: #310e36;
	margin-bottom: 10px;
	font-weight: 700;
}

.page-description {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 0;
}

.no-products {
	text-align: center;
	font-size: 1.2rem;
	color: #666;
	padding: 60px 20px;
	background: #f9f9f9;
	border-radius: 8px;
	margin: 40px 0;
}

/* Pagination Styles */
.pagination-wrapper {
	margin-top: 50px;
	text-align: center;
	padding-top: 30px;
	border-top: 2px solid #f0f0f0;
}

.pagination-wrapper .page-numbers {
	display: inline-block;
	padding: 12px 16px;
	margin: 0 4px;
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	color: #333;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	font-size: 14px;
}

.pagination-wrapper .page-numbers:hover {
	background: #310e36;
	color: white;
	border-color: #310e36;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(49, 14, 54, 0.3);
}

.pagination-wrapper .page-numbers.current {
	background: #310e36;
	color: white;
	border-color: #310e36;
	box-shadow: 0 2px 8px rgba(49, 14, 54, 0.3);
}

.pagination-wrapper .page-numbers.prev,
.pagination-wrapper .page-numbers.next {
	padding: 12px 20px;
	font-weight: 600;
}

.pagination-wrapper .page-numbers.dots {
	background: transparent;
	border: none;
	color: #999;
	cursor: default;
	padding: 12px 8px;
}

.pagination-wrapper .page-numbers.dots:hover {
	background: transparent;
	color: #999;
	transform: none;
	box-shadow: none;
}

/* Responsive Pagination */
@media (max-width: 768px) {
	.page-header {
		margin-bottom: 30px;
		padding-bottom: 20px;
	}
	
	.page-title {
		font-size: 2rem;
	}
	
	.page-description {
		font-size: 1rem;
	}
	
	.pagination-wrapper {
		margin-top: 30px;
		padding-top: 20px;
	}
	
	.pagination-wrapper .page-numbers {
		padding: 10px 12px;
		margin: 0 2px;
		font-size: 13px;
	}
	
	.pagination-wrapper .page-numbers.prev,
	.pagination-wrapper .page-numbers.next {
		padding: 10px 16px;
	}
}

/* Footer Styles */
.site-footer {
	background-color: #310e36;
	padding: 30px 0;
	text-align: center;
	margin-top: auto;
}

.site-footer .site-info {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.site-footer .site-info p {
	color: white;
	font-size: 16px;
	margin: 0;
	font-weight: 400;
	line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
	.product-catalog-section {
		padding: 60px 0;
	}
	
	.product-catalog-section .section-title {
		font-size: 2rem;
	}
	
	.category-filter {
		margin-bottom: 40px;
	}
	
	.filter-btn {
		padding: 10px 18px;
		font-size: 0.9rem;
	}
	
	.products-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0 15px;
	}
	
	.product-info {
		padding: 20px;
	}
	
	.product-title {
		font-size: 1.1rem;
	}
}

@media (max-width: 480px) {
	.category-filter {
		gap: 10px;
	}
	
	.filter-btn {
		padding: 8px 16px;
		font-size: 0.85rem;
	}
	
	.product-image {
		height: 180px;
	}
	
	.whatsapp-btn {
		padding: 10px 16px;
		font-size: 0.85rem;
	}
}
