.menu-icon img {
	width: 18px;
	height: 18px;
	display: inline-block;
	vertical-align: middle;
}


/* ===== Global Button Styles ===== */
/* Apply consistent button styles across the entire site based on "Завантажити акт звірки" button */

.button,
button.button,
input[type="submit"].button,
a.button,
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
	background: #666;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	font-weight: 500;
	font-size: 14px;
	transition: background-color 0.2s ease;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	line-height: 1.5;
}

.button:hover,
button.button:hover,
input[type="submit"].button:hover,
a.button:hover,
.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover {
	background: #555;
	color: #fff;
	text-decoration: none;
}

.button:active,
button.button:active,
input[type="submit"].button:active,
a.button:active,
.woocommerce .button:active,
.woocommerce button.button:active,
.woocommerce input.button:active,
.woocommerce a.button:active {
	background: #444;
}

.button:focus,
button.button:focus,
input[type="submit"].button:focus,
a.button:focus,
.woocommerce .button:focus,
.woocommerce button.button:focus,
.woocommerce input.button:focus,
.woocommerce a.button:focus {
	outline: 2px solid #666;
	outline-offset: 2px;
}

.button:disabled,
button.button:disabled,
input[type="submit"].button:disabled,
a.button:disabled,
.woocommerce .button:disabled,
.woocommerce button.button:disabled,
.woocommerce input.button:disabled,
.woocommerce a.button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	background: #666;
}

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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
	line-height: 1.6;
	color: #333;
}

/* Top Bar */
@media (max-width: 768px) {
	.top-bar {
		display: none;
	}
}


.top-bar {
	background: #000000;
	color: white;
	padding: 8px 0;
	font-size: 14px;
}

.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-bar ul {
	display: flex;
	list-style: none;
}

.top-bar a {
	color: white;
	text-decoration: none;
	margin-left: 20px;
}

.top-bar a:hover {
	color: #dbeafe;
}

/* Header */
.header {
	background: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-main {
	padding: 15px 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.logo {
	font-size: 28px;
	font-weight: bold;
	color: #1e40af;
	text-decoration: none;
}

.search-box {
	flex: 1;
	max-width: 600px;
	position: relative;
}

.search-box input {
	width: 100%;
	padding: 12px 50px 12px 20px;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-size: 15px;
}

.search-box input:focus {
	outline: none;
	border-color: #1e40af;
}

.search-btn {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #ef4444;
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: 6px;
	cursor: pointer;
}

.search-btn:hover {
	background: #000000;
}

.header-actions {
	display: flex;
	gap: 20px;
	align-items: center;
}

.header-actions a {
	color: #333;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
}

.header-actions a svg {
	display: flex;
}

.cart-icon {
	position: relative;
}

.cart-count {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #ef4444;
	color: white;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

/* Navigation */
.nav-bar {
	background: #f3f4f6;
	border-top: 1px solid #e5e7eb;
	position: relative;
}

.nav-content {
	display: flex;
	align-items: center;
	position: relative;
}

.catalog-wrapper {
	position: relative;
}

.catalog-btn {
	background: #ef4444;
	color: white;
	border: none;
	padding: 15px 25px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: background 0.3s;
}

.catalog-btn:hover {
	background: #c2410c;
}

.catalog-btn.active {
	background: #c2410c;
}

/* Catalog Dropdown Menu */
.catalog-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	border-radius: 0 0 8px 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
	display: flex;
}

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

.catalog-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Main menu column */
.catalog-menu>ul {
	min-width: 280px;
	max-height: 500px;
	overflow-y: auto;
	padding: 20px;
}

.catalog-menu>ul>li {
	border-bottom: 1px solid #f3f4f6;
	padding: 10px 0;

}

.catalog-menu>ul>li:last-child {
	border-bottom: none;
}

.catalog-menu a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	transition: all 0.3s;
}

.catalog-menu>ul>li>a {
	font-weight: 500;
}

.catalog-menu>ul>li>a:hover,
.catalog-menu>ul>li.active>a {
	background: #f9fafb;
	color: #ea580c;
}

/* 404 page */
.page-404 {
    background: #f4f5f8;
    /* padding-bottom: 60px; */
}

.page-404__hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1e40af, #ea580c);
    color: #fff;
    text-align: center;
}

.page-404__hero h1 {
    font-size: clamp(42px, 6vw, 64px);
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.page-404__lead {
    font-size: 18px;
    max-width: 640px;
    margin: 0 auto 24px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.page-404__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.page-404__search {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 640px;
    margin: 0 auto;
}

.page-404__search input {
    flex: 1;
    padding: 14px 18px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
}

.page-404__search button {
    padding: 14px 26px;
    border-radius: 10px;
    border: none;
    background: #ffdf8f;
    color: #1e40af;
    font-weight: 600;
    cursor: pointer;
}

.page-404__suggestions {
    padding: 40px 0;
}

.page-404__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.page-404__tag {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px dashed #1e40af;
    text-decoration: none;
    color: #1e40af;
    font-size: 14px;
    transition: all 0.3s;
}

.page-404__tag:hover {
    background: #1e40af;
    color: #fff;
}

.catalog-menu .menu-icon {
	font-size: 20px;
	margin-right: 12px;
}

.catalog-menu .menu-parent-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 12px;
	cursor: pointer;
	font-weight: 500;
	color: inherit;
}

.catalog-menu .menu-parent-toggle span {
	display: flex;
	align-items: center;
	gap: 8px;
}

.catalog-close,
.catalog-back {
	display: none;
	border: none;
	background: transparent;
	font-size: 24px;
	cursor: pointer;
}

.catalog-menu .menu-parent-toggle::after {
	content: '›';
	font-size: 20px;
	color: #9ca3af;
	transition: transform 0.3s;
}

.catalog-menu .has-submenu.is-open>.menu-parent-toggle::after {
	transform: translateX(3px);
}

/* Submenu - opens to the right */
.catalog-menu .sub-menu {
	position: absolute;
	top: 0;
	left: 100%;
	background: white;
	min-width: 800px;
	max-width: 1000px;
	width: auto;
	box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
	max-height: 500px;
	overflow-y: auto;
	border-radius: 0 8px 8px 0;
	display: none; 
	z-index: 1001;
	padding: 20px;
	flex-wrap: wrap;
	gap: 12px 30px;
	align-content: flex-start; 
}

.catalog-menu .has-submenu.is-open>.sub-menu {
	display: flex;
}

.catalog-menu .sub-menu li {
	flex: 0 0 calc(33.333% - 20px);
	min-width: 0;
}

/* Level 2 category styles with icon - column layout */
.catalog-menu .sub-menu li {
	border-bottom: none;
	padding: 0;
	margin: 0;
	display: flex !important;
	flex-direction: column;
	align-items: flex-start;
	align-self: start !important; /* Prevent stretching in grid */
	height: auto !important; /* Allow natural height */
	max-height: none !important;
}

.catalog-menu .sub-menu li > div {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0;
	margin-bottom: 8px;
	width: 100%;
	position: relative;
}

/* Arrow for level 2 categories that have level 3 */
.catalog-menu .sub-menu li > div.has-level3::after {
	content: "›";
	font-size: 20px;
	color: #9ca3af;
	transition: transform 0.3s;
	margin-left: auto;
	flex-shrink: 0;
}

.catalog-menu .sub-menu li:hover > div.has-level3::after {
	transform: translateX(3px);
}

.catalog-menu .sub-menu .lvl2-ico {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
}

.catalog-menu .sub-menu .lvl2-ico img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.catalog-menu .sub-menu li > div > a {
	display: block;
	color: #333;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	transition: color 0.3s;
	flex: 1;
	line-height: 1.4;
}

.catalog-menu .sub-menu li > div > a:hover {
	color: #ea580c;
}

/* Level 3 categories list (catalog_right_li_items) - hidden by default, shown on hover */
.catalog-menu .sub-menu .catalog_right_li_items {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-top: 4px;
	padding-left: 0;
	width: 100%;
	display: none;
	opacity: 0;
	transition: opacity 0.2s ease;
}

/* Show level 3 on hover of level 2 category */
.catalog-menu .sub-menu li:hover .catalog_right_li_items {
	display: block;
	opacity: 1;
}

.catalog-menu .sub-menu .catalog_right_li_items li {
	border-bottom: none;
	padding: 0;
	margin: 0;
	margin-bottom: 2px;
}

.catalog-menu .sub-menu .catalog_right_li_items li:last-child {
	margin-bottom: 0;
}

.catalog-menu .sub-menu .catalog_right_li_items a {
	display: block;
	padding: 4px 0;
	color: #6b7280;
	text-decoration: none;
	font-size: 13px;
	font-weight: 400;
	transition: color 0.3s;
	line-height: 1.5;
}

.catalog-menu .sub-menu .catalog_right_li_items a:hover {
	color: #ea580c;
}

/* Product count in level 3 categories */
.catalog-menu .sub-menu .catalog_right_li_items .count {
	color: #9ca3af;
	font-weight: 400;
	margin-left: 4px;
}

.catalog-menu .sub-menu .catalog_right_li_items a:hover .count {
	color: #ea580c;
}

/* Mobile styles */
@media (max-width: 768px) {
	.catalog-menu {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		transform: translateX(-100%);
		border-radius: 0;
		flex-direction: column;
		background: #ffffff;
		overflow-y: auto;
		justify-content: flex-start;
		width: 80%;
	}

	.catalog-menu.open {
		transform: translateX(0);
	}

	.catalog-menu>ul {
		width: 100%;
		max-width: 420px;
		margin: 80px auto 20px;
		padding: 28px 20px;
		background: #ffffff;
		border-radius: 12px;
		/* box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25); */
	}

	/* Mobile submenu - accordion */
	.catalog-menu .sub-menu {
		position: static !important;
		display: none !important;
		box-shadow: none !important;
		background: #f9fafb !important;
		border-radius: 0 !important;
		grid-template-columns: 1fr !important;
		padding: 10px 0 !important;
		min-width: auto !important;
		max-width: none !important;
		width: 100% !important;
		gap: 0 !important;
	}

	.catalog-menu .has-submenu.is-open>.sub-menu {
		display: block !important;
	}

	.catalog-menu .has-submenu>.menu-parent-toggle::after {
		content: '▼';
		font-size: 12px;
		transition: transform 0.3s;
	}

	.catalog-menu .has-submenu.is-open>.menu-parent-toggle::after {
		transform: rotate(180deg);
	}

	.catalog-menu a {
		padding: 5px;
	}

	.catalog-menu .sub-menu a {
		padding-left: 10px;
		background: #f9fafb;
	}

	.catalog-menu .sub-menu a:hover {
		padding-left: 55px;
	}

	/* Mobile styles for level 2 and 3 categories */
	.catalog-menu .sub-menu li > div {
		padding: 10px 10px 0 10px;
		background: #f9fafb;
	}

	.catalog-menu .sub-menu .lvl2-ico {
		width: 32px;
		height: 32px;
	}

	/* Level 3 categories - always visible on mobile, not hidden */
	.catalog-menu .sub-menu .catalog_right_li_items {
		display: block !important; /* Override desktop display: none */
		opacity: 1 !important; /* Override desktop opacity: 0 */
		padding-left: 42px; /* Align with text (10px padding + 32px icon) */
		margin-top: 4px;
	}

	.catalog-menu .sub-menu .catalog_right_li_items a {
		padding: 8px 0;
		font-size: 12px;
	}

	.catalog-close {
		display: block;
		position: absolute;
		top: 18px;
		right: 18px;
		width: 42px;
		height: 42px;
		background: #111827;
		color: #ffffff;
		border: none;
		border-radius: 50%;
		font-size: 24px;
		cursor: pointer;
		z-index: 20;
		box-shadow: 0 6px 18px rgba(15, 23, 42, 0.25);
	}

	.catalog-back {
		display: block;
		position: absolute;
		top: 18px;
		left: 18px;
		background: #f1f5f9;
		color: #111827;
		border-radius: 50%;
		width: 40px;
		height: 40px;
		font-size: 20px;
		cursor: pointer;
		box-shadow: 0 6px 18px rgba(15, 23, 42, 0.25);
	}
}


/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
	.catalog-menu>ul {
		min-width: 250px;
	}

	.catalog-menu .sub-menu {
		min-width: 220px;
	}
}

.main-nav {
	display: flex;
	list-style: none;
	gap: 30px;
	margin-left: 30px;
}

.main-nav a {
	color: #333;
	text-decoration: none;
	padding: 15px 0;
	display: block;
	font-weight: 500;
}

.main-nav a:hover {
	color: #1e40af;
}

/* Hero Slider */
.hero-slider {
	position: relative;
	height: 500px;
	overflow: hidden;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #3e3e41 0%, #7d8086 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.slide.active {
	opacity: 1;
}

.slide-content {
	text-align: center;
	color: white;
	max-width: 800px;
	padding: 0 20px;
}

.slide-content h2 {
	font-size: 48px;
	margin-bottom: 20px;
}

.slide-content p {
	font-size: 24px;
	margin-bottom: 30px;
}

.slider-nav {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

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

.slider-dot.active {
	background: white;
	width: 30px;
	border-radius: 6px;
}

.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.3);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slider-arrow:hover {
	background: rgba(255, 255, 255, 0.5);
}

.slider-arrow.prev {
	left: 30px;
}

.slider-arrow.next {
	right: 30px;
}

/* Search Tabs Section */
.search-section {
	background: white;
	padding: 40px 0;
}

.tabs {
	display: flex;
	gap: 10px;
	margin-bottom: 30px;
	border-bottom: 2px solid #e5e7eb;
}

.tab-btn {
	background: none;
	border: none;
	padding: 15px 30px;
	font-size: 16px;
	cursor: pointer;
	color: #666;
	border-bottom: 3px solid transparent;
	transition: all 0.3s;
}

.tab-btn.active {
	color: #1e40af;
	border-bottom-color: #1e40af;
	font-weight: 600;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

.search-form {
	max-width: 800px;
	margin: 0 auto;
}

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

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
}

.form-group select,
.form-group input {
	width: 100%;
	padding: 12px;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-size: 15px;
}

.form-group select:focus,
.form-group input:focus {
	outline: none;
	border-color: #1e40af;
}

.submit-btn {
	background: #ea580c;
	color: white;
	border: none;
	padding: 15px 40px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
}

.submit-btn:hover {
	background: #c2410c;
}

/* Features */
.features {
	background: #f9fafb;
	padding: 60px 0;
}

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

.feature-card {
	background: white;
	padding: 30px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: #dbeafe;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: #1e40af;
}

.feature-card h3 {
	margin-bottom: 10px;
	color: #1e40af;
}

.feature-card p {
	color: #666;
}

/* Categories */
.categories {
	padding: 60px 0;
}

.section-title {
	text-align: center;
	font-size: 36px;
	margin-bottom: 40px;
	color: #000000;
}

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

.category-card {
	background: white;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s;
}

.category-card:hover {
	border-color: #1e40af;
	box-shadow: 0 5px 20px rgba(30, 64, 175, 0.15);
	transform: translateY(-5px);
}

.category-icon {
	width: 80px;
	height: 80px;
	background: #f3f4f6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 40px;
}

.category-card h3 {
	margin-bottom: 5px;
}

.category-card span {
	color: #666;
	font-size: 14px;
}

/* About Section */
.about-section {
	background: #1f2937;
	color: white;
	padding: 60px 0;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-text h2 {
	font-size: 36px;
	margin-bottom: 20px;
}

.about-text p {
	margin-bottom: 20px;
	line-height: 1.8;
	color: #d1d5db;
}

.about-list {
	list-style: none;
}

.about-list li {
	padding: 15px 0;
	border-bottom: 1px solid #374151;
	display: flex;
	align-items: center;
	gap: 15px;
}

.about-list li::before {
	content: '✓';
	background: #ef4444;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* Footer */
.footer {
	background: #111827;
	color: white;
	padding: 60px 0 20px;
}

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

.footer-column h4 {
	margin-bottom: 20px;
	font-size: 18px;
}

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

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

.footer-column a {
	color: #9ca3af;
	text-decoration: none;
}

.footer-column a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 20px;
	text-align: center;
	color: #9ca3af;
}

/* Mobile Menu */
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
}

.header-content.mobile {
	display: none;
}



/* Responsive */
@media (max-width: 768px) {
	.header-content {
		display: none;
	}

	.header-content.mobile {
		display: flex;
		flex-direction: column;
	}

	.header-content-mobile-search {
		display: flex;
		justify-content: space-between;
		width: 100%;
		gap: 20px;
	}

	.header-content-mobile-logo {
		display: flex;
		justify-content: space-between;
		width: 100%;
	}

	.catalog-wrapper {
		width: 100%;
	}

	.catalog-btn {
		width: 100%;
	}

	.search-box {
		order: 3;
		width: 100%;
		max-width: 100%;
	}

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

	.main-nav {
		display: none;
	}

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

	.slide-content p {
		font-size: 18px;
	}

	.about-content {
		grid-template-columns: 1fr;
	}

	.top-bar .container {
		flex-direction: column;
		gap: 10px;
	}
}

#woofc-count {
	display: none !important;
}

.woocommerce-breadcrumb a {
	text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
	text-decoration: underline;
}

.woocommerce-breadcrumb a:visited {
	color: #000000;
}

body.search .button.product_type_simple.add_to_cart_button.ajax_add_to_cart.buy-btn,
.woocommerce-shop .button.product_type_simple.add_to_cart_button.ajax_add_to_cart.buy-btn {
	text-align: center;
}

body.search .car-shop-taxonomy-header-title {
	display: none;
}

.woocommerce-notices-wrapper {
	display: none;
}

.product-info a.added_to_cart.wc-forward {
	display: none;
}

main.page-content {
    padding: 30px 0;
	line-height: 2;
}

main.page-content .page-header {
    padding-bottom: 30px;
    text-align: center;
}


.products-toolbar {
	padding: 0 0 25px 0;
}

/* News Page Styles */
.news-page-section {
	padding: 20px 0 60px 0;
	background: #ffffff;
}

.news-page-section .page-header {
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 2px solid #e5e7eb;
}

.news-page-section .page-header h1 {
	font-size: 32px;
	color: #c2410c;
	margin-bottom: 15px;
}

.news-page-section .page-description {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin-top: 15px;
}

.news-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.news-post-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s, box-shadow 0.3s;
	display: flex;
	flex-direction: column;
}

.news-post-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.news-post-thumbnail {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: #f3f4f6;
}

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

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

.news-post-thumbnail a {
	display: block;
	width: 100%;
	height: 100%;
}

.news-post-content {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

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

.news-post-date {
	font-weight: 500;
}

.news-post-category {
	background: #ea580c;
	color: white;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 600;
}

.news-post-title {
	margin: 0 0 12px 0;
	font-size: 20px;
	line-height: 1.4;
}

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

.news-post-title a:hover {
	color: #ea580c;
}

.news-post-excerpt {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 15px;
	flex: 1;
}

.news-post-read-more {
	color: #ea580c;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: color 0.3s;
	margin-top: auto;
}

.news-post-read-more:hover {
	color: #c2410c;
}

.news-pagination-wrapper {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #e5e7eb;
}

.news-pagination-wrapper .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
}

.news-pagination-wrapper .page-numbers li {
	list-style: none;
	margin: 0;
}

.news-pagination-wrapper .page-numbers a,
.news-pagination-wrapper .page-numbers span {
	display: inline-block;
	padding: 10px 16px;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	text-decoration: none;
	color: #333;
	transition: all 0.3s;
	background: white;
}

.news-pagination-wrapper .page-numbers a:hover {
	background: #ea580c;
	color: white;
	border-color: #c2410c;
}

.news-pagination-wrapper .page-numbers .current {
	background: #ea580c;
	color: white;
	border-color: #c2410c;
	cursor: default;
}

.news-pagination-wrapper .page-numbers .dots {
	border: none;
	background: transparent;
	cursor: default;
}

.news-pagination-wrapper .page-numbers .dots:hover {
	background: transparent;
	color: #333;
}

.no-posts-found {
	text-align: center;
	padding: 60px 20px;
	background: #f9fafb;
	border-radius: 12px;
	margin-top: 30px;
}

.no-posts-found p {
	font-size: 18px;
	color: #666;
}

/* Responsive adjustments for news page */
@media (max-width: 1200px) {
	.news-posts-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

@media (max-width: 768px) {
	.news-page-section .page-header h1 {
		font-size: 28px;
	}
	
	.news-posts-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.news-post-thumbnail {
		height: 180px;
	}
	
	.news-pagination-wrapper .page-numbers a,
	.news-pagination-wrapper .page-numbers span {
		padding: 8px 12px;
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.news-page-section .page-header h1 {
		font-size: 24px;
	}
	
	.news-page-section .page-description {
		font-size: 14px;
	}
	
	.news-post-content {
		padding: 15px;
	}
	
	.news-post-title {
		font-size: 18px;
	}
}

/* Single Post Styles */
.single-post-section {
	padding: 20px 0 60px 0;
	background: #ffffff;
}

.single-post-article {
	max-width: 900px;
	margin: 0 auto;
	background: white;
}

.single-post-header {
	margin-bottom: 30px;
}

.single-post-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 15px;
}

.post-category-tag {
	background: #ea580c;
	color: white;
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.3s;
}

.post-category-tag:hover {
	background: #c2410c;
	color: white;
}

.single-post-title {
	font-size: 36px;
	line-height: 1.3;
	color: #333;
	margin: 0 0 20px 0;
	font-weight: 700;
}

.single-post-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	font-size: 14px;
	color: #666;
}

.single-post-meta svg {
	width: 16px;
	height: 16px;
	margin-right: 5px;
	vertical-align: middle;
}

.post-date,
.post-author,
.post-comments-count {
	display: flex;
	align-items: center;
	gap: 5px;
}

.single-post-featured-image {
	margin-bottom: 30px;
	border-radius: 12px;
	overflow: hidden;
}

.single-post-featured-image img {
	width: 100%;
	height: auto;
	display: block;
}

.single-post-content {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 40px;
}

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

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

.single-post-content h2 {
	font-size: 28px;
}

.single-post-content h3 {
	font-size: 24px;
}

.single-post-content h4 {
	font-size: 20px;
}

.single-post-content ul,
.single-post-content ol {
	margin-bottom: 20px;
	padding-left: 30px;
}

.single-post-content li {
	margin-bottom: 10px;
}

.single-post-content a {
	color: #ea580c;
	text-decoration: none;
	transition: color 0.3s;
}

.single-post-content a:hover {
	color: #c2410c;
	text-decoration: underline;
}

.single-post-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 20px 0;
}

.single-post-content blockquote {
	border-left: 4px solid #ea580c;
	padding-left: 20px;
	margin: 20px 0;
	font-style: italic;
	color: #666;
}

.single-post-content code {
	background: #f3f4f6;
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 14px;
}

.single-post-content pre {
	background: #f3f4f6;
	padding: 20px;
	border-radius: 8px;
	overflow-x: auto;
	margin: 20px 0;
}

.single-post-content pre code {
	background: none;
	padding: 0;
}

.page-links {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #e5e7eb;
}

.page-links a {
	margin: 0 5px;
	padding: 5px 10px;
	background: #f3f4f6;
	border-radius: 4px;
}

.single-post-footer {
	margin-top: 40px;
	padding-top: 10px;
	border-top: 2px solid #e5e7eb;
}

.single-post-tags {
	margin-bottom: 25px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.tags-label {
	font-weight: 600;
	color: #333;
	margin-right: 5px;
}

.post-tag {
	color: #ea580c;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s;
}

.post-tag:hover {
	color: #c2410c;
}

.single-post-share {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	/* padding-top: 25px; */
	/* border-top: 1px solid #e5e7eb; */
}

.share-label {
	font-weight: 600;
	color: #333;
}

.share-buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}

.share-btn {
	padding: 8px 16px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s;
	/* border: 1px solid #e5e7eb; */
	background: white;
	color: #333;
	border: none;
}

.share-btn:hover {
	cursor: pointer;
}

.share-btn.facebook:hover {
	/* background: #1877f2; */
	color: white;
	/* border-color: #1877f2; */
}

.share-btn.twitter:hover {
	/* background: #1da1f2; */
	color: white;
	/* border-color: #1da1f2; */
}

.share-btn.telegram:hover {
	/* background: #0088cc; */
	color: white;
	/* border-color: #0088cc; */
}

.share-btn.copy-link:hover {
	/* background: #ea580c; */
	color: white;
	/* border-color: #ea580c; */
}

/* Post Navigation */
.single-post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin: 10px 0;
	padding-top: 30px;
	border-top: 2px solid #e5e7eb;
}

.post-nav-link {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px;
	background: #f9fafb;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s;
	border: 1px solid #e5e7eb;
}

.post-nav-link:hover {
	background: #ea580c;
	color: white;
	border-color: #c2410c;
	transform: translateX(5px);
}

.post-nav-next .post-nav-link:hover {
	transform: translateX(-5px);
}

.single-post-navigation .nav-arrow {
	font-size: 24px;
	font-weight: bold;
	flex-shrink: 0;
}

.single-post-navigation .nav-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.single-post-navigation .nav-label {
	font-size: 12px;
	text-transform: uppercase;
	opacity: 0.7;
	font-weight: 600;
}

.single-post-navigation .nav-title {
	font-size: 16px;
	font-weight: 600;
}

.post-nav-link:hover .nav-label,
.post-nav-link:hover .nav-title {
	color: white;
}

/* Related Posts */
.related-posts-section {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 2px solid #e5e7eb;
}

.related-posts-title {
	font-size: 28px;
	color: #333;
	margin-bottom: 30px;
	font-weight: 700;
}

.related-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.related-post-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s, box-shadow 0.3s;
}

.related-post-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.related-post-thumbnail {
	width: 100%;
	height: 180px;
	overflow: hidden;
	background: #f3f4f6;
}

.related-post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

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

.related-post-content {
	padding: 15px;
}

.related-post-title {
	margin: 0 0 10px 0;
	font-size: 16px;
	line-height: 1.4;
}

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

.related-post-title a:hover {
	color: #ea580c;
}

.related-post-date {
	font-size: 12px;
	color: #999;
}

/* Responsive adjustments for single post */
@media (max-width: 992px) {
	.single-post-title {
		font-size: 32px;
	}
	
	.related-posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.single-post-title {
		font-size: 28px;
	}
	
	.single-post-navigation {
		grid-template-columns: 1fr;
	}
	
	.post-nav-link {
		flex-direction: row;
	}
	
	.post-nav-next .post-nav-link {
		flex-direction: row-reverse;
	}
	
	.related-posts-grid {
		grid-template-columns: 1fr;
	}
	
	.single-post-meta {
		font-size: 13px;
		gap: 15px;
	}
}

@media (max-width: 576px) {
	.single-post-title {
		font-size: 24px;
	}
	
	.single-post-content {
		font-size: 15px;
	}
	
	.single-post-share {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.share-buttons {
		width: 100%;
	}
	
	.share-btn {
		flex: 1;
		text-align: center;
	}
}

/* Contact Page Styles */
.contact-page-section {
	padding: 20px 0 60px 0;
	background: #ffffff;
}

.contact-page-section .page-header {
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 2px solid #e5e7eb;
	text-align: center;
}

.contact-page-section .page-header h1 {
	font-size: 32px;
	color: #c2410c;
	margin-bottom: 15px;
}

.contact-page-section .page-description {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin-top: 15px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.contact-page-content {
	/* max-width: 900px; */
	margin: 0 auto 40px auto;
	padding: 30px;
	background: #f9fafb;
	border-radius: 12px;
	font-size: 16px;
	line-height: 1.8;
	color: #333;
}

.contact-page-content p {
	margin-bottom: 20px;
}

.contact-page-content h2,
.contact-page-content h3,
.contact-page-content h4 {
	margin-top: 30px;
	margin-bottom: 15px;
	color: #333;
	font-weight: 600;
}

.contact-page-content h2 {
	font-size: 28px;
}

.contact-page-content h3 {
	font-size: 24px;
}

.contact-page-content h4 {
	font-size: 20px;
}

.contact-page-content ul,
.contact-page-content ol {
	margin-bottom: 20px;
	padding-left: 30px;
}

.contact-page-content li {
	margin-bottom: 10px;
}

.contact-page-content a {
	color: #ea580c;
	text-decoration: none;
	transition: color 0.3s;
}

.contact-page-content a:hover {
	color: #c2410c;
	text-decoration: underline;
}

.contact-page-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 20px 0;
}

.contact-page-content blockquote {
	border-left: 4px solid #ea580c;
	padding-left: 20px;
	margin: 20px 0;
	font-style: italic;
	color: #666;
}

.contact-page-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 40px;
}

.section-title {
	font-size: 24px;
	color: #333;
	margin-bottom: 25px;
	font-weight: 700;
}

/* Contact Information */
.contact-info-section {
	background: #f9fafb;
	padding: 30px;
	border-radius: 12px;
}

.contact-info-grid {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-bottom: 40px;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.contact-info-content h3 {
	font-size: 18px;
	color: #333;
	margin: 0 0 8px 0;
	font-weight: 600;
}

.contact-info-content p {
	font-size: 15px;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

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

.contact-info-content a:hover {
	color: #c2410c;
	text-decoration: underline;
}

/* Map Section */
.contact-map-section {
	margin-top: 40px;
}

.contact-map {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
	background: #f3f4f6;
	padding: 60px 20px;
	text-align: center;
	border-radius: 12px;
	color: #666;
}

.map-placeholder p {
	margin: 10px 0;
}

.map-note {
	font-size: 14px;
	color: #999;
	font-style: italic;
}

/* Contact Form */
.contact-form-section {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group label {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.form-group input,
.form-group textarea {
	padding: 12px 16px;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-size: 15px;
	font-family: inherit;
	transition: border-color 0.3s;
	width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #ea580c;
}

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

.contact-submit-btn {
	background: #ea580c;
	color: white;
	border: none;
	padding: 15px 30px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
	margin-top: 10px;
}

.contact-submit-btn:hover {
	background: #c2410c;
}

.contact-submit-btn:active {
	transform: scale(0.98);
}

/* Contact Form Messages */
.contact-message {
	padding: 15px 20px;
	border-radius: 8px;
	margin-bottom: 25px;
	font-size: 14px;
	line-height: 1.6;
}

.contact-message-success {
	background: #d1fae5;
	color: #065f46;
	border: 1px solid #10b981;
}

.contact-message-error {
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #ef4444;
}

/* Contact Form Instructions */
.contact-form-instructions {
	background: #f9fafb;
	padding: 20px;
	border-radius: 8px;
	border: 1px dashed #e5e7eb;
	margin-bottom: 20px;
}

.contact-form-instructions p {
	margin: 10px 0;
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}

.contact-form-instructions code {
	background: #e5e7eb;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 13px;
	color: #333;
	display: inline-block;
	margin: 5px 0;
}

.contact-form-instructions strong {
	color: #333;
}

/* Contact Form 7 Styles */
.contact-form-section .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-form-section .wpcf7-form p {
	margin: 0;
}

.contact-form-section .wpcf7-form label {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
	display: block;
}

.contact-form-section .wpcf7-form input[type="text"],
.contact-form-section .wpcf7-form input[type="email"],
.contact-form-section .wpcf7-form input[type="tel"],
.contact-form-section .wpcf7-form textarea {
	padding: 12px 16px;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-size: 15px;
	width: 100%;
	transition: border-color 0.3s;
}

.contact-form-section .wpcf7-form input:focus,
.contact-form-section .wpcf7-form textarea:focus {
	outline: none;
	border-color: #ea580c;
}

.contact-form-section .wpcf7-form input[type="submit"] {
	background: #ea580c;
	color: white;
	border: none;
	padding: 15px 30px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
	margin-top: 10px;
}

.contact-form-section .wpcf7-form input[type="submit"]:hover {
	background: #c2410c;
}

/* Responsive adjustments for contact page */
@media (max-width: 992px) {
	.contact-page-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.contact-info-section,
	.contact-form-section {
		padding: 25px;
	}
}

@media (max-width: 768px) {
	.contact-page-section .page-header h1 {
		font-size: 28px;
	}
	
	.contact-info-grid {
		gap: 20px;
	}
	
	.contact-info-item {
		padding: 15px;
	}
	
	.contact-icon {
		width: 40px;
		height: 40px;
	}
	
	.contact-icon svg {
		width: 20px;
		height: 20px;
	}
}

@media (max-width: 576px) {
	.contact-page-section .page-header h1 {
		font-size: 24px;
	}
	
	.contact-page-section .page-description {
		font-size: 14px;
	}
	
	.contact-info-section,
	.contact-form-section {
		padding: 20px;
	}
	
	.section-title {
		font-size: 20px;
	}
	
	.contact-info-item {
		flex-direction: column;
		text-align: center;
	}
	
	.contact-icon {
		margin: 0 auto;
	}
}

.wp-block-list {
    padding: 20px 0;
}